/* ═══════════════════════════════════════════════════════
   Martis Dakonderhoud — 100% eigen design v2
   Alle variabelen, componenten, animaties en responsive
   ═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --red:       #e20514;
  --red-dark:  #b50410;
  --red-light: #fff5f5;
  --dark:      #1a1a2e;
  --ink:       #2d2d44;
  --muted:     #6b7280;
  --border:    #e5e7eb;
  --bg:        #ffffff;
  --bg-soft:   #f9fafb;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 20px rgba(26,26,46,.06);
  --shadow-md: 0 8px 28px rgba(26,26,46,.10);
  --shadow-lg: 0 16px 48px rgba(26,26,46,.13);
  --font:      'Inter', system-ui, -apple-system, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;
  --trans:     .22s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font); color: var(--ink);
  background: var(--bg); line-height: 1.7;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--trans); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }

/* ═══════════════════════════════════════════════════════
   TOPBAR
   ═══════════════════════════════════════════════════════ */
.topbar {
  background: var(--dark); color: #fff;
  padding: 9px 0; font-size: 13px;
  text-align: center; letter-spacing: .2px;
  position: relative; z-index: 110;
}
.topbar a { color: var(--red); font-weight: 600; }
.topbar a:hover { color: #ff6b7a; }
.topbar .pulse {
  display: inline-block; width: 8px; height: 8px;
  background: #22c55e; border-radius: 50%; margin-right: 6px;
  vertical-align: middle; animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .55; transform: scale(.75); }
}

