/* ============================================================
   BASE RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #f2f2f2;
  background: #000;
  font-size: 16px;
}

/* ============================================================
   HEADER
   ============================================================ */
header { background: #050505; }

/* Two-class selector wins over single .container or .header-top */
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-bottom: 3px solid #ffd500;
  padding: 0.75rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo {
  width: 110px;
  height: 110px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid rgba(255,213,0,0.4);
  background: #000;
  display: block;
}
.brand-name {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  color: #ffd500;
  line-height: 1.1;
}
.brand-tagline {
  display: block;
  font-size: 0.76rem;
  color: #aaa;
  margin-top: 3px;
}
.logo-text h1 { margin: 0; font-size: 1.55rem; color: #ffd500; line-height: 1.1; }
.logo-text p  { margin: 0.2rem 0 0; font-size: 0.76rem; color: #aaa; }

.header-contact {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-shrink: 0;
}
.main-nav { display: none; }

/* ============================================================
   NAVIGATION — hamburger on mobile, horizontal on desktop
   ============================================================ */
.site-nav {
  background: #111;
  position: relative;
  border-bottom: 2px solid #1a1a1a;
}

/* hamburger button — hidden ≥721px */
.nav-hamburger {
  display: none;
  width: 100%;
  background: none;
  border: none;
  color: #ffd500;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  padding: 0.7rem 1rem;
  text-align: left;
  cursor: pointer;
  gap: 0.6rem;
  align-items: center;
  letter-spacing: 0.01em;
}

.site-nav-inner {
  display: flex;
  gap: 0;
  padding: 0.35rem 0.6rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.site-nav-inner::-webkit-scrollbar { display: none; }

.site-nav a {
  color: #bbb;
  text-decoration: none;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.site-nav a:hover,
.site-nav a:focus { background: rgba(255,213,0,0.12); color: #ffd500; }

.nav-actie {
  background: rgba(255,140,0,0.12) !important;
  color: #ffaa00 !important;
  border: 1px solid rgba(255,140,0,0.45) !important;
}
.nav-actie:hover { background: rgba(255,140,0,0.25) !important; color: #ffcc00 !important; }

.nav-cta {
  position: sticky;
  right: 0;
  margin-left: 0.5rem;
  flex-shrink: 0;
  background: #ffd500 !important;
  color: #000 !important;
  font-weight: 800 !important;
  padding: 0.4rem 1.1rem !important;
  border-radius: 6px !important;
  align-self: center;
  display: flex;
  align-items: center;
  box-shadow: -6px 0 10px #111;
}
.nav-cta:hover { filter: brightness(1.06); color: #000 !important; }

/* ============================================================
   STICKY BOTTOM BAR — mobile only
   ============================================================ */
.mobile-cta-bar { display: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  background: #ffd500;
  color: #000 !important;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: filter 0.15s;
  line-height: 1.3;
}
.btn:hover, .btn:focus { filter: brightness(1.06); color: #000 !important; }
.btn-big { padding: 1rem 1.75rem; font-size: 1.05rem; }

.btn-wa {
  display: inline-block;
  background: #25d366;
  color: #fff !important;
  padding: 0.75rem 1.1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: filter 0.15s;
  line-height: 1.3;
}
.btn-wa:hover { filter: brightness(1.08); color: #fff !important; }
.btn-wa.btn-big { padding: 1rem 1.75rem; font-size: 1.05rem; }

.btn-submit {
  display: block;
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 800;
  background: #ffd500;
  color: #000;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 0.75rem;
  font-family: inherit;
  transition: filter 0.15s;
  letter-spacing: 0.02em;
}
.btn-submit:hover, .btn-submit:active { filter: brightness(1.06); }

/* ============================================================
   HERO — always reset all section defaults
   ============================================================ */
section.hero,
.hero {
  position: relative;
  color: #fff;
  background: #060606;
  border: none !important;
  border-radius: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
.hero.hero-home {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('home-hero-boring.jpeg');
  background-size: cover;
  background-position: center 40%;
}
.hero.hero-betonboren {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)), url('betonboren-hero.jpeg');
  background-size: cover;
  background-position: center 40%;
}
.hero.hero-afzuigkap {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)), url('afzuigkap-hero.jpg');
  background-size: cover;
  background-position: center 25%;
}
.hero.hero-ventilatie {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)), url('ventilatie-hero.jpg');
  background-size: cover;
  background-position: center center;
}
.hero.hero-zaagwerk {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)), url('zaagwerk-08.jpeg');
  background-size: cover;
  background-position: center center;
}
.hero.hero-sloopwerk {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)), url('sloopwerk-02.jpeg');
  background-size: cover;
  background-position: center 30%;
}
.hero.hero-kruipluiken {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)), url('kruipluiken-05.jpeg');
  background-size: cover;
  background-position: center center;
}
.hero.hero-sleuven {
  background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.45)), url('sleuven-frezen-13.jpeg');
  background-size: cover;
  background-position: center center;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2rem;
  align-items: start;
  padding: 3.5rem 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: border-box;
}

