:root {
  --black: #050505;
  --black-2: #101010;
  --black-3: #181818;
  --white: #ffffff;
  --paper: #f7f7f7;
  --paper-2: #efefef;
  --text: #141414;
  --muted: #666666;
  --muted-light: #cfcfcf;
  --red: #d90000;
  --red-dark: #ad0000;
  --red-soft: #fff0f0;
  --line: rgba(255,255,255,.14);
  --line-dark: rgba(0,0,0,.1);
  --shadow: 0 28px 80px rgba(0,0,0,.20);
  --radius: 26px;
  --radius-sm: 16px;
  --container: min(1160px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, dl, dd { margin-top: 0; }
.container { width: var(--container); margin: 0 auto; }
.skip-link {
  position: absolute;
  top: -60px;
  left: 16px;
  z-index: 1000;
  background: var(--red);
  color: var(--white);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 900;
}
.skip-link:focus { top: 16px; }

.topbar {
  background: var(--red);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.topbar-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.topbar a { text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(5,5,5,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  min-width: max-content;
}
.brand img {
  width: 72px;
  height: 52px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.18);
}
.brand strong {
  display: block;
  font-size: 22px;
  line-height: 1;
  letter-spacing: -.04em;
}
.brand small {
  color: var(--muted-light);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 11px;
}
.menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
}
.menu a { opacity: .88; }
.menu a:hover { opacity: 1; color: var(--white); }
.nav-button {
  background: var(--red);
  opacity: 1 !important;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(217,0,0,.32);
}
.menu-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: var(--white);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  background: var(--black);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,5,5,.94) 0%, rgba(5,5,5,.78) 48%, rgba(5,5,5,.45) 100%),
    linear-gradient(180deg, rgba(5,5,5,.14), rgba(5,5,5,.86)),
    url("assets/werkplaats-apk.jpg") center / cover no-repeat;
  transform: scale(1.02);
}
.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  top: -180px;
  background: radial-gradient(circle, rgba(217,0,0,.45), transparent 66%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  align-items: center;
  gap: 48px;
  padding: 80px 0;
}
.eyebrow, .section-label {
  margin-bottom: 12px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 1000;
  font-size: 13px;
}
h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(42px, 6.8vw, 78px);
  line-height: .95;
  letter-spacing: -.07em;
}
h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.18;
  letter-spacing: -.025em;
}
.lead {
  max-width: 650px;
  color: #e8e8e8;
  font-size: clamp(18px, 2vw, 21px);
  margin-bottom: 30px;
}
.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font: inherit;
  font-weight: 950;
  cursor: pointer;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.primary { background: var(--red); color: var(--white); box-shadow: 0 18px 40px rgba(217,0,0,.34); }
.primary:hover { background: var(--red-dark); }
.secondary { background: var(--white); color: var(--black); }
.light { background: var(--white); color: var(--red); }
.dark-button { background: var(--black); color: var(--white); }
.full { width: 100%; }
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.trust-pills span {
  border: 1px solid rgba(255,255,255,.17);
  background: rgba(255,255,255,.08);
  border-radius: 999px;
  padding: 9px 13px;
  color: #eeeeee;
  font-size: 14px;
  font-weight: 800;
}
.quick-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}
.quick-card img {
  width: 100%;
  max-height: 250px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.16);
}
.status-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--white);
}
.status-dot {
  width: 11px;
  height: 11px;
  background: #2de36c;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(45,227,108,.12);
}
dl div {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.14);
}
dt { color: #ffffff; font-weight: 900; }
dd { margin-left: 0; color: #e2e2e2; }
.quick-card a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }

.quick-actions {
  background: var(--black);
  color: var(--white);
  padding: 0 0 24px;
}
.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  transform: translateY(-24px);
  margin-bottom: -24px;
}
.quick-actions a {
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(180deg, #181818, #0d0d0d);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0,0,0,.28);
}
.quick-actions strong { display: block; font-size: 18px; margin-bottom: 4px; }
.quick-actions span { color: var(--muted-light); }

.section { padding: 88px 0; }
.split, .contact-grid, .workshop-grid, .faq-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.rich-text {
  font-size: 18px;
  color: var(--muted);
}
.dark { background: var(--black); color: var(--white); }
.muted { background: var(--paper); }
.section-head { max-width: 790px; margin-bottom: 34px; }
.section-head p:not(.section-label) { color: var(--muted); font-size: 18px; }
.dark .section-head p:not(.section-label) { color: var(--muted-light); }
.center { text-align: center; margin-inline: auto; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 246px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.045));
}
.service-card p { color: var(--muted-light); margin-bottom: 0; }
.featured-service {
  grid-column: span 2;
  background:
    linear-gradient(135deg, rgba(217,0,0,.26), rgba(255,255,255,.05)),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
}
.service-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--red);
  color: var(--white);
  font-weight: 1000;
  letter-spacing: -.02em;
}

