/* WellMatched – gedeelde huisstijl */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0a1f3c;
  --navy2:  #112347;
  --orange: #f5a623;
  --orange-dark: #d4881a;
  --white:  #ffffff;
  --light:  #f4f6f9;
  --gray:   #6b7a8d;
  --border: #dde3ec;
  --teal:   #1a9090;
  --teal-dark: #0e6e6e;
  --teal-light: #e6f4f4;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --shadow: 0 4px 20px rgba(10,31,60,0.08);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', 'Segoe UI', system-ui, sans-serif; background: var(--light); color: var(--navy); line-height: 1.6; }

/* ── Navbar ── */
.navbar {
  background: var(--navy);
  height: 68px; padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.navbar-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.navbar-logo { height: 38px; width: auto; display: block; }
.navbar-badge {
  font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 9px; border-radius: 14px;
  background: rgba(245,166,35,0.15); color: var(--orange);
  border: 1px solid rgba(245,166,35,0.35);
  white-space: nowrap;
}
.navbar-badge.teal {
  background: rgba(26,144,144,0.18); color: var(--teal);
  border-color: rgba(26,144,144,0.4);
}
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-link { font-size: 13px; color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.15s; }
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-btn {
  background: var(--orange); color: var(--navy);
  font-size: 12.5px; font-weight: 600;
  padding: 8px 18px; border-radius: var(--radius-sm);
  border: none; cursor: pointer; text-decoration: none;
  transition: opacity 0.15s;
}
.nav-btn:hover { opacity: 0.88; }
.nav-switch {
  font-size: 11.5px; color: rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 13px; border-radius: 20px; cursor: pointer;
  text-decoration: none; transition: background 0.15s;
}
.nav-switch:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); }

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 5rem 2rem 6rem;
  text-align: center; position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; bottom: -50px; left: 0; right: 0; height: 100px;
  background: var(--light); clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-tag {
  display: inline-block; position: relative; z-index: 1;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 20px; margin-bottom: 1.25rem;
  background: rgba(245,166,35,0.12); color: var(--orange);
  border: 1px solid rgba(245,166,35,0.25);
}
.hero h1 {
  position: relative; z-index: 1;
  font-size: 38px; font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 1rem;
  max-width: 580px; margin-left: auto; margin-right: auto;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero p {
  position: relative; z-index: 1;
  font-size: 15.5px; color: rgba(255,255,255,0.58);
  max-width: 500px; margin: 0 auto 2rem; line-height: 1.7;
}
.breadcrumb { font-size: 12px; color: rgba(255,255,255,0.3); margin-bottom: 1rem; position: relative; z-index:1; }
.breadcrumb span { color: var(--orange); }

/* ── Buttons ── */
.btn-primary {
  background: var(--orange); color: var(--navy);
  font-size: 14px; font-weight: 600;
  padding: 12px 26px; border-radius: var(--radius-md);
  border: none; cursor: pointer; display: inline-block; text-decoration: none;
  transition: transform 0.18s cubic-bezier(0.2, 0.9, 0.3, 1.3), box-shadow 0.2s;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 14px rgba(245,166,35,0.25);
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-100%); transition: transform 0.6s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(245,166,35,0.4); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.7);
  font-size: 14px; font-weight: 500;
  padding: 12px 26px; border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer;
  display: inline-block; text-decoration: none; transition: background 0.15s;
}
.btn-outline:hover { background: rgba(255,255,255,0.08); }
.btn-teal {
  background: var(--teal); color: var(--white);
  font-size: 14px; font-weight: 600;
  padding: 12px 26px; border-radius: var(--radius-md);
  border: none; cursor: pointer; display: inline-block; text-decoration: none;
  transition: opacity 0.15s;
}
.btn-teal:hover { opacity: 0.88; }

/* ── Content wrapper ── */
.content { max-width: 720px; margin: 0 auto; padding: 3.5rem 1.5rem 2rem; }
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.section-title { font-size: 22px; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.section-desc { font-size: 14px; color: var(--gray); line-height: 1.7; max-width: 580px; }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: border-color 0.25s, transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1.2), box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(245,166,35,0.06), transparent 40%);
  opacity: 0; transition: opacity 0.3s; pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(10,31,60,0.12); }