/* ═══════════════════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
  padding: 12px 0;
  transition: box-shadow var(--trans);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(26,26,46,.10); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.logo img { height: 54px; width: auto; transition: opacity var(--trans); }
.logo:hover img { opacity: .85; }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--dark);
  padding: 6px 2px; position: relative; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2.5px; background: var(--red); border-radius: 2px;
  transition: width var(--trans);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--red); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--dark); font-size: 14.5px;
}
.header-tel .ico {
  width: 34px; height: 34px; background: var(--red); border-radius: 50%;
  display: grid; place-items: center; color: #fff; font-size: 13px;
  transition: transform var(--trans), background var(--trans);
}
.header-tel:hover .ico { background: var(--red-dark); transform: scale(1.1); }

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 10px; font-weight: 700;
  font-size: 14px; font-family: var(--font); border: 0;
  cursor: pointer; transition: all var(--trans); text-decoration: none;
  position: relative; overflow: hidden; white-space: nowrap;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.12); opacity: 0; transition: opacity .15s;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(.98); }

.btn-red {
  background: var(--red); color: #fff !important;
  box-shadow: 0 4px 18px rgba(226,5,20,.28);
}
.btn-red:hover {
  background: var(--red-dark); transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(226,5,20,.38); color: #fff !important;
}
.btn-outline {
  background: transparent; color: var(--dark);
  border: 2px solid var(--dark);
}
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-white {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn-white:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn-dark { background: var(--dark); color: #fff; border: 0; }
.btn-dark:hover { background: #0f0f23; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative; padding: 96px 0 108px;
  background: linear-gradient(145deg, #0b0b1e 0%, #1a1a2e 45%, #2d1a1f 100%);
  color: #fff; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(226,5,20,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(91,33,182,.08) 0%, transparent 50%);
}
.hero-particles {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}
.hero-particles span {
  position: absolute; width: 2px; height: 2px;
  background: rgba(255,255,255,.35); border-radius: 50%;
  animation: float-particle 8s ease-in-out infinite;
}
.hero-particles span:nth-child(1) { top: 15%; left: 10%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { top: 55%; left: 25%; animation-delay: 1.5s; width: 3px; height: 3px; }
.hero-particles span:nth-child(3) { top: 30%; left: 60%; animation-delay: 3s; }
.hero-particles span:nth-child(4) { top: 70%; left: 75%; animation-delay: 4.5s; width: 3px; height: 3px; }
.hero-particles span:nth-child(5) { top: 45%; left: 90%; animation-delay: 2s; }
@keyframes float-particle {
  0%,100% { transform: translateY(0) scale(1); opacity: .35; }
  50%      { transform: translateY(-20px) scale(1.5); opacity: .7; }
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px; background: rgba(226,5,20,.12);
  border: 1px solid rgba(226,5,20,.3); border-radius: 99px;
  font-size: 12.5px; font-weight: 600; color: #ff8a94; margin-bottom: 18px;
  animation: badge-glow 3s ease-in-out infinite;
}
@keyframes badge-glow {
  0%,100% { border-color: rgba(226,5,20,.3); }
  50%      { border-color: rgba(226,5,20,.6); }
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900; line-height: 1.08; margin-bottom: 18px; letter-spacing: -.025em;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #e20514 0%, #ff4757 50%, #e20514 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-shift 4s linear infinite;
}
@keyframes gradient-shift {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero .lead { font-size: 17px; color: #b8bdd0; margin-bottom: 28px; max-width: 520px; line-height: 1.7; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.hero-stat {
  padding: 14px 10px; text-align: center;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px; transition: border-color var(--trans), background var(--trans);
}
.hero-stat:hover { background: rgba(255,255,255,.07); border-color: rgba(226,5,20,.3); }
.hero-stat .val {
  font-family: var(--font-head); font-size: 1.35rem;
  font-weight: 900; color: #fff; line-height: 1; display: block;
}
.hero-stat .lbl { font-size: 10.5px; color: #8b90a5; text-transform: uppercase; letter-spacing: .5px; margin-top: 5px; display: block; }
.hero-img { position: relative; }
.hero-img img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 18px; border: 5px solid rgba(255,255,255,.06);
  box-shadow: 0 32px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(255,255,255,.04);
  transition: transform .4s ease, box-shadow .4s ease;
}
.hero-img:hover img { transform: scale(1.015); box-shadow: 0 40px 72px rgba(0,0,0,.45); }
.hero-img-badge {
  position: absolute; bottom: -14px; right: -8px;
  background: var(--red); color: #fff; padding: 12px 20px;
  border-radius: 12px; box-shadow: 0 10px 28px rgba(226,5,20,.4);
  text-align: center; backdrop-filter: blur(4px);
}
.hero-img-badge .lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .6px; opacity: .8; }
.hero-img-badge .val { font-family: var(--font-head); font-size: 1.3rem; font-weight: 900; }

/* ═══════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════ */
.section { padding: 84px 0; }
.section-alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head h2 {
  font-family: var(--font-head); font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; color: var(--dark); margin-bottom: 14px; line-height: 1.12;
  letter-spacing: -.02em;
}
.section-head h2 .accent { color: var(--red); }
.section-head p { color: var(--muted); font-size: 16px; }

/* Section title used in sub-pages */
.section-title {
  font-family: var(--font-head); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900; color: var(--dark); margin-bottom: 14px;
  line-height: 1.12; letter-spacing: -.02em; text-align: center;
}
.section-title .accent { color: var(--red); }

/* ═══════════════════════════════════════════════════════
   SERVICE CARDS
   ═══════════════════════════════════════════════════════ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans);
  display: flex; flex-direction: column; border: 1px solid rgba(0,0,0,.04);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.service-card .img {
  aspect-ratio: 16/10; background-size: cover; background-position: center;
  position: relative; overflow: hidden;
}
.service-card .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(26,26,46,.3));
  opacity: 0; transition: opacity var(--trans);
}
.service-card:hover .img::after { opacity: 1; }
.service-card .body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 13.5px; color: var(--muted); flex: 1; margin-bottom: 16px; line-height: 1.65; }
.service-card .link {
  font-weight: 700; color: var(--red); font-size: 13.5px;
  display: inline-flex; align-items: center; gap: 6px; transition: gap var(--trans);
}
.service-card .link:hover { gap: 10px; }

/* ═══════════════════════════════════════════════════════
   USP CARDS
   ═══════════════════════════════════════════════════════ */
.usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.usp-card {
  padding: 28px 22px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); border-left: 4px solid var(--red);
  transition: transform var(--trans), box-shadow var(--trans);
  position: relative; overflow: hidden;
}
.usp-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle, rgba(226,5,20,.04) 0%, transparent 70%);
}
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.usp-card .icon {
  width: 46px; height: 46px; margin-bottom: 14px;
  background: var(--red-light); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--red); font-size: 22px;
}
.usp-card h4 { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }
.usp-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, #c00412 0%, var(--red) 40%, #8b0000 100%);
  padding: 52px 0; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap; }
.cta-strip h3 { font-family: var(--font-head); font-size: 1.6rem; color: #fff; font-weight: 900; margin-bottom: 6px; }
.cta-strip p { color: rgba(255,255,255,.85); font-size: 15px; }
.cta-strip .btn-white { border-color: rgba(255,255,255,.7); }
.cta-strip .btn-white:hover { background: #fff; color: var(--red) !important; }
.cta-strip .btn-dark { background: var(--dark); color: #fff; border: 0; box-shadow: 0 4px 16px rgba(0,0,0,.25); }

/* Mid-page CTA */
.mid-cta { background: var(--red); padding: 52px 0; text-align: center; position: relative; overflow: hidden; }
.mid-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.08) 0%, transparent 70%);
}
.mid-cta .container { position: relative; z-index: 1; }
.mid-cta h2 { font-family: var(--font-head); font-size: clamp(1.4rem, 3vw, 1.9rem); font-weight: 900; color: #fff; margin-bottom: 8px; }
.mid-cta p { color: rgba(255,255,255,.85); margin-bottom: 22px; font-size: 15px; }
.mid-cta .btn-w {
  background: #fff; color: var(--red) !important;
  padding: 14px 30px; border-radius: var(--radius); font-weight: 700;
  text-decoration: none; display: inline-block; margin: 0 6px 8px;
  transition: all var(--trans); box-shadow: 0 4px 18px rgba(0,0,0,.15);
}
.mid-cta .btn-w:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(0,0,0,.2); }

