/* ============================================================
   V-ONE AGENCY — MAIN STYLESHEET
   Modern, premium, conversion-focused design
   Blue (#0B1F4B / #1848CC), White, Gold (#C49A0A)
   ============================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --navy:          #0B1F4B;
  --navy-mid:      #0f3380;
  --blue:          #1848CC;
  --blue-light:    #4A7CF6;
  --blue-pale:     #EEF3FF;
  --gold:          #C49A0A;
  --gold-light:    #F0C840;
  --gold-pale:     #FDF9EC;
  --white:         #FFFFFF;
  --off-white:     #F7F8FC;
  --text:          #1A1A2E;
  --muted:         #4A5568;
  --border:        #E2E8F0;
  --success:       #166534;
  --success-bg:    #dcfce7;

  --font:          'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --shadow-xs:     0 1px 4px rgba(11,31,75,.06);
  --shadow-sm:     0 2px 10px rgba(11,31,75,.09);
  --shadow-md:     0 4px 24px rgba(11,31,75,.13);
  --shadow-lg:     0 8px 40px rgba(11,31,75,.18);
  --shadow-xl:     0 16px 64px rgba(11,31,75,.22);

  --r-sm:  8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  --ease:     300ms ease;
  --ease-slow: 600ms ease;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; color: var(--text); }
h1 { font-size: clamp(2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.55rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--muted); line-height: 1.72; }

/* === LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section      { padding: 96px 0; }
.section-sm   { padding: 64px 0; }
.section-dark { background: var(--navy); }
.section-soft { background: var(--off-white); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--ease), box-shadow var(--ease);
}
.header.scrolled {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  transition: color var(--ease);
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 3px;
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.logo:hover .logo-img,
.footer-logo a:hover .logo-img {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}
.header.scrolled .logo { color: var(--navy); }
.logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 0.9rem;
  letter-spacing: -0.5px;
  flex-shrink: 0;
}
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  position: relative;
  transition: color var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--ease);
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.header.scrolled .nav-link { color: var(--muted); }
.header.scrolled .nav-link:hover { color: var(--blue); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 20px;
  border-radius: var(--r-md);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--ease);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(196,154,10,.35);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--ease);
}
.header.scrolled .hamburger span { background: var(--navy); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  transition: color var(--ease);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
.mobile-nav .nav-cta {
  margin-top: 8px;
  font-size: 1rem !important;
  padding: 14px 32px !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-md);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(196,154,10,.38);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline-blue:hover {
  background: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.btn-dark:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-2px);
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-icon { gap: 6px; }

/* ============================================================
   SECTION HEADERS (shared)
   ============================================================ */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-dark .section-label {
  background: rgba(196,154,10,.15);
  color: var(--gold-light);
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { font-size: 1.05rem; }
.section-dark .section-header h2 { color: #fff; }
.section-dark .section-header p  { color: rgba(255,255,255,.7); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  min-height: 100vh;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(24,72,204,.35) 0%, transparent 65%),
    radial-gradient(ellipse at 10% 80%, rgba(196,154,10,.12) 0%, transparent 50%),
    linear-gradient(145deg, var(--navy) 0%, #0a1d48 40%, #0f3380 70%, #1848CC 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 90px;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 48px;
  align-items: center;
  min-height: calc(100vh - 90px);
  padding: 60px 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,154,10,.14);
  border: 1px solid rgba(196,154,10,.28);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: badgePulse 2.2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(.75); }
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.2rem, 5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 24px;
}
.hero h1 .gold {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.12rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.72;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.hero-stat-num .accent { color: var(--gold); }
.hero-stat-lbl {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* === FLOATING HERO CARDS === */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-card {
  position: absolute;
  background: rgba(255,255,255,.97);
  border-radius: var(--r-lg);
  box-shadow: 0 20px 64px rgba(0,0,0,.32);
  overflow: hidden;
  transition: transform .12s ease-out;
}
.fc-1 { width: 230px; top: 6%;  left: 0;   animation: fcFloat1 9s ease-in-out infinite; }
.fc-2 { width: 210px; top: 18%; right: 0;  animation: fcFloat2 11s ease-in-out infinite; }
.fc-3 { width: 240px; bottom: 4%; left: 12%; animation: fcFloat3 13s ease-in-out infinite; }

@keyframes fcFloat1 {
  0%,100% { transform: translateY(0)    rotate(-2deg); }
  40%     { transform: translateY(-22px) rotate(1.5deg); }
  70%     { transform: translateY(10px)  rotate(-3deg); }
}
@keyframes fcFloat2 {
  0%,100% { transform: translateY(0)    rotate(3deg); }
  35%     { transform: translateY(18px)  rotate(-1deg); }
  65%     { transform: translateY(-26px) rotate(4deg); }
}
@keyframes fcFloat3 {
  0%,100% { transform: translateY(0)    rotate(-1deg); }
  50%     { transform: translateY(-19px) rotate(2.5deg); }
}

/* Browser chrome */
.bc-chrome {
  background: #1A1A2E;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bc-dots { display: flex; gap: 4px; }
.bc-dots span { width: 8px; height: 8px; border-radius: 50%; }
.bc-dots span:nth-child(1) { background: #ff5f57; }
.bc-dots span:nth-child(2) { background: #febc2e; }
.bc-dots span:nth-child(3) { background: #28c840; }
.bc-url {
  flex: 1;
  background: rgba(255,255,255,.08);
  border-radius: 4px;
  padding: 2px 8px;
  font-size: .62rem;
  color: rgba(255,255,255,.6);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Card 1 — Website preview */
.bc-body { padding: 10px; }
.bc-nav {
  height: 22px;
  background: var(--navy);
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 6px;
  margin-bottom: 6px;
}
.bc-nav-logo { height: 6px; width: 40px; background: var(--gold); border-radius: 3px; }
.bc-nav-links { display: flex; gap: 5px; margin-left: auto; }
.bc-nav-link  { height: 5px; width: 22px; background: rgba(255,255,255,.4); border-radius: 3px; }
.bc-hero {
  height: 62px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 4px;
  margin-bottom: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 8px;
}
.bc-h1  { height: 7px; width: 75%; background: rgba(255,255,255,.9); border-radius: 3px; }
.bc-sub { height: 5px; width: 55%; background: rgba(255,255,255,.55); border-radius: 3px; }
.bc-cta-row { display: flex; gap: 5px; margin-top: 3px; }
.bc-cta-p { height: 14px; width: 56px; background: var(--gold); border-radius: 7px; }
.bc-cta-s { height: 14px; width: 44px; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); border-radius: 7px; }
.bc-content { display: flex; flex-direction: column; gap: 4px; }
.bc-line { height: 4px; background: #E2E8F0; border-radius: 3px; }
.bc-line.l { width: 90%; }
.bc-line.m { width: 70%; }
.bc-line.s { width: 50%; }
.bc-btn { height: 14px; width: 60px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 7px; margin-top: 6px; }

/* Card 2 — Portfolio grid */
.bc-port-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; }
.bc-port-item { height: 38px; border-radius: 4px; }
.bc-port-item:nth-child(1) { background: linear-gradient(135deg,#1848CC33,#1848CC66); }
.bc-port-item:nth-child(2) { background: linear-gradient(135deg,#C49A0A22,#C49A0A55); }
.bc-port-item:nth-child(3) { background: linear-gradient(135deg,#0B1F4B22,#0B1F4B55); }
.bc-port-item:nth-child(4) { background: linear-gradient(135deg,#4A7CF622,#4A7CF655); }

/* Card 3 — Stats / SEO */
.bc-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 6px; }
.bc-stat-box { background: var(--off-white); border-radius: 4px; padding: 6px; }
.bc-stat-num { height: 10px; width: 55%; background: linear-gradient(90deg, var(--blue), var(--blue-light)); border-radius: 3px; margin-bottom: 3px; }
.bc-stat-lbl { height: 4px; width: 75%; background: var(--border); border-radius: 3px; }
.bc-chart {
  height: 38px;
  background: var(--off-white);
  border-radius: 4px;
  display: flex;
  align-items: flex-end;
  padding: 5px;
  gap: 3px;
}
.bc-bar { flex: 1; background: linear-gradient(to top, var(--blue), var(--blue-light)); border-radius: 2px 2px 0 0; }
.bc-bar:nth-child(1) { height: 35%; }
.bc-bar:nth-child(2) { height: 55%; }
.bc-bar:nth-child(3) { height: 42%; }
.bc-bar:nth-child(4) { height: 78%; }
.bc-bar:nth-child(5) { height: 68%; }
.bc-bar:nth-child(6) { height: 92%; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--gold-pale);
  border-bottom: 1px solid rgba(196,154,10,.2);
}
.stats-bar-inner {
  display: flex;
  justify-content: center;
  gap: 56px;
  padding: 20px 0;
  flex-wrap: wrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--muted);
}
.stat-item strong { color: var(--text); font-size: 1.05rem; }

/* ============================================================
   PROBLEM / SOLUTION
   ============================================================ */
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.ps-box {
  padding: 44px;
  border-radius: var(--r-xl);
}
.ps-problem {
  background: #fff5f5;
  border: 1px solid #fecaca;
}
.ps-solution {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  color: #fff;
}
.ps-box-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.ps-problem .ps-box-label { color: #b91c1c; }
.ps-solution .ps-box-label { color: var(--gold-light); }
.ps-box h3 { margin-bottom: 20px; font-size: 1.3rem; }
.ps-problem h3 { color: #991b1b; }
.ps-solution h3 { color: #fff; }
.ps-list { display: flex; flex-direction: column; gap: 12px; }
.ps-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.55;
}
.ps-problem .ps-item { color: var(--muted); }
.ps-solution .ps-item { color: rgba(255,255,255,.82); }
.ps-item-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.ps-problem .ps-item-icon { background: #fee2e2; color: #b91c1c; }
.ps-solution .ps-item-icon { background: rgba(196,154,10,.25); color: var(--gold-light); }

/* ============================================================
   USP CARDS
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.usp-card {
  padding: 36px 28px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  text-align: center;
  transition: all var(--ease);
}
.usp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-pale);
}
.usp-icon {
  width: 56px; height: 56px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin: 0 auto 20px;
}
.usp-card h3 { font-size: 1rem; margin-bottom: 8px; }
.usp-card p  { font-size: 0.88rem; }

/* ============================================================
   VOOR WIE SECTION
   ============================================================ */
.voor-wie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}
.voor-wie-card {
  padding: 36px 24px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  text-align: center;
  transition: all var(--ease);
  cursor: default;
}
.voor-wie-card:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(196,154,10,.4);
  transform: translateY(-5px);
}
.voor-wie-emoji { font-size: 2.2rem; margin-bottom: 16px; display: block; }
.voor-wie-card h3 { color: #fff; font-size: 1rem; margin-bottom: 8px; }
.voor-wie-card p  { color: rgba(255,255,255,.58); font-size: 0.84rem; }

/* ============================================================
   DIENSTEN CARDS
   ============================================================ */
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 24px;
}
.dienst-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.dienst-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  opacity: 0;
  transition: opacity var(--ease);
}
.dienst-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.dienst-card:hover::before { opacity: 1; }
.dienst-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue-pale), rgba(74,124,246,.18));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 22px;
}
.dienst-card h3  { font-size: 1.18rem; margin-bottom: 10px; }
.dienst-card p   { font-size: 0.92rem; margin-bottom: 20px; }
.dienst-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--blue);
  background: var(--blue-pale);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.dienst-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}
.dienst-card-bottom .dienst-price {
  margin-bottom: 0;
}

/* ============================================================
   HOME WERKWIJZE (3 steps)
   ============================================================ */
.werkwijze-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.werkwijze-3::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 18px);
  right: calc(16.67% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}
.w3-step { text-align: center; padding-top: 8px; }
.w3-num {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.35rem;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  border: 4px solid var(--off-white);
  box-shadow: 0 4px 16px rgba(24,72,204,.3);
}
.w3-step h3 { font-size: 1.1rem; margin-bottom: 10px; }
.w3-step p  { font-size: 0.9rem; }

/* ============================================================
   PORTFOLIO CARDS
   ============================================================ */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}
.port-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.port-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}
.port-img {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.port-img-mockup {
  width: 78%;
  background: #fff;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: 0 10px 32px rgba(0,0,0,.28);
}
.port-content { padding: 28px; }
.port-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 11px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 12px;
}
.port-content h3 { font-size: 1.08rem; margin-bottom: 8px; }
.port-content p  { font-size: 0.88rem; margin-bottom: 18px; }
.port-result {
  padding: 10px 14px;
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  color: var(--success);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 24px;
}
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-xl);
  padding: 36px;
  transition: all var(--ease);
}
.testi-card:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-5px);
}
.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 3px; margin-bottom: 18px; }
.testi-quote {
  color: rgba(255,255,255,.84);
  font-size: 0.95rem;
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: #fff; font-size: 0.95rem; }
.testi-role { font-size: 0.78rem; color: rgba(255,255,255,.48); margin-top: 2px; }

/* ============================================================
   BEFORE / AFTER SLIDER
   ============================================================ */
.ba-wrap {
  max-width: 860px;
  margin: 0 auto;
}
.ba-container {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  user-select: none;
  touch-action: none;
  aspect-ratio: 16 / 9;
}
.ba-before, .ba-after {
  position: absolute;
  inset: 0;
}
.ba-after {
  z-index: 2;
  width: 50%;
  overflow: hidden;
}
.ba-after-inner {
  width: calc(860px * 1);
  max-width: 860px;
  height: 100%;
  position: absolute;
  left: 0; top: 0;
}
.ba-label {
  position: absolute;
  z-index: 10;
  top: 16px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  pointer-events: none;
}
.ba-label-before { left: 14px; background: #fee2e2; color: #b91c1c; }
.ba-label-after  { right: 14px; background: rgba(196,154,10,.92); color: var(--navy); }
.ba-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 3px;
  background: #fff;
  z-index: 20;
  transform: translateX(-50%);
  cursor: ew-resize;
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 700;
}

/* Before mockup */
.old-site {
  width: 100%;
  height: 100%;
  background: #ddd5c5;
  display: flex;
  flex-direction: column;
}
.old-nav {
  height: 44px;
  background: #7c6248;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 10px;
}
.old-nav-l { height: 8px; border-radius: 3px; background: rgba(255,255,255,.5); }
.old-nav-l.logo-l { width: 60px; }
.old-nav-l.link-l { width: 32px; }
.old-hero {
  height: 100px;
  background: linear-gradient(135deg, #6b8cba, #4a6fa5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px;
}
.old-ht { height: 12px; width: 58%; background: rgba(255,255,255,.65); border-radius: 3px; }
.old-hs { height: 7px; width: 40%; background: rgba(255,255,255,.4); border-radius: 3px; }
.old-body { flex: 1; padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.old-tl { height: 5px; background: #bbb; border-radius: 3px; }
.old-tl.tl-l { width: 88%; }
.old-tl.tl-m { width: 68%; }
.old-tl.tl-s { width: 48%; }

/* After mockup */
.new-site {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy), var(--blue));
  display: flex;
  flex-direction: column;
}
.new-nav {
  height: 40px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  backdrop-filter: blur(8px);
}
.new-logo-b { height: 9px; width: 52px; background: var(--gold); border-radius: 3px; }
.new-nav-links { flex: 1; display: flex; justify-content: flex-end; gap: 8px; }
.new-nl { height: 5px; width: 28px; background: rgba(255,255,255,.5); border-radius: 3px; }
.new-ncta { height: 20px; width: 56px; background: var(--gold); border-radius: 10px; }
.new-hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px;
  gap: 7px;
}
.new-ht { height: 14px; width: 72%; background: rgba(255,255,255,.92); border-radius: 3px; }
.new-hs { height: 7px; border-radius: 3px; background: rgba(255,255,255,.55); }
.new-hs.s1 { width: 60%; }
.new-hs.s2 { width: 50%; }
.new-cta-row { display: flex; gap: 7px; margin-top: 8px; }
.new-cta-p { height: 22px; width: 76px; background: var(--gold); border-radius: 11px; }
.new-cta-s { height: 22px; width: 62px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.28); border-radius: 11px; }