.price-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}
.price-highlight {
  border: 1px solid var(--line-dark);
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: 0 18px 60px rgba(0,0,0,.07);
}
.price-highlight span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
}
.price-highlight h3 {
  color: var(--red);
  font-size: 56px;
  line-height: 1;
  margin: 10px 0;
  letter-spacing: -.06em;
}
.price-highlight p { margin-bottom: 0; color: var(--muted); font-weight: 800; }
.price-highlight p small { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.main-price {
  background: var(--black);
  color: var(--white);
  transform: translateY(-8px);
  border-color: var(--black);
}
.main-price p { color: #dedede; }
.table-card {
  overflow-x: auto;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  box-shadow: 0 16px 60px rgba(0,0,0,.07);
  background: var(--white);
}
table { width: 100%; min-width: 780px; border-collapse: collapse; }
th, td { padding: 17px 18px; text-align: left; border-bottom: 1px solid #ededed; }
th { background: var(--black); color: var(--white); }
tr:last-child td { border-bottom: 0; }
td:nth-child(2) { color: var(--red); font-weight: 1000; white-space: nowrap; }
.small-note { color: var(--muted); margin-top: 14px; font-size: 14px; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.steps-grid article {
  background: var(--white);
  border: 1px solid #e6e6e6;
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 14px 44px rgba(0,0,0,.05);
}
.steps-grid span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 1000;
}
.steps-grid p { color: var(--muted); margin-bottom: 0; }

.workshop-grid { align-items: center; }
.workshop-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #e7e7e7;
}
.workshop-content p { color: var(--muted); font-size: 17px; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid #eeeeee;
  font-weight: 800;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 1000;
}
.gallery-section { background: var(--paper); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid #e7e7e7;
  box-shadow: 0 18px 60px rgba(0,0,0,.07);
}
.gallery-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.gallery-card figcaption {
  padding: 16px 18px 18px;
  font-weight: 800;
  color: var(--text);
}

.info-band { padding: 54px 0; }
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.info-grid article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  background: rgba(255,255,255,.05);
}
.info-grid p { color: var(--muted-light); margin-bottom: 0; }

.contact-info > p:not(.section-label) { color: var(--muted); font-size: 17px; }
.contact-card, .appointment-form, .todo-card, .map-placeholder {
  border: 1px solid #e6e6e6;
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 16px 62px rgba(0,0,0,.06);
}
.contact-card { margin-top: 26px; }
.contact-card p { margin-bottom: 8px; color: var(--muted); }
.contact-card a { color: var(--red); font-weight: 900; text-decoration: underline; text-underline-offset: 3px; }
.map-placeholder {
  margin-top: 16px;
  min-height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(217,0,0,.08), rgba(0,0,0,.03)),
    var(--white);
  color: var(--muted);
}
.map-placeholder strong { color: var(--text); display: block; font-size: 20px; }
.appointment-form {
  display: grid;
  gap: 16px;
}
.appointment-form h3 { margin-bottom: 0; }
label { display: grid; gap: 7px; font-weight: 900; }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8d8d8;
  border-radius: 14px;
  padding: 14px 15px;
  background: var(--white);
  font: inherit;
  color: var(--text);
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus {
  outline: 3px solid rgba(217,0,0,.16);
  border-color: var(--red);
}
.form-note { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.secondary-outline {
  background: var(--white);
  color: var(--red);
  border: 1px solid rgba(217,0,0,.22);
  box-shadow: none;
}
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.contact-buttons .button {
  min-height: 46px;
  padding: 12px 16px;
  font-size: 14px;
}
.business-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 42px;
  align-items: start;
}
.business-grid > div > p:not(.section-label) {
  color: var(--muted);
  font-size: 17px;
}
.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.details-grid article {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 14px 44px rgba(0,0,0,.05);
}
.details-grid p {
  color: var(--muted);
  margin-bottom: 0;
}
.details-grid a {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid #e4e4e4;
  border-radius: 18px;
  padding: 18px 20px;
  margin-bottom: 12px;
}
summary { cursor: pointer; font-weight: 1000; }
details p { margin: 14px 0 0; color: var(--muted); }
.cta-section { padding: 0 0 88px; background: var(--paper); }
.cta-card {
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  box-shadow: 0 24px 70px rgba(217,0,0,.22);
}
.cta-card .section-label { color: #fff; opacity: .8; }
.cta-card h2 { margin-bottom: 8px; }
.cta-card p { margin-bottom: 0; color: #ffe4e4; }
.todo-section { padding-top: 0; }
.todo-card { background: var(--black); color: var(--white); }
.todo-card .section-label { color: var(--red); }
.todo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.todo-grid ul { margin: 0; padding-left: 20px; color: #e5e5e5; }
.todo-grid li { margin: 8px 0; }

.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr .8fr;
  gap: 30px;
  margin-bottom: 36px;
}
.footer-grid img {
  width: 170px;
  border-radius: 16px;
  margin-bottom: 16px;
}
.footer-grid p, .footer-grid a { color: #cfcfcf; margin: 6px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #aaa;
  font-size: 14px;
}
.footer-bottom a { color: #ddd; }
.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  background: #20c063;
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 1000;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 120;
  width: min(520px, calc(100% - 32px));
  background: var(--black);
  color: var(--white);
  border-left: 5px solid var(--red);
  padding: 17px 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translate(-50%, 12px);
  pointer-events: none;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

@media (max-width: 1040px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 880px) {
  .topbar-inner { justify-content: center; text-align: center; flex-direction: column; padding: 8px 0; }
  .menu-toggle { display: inline-flex; }
  .menu {
    position: fixed;
    top: 124px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 22px;
    background: #111;
    border: 1px solid rgba(255,255,255,.14);
    box-shadow: var(--shadow);
  }
  .menu.open { display: flex; }
  .menu a { padding: 13px 10px; }
  .nav-button { text-align: center; margin-top: 10px; }
  .hero-grid, .split, .contact-grid, .workshop-grid, .faq-grid, .cta-card, .business-grid, .details-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; padding: 64px 0; }
  .quick-actions-grid, .price-highlight-grid, .info-grid, .todo-grid, .gallery-grid { grid-template-columns: 1fr; }
  .main-price { transform: none; }
  .cta-actions { align-items: stretch; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 24px, 1160px); }
  .nav { min-height: 78px; }
  .menu { top: 116px; }
  .brand img { width: 58px; height: 44px; }
  .brand strong { font-size: 19px; }
  .brand small { font-size: 10px; }
  .section { padding: 66px 0; }
  .hero-grid { padding: 48px 0 58px; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  .button { width: 100%; }
  .quick-card, .contact-card, .appointment-form, .todo-card, .cta-card { padding: 22px; }
  .service-grid, .steps-grid, .footer-grid { grid-template-columns: 1fr; }
  .featured-service { grid-column: auto; }
  .floating-whatsapp { left: 14px; right: 14px; text-align: center; }
  .toast { bottom: 76px; }
}

/* Extra duidelijke belknop */
.call-button {
  background: #ffffff;
  color: #050505;
  border: 3px solid #d90000;
  box-shadow: 0 18px 48px rgba(217,0,0,.42);
  font-size: 17px;
  letter-spacing: .01em;
}
.call-button:hover {
  background: #d90000;
  color: #ffffff;
  transform: translateY(-2px) scale(1.02);
}
.cta-call {
  min-width: 240px;
}

.price-highlight h3 {
  white-space: nowrap;
}