/* ═══════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════ */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.reviews-grid-5 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-card, .review-card-v1 {
  padding: 26px; background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); border: 1.5px solid var(--border);
  position: relative; transition: transform var(--trans), box-shadow var(--trans);
}
.review-card:hover, .review-card-v1:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-card-v1::before {
  content: '"'; font-size: 56px; font-family: Georgia, serif;
  color: var(--red); line-height: 1; position: absolute;
  top: 10px; left: 14px; opacity: .15; pointer-events: none;
}
.review-card .stars, .review-card-v1 .stars { color: #f59e0b; font-size: 15px; margin-bottom: 10px; letter-spacing: 1px; }
.review-card blockquote, .review-card-v1 blockquote {
  font-size: 13.5px; color: #4b5563; font-style: italic;
  margin-bottom: 14px; line-height: 1.68; padding-left: 4px;
}
.review-card .author, .review-card-v1 .author { font-weight: 700; color: var(--dark); font-size: 13.5px; }
.review-card .loc, .review-card-v1 .loc { font-size: 12px; color: var(--muted); margin-top: 2px; }
.review-card-v1 .src {
  display: inline-block; font-size: 10.5px; font-weight: 700;
  background: #f0fdf4; color: #166534; border-radius: 99px;
  padding: 2px 9px; margin-top: 8px;
}

/* Score bar */
.review-score-bar { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-bottom: 36px; }
.rsb-item {
  text-align: center; background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 22px; min-width: 100px;
  transition: border-color var(--trans), transform var(--trans);
}
.rsb-item:hover { border-color: var(--red); transform: translateY(-2px); }
.rsb-item .num { font-family: var(--font-head); font-size: 1.8rem; font-weight: 900; color: var(--red); line-height: 1; }
.rsb-item .lbl { font-size: 11.5px; color: var(--muted); font-weight: 600; margin-top: 4px; }

/* ═══════════════════════════════════════════════════════
   PROJECTS
   ═══════════════════════════════════════════════════════ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--trans), box-shadow var(--trans);
}
.project-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.project-card .img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.project-card .body { padding: 20px; }
.project-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.project-card .meta { font-size: 12px; color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.project-card p { font-size: 13.5px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   DIENST DETAIL
   ═══════════════════════════════════════════════════════ */
.dienst-hero {
  padding: 64px 0 56px; color: #fff; position: relative; overflow: hidden;
  background: linear-gradient(135deg, #0b0b1e, #1a1a2e);
}
.dienst-hero::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: .15;
  transition: opacity .4s;
}
.dienst-hero .container { position: relative; z-index: 1; }
.dienst-hero h1 {
  font-family: var(--font-head); font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; margin-bottom: 12px; letter-spacing: -.02em;
}
.dienst-hero .sub { font-size: 17px; color: #b8bdd0; max-width: 640px; line-height: 1.65; }
.dienst-hero .accent { color: var(--red); }

.dienst-body { padding: 64px 0; display: grid; grid-template-columns: 2fr 1fr; gap: 52px; }
.dienst-body h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--dark); margin: 24px 0 14px; }
.dienst-body p { margin-bottom: 14px; line-height: 1.75; color: #374151; }
.dienst-body .punten { margin: 16px 0; }
.dienst-body .punten li {
  padding: 11px 0 11px 34px; position: relative;
  border-bottom: 1px solid var(--border); font-size: 14.5px;
}
.dienst-body .punten li:last-child { border-bottom: 0; }
.dienst-body .punten li::before {
  content: '✓'; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; background: var(--red); color: #fff;
  border-radius: 50%; display: grid; place-items: center;
  font-size: 11px; font-weight: 900;
}
.dienst-sidebar {
  background: var(--bg-soft); padding: 28px; border-radius: var(--radius);
  position: sticky; top: 90px; align-self: start;
  border: 1px solid var(--border);
}
.dienst-sidebar h3 { font-family: var(--font-head); font-size: 1.05rem; color: var(--dark); margin-bottom: 16px; font-weight: 800; }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-section { background: var(--bg-soft); padding: 80px 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.faq-item:hover { border-color: rgba(226,5,20,.3); box-shadow: var(--shadow); }
.faq-item.open { border-color: rgba(226,5,20,.4); box-shadow: var(--shadow); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 22px; cursor: pointer;
  font-family: var(--font-head); font-size: .95rem; font-weight: 700; color: var(--dark);
  transition: color var(--trans);
}
.faq-q:hover { color: var(--red); }
.faq-q .icon { font-size: 20px; color: var(--red); transition: transform .3s; flex-shrink: 0; margin-left: 12px; }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: 14.5px; color: var(--muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 800px; padding: 0 22px 20px; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-item.open .faq-q { color: var(--red); }

/* ═══════════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════════ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; padding: 13px 15px; border: 2px solid var(--border);
  border-radius: 10px; font-family: var(--font); font-size: 14.5px;
  transition: border-color var(--trans), box-shadow var(--trans);
  background: #fff; color: var(--ink);
}
.form-grid input:focus, .form-grid textarea:focus, .form-grid select:focus {
  outline: 0; border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(226,5,20,.1);
}
.form-grid label { display: block; font-weight: 600; font-size: 13px; color: var(--dark); margin-bottom: 5px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.site-footer { background: #080c18; color: #8b90a5; padding: 68px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 44px; padding-bottom: 44px; }
.site-footer h4 {
  font-family: var(--font-head); color: #fff; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 18px;
  position: relative; padding-bottom: 10px;
}
.site-footer h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 28px; height: 2px; background: var(--red); border-radius: 2px;
}
.site-footer ul li { padding: 5px 0; }
.site-footer ul a { color: #8b90a5; transition: color var(--trans), padding-left var(--trans); display: inline-block; }
.site-footer ul a:hover { color: var(--red); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 18px 0; font-size: 12px; color: #4b5068;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}

/* ═══════════════════════════════════════════════════════
   MOBILE HAMBURGER + NAV
   ═══════════════════════════════════════════════════════ */
.burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 1.5px solid var(--border); border-radius: 8px;
  padding: 9px; cursor: pointer; transition: border-color var(--trans);
}
.burger:hover { border-color: var(--red); }
.burger span { display: block; width: 20px; height: 2px; background: var(--dark); border-radius: 2px; transition: .28s; }
.burger.open span:nth-child(1),.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2),.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3),.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display: none; position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-top: 1px solid var(--border);
  box-shadow: 0 16px 36px rgba(0,0,0,.12); z-index: 200;
  flex-direction: column; padding: 14px 24px 20px;
}
.mobile-nav.open { display: flex; animation: slideDown .25s ease; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: none; } }
.mobile-nav a {
  padding: 13px 0; font-size: 15px; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--border); transition: color var(--trans), padding-left var(--trans);
}
.mobile-nav a:hover { color: var(--red); padding-left: 6px; }
.mobile-nav a:last-child { border: 0; }