/* ============================================================
   GRATIS WEBSITESCAN SECTION
   ============================================================ */
.scan-box {
  background: linear-gradient(135deg, var(--blue-pale), #fff);
  border-radius: var(--r-2xl);
  padding: 72px 64px;
  text-align: center;
  border: 1px solid rgba(24,72,204,.14);
  max-width: 860px;
  margin: 0 auto;
}
.scan-box h2 { margin-bottom: 14px; }
.scan-box > p { font-size: 1.04rem; max-width: 580px; margin: 0 auto 36px; }
.scan-form {
  display: flex;
  gap: 12px;
  max-width: 540px;
  margin: 0 auto 24px;
}
.scan-input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.96rem;
  outline: none;
  transition: border-color var(--ease);
  color: var(--text);
}
.scan-input:focus { border-color: var(--blue); }
.scan-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow var(--ease);
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-q {
  padding: 22px 26px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all var(--ease);
}
.faq-item.open .faq-arrow { background: var(--blue); color: #fff; transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ease-slow);
  padding: 0 26px;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 22px; }
.faq-a p {
  font-size: 0.94rem;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.cta-final {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,154,10,.1) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(74,124,246,.15) 0%, transparent 55%),
    linear-gradient(145deg, var(--navy) 0%, #0f3380 50%, var(--blue) 100%);
  text-align: center;
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.cta-final h2 {
  color: #fff;
  max-width: 720px;
  margin: 0 auto 16px;
}
.cta-final > .container > p {
  color: rgba(255,255,255,.72);
  font-size: 1.06rem;
  max-width: 600px;
  margin: 0 auto 40px;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-trust {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 0.84rem;
}
.cta-trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ============================================================
   GUARANTEE STRIP
   ============================================================ */
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.guarantee-item {
  text-align: center;
  padding: 36px 28px;
}
.guarantee-icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.guarantee-item h3 { font-size: 1rem; margin-bottom: 8px; }
.guarantee-item p  { font-size: 0.88rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #060f26;
  color: rgba(255,255,255,.55);
  padding: 72px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand { max-width: 290px; }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.footer-tagline { font-size: 0.88rem; line-height: 1.72; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.soc-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.07);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 0.88rem;
  transition: all var(--ease);
}
.soc-link:hover { background: var(--blue); color: #fff; }
.soc-link[aria-label="LinkedIn"] { background: #0077b5; color: #fff; }
.soc-link[aria-label="LinkedIn"]:hover { background: #0077b5; color: #fff; filter: brightness(1.15); transform: translateY(-2px); }
.footer-col h4 { color: #fff; font-size: 0.92rem; margin-bottom: 22px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links .btn { align-self: flex-start; }
.foot-link {
  font-size: 0.84rem;
  color: rgba(255,255,255,.48);
  transition: color var(--ease);
}
.foot-link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom a { color: rgba(255,255,255,.4); transition: color var(--ease); }
.footer-bottom a:hover { color: #fff; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  padding: 150px 0 80px;
  text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 16px; }
.page-hero .sub { color: rgba(255,255,255,.72); font-size: 1.1rem; max-width: 620px; margin: 0 auto; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,.48);
}
.breadcrumb a { color: rgba(255,255,255,.58); transition: color var(--ease); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { color: rgba(255,255,255,.28); }

/* ============================================================
   DIENSTEN PAGE — service detail blocks
   ============================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-visual {
  background: linear-gradient(135deg, var(--blue-pale), rgba(74,124,246,.1));
  border-radius: var(--r-xl);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.service-visual .big-icon { font-size: 5rem; }
.service-number {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 6rem;
  font-weight: 900;
  color: rgba(24,72,204,.08);
  line-height: 1;
  pointer-events: none;
}
.service-text .tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.service-text h2 { margin-bottom: 16px; }
.service-text p  { margin-bottom: 22px; }
.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text);
}
.service-list-item::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-price-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-pale);
  border: 1px solid rgba(196,154,10,.25);
  border-radius: var(--r-md);
  padding: 10px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
}
.service-price-tag span { color: var(--gold); }

/* ============================================================
   PORTFOLIO PAGE
   ============================================================ */
.port-filter {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all var(--ease);
  background: var(--white);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* Portfolio cards full detail */
.port-detail {
  padding: 24px;
  border-radius: var(--r-xl);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.port-detail:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.port-detail-img {
  height: 210px;
  border-radius: var(--r-lg);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.port-detail-body .sector-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 3px 12px;
  border-radius: 100px;
  display: inline-block;
  margin-bottom: 10px;
}
.port-detail-body h3 { font-size: 1.12rem; margin-bottom: 8px; }
.port-detail-body .desc { font-size: 0.88rem; margin-bottom: 16px; }
.port-kpi-row {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.port-kpi {
  flex: 1;
  min-width: 80px;
  background: var(--off-white);
  border-radius: var(--r-md);
  padding: 10px 14px;
  text-align: center;
}
.port-kpi .kpi-val { font-size: 1.15rem; font-weight: 800; color: var(--blue); }
.port-kpi .kpi-key { font-size: 0.72rem; color: var(--muted); margin-top: 2px; }

/* ============================================================
   WERKWIJZE PAGE — timeline
   ============================================================ */
.timeline {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding-left: 56px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: linear-gradient(to bottom, var(--blue), var(--gold));
  border-radius: 2px;
}
.tl-step {
  position: relative;
  padding: 0 0 52px 36px;
}
.tl-step:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute;
  left: -36px;
  top: 4px;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.9rem;
  border: 3px solid var(--white);
  box-shadow: 0 3px 12px rgba(24,72,204,.28);
}
.tl-step h3 { font-size: 1.2rem; margin-bottom: 10px; }
.tl-step p  { font-size: 0.94rem; }
.tl-step .tl-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--blue);
  background: var(--blue-pale);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.tl-details {
  margin-top: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--blue);
}
.tl-details ul { display: flex; flex-direction: column; gap: 8px; margin-top: 0; }
.tl-details li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.tl-details li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ============================================================
   OVER ONS PAGE
   ============================================================ */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(145deg, var(--blue-pale), rgba(74,124,246,.1));
  border-radius: var(--r-2xl);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  position: relative;
  overflow: hidden;
}
.about-visual .big-num {
  position: absolute;
  bottom: -20px;
  right: 20px;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(24,72,204,.07);
  line-height: 1;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.value-card {
  padding: 36px;
  background: var(--white);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
  transition: all var(--ease);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1rem; margin-bottom: 8px; }
.value-card p  { font-size: 0.88rem; }
.mission-box {
  background: linear-gradient(145deg, var(--navy), var(--blue));
  border-radius: var(--r-2xl);
  padding: 64px;
  text-align: center;
}
.mission-box h2 { color: #fff; margin-bottom: 20px; }
.mission-box p  { color: rgba(255,255,255,.76); font-size: 1.05rem; max-width: 680px; margin: 0 auto; line-height: 1.76; }
.mission-box .gold-txt { color: var(--gold-light); font-weight: 700; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 56px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h2 { margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.94rem; margin-bottom: 32px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group textarea,
.form-group select {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--ease);
  background: var(--white);
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--blue); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; }

.contact-info-col { padding-top: 8px; }
.contact-info-col h3 { margin-bottom: 28px; font-size: 1.4rem; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.c-icon {
  width: 46px; height: 46px;
  background: var(--blue-pale);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.c-info-lbl { font-size: 0.78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; margin-bottom: 4px; }
.c-info-val { font-weight: 600; color: var(--text); font-size: 0.95rem; }
.contact-trust-box {
  background: linear-gradient(135deg, var(--gold-pale), #fff);
  border: 1px solid rgba(196,154,10,.25);
  border-radius: var(--r-xl);
  padding: 28px;
  margin-top: 36px;
}
.contact-trust-box h4 { margin-bottom: 16px; font-size: 1rem; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 10px;
}
.trust-item::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* Contact page FAQ sidebar */
.contact-faq { margin-top: 48px; }
.contact-faq h3 { margin-bottom: 24px; font-size: 1.2rem; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }
.fade-up:nth-child(5) { transition-delay: .4s; }
.fade-up:nth-child(6) { transition-delay: .5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { max-width: 100%; }
  .hero-ctas, .hero-stats { justify-content: center; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-intro-grid { grid-template-columns: 1fr; }
  .service-block { grid-template-columns: 1fr; gap: 36px; }
  .service-block.reverse { direction: ltr; }
  .ps-grid { grid-template-columns: 1fr; }
  .werkwijze-3 { grid-template-columns: 1fr; }
  .werkwijze-3::before { display: none; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .scan-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar-inner { gap: 20px; }
  .voor-wie-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-label { display: none; }
  .diensten-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .scan-box { padding: 48px 28px; }
  .mission-box { padding: 44px 28px; }
  .timeline { padding-left: 40px; }
  .tl-dot { left: -28px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cta-trust { flex-direction: column; gap: 12px; }
  .section { padding: 64px 0; }
}
@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .voor-wie-grid { grid-template-columns: 1fr 1fr; }
  .port-filter { display: none; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.gold-text { color: var(--gold); }
.white-text { color: #fff !important; }
.white-sub  { color: rgba(255,255,255,.7) !important; }
.divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  margin: 20px auto 36px;
}

/* ============================================================
   WHATSAPP INTEGRATION & WIDGET
   ============================================================ */
:root {
  --wa-green: #25D366;
  --wa-green-hover: #128C7E;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.12);
}

/* Floating Widget Container */
.wa-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  font-family: 'Inter', sans-serif;
}

/* Floating Bubble */
.wa-bubble {
  background: var(--wa-green);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s;
  outline: none;
  animation: wa-pulse 2s infinite;
}

.wa-bubble:hover {
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
  background: #20ba5a;
}

/* Pulse animation for bubble */
@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 76px;
  background: rgba(11, 31, 75, 0.95);
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wa-bubble:hover .wa-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Chat Card */
.wa-card {
  position: absolute;
  bottom: 74px;
  right: 0;
  width: 340px;
  border-radius: 16px;
  background: rgba(11, 31, 75, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--glass-border);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transform-origin: bottom right;
  transition: opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), visibility 0.3s;
  overflow: hidden;
}

.wa-card.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Card Header */
.wa-card-header {
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(24, 72, 204, 0.05));
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.wa-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(24, 72, 204, 0.2);
}

.wa-header-info {
  flex-grow: 1;
}

.wa-name {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
}

.wa-status {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wa-green);
  display: inline-block;
  box-shadow: 0 0 6px var(--wa-green);
}

.wa-close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
  outline: none;
}

.wa-close:hover {
  color: #fff;
}

/* Card Body */
.wa-card-body {
  padding: 20px;
  background: rgba(11, 31, 75, 0.4);
}

.wa-message-bubble {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 12px 14px;
  border-radius: 0 12px 12px 12px;
  max-width: 90%;
  animation: wa-bubble-slide 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes wa-bubble-slide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-message-meta {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 4px;
}

.wa-message-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.5;
}

/* Card Footer */
.wa-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: center;
}

.wa-btn {
  background: var(--wa-green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.2s ease;
}

.wa-btn:hover {
  background: #20ba5a;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.35);
  color: #fff;
}

/* Header WhatsApp link */
.nav-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: var(--wa-green);
  border: 1px solid rgba(37, 211, 102, 0.25);
  transition: all var(--ease);
  margin-left: 8px;
}

.nav-whatsapp:hover {
  background: var(--wa-green);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.35);
}

.nav-whatsapp svg {
  display: block;
}

/* Mobile Nav WhatsApp Button */
.mobile-nav-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: var(--wa-green) !important;
  color: #fff !important;
  font-weight: 700;
  border-radius: 8px;
  margin-top: 24px;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.3);
  transition: all var(--ease);
}

.mobile-nav-whatsapp:hover {
  background: #20ba5a !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .wa-widget {
    bottom: 20px;
    right: 20px;
  }
  .wa-card {
    width: 300px;
    bottom: 68px;
  }
}