/* ── Checklist ── */
.checklist { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 10px; }
.checklist li {
  font-size: 13px; color: var(--gray); line-height: 1.55;
  display: flex; align-items: flex-start; gap: 9px;
}
.checklist li::before {
  content: ''; width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0; margin-top: 1px;
  background: rgba(245,166,35,0.12);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='8' viewBox='0 0 8 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.5 4l2 2 3-3' stroke='%23d4881a' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}

/* ── CTA bar ── */
.cta-bar {
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  margin-bottom: 3rem;
}
.cta-bar h3 { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 5px; }
.cta-bar p { font-size: 13px; color: rgba(255,255,255,0.5); max-width: 360px; }
.cta-btns { display: flex; gap: 10px; flex-shrink: 0; }

/* ── Footer ── */
footer {
  background: var(--navy);
  padding: 2.5rem 2.5rem 1.5rem;
}
.footer-grid {
  max-width: 720px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem;
  padding-bottom: 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 1.25rem;
}
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand-row img { height: 36px; width: auto; display: block; }
.footer-brand-row .footer-badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 3px 8px; border-radius: 12px;
  background: rgba(245,166,35,0.13); color: var(--orange);
  border: 1px solid rgba(245,166,35,0.3);
}
.footer-brand-row .footer-badge.teal {
  background: rgba(26,144,144,0.15); color: var(--teal); border-color: rgba(26,144,144,0.35);
}
.footer-brand img { height: 32px; margin-bottom: 10px; } /* legacy fallback */
.footer-brand p { font-size: 12.5px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 240px; }
.footer-col h4 { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.footer-col a { display: block; font-size: 12.5px; color: rgba(255,255,255,0.4); text-decoration: none; margin-bottom: 6px; transition: color 0.15s; }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { max-width: 720px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,0.25); }
.footer-bottom span { color: var(--orange); opacity: 0.7; }

/* ── Animaties (fade-in bij scroll) ── */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── Stats ── */
.stat-row { display: grid; gap: 12px; margin-bottom: 2.5rem; }
.stat-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
.stat-row.cols-4 { grid-template-columns: repeat(4, 1fr); }
.stat { background: var(--navy); border-radius: var(--radius-md); padding: 1.25rem 1rem; text-align: center; }
.stat-num { font-size: 26px; font-weight: 700; color: var(--orange); margin-bottom: 4px; }
.stat-label { font-size: 11.5px; color: rgba(255,255,255,0.45); line-height: 1.4; }

/* ── Hero variants & decoraties ── */
.hero.hero-compact { padding: 3.5rem 2rem 5rem; }

/* Animated grid (pant traag voor diepte-effect) */
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridPan 28s linear infinite;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}
@keyframes gridPan {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

/* Drijvende orbs (kleurvlekken) */
.hero-deco {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.hero-deco::before, .hero-deco::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(60px); opacity: 0.55;
}
.hero-deco::before {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  top: -10%; left: 5%;
  animation: orbDrift1 18s ease-in-out infinite;
}
.hero-deco::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  bottom: -15%; right: 5%;
  animation: orbDrift2 22s ease-in-out infinite;
}
@keyframes orbDrift1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  33%      { transform: translate(60px, 40px) scale(1.15); opacity: 0.7; }
  66%      { transform: translate(-30px, 80px) scale(0.95); opacity: 0.4; }
}
@keyframes orbDrift2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.45; }
  40%      { transform: translate(-70px, -50px) scale(1.1); opacity: 0.65; }
  75%      { transform: translate(30px, -90px) scale(0.9); opacity: 0.35; }
}