.mob-call {
  display: none; align-items: center; gap: 6px;
  background: var(--red); color: #fff; border-radius: 99px;
  padding: 8px 14px; font-weight: 700; font-size: 13px;
  transition: background var(--trans);
}
.mob-call:hover { background: var(--red-dark); }


/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.breadcrumb { font-size: 12.5px; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--trans); }
.breadcrumb a:hover { color: rgba(255,255,255,.9); }

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0; transform: translateX(-32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }
.reveal-scale {
  opacity: 0; transform: scale(.9);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays */
.stagger > *     { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .08s; }
.stagger > *:nth-child(3) { transition-delay: .16s; }
.stagger > *:nth-child(4) { transition-delay: .24s; }
.stagger > *:nth-child(5) { transition-delay: .32s; }
.stagger > *:nth-child(6) { transition-delay: .40s; }
.stagger > *:nth-child(7) { transition-delay: .48s; }
.stagger > *:nth-child(8) { transition-delay: .56s; }

/* Old fade-up (keep for compatibility) */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.fade-up { animation: fadeUp .55s ease-out backwards; }
.fade-up.d1 { animation-delay: .1s; }
.fade-up.d2 { animation-delay: .22s; }
.fade-up.d3 { animation-delay: .34s; }

/* ═══════════════════════════════════════════════════════
   PROCESS STEPS
   ═══════════════════════════════════════════════════════ */
.step-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--border);
  transition: border-color var(--trans), box-shadow var(--trans), transform var(--trans);
  position: relative;
}
.step-card:hover { border-color: rgba(226,5,20,.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.step-num {
  font-family: var(--font-head); font-size: 2.8rem;
  font-weight: 900; color: var(--red); line-height: 1; margin-bottom: 10px;
}
.step-card h4 { font-family: var(--font-head); font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.step-card p { font-size: 13.5px; color: var(--muted); max-width: 200px; margin: 0 auto; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════
   WERKGEBIED BADGES
   ═══════════════════════════════════════════════════════ */
.city-badges { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.city-badge {
  background: #fff; border: 1.5px solid var(--border); border-radius: 99px;
  padding: 7px 15px; font-size: 13px; font-weight: 600; color: var(--dark);
  transition: all var(--trans); display: inline-block;
}
.city-badge:hover { border-color: var(--red); color: var(--red); background: var(--red-light); transform: translateY(-2px); }
a.city-badge { text-decoration: none; }

/* ═══════════════════════════════════════════════════════
   ABOUT 2-COL LAYOUT
   ═══════════════════════════════════════════════════════ */
.about-2col { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: start; margin-bottom: 52px; }

/* ═══════════════════════════════════════════════════════
   TEAM GRID
   ═══════════════════════════════════════════════════════ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 48px; }
.team-card {
  background: var(--bg-soft); border-radius: var(--radius); padding: 28px 22px;
  text-align: center; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: transform var(--trans), box-shadow var(--trans);
}
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.7rem; font-weight: 800;
  margin: 0 auto 14px; font-family: var(--font-head); color: #fff;
}
.team-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-card .rol { font-size: 13px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   VALUES GRID
   ═══════════════════════════════════════════════════════ */
.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 48px; }
.value-item {
  display: flex; gap: 14px; padding: 18px; align-items: flex-start;
  background: var(--bg-soft); border-radius: var(--radius);
  border: 1px solid var(--border); transition: border-color var(--trans), box-shadow var(--trans);
}
.value-item:hover { border-color: rgba(226,5,20,.25); box-shadow: var(--shadow); }
.value-item .ico { font-size: 1.5rem; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.value-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.value-item p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   SCORES GRID (reviews page)
   ═══════════════════════════════════════════════════════ */
.scores-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 48px; }
.score-card {
  background: var(--bg-soft); border-radius: var(--radius); padding: 28px 20px;
  text-align: center; border: 2px solid var(--border);
  transition: border-color var(--trans), transform var(--trans);
}
.score-card:hover { border-color: rgba(226,5,20,.3); transform: translateY(-2px); }
.score-card .sc-num { font-family: var(--font-head); font-size: 2.6rem; font-weight: 900; line-height: 1; }
.score-card .sc-stars { color: #f59e0b; font-size: 18px; margin: 6px 0; }
.score-card .sc-name { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.score-card .sc-sub { font-size: 12.5px; color: var(--muted); }

/* ═══════════════════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════════════════ */
.trust-bar { background: var(--dark); padding: 14px 0; border-bottom: 2px solid rgba(226,5,20,.3); }
.trust-bar-inner { display: flex; flex-wrap: wrap; gap: 6px 24px; justify-content: center; align-items: center; }
.tb-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; color: #d1d5db; white-space: nowrap; }
.tb-item .tk { color: #22c55e; font-weight: 900; font-size: 14px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════
   STATS STRIP (dark bg, big animated numbers)
   ═══════════════════════════════════════════════════════ */
.stats-strip {
  background: linear-gradient(135deg, #0b0b1e 0%, #1a1a2e 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.stats-strip::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(226,5,20,.09) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 60%, rgba(91,33,182,.06) 0%, transparent 55%);
}
.stats-strip .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item {
  text-align: center; padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: background var(--trans);
}
.stat-item:last-child { border-right: 0; }
.stat-item:hover { background: rgba(255,255,255,.03); }
.stat-item .s-num {
  font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900; color: var(--red); line-height: 1; display: block;
}
.stat-item .s-lbl {
  font-size: 13px; color: #9ca3af; margin-top: 10px;
  text-transform: uppercase; letter-spacing: .6px; font-weight: 600;
}
.stat-item .s-sub { font-size: 11.5px; color: rgba(255,255,255,.3); margin-top: 3px; }
.stats-strip .section-head h2 { color: #fff; }
.stats-strip .section-head p { color: #9ca3af; }

/* ═══════════════════════════════════════════════════════
   FLOATING OFFERTE TAB
   ═══════════════════════════════════════════════════════ */
.float-tab {
  position: fixed; right: 0; top: 50%; transform: translateY(-50%);
  z-index: 8000; display: flex; flex-direction: column; align-items: flex-end;
}
.float-tab a {
  writing-mode: vertical-rl; text-orientation: mixed;
  background: var(--red); color: #fff;
  padding: 18px 10px; font-size: 12px; font-weight: 700;
  border-radius: 10px 0 0 10px; text-decoration: none;
  box-shadow: -4px 0 20px rgba(226,5,20,.35);
  transition: all var(--trans); letter-spacing: .5px;
  display: flex; align-items: center; gap: 6px;
}
.float-tab a:hover {
  background: var(--red-dark); transform: translateX(-3px);
  box-shadow: -7px 0 28px rgba(226,5,20,.5); color: #fff;
}

/* ═══════════════════════════════════════════════════════
   PROJECT PHOTO GALLERY
   ═══════════════════════════════════════════════════════ */
.proj-gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.proj-photo { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.proj-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; display: block; }
.proj-photo:hover img { transform: scale(1.07); }
.proj-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.1) 55%, transparent 100%);
  opacity: 0; transition: opacity .3s ease;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 12px 14px;
}
.proj-photo:hover .proj-photo-overlay { opacity: 1; }
.proj-photo-overlay strong { font-size: 12.5px; font-weight: 700; color: #fff; display: block; }
.proj-photo-overlay small { font-size: 10.5px; color: rgba(255,255,255,.65); margin-top: 2px; display: block; }
.proj-photo-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--red); color: #fff; font-size: 10px; font-weight: 700;
  padding: 3px 9px; border-radius: 99px; text-transform: uppercase; letter-spacing: .4px;
}

/* ═══════════════════════════════════════════════════════
   STEPS GRID
   ═══════════════════════════════════════════════════════ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* connector line between steps */
.steps-grid .step-card { position: relative; }
.steps-grid .step-card:not(:last-child)::after {
  content: '→'; position: absolute; right: -15px; top: 38px;
  font-size: 18px; color: rgba(226,5,20,.4); z-index: 2;
}

/* ═══════════════════════════════════════════════════════
   BADGE PILL / RIBBON
   ═══════════════════════════════════════════════════════ */
.badge-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--red-light); color: var(--red); border-radius: 99px;
  font-size: 11.5px; font-weight: 700; padding: 4px 12px;
}
.badge-pill-green { background: #f0fdf4; color: #166534; }
.badge-pill-dark { background: rgba(26,26,46,.08); color: var(--dark); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-links { gap: 18px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-gallery { grid-template-columns: repeat(3, 1fr); }
  .scores-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .nav-links, .header-cta { display: none; }
  .burger { display: flex; }
  .mob-call { display: inline-flex; }
  .float-tab { display: none; }
  .hero { padding: 60px 0 72px; }
  .hero .container { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero .lead { margin: 0 auto 26px; }
  .hero-cta { justify-content: center; }
  .hero-img { max-width: 380px; margin: 0 auto; }
  .hero-img img { aspect-ratio: 1/1; }
  .hero-img-badge { bottom: -10px; right: auto; left: 50%; transform: translateX(-50%); }
  .hero-stats { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dienst-body { grid-template-columns: 1fr; }
  .dienst-sidebar { position: static; }
  .cta-inner { flex-direction: column; text-align: center; }
  .usp-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child, .stat-item:nth-last-child(2) { border-bottom: 0; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid .step-card:not(:last-child)::after { display: none; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .proj-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .about-2col { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .about-2col { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .stats-strip { padding: 44px 0; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero h1 { font-size: clamp(1.55rem, 7vw, 2.1rem); }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 320px; justify-content: center; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .reviews-grid-5 { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .proj-gallery { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .scores-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .section-head { margin-bottom: 32px; }
  .faq-section { padding: 52px 0; }
  .mid-cta { padding: 40px 0; }
  .mid-cta .btn-w { display: block; margin: 0 0 10px; text-align: center; }
  .trust-bar-inner { gap: 6px 14px; }
  .tb-item { font-size: 11.5px; }
}
@media (max-width: 480px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .proj-gallery { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; }
  .scores-grid { grid-template-columns: 1fr; }
}
@media (max-width: 400px) {
  .container { padding: 0 14px; }
  .hero { padding: 44px 0 54px; }
  .btn { padding: 12px 18px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════
   PRINT / ACCESSIBILITY
   ═══════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-left, .reveal-right, .reveal-scale { opacity: 1 !important; transform: none !important; }
}

@media print {
  .site-header,.topbar,.float-tab,.chat-widget,.btn { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  a { color: inherit !important; text-decoration: underline; }
  img { max-width: 100% !important; }
  .container { max-width: 100% !important; padding: 0 !important; }
}
