/* =====================================================
   REGIOLABEL — Main Stylesheet
   Brand colors: #12308f (donkerblauw), #1f80f2 (blauw)
   Font: Outfit (Articulat CF equivalent)
   ===================================================== */

/* ---- CSS Variables ---- */
:root {
  --blue-dark:   #12308f;
  --blue-light:  #1f80f2;
  --blue-mid:    #1752ba;
  --black:       #000000;
  --white:       #ffffff;
  --grey-light:  #ededed;
  --grey-mid:    #d1cfcf;
  --grey-text:   #4a4a4a;
  --grey-muted:  #7a7a7a;

  --font-main: 'Outfit', sans-serif;

  --header-h: 76px;
  --radius:   8px;
  --radius-lg: 16px;
  --shadow:   0 4px 24px rgba(18, 48, 143, 0.10);
  --shadow-card: 0 2px 16px rgba(18, 48, 143, 0.08);
  --transition: 0.22s ease;

  --max-w: 1200px;
  --section-pad: 80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utilities ---- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--blue-dark);
  text-align: center;
  margin-bottom: 48px;
}
.center-cta { text-align: center; margin-top: 40px; }

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue-light);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(31, 128, 242, 0.35);
}
.btn-outline {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue-dark);
}
.btn-outline:hover {
  background: var(--blue-dark);
  color: var(--white);
}
.btn-large { padding: 16px 36px; font-size: 1.05rem; }

/* =====================================================
   HEADER
   ===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(18, 48, 143, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(18, 48, 143, 0.10);
}
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}
.logo-link { flex-shrink: 0; }
.logo { height: 38px; width: auto; }

.main-nav { flex: 1; }
.main-nav ul {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.main-nav a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--grey-text);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--blue-dark);
  background: rgba(18, 48, 143, 0.06);
}

.header-cta { flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: calc(100svh);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
.hero-slider {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(18, 48, 143, 0.72) 0%,
    rgba(18, 48, 143, 0.40) 60%,
    rgba(0,0,0,0.15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 680px;
  padding-top: 40px;
  padding-bottom: 80px;
}
.hero-content h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.hero-content h2 {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 28px;
  opacity: 0.92;
}
.hero-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.hero-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.97rem;
  font-weight: 500;
}
.check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--blue-light);
  border-radius: 50%;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.hero-dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.dot.active { background: var(--white); }

/* =====================================================
   DIENSTEN
   ===================================================== */
.diensten {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.diensten-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.dienst-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-light);
  transition: all var(--transition);
}
.dienst-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.dienst-card img {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  object-fit: contain;
}
.dienst-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.dienst-card p {
  font-size: 0.9rem;
  color: var(--grey-muted);
  line-height: 1.5;
}

/* =====================================================
   PROCES
   ===================================================== */
.proces {
  padding: var(--section-pad) 0;
  background: var(--grey-light);
}
.proces-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0 16px;
  align-items: start;
}
.proces-step {
  text-align: center;
  padding: 32px 16px;
}
.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-dark);
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.proces-step h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 10px;
}
.proces-step p {
  font-size: 0.85rem;
  color: var(--grey-muted);
}
.proces-arrow {
  color: var(--blue-light);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  padding-top: 52px;
}

/* =====================================================
   OPNAME INFO
   ===================================================== */
.opname-info {
  padding: var(--section-pad) 0;
}
.opname-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.opname-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.opname-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.opname-text p {
  color: var(--grey-text);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* =====================================================
   MAKELAAR
   ===================================================== */
.makelaar {
  padding: var(--section-pad) 0;
  background: var(--blue-dark);
  color: var(--white);
}
.makelaar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.makelaar-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.makelaar-text p {
  font-size: 1.05rem;
  opacity: 0.88;
  margin-bottom: 32px;
  line-height: 1.6;
}
.makelaar .btn-primary {
  background: var(--white);
  color: var(--blue-dark);
}
.makelaar .btn-primary:hover {
  background: var(--blue-light);
  color: var(--white);
}
.makelaar-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* =====================================================
   REVIEWS
   ===================================================== */
.reviews {
  padding: var(--section-pad) 0;
  background: var(--grey-light);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
}
.review-text {
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.7;
  font-style: italic;
}
.review-text::before { content: '"'; font-size: 1.5rem; color: var(--blue-light); font-style: normal; display: block; margin-bottom: 8px; }
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.review-author img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-light);
}
.review-avatar-placeholder {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-mid);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 0.95rem; color: var(--blue-dark); }
.review-author span { font-size: 0.82rem; color: var(--grey-muted); }

/* =====================================================
   OVER ONS PREVIEW
   ===================================================== */
.over-preview {
  padding: var(--section-pad) 0;
}
.over-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.over-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.over-text h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--blue-light);
  margin-bottom: 20px;
}
.over-text p {
  color: var(--grey-text);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.over-text .btn { margin-top: 12px; }
.over-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* =====================================================
   TEAM
   ===================================================== */
.team {
  padding: 60px 0;
  background: var(--grey-light);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: block;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.team-card h4 {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue-dark);
}
.team-card h4 span {
  display: block;
  font-weight: 400;
  font-size: 0.8rem;
  color: var(--grey-muted);
  margin-top: 2px;
}

/* =====================================================
   SCANNER / LEICA
   ===================================================== */
.scanner {
  padding: var(--section-pad) 0;
}
.scanner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.scanner-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.scanner-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 20px;
  line-height: 1.3;
}
.scanner-text p {
  color: var(--grey-text);
  margin-bottom: 28px;
  line-height: 1.7;
}