/* Network: zwevende dots verbonden met lijnen (matcht infra-thema) */
.hero-network {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  overflow: hidden;
}
.hero-network::before, .hero-network::after {
  content: ''; position: absolute; width: 100%; height: 100%;
  background-image:
    radial-gradient(circle 1.5px at 12% 22%, rgba(245,166,35,0.55), transparent 100%),
    radial-gradient(circle 1.5px at 28% 65%, rgba(255,255,255,0.35), transparent 100%),
    radial-gradient(circle 1.5px at 45% 18%, rgba(26,144,144,0.5), transparent 100%),
    radial-gradient(circle 1.5px at 60% 75%, rgba(245,166,35,0.45), transparent 100%),
    radial-gradient(circle 1.5px at 78% 35%, rgba(255,255,255,0.3), transparent 100%),
    radial-gradient(circle 1.5px at 88% 70%, rgba(26,144,144,0.55), transparent 100%),
    radial-gradient(circle 1.5px at 35% 88%, rgba(245,166,35,0.4), transparent 100%),
    radial-gradient(circle 1.5px at 70% 12%, rgba(255,255,255,0.4), transparent 100%);
  animation: dotsPulse 6s ease-in-out infinite;
}
.hero-network::after {
  animation-delay: -3s;
  transform: scale(1.05);
  opacity: 0.6;
}
@keyframes dotsPulse {
  0%, 100% { opacity: 0.35; }
  50%      { opacity: 0.9; }
}

/* SVG-lijnen variant: subtiele bewegende verbindingen */
.hero-lines {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.18;
}
.hero-lines svg { width: 100%; height: 100%; }
.hero-lines .line {
  stroke: var(--orange); stroke-width: 1; fill: none;
  stroke-dasharray: 4 6;
  animation: dashFlow 6s linear infinite;
}
.hero-lines .line.teal { stroke: var(--teal); animation-duration: 8s; animation-delay: -2s; }
@keyframes dashFlow {
  to { stroke-dashoffset: -100; }
}

/* Animated underline accent (voor titles met em) */
.hero h1 em {
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--orange); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  animation: underlineGrow 1.2s 0.4s ease-out forwards;
}
@keyframes underlineGrow {
  to { transform: scaleX(1); }
}

/* Hero h1 + subtitle: fade-up bij laden */
.hero h1, .hero p, .hero .hero-tag, .hero .hero-btns, .hero .breadcrumb {
  animation: heroFadeUp 0.7s ease-out backwards;
}
.hero .breadcrumb { animation-delay: 0.05s; }
.hero .hero-tag { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.3s; }
.hero .hero-btns { animation-delay: 0.45s; }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .hero-grid, .hero-deco::before, .hero-deco::after,
  .hero-network::before, .hero-network::after,
  .hero-lines .line, .hero h1 em::after,
  .hero h1, .hero p, .hero .hero-tag, .hero .hero-btns, .hero .breadcrumb {
    animation: none !important;
  }
}

/* ── Section divider (kleine accentstreep boven titels) ── */
.divider-line {
  width: 36px; height: 3px; background: var(--orange); border-radius: 2px;
  margin-bottom: 14px;
}

/* ── Logobalk (klantenstrook) ── */
.logo-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1.5rem;
  align-items: center; padding: 1.5rem 0;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.logo-strip .logo-item {
  font-size: 12.5px; font-weight: 600; color: var(--gray);
  text-align: center; letter-spacing: 0.04em;
  opacity: 0.7; transition: opacity 0.2s;
}
.logo-strip .logo-item:hover { opacity: 1; color: var(--navy); }