.hero-text h1 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  color: #fff;
  margin: 0 0 0.85rem;
  line-height: 1.18;
}
.hero-text > p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 1.25rem;
  max-width: 500px;
}
.hero-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.hero-trust {
  color: #ffd500;
  font-weight: 700;
  font-size: 0.92rem;
  margin: 0.75rem 0 0;
}

/* Hero zonder formulier — volledige breedte */
.hero-inner.hero-full {
  grid-template-columns: 1fr;
  max-width: 700px;
  padding: 4rem 1.25rem;
}
.hero-inner.hero-full .hero-text > p { max-width: 100%; }

/* Uitgelichte foto onder de hero */
.featured-photo {
  width: 100%;
  max-height: 420px;
  overflow: hidden;
  display: block;
}
.featured-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* hero form card */
.hero-form-card {
  background: rgba(6,6,6,0.97);
  border: 2px solid #ffd500;
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
.hero-form-card h2 {
  color: #ffd500;
  margin: 0 0 0.25rem;
  font-size: 1.2rem;
  line-height: 1.2;
}
.form-sub {
  color: #666;
  font-size: 0.82rem;
  margin: 0 0 1rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #ffd500;
  color: #000;
  padding: 0.6rem 1rem;
  font-weight: 700;
}
.trust-inner {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.87rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ============================================================
   CONTAINER  (side padding only — sections own top/bottom)
   ============================================================ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Fix: when .container and .header-top are on same element,
   restore the vertical padding that .container zeroes out */
.header-top {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

/* Main content area */
main:not(.thankyou-page) {
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
section:not(.hero):not(.thankyou-card) {
  background: #101010;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  margin-bottom: 1rem;
}
section:not(.hero):not(.thankyou-card) h2 {
  color: #ffd500;
  margin-top: 0;
  font-size: 1.2rem;
}
section:not(.hero):not(.thankyou-card) h3 {
  color: #ffd500;
  margin-top: 1.25rem;
  font-size: 1rem;
}
section:not(.hero):not(.thankyou-card) p,
section:not(.hero):not(.thankyou-card) li { color: #ddd; }
section:not(.hero):not(.thankyou-card) summary { color: #ddd; }

ul, ol { margin-left: 1.25rem; padding-left: 0; }
li { margin-bottom: 0.4rem; }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-cards {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.85rem;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 1rem;
}
.card {
  background: #101010;
  border: 1px solid #252525;
  border-radius: 10px;
  padding: 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
  display: block;
}
.card:hover { border-color: #ffd500; }
.card-img {
  display: block;
  width: calc(100% + 2.5rem);
  height: 155px;
  object-fit: cover;
  margin: -1.25rem -1.25rem 1rem -1.25rem;
  border-radius: 9px 9px 0 0;
}
.card-icon { font-size: 1.75rem; margin-bottom: 0.4rem; display: block; }
.card h3 { color: #ffd500; margin: 0 0 0.4rem; font-size: 1rem; }
.card p { color: #bbb; font-size: 0.87rem; margin: 0 0 0.65rem; line-height: 1.5; }
.card-price {
  display: inline-block;
  background: rgba(255,213,0,0.08);
  border: 1px solid rgba(255,213,0,0.6);
  color: #ffd500;
  border-radius: 20px;
  padding: 0.18rem 0.6rem;
  font-size: 0.8rem;
  font-weight: 700;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
}
.gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 2px solid rgba(255,213,0,0.6);
  border-radius: 8px;
  display: block;
}

/* ============================================================
   ACTIE BANNER
   ============================================================ */
.actie-banner {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  background: linear-gradient(135deg, #130e00, #231900) !important;
  border: 2px solid #ffd500 !important;
}
.actie-banner h2 { color: #ffd500; margin: 0 0 0.3rem; font-size: 1.15rem; }
.actie-banner p  { color: #ddd; margin: 0; font-size: 0.92rem; }
.actie-text { flex: 1; min-width: 200px; }

/* ============================================================
   STEPS
   ============================================================ */
.steps-section h2 { color: #ffd500; margin-top: 0; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 1rem;
}
.step {
  text-align: center;
  padding: 1.25rem 0.85rem;
  background: #0c0c0c;
  border-radius: 10px;
  border: 1px solid #1e1e1e;
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: #ffd500;
  color: #000;
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
}
.step h3 { color: #ffd500; margin: 0.25rem 0 0.3rem; font-size: 0.95rem; }
.step p  { color: #bbb; font-size: 0.85rem; margin: 0; }

/* ============================================================
   FORMS
   ============================================================ */
form { margin-top: 0.5rem; }

label {
  display: block;
  margin-bottom: 0.85rem;
  color: #bbb;
  font-size: 0.875rem;
  font-weight: 600;
}

/* All text inputs */
input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  display: block;
  width: 100%;
  padding: 0.8rem 0.85rem;
  margin-top: 0.3rem;
  background: #0c0c0c;
  border: 1.5px solid #333;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 16px;          /* prevents iOS zoom — must be exactly 16px */
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color 0.15s;
  -webkit-appearance: none;
  appearance: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #ffd500;
  box-shadow: 0 0 0 2px rgba(255,213,0,0.15);
}
textarea { resize: vertical; min-height: 70px; }

/* SELECT — native picker on mobile + custom arrow indicator */
select {
  display: block;
  width: 100%;
  padding: 0.8rem 2.6rem 0.8rem 0.85rem;
  margin-top: 0.3rem;
  background-color: #0c0c0c;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23ffd500' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  border: 1.5px solid #333;
  border-radius: 8px;
  color: #f0f0f0;
  font-size: 16px;          /* prevents iOS zoom */
  font-family: inherit;
  cursor: pointer;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select option { background: #111; color: #f0f0f0; }

/* Quick form mid-page */
.quick-form {
  background: linear-gradient(135deg, #130e00, #231900) !important;
  border: 2px solid #ffd500 !important;
}
.quick-form h2 { color: #ffd500; margin: 0 0 0.75rem; font-size: 1.1rem; }
.quick-form form {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0;
}
.quick-form label { margin: 0; flex: 1; min-width: 160px; }
.quick-form .btn-submit { width: auto; margin-top: 0; padding: 0.82rem 1.4rem; }

/* ============================================================
   PRICING
   ============================================================ */
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.9rem;
}
.price-card {
  background: #131313;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 1.25rem;
}
.price-card h3 {
  color: #ffd500;
  margin: 0 0 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
}
.price-card .price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid #1e1e1e;
  font-size: 0.88rem;
  color: #bbb;
}
.price-card .price-row:last-child { border-bottom: none; }
.price-card .price-row span:last-child {
  color: #ffd500;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.chk { color: #22c55e; font-weight: 700; }
.crs { color: #ef4444; font-weight: 700; }

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 8px;
}
.price-scroll {
  max-height: 360px;
  overflow-y: auto;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #0e0e0e;
}
.price-table th,
.price-table td {
  border: 1px solid #222;
  padding: 0.5rem 0.65rem;
  text-align: left;
  font-size: 0.88rem;
  white-space: nowrap;
}
.price-table th { background: #181818; color: #ffd500; font-weight: 700; }
.price-table td { color: #bbb; }
.price-table tr:nth-child(even) td { background: #0a0a0a; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #080808;
  color: #666;
  border-top: 3px solid #ffd500;
  margin-top: 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
  padding: 1.75rem 1rem 1rem;
  max-width: 1100px;
  margin: 0 auto;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-links a { color: #555; font-size: 0.87rem; text-decoration: none; }
.footer-links a:hover { color: #ffd500; }
.footer-copy {
  grid-column: 1 / -1;
  color: #3a3a3a;
  font-size: 0.8rem;
  margin: 0.75rem 0 0;
  border-top: 1px solid #161616;
  padding-top: 0.75rem;
}

/* ============================================================
   LINKS / MISC
   ============================================================ */
a { color: #ffd500; text-decoration: none; }
a:hover { color: #fff; }

/* FAQ */
details { margin-bottom: 0; border-bottom: 1px solid #1e1e1e; }
details:last-child { border-bottom: none; }
details summary {
  cursor: pointer;
  font-weight: 600;
  color: #eee;
  padding: 0.85rem 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  -webkit-user-select: none;
  user-select: none;
  font-size: 0.95rem;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  color: #ffd500;
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 0.75rem;
  line-height: 1;
}
details[open] summary::after { content: '−'; }
details p { margin: 0 0 1rem; color: #bbb; font-size: 0.92rem; padding-right: 1rem; }

/* Payment badges */
.pay-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}
.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,213,0,0.07);
  border: 1px solid rgba(255,213,0,0.45);
  color: #ffd500;
  border-radius: 20px;
  padding: 0.3rem 0.7rem;
  font-size: 0.82rem;
  font-weight: 700;
}

/* ============================================================
   THANK-YOU PAGE
   ============================================================ */
.thankyou-page {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem calc(80px + 2rem); /* bottom: above sticky bar */
  background:
    linear-gradient(130deg, rgba(0,0,0,0.75), rgba(0,0,0,0.5)),
    url('betonboren-project-07.jpeg') center/cover no-repeat;
}
.thankyou-card {
  width: min(680px, 100%);
  text-align: center;
  background: rgba(8,8,8,0.95);
  border: 1px solid rgba(255,213,0,0.4);
  border-radius: 14px;
  padding: 2.5rem 1.75rem;
  /* reset any section styles */
  margin: 0 !important;
}
.thankyou-card h1 { margin-top: 0; color: #ffd500; font-size: 1.75rem; }
.thankyou-card p { color: #ccc; }

/* ============================================================
   TABLET  ≤860px
   ============================================================ */
@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }
  .hero-form-card { max-width: 560px; }
  .steps { grid-template-columns: 1fr; gap: 0.7rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.25rem; }
  .actie-banner { flex-direction: column; }
  .actie-banner .btn,
  .actie-banner .btn-wa { width: 100%; text-align: center; display: block; }
  .nav-cta { margin-left: 0; }
}

/* ============================================================
   MOBILE  ≤720px — hamburger + sticky bar
   ============================================================ */
@media (max-width: 720px) {

  /* body padding for sticky bottom bar */
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

  /* --- HAMBURGER NAV --- */
  .nav-hamburger { display: flex; }

  .site-nav-inner {
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.5rem 0.75rem 0.85rem;
    gap: 0;
    overflow: visible;
    max-width: 100%;
  }
  .site-nav.nav-open .site-nav-inner { display: flex; }

  .site-nav a {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    border-radius: 8px;
    border-bottom: 1px solid #1a1a1a;
    white-space: normal;
    display: block;
    color: #ddd;
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 0.4rem;
    text-align: center !important;
    display: block !important;
    border-bottom: none !important;
  }
  .nav-actie { text-align: left; }

  /* --- STICKY BOTTOM BAR --- */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #050505;
    border-top: 2px solid #ffd500;
    padding: 0.55rem 0.75rem;
    padding-bottom: max(0.55rem, env(safe-area-inset-bottom, 0px));
    gap: 0.6rem;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.6);
  }
  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    line-height: 1.2;
  }
  .mobile-cta-bar .mcta-call { background: #ffd500; color: #000; }
  .mobile-cta-bar .mcta-wa  { background: #25d366; color: #fff; }

  /* --- HEADER --- */
  .header-top { padding: 0.6rem 0.85rem; }
  .site-logo { width: 90px; height: 90px; }
  .brand-name { font-size: 1.45rem; }
  .brand-tagline { display: block; font-size: 0.68rem; }
  .header-contact .btn { display: none; }
  .header-contact .btn-wa { font-size: 0.85rem; padding: 0.5rem 0.8rem; border-radius: 6px; }

  /* --- HERO --- */
  .hero-inner { padding: 1.75rem 1rem 1.5rem; gap: 1.25rem; }
  .hero-text h1 { font-size: 1.6rem; }
  .hero-text > p { font-size: 0.93rem; margin-bottom: 1rem; }
  /* keep hero-actions visible but compact */
  .hero-actions { gap: 0.5rem; }
  .hero-actions .btn,
  .hero-actions .btn-wa {
    flex: 1;
    text-align: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.92rem;
  }
  .hero-form-card {
    padding: 1.25rem 1rem;
    border-radius: 10px;
    max-width: 100%;
  }
  .hero-form-card h2 { font-size: 1.1rem; }

  /* hide pay-badges in hero (save vertical space) */
  .hero-text .pay-badges { display: none; }

  /* --- TRUST BAR --- */
  .trust-bar { padding: 0.5rem 0.75rem; overflow-x: visible; white-space: normal; }
  .trust-inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    font-size: 0.78rem;
    gap: 0.35rem 1rem;
    display: flex;
    min-width: unset;
    width: 100%;
  }

  /* --- SECTIONS --- */
  section:not(.hero):not(.thankyou-card) {
    padding: 1rem 0.9rem;
    border-radius: 8px;
  }
  section:not(.hero):not(.thankyou-card) h2 { font-size: 1.05rem; }
  section:not(.hero):not(.thankyou-card) h3 { font-size: 0.95rem; margin-top: 1rem; }

  /* --- SERVICE CARDS — 2 columns --- */
  .service-cards { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
  .card { padding: 0.9rem 0.75rem; }
  .card-icon { font-size: 1.4rem; }
  .card h3 { font-size: 0.88rem; }
  .card p { font-size: 0.8rem; margin-bottom: 0.5rem; }
  .card-price { font-size: 0.74rem; }

  /* --- GALLERY — 2 columns --- */
  .gallery { grid-template-columns: 1fr 1fr; gap: 0.5rem; }

  /* --- STEPS — horizontal (number + text side by side) --- */
  .steps { grid-template-columns: 1fr; gap: 0.6rem; }
  .step {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    text-align: left;
    padding: 0.9rem 1rem;
  }
  .step-num { flex-shrink: 0; width: 38px; height: 38px; font-size: 1.1rem; margin: 0; }
  .step-text { flex: 1; }
  .step h3 { margin: 0 0 0.15rem; font-size: 0.92rem; }
  .step p  { font-size: 0.84rem; margin: 0; }

  /* --- PRICE GRID — 1 column --- */
  .price-grid { grid-template-columns: 1fr; }
  .price-card .price-row { font-size: 0.85rem; }
  .price-table th,
  .price-table td { font-size: 0.82rem; padding: 0.4rem 0.55rem; }

  /* --- QUICK FORM --- */
  .quick-form form { flex-direction: column; }
  .quick-form label { min-width: 100%; }
  .quick-form .btn-submit { width: 100%; }

  /* --- ACTIE BANNER --- */
  .actie-banner {
    text-align: center;
    padding: 1.1rem 0.9rem !important;
  }
  .actie-banner h2 { font-size: 1rem; }
  .actie-banner p { font-size: 0.87rem; }

  /* --- PAY BADGES --- */
  .pay-badges { gap: 0.4rem; }
  .pay-badge { font-size: 0.78rem; padding: 0.28rem 0.6rem; }

  /* --- FOOTER --- */
  .footer-inner { padding: 1.25rem 0.85rem 0.85rem; gap: 1rem; }
  .footer-links { flex-direction: row; flex-wrap: wrap; gap: 0.4rem 0.85rem; }
  .footer-copy { font-size: 0.76rem; }

  /* --- FORMS --- */
  label { font-size: 0.85rem; margin-bottom: 0.7rem; }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea,
  select { padding: 0.75rem 0.8rem; }
  select { padding-right: 2.4rem; }
  .btn-submit { padding: 1rem; font-size: 1rem; }

  /* --- MAIN SPACING --- */
  main:not(.thankyou-page) { padding-top: 1rem; padding-bottom: 2.5rem; }
}

/* --- TAG LINKS (werkgebied badges) --- */
.tag-link {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background: rgba(196,160,80,0.12);
  border: 1px solid rgba(196,160,80,0.4);
  border-radius: 999px;
  color: var(--gold, #c4a050);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.tag-link:hover {
  background: rgba(196,160,80,0.25);
  border-color: var(--gold, #c4a050);
}

/* ============================================================
   VERY SMALL  ≤400px
   ============================================================ */
@media (max-width: 400px) {
  .service-cards { grid-template-columns: 1fr; }
  .hero-text h1 { font-size: 1.4rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn,
  .hero-actions .btn-wa { width: 100%; padding: 0.85rem; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .trust-inner { font-size: 0.74rem; gap: 0.3rem 0.75rem; }
}