/* =====================================================
   FAQ
   ===================================================== */
.faq {
  padding: var(--section-pad) 0;
  background: var(--white);
}
.faq-sub {
  text-align: center;
  margin-top: -32px;
  margin-bottom: 48px;
  font-size: 0.9rem;
  color: var(--blue-light);
}
.faq-sub a { color: var(--blue-light); text-decoration: underline; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--grey-light);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--blue-dark);
  text-align: left;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(18,48,143,0.03); }
.faq-icon {
  font-size: 1.4rem;
  color: var(--blue-light);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq-answer.open {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--grey-text);
  line-height: 1.7;
}

/* =====================================================
   FOOTER
   ===================================================== */
.site-footer {
  background: var(--blue-dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 0.88rem;
  opacity: 0.75;
  line-height: 1.65;
  margin-bottom: 16px;
}
.footer-social {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--blue-light);
  border: 1px solid var(--blue-light);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
  transition: var(--transition);
}
.footer-social:hover { background: var(--blue-light); color: var(--white); }
.isso-logo { height: 32px; filter: brightness(0) invert(1); opacity: 0.7; margin-top: 8px; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--blue-light); }
.footer-contact-info {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-info p, .footer-contact-info a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* =====================================================
   STICKY BAR (mobile)
   ===================================================== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--grey-light);
  padding: 10px 16px;
  gap: 10px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-bar .btn { flex: 1; text-align: center; }

/* =====================================================
   PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue-mid));
  color: var(--white);
  padding: calc(var(--header-h) + 60px) 0 70px;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.page-hero p {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
}

/* =====================================================
   CONTACT PAGE
   ===================================================== */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  font-size: 0.93rem;
}
.contact-item-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(18,48,143,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { display: block; color: var(--blue-dark); margin-bottom: 2px; }
.contact-item a { color: var(--grey-text); }
.contact-item a:hover { color: var(--blue-light); }

.contact-form-wrap {
  background: var(--grey-light);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.contact-form-wrap h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-mid);
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.93rem;
  color: var(--black);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(31,128,242,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 8px; }

/* =====================================================
   OVER ONS PAGE
   ===================================================== */
.over-section { padding: var(--section-pad) 0; }
.over-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 64px;
}
.over-content-grid img {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.over-content-text h2 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 600;
  color: var(--blue-dark);
  margin-bottom: 16px;
}
.over-content-text p {
  color: var(--grey-text);
  margin-bottom: 14px;
  line-height: 1.7;
  font-size: 0.95rem;
}
.usp-list { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--grey-text);
}
.usp-item strong { color: var(--blue-dark); }
.usp-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
  flex-shrink: 0;
  margin-top: 7px;
}

/* =====================================================
   TEAM PAGE
   ===================================================== */
.team-section { padding: var(--section-pad) 0; background: var(--grey-light); }
.team-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.team-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: 160px 1fr;
}
.team-full-card img {
  width: 160px;
  height: 160px;
  object-fit: cover;
}
.team-full-info {
  padding: 24px;
}
.team-full-info h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.team-full-info .role {
  font-size: 0.82rem;
  color: var(--blue-light);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
.team-full-info p {
  font-size: 0.88rem;
  color: var(--grey-muted);
  line-height: 1.6;
}

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .diensten-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  /* Nav */
  .main-nav {
    display: none;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--grey-light);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .hamburger { display: flex; }
  .header-cta { display: none; }

  /* Hero */
  .hero-content { padding-bottom: 100px; }

  /* Grids → single col */
  .opname-inner,
  .makelaar-inner,
  .scanner-inner,
  .over-inner,
  .contact-grid,
  .over-content-grid { grid-template-columns: 1fr; gap: 32px; }

  .makelaar-image { order: -1; }
  .scanner-image { order: -1; }

  /* Proces */
  .proces-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .proces-arrow { display: none; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .team-full-grid { grid-template-columns: 1fr; }
  .team-full-card { grid-template-columns: 120px 1fr; }
  .team-full-card img { width: 120px; height: 120px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Sticky bar */
  .sticky-bar { display: flex; }
  body { padding-bottom: 70px; }
}

@media (max-width: 480px) {
  .diensten-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
}

/* ============================================================
   3-button header CTA + mobile hamburger behavior
   ============================================================ */
.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.nav-cta-mobile { display: none !important; }

@media (max-width: 768px) {
  .header-cta { display: none !important; }
  .nav-cta-mobile { display: block !important; margin-top: 12px; }
  .nav-cta-mobile a.btn {
    display: block !important;
    text-align: center;
    width: 100%;
    padding: 12px 18px !important;
    font-size: 0.92rem !important;
  }
  .nav-cta-mobile + .nav-cta-mobile { margin-top: 8px; }
}