/* ── Proces / tijdlijn ── */
.timeline { position: relative; padding-left: 2.25rem; margin-bottom: 3rem; }
.timeline::before {
  content: ''; position: absolute; left: 11px; top: 8px; bottom: 8px;
  width: 2px; background: linear-gradient(to bottom, var(--orange), rgba(245,166,35,0.15));
}
.timeline-step { position: relative; padding-bottom: 1.5rem; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-step::before {
  content: ''; position: absolute; left: -2.25rem; top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--orange);
}
.timeline-step::after {
  content: attr(data-step); position: absolute; left: -2.25rem; top: 4px;
  width: 24px; height: 24px; font-size: 11px; font-weight: 700; color: var(--orange);
  display: flex; align-items: center; justify-content: center;
}
.timeline-step h4 { font-size: 14.5px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.timeline-step p { font-size: 13px; color: var(--gray); line-height: 1.6; }

/* ── Testimonial ── */
.testimonial {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem 1.75rem; margin-bottom: 3rem;
  position: relative;
}
.testimonial::before {
  content: '"'; position: absolute; top: -10px; left: 18px;
  font-size: 70px; font-family: Georgia, serif; color: var(--orange); line-height: 1;
}
.testimonial blockquote {
  font-size: 16px; line-height: 1.65; color: var(--navy);
  font-weight: 500; margin: 0 0 1.25rem; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--navy); color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700;
}
.testimonial-meta strong { display: block; font-size: 13.5px; color: var(--navy); }
.testimonial-meta span { font-size: 12px; color: var(--gray); }

/* ── FAQ accordeon ── */
.faq-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 3rem; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--orange); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1rem 1.25rem;
  font-size: 14px; font-weight: 600; color: var(--navy);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; width: 18px; height: 18px; flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7l4 4 4-4' stroke='%23f5a623' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item .faq-body {
  padding: 0 1.25rem 1.1rem; font-size: 13px; color: var(--gray); line-height: 1.7;
}

/* ── Sectortegels ── */
.sector-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 3rem; }
.sector-card {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  text-decoration: none; color: inherit;
}
.sector-card:hover { border-color: var(--orange); transform: translateY(-3px); box-shadow: var(--shadow); }
.sector-card .sector-accent {
  position: absolute; top: 0; right: 0; width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), transparent);
  border-bottom-left-radius: 100%;
}
.sector-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(10,31,60,0.05);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.sector-card h3 { font-size: 15.5px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.sector-card p { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 12px; }
.sector-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.sector-tag {
  font-size: 11px; font-weight: 500; padding: 3px 9px; border-radius: 12px;
  background: rgba(10,31,60,0.05); color: var(--gray);
}

/* ── Project filter & cards ── */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 1.75rem;
  padding-bottom: 1.25rem; border-bottom: 1px solid var(--border);
}
.filter-btn {
  background: var(--white); border: 1px solid var(--border);
  font-size: 12.5px; font-weight: 500; color: var(--gray);
  padding: 7px 14px; border-radius: 20px; cursor: pointer;
  transition: all 0.15s;
}
.filter-btn:hover { border-color: var(--orange); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.project-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 3rem; }
.project-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.project-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.project-card.hidden { display: none; }
.project-thumb {
  height: 130px; background: linear-gradient(135deg, var(--navy), var(--navy2));
  position: relative; overflow: hidden;
}
.project-thumb::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(245,166,35,0.04) 0, rgba(245,166,35,0.04) 2px, transparent 2px, transparent 14px);
}
.project-thumb-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  opacity: 0.9;
}
.project-thumb-cat {
  position: absolute; top: 12px; left: 12px;
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 12px;
  background: rgba(245,166,35,0.16); color: var(--orange);
  border: 1px solid rgba(245,166,35,0.3);
  backdrop-filter: blur(4px);
}
.project-body { padding: 1.25rem 1.25rem 1.4rem; }
.project-body h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.project-meta { font-size: 11.5px; color: var(--gray); margin-bottom: 8px; letter-spacing: 0.03em; }
.project-body p { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* ── Certificeringen ── */
.cert-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  margin-bottom: 3rem;
}
.cert-badge {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1rem 0.9rem;
  text-align: center; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
}
.cert-badge:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.cert-badge .cert-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(245,166,35,0.12); margin: 0 auto 8px;
  display: flex; align-items: center; justify-content: center;
}
.cert-badge .cert-name { font-size: 13.5px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.cert-badge .cert-desc { font-size: 11px; color: var(--gray); line-height: 1.45; }

/* Uitgebreide certificering-detail-kaarten (voor over-ons) */
.cert-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 3rem; }
.cert-detail {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.5rem 1.5rem;
  display: flex; gap: 1.25rem; align-items: flex-start;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.cert-detail:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.cert-detail .cd-badge {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(245,166,35,0.05));
  border: 1px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 9.5px; font-weight: 700; color: var(--orange-dark);
  letter-spacing: 0.04em; text-align: center; line-height: 1.15;
  padding: 6px 4px;
}
.cert-detail .cd-body h4 { font-size: 14.5px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.cert-detail .cd-body .cd-meta { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--orange-dark); margin-bottom: 8px; }
.cert-detail .cd-body p { font-size: 12.5px; color: var(--gray); line-height: 1.6; }

/* Footer cert-strook */
.footer-certs {
  max-width: 720px; margin: 0 auto;
  padding: 1.1rem 0 0;
  display: flex; align-items: center; justify-content: center; gap: 1.25rem;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 1.25rem;
}
.footer-certs .fc-label {
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.footer-certs .fc-cert {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.55);
  padding: 4px 10px; border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  letter-spacing: 0.03em;
}

@media (max-width: 720px) {
  .cert-row { grid-template-columns: repeat(2, 1fr); }
  .cert-detail-grid { grid-template-columns: 1fr; }
  .footer-certs { gap: 8px; }
}

/* ── USP-strook ── */
.usp-strip {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--navy); border-radius: var(--radius-lg);
  padding: 1.5rem; gap: 1px; margin-bottom: 3rem;
  overflow: hidden;
}
.usp-item {
  padding: 1rem 1.25rem; display: flex; gap: 12px; align-items: flex-start;
  background: var(--navy);
}
.usp-item + .usp-item { box-shadow: -1px 0 0 rgba(255,255,255,0.06); }
.usp-icon {
  width: 38px; height: 38px; flex-shrink: 0; border-radius: 9px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
  display: flex; align-items: center; justify-content: center;
}
.usp-item h4 { font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.usp-item p { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.5; }

/* ── Mobile breakpoints ── */
@media (max-width: 720px) {
  .hero h1 { font-size: 28px; }
  .hero p { font-size: 14px; }
  .navbar { padding: 0 1rem; height: 60px; }
  .navbar-logo { height: 30px; }
  .navbar-badge { font-size: 9px; padding: 3px 7px; letter-spacing: 0.1em; }
  .nav-links { gap: 0.75rem; }
  .stat-row.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .sector-grid, .project-grid { grid-template-columns: 1fr; }
  .logo-strip { grid-template-columns: repeat(3, 1fr); }
  .usp-strip { grid-template-columns: 1fr; }
  .usp-item + .usp-item { box-shadow: 0 -1px 0 rgba(255,255,255,0.06); }
  .cta-bar { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .footer-bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
}

/* Smartphones: nav-links inklappen via toggle */
@media (max-width: 560px) {
  .navbar { padding: 0 0.85rem; }
  .navbar-logo { height: 26px; }
  .navbar-badge { display: none; }

  /* Hamburger toggle button */
  .menu-toggle {
    display: flex; flex-direction: column; gap: 4px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    width: 36px; height: 36px; border-radius: 8px; padding: 0;
    align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0;
  }
  .menu-toggle span {
    display: block; width: 16px; height: 2px; background: var(--white); border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .menu-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle.open span:nth-child(2) { opacity: 0; }
  .menu-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  /* Verberg nav-links default; toon als dropdown bij .open */
  .nav-links {
    position: absolute; top: 60px; left: 0; right: 0;
    background: var(--navy); border-top: 1px solid rgba(255,255,255,0.08);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: 0.75rem 1rem 1rem;
    transform: translateY(-10px); opacity: 0; pointer-events: none;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-links.open {
    transform: translateY(0); opacity: 1; pointer-events: auto;
    box-shadow: 0 4px 14px rgba(0,0,0,0.2);
  }
  .nav-links a { padding: 10px 4px; font-size: 13.5px; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a:last-child { border-bottom: none; }
  .nav-btn { margin-top: 6px; text-align: center; }
  .nav-switch { margin-bottom: 6px; }
}

@media (min-width: 561px) {
  .menu-toggle { display: none !important; }
}
