/* ==========================================================================
   Beveiligingstechniek Eefting — Huisstijl Stylesheet
   Kleuren:  #182A51 donkerblauw · #0E1D3D marineblauw · #00AEEF cyaan
             #DCEAF7 lichtblauw · #F2F5F8 zacht grijsblauw · #FFFFFF wit
   Font:     Poppins (400, 500, 600, 700)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Kleuren */
  --c-navy-deep: #0E1D3D;
  --c-navy: #182A51;
  --c-navy-soft: #25396A;
  --c-cyan: #00AEEF;
  --c-cyan-dark: #0090C7;
  --c-blue-mid: #7EB5E5;
  --c-blue-light: #DCEAF7;
  --c-bg-soft: #F2F5F8;
  --c-white: #FFFFFF;
  --c-text: #1A2540;
  --c-text-muted: #5C6B85;
  --c-border: #E4EBF3;

  /* Type */
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --pad: 24px;
  --section: 96px;

  /* Effects */
  --shadow-sm: 0 2px 8px rgba(14, 29, 61, 0.06);
  --shadow-md: 0 8px 30px rgba(14, 29, 61, 0.08);
  --shadow-lg: 0 20px 60px rgba(14, 29, 61, 0.12);
  --shadow-cyan: 0 8px 24px rgba(0, 174, 239, 0.25);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
}

/* Reset */
* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ==========================================================================
   Typografie
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.0625rem; font-weight: 600; }

.accent { color: var(--c-cyan); }

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-cyan);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--r-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
}
.btn-primary:hover {
  background: var(--c-navy-deep);
  border-color: var(--c-navy-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(14, 29, 61, 0.25);
}
.btn-cyan {
  background: var(--c-cyan);
  color: var(--c-white);
  border-color: var(--c-cyan);
}
.btn-cyan:hover {
  background: var(--c-cyan-dark);
  border-color: var(--c-cyan-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}
.btn-outline {
  background: transparent;
  color: var(--c-navy);
  border-color: var(--c-border);
}
.btn-outline:hover {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
}
.btn-outline-light {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,0.3);
}
.btn-outline-light:hover {
  background: var(--c-white);
  color: var(--c-navy);
  border-color: var(--c-white);
}
.btn .arrow { transition: var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   Low-poly decoratie patroon
   ========================================================================== */
.poly-bg {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}
.poly-top-right {
  top: 0;
  right: 0;
  width: 360px;
  height: 360px;
}
.poly-bottom-left {
  bottom: 0;
  left: 0;
  width: 320px;
  height: 320px;
}
.poly-mid-right {
  top: 40%;
  right: -80px;
  width: 280px;
  height: 280px;
}

/* ==========================================================================
   Top bar (info bar above header)
   ========================================================================== */
.top-bar {
  background: var(--c-navy-deep);
  color: rgba(255,255,255,0.75);
  font-size: 0.8125rem;
  padding: 8px 0;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-bar a:hover { color: var(--c-cyan); }
.top-bar-info { display: flex; gap: 24px; flex-wrap: wrap; }
.top-bar-info span { display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-navy);
  color: var(--c-white);
  box-shadow: 0 4px 20px rgba(14, 29, 61, 0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--c-white);
}
.logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.logo-shield {
  width: 44px;
  height: 52px;
  flex-shrink: 0;
}
.logo-text {
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.05;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.logo-text .accent { color: var(--c-cyan); display: block; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  color: var(--c-white);
  font-size: 0.9375rem;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-cyan);
  transition: var(--transition);
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--c-cyan); }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--c-white);
  min-width: 260px;
  padding: 10px 0;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 12px;
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-bottom-color: var(--c-white);
  border-top: 0;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 24px;
  color: var(--c-text);
  font-size: 0.9375rem;
}
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--c-bg-soft); color: var(--c-cyan); }

.header-cta {
  background: var(--c-cyan);
  color: var(--c-white) !important;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: var(--transition);
}
.header-cta:hover {
  background: var(--c-cyan-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-cyan);
}
.header-cta::after { display: none !important; }

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--c-white);
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: var(--c-bg-soft);
  overflow: hidden;
  padding: 80px 0 100px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  margin-bottom: 24px;
  color: var(--c-navy);
}
.hero .lead {
  font-size: 1.125rem;
  color: var(--c-text-muted);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust .item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--c-text);
  font-weight: 600;
}
.hero-trust .item svg {
  width: 20px;
  height: 20px;
  color: var(--c-cyan);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .hero-trust {
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
    width: 100%;
  }
  .hero-trust .item {
    font-size: 1.0625rem;
    gap: 14px;
    width: 100%;
  }
  .hero-trust .item svg {
    width: 26px;
    height: 26px;
  }
}

.hero-visual {
  position: relative;
  aspect-ratio: 4/4.4;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--c-blue-light) 0%, var(--c-blue-mid) 100%);
}
.hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(60deg, transparent 0 30px, rgba(255,255,255,0.04) 30px 31px),
    repeating-linear-gradient(120deg, transparent 0 30px, rgba(0, 14, 32, 0.05) 30px 31px);
  z-index: 1;
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.hero-photo-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(14, 29, 61, 0.9);
  backdrop-filter: blur(8px);
  color: var(--c-white);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-size: 0.8125rem;
  z-index: 3;
}
.hero-photo-label strong { display: block; font-weight: 600; font-size: 0.9375rem; }
.hero-photo-label span { color: var(--c-blue-mid); font-size: 0.75rem; }

/* Hero photo placeholder */
.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--c-navy);
  text-align: center;
  padding: 20px;
  z-index: 2;
}
.photo-placeholder svg { width: 64px; height: 64px; opacity: 0.6; margin-bottom: 12px; }
.photo-placeholder .ph-text { font-weight: 600; font-size: 0.875rem; opacity: 0.8; }
.photo-placeholder .ph-sub { font-size: 0.75rem; opacity: 0.6; margin-top: 4px; }

/* ==========================================================================
   Page hero (interne pagina's)
   ========================================================================== */
.page-hero {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
  color: var(--c-white);
  padding: 80px 0 72px;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(60deg, transparent 0 50px, rgba(0,174,239,0.04) 50px 51px),
    repeating-linear-gradient(120deg, transparent 0 50px, rgba(255,255,255,0.03) 50px 51px);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--c-white); margin-bottom: 12px; max-width: 800px; }
.page-hero h1 .accent { color: var(--c-cyan); }
.page-hero .lead { color: rgba(255,255,255,0.8); font-size: 1.125rem; max-width: 700px; }

.breadcrumb {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.breadcrumb a:hover { color: var(--c-cyan); }
.breadcrumb .sep { color: var(--c-cyan); }

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding: var(--section) 0; position: relative; overflow: hidden; }
.section-soft { background: var(--c-bg-soft); }
.section-blue { background: var(--c-blue-light); }
.section-navy {
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
  color: var(--c-white);
}
.section-navy h2, .section-navy h3 { color: var(--c-white); }
.section-navy .eyebrow { color: var(--c-cyan); }

.section-header { margin-bottom: 56px; text-align: center; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.0625rem; color: var(--c-text-muted); max-width: 640px; margin: 0 auto; }
.section-navy .section-header p { color: rgba(255,255,255,0.75); }

.section-header.left { text-align: left; }
.section-header.left p { margin: 0; }

/* ==========================================================================
   Service cards (4 op homepage)
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 280px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-icon {
  width: 56px;
  height: 56px;
  background: var(--c-blue-light);
  color: var(--c-navy);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card:hover .service-icon {
  background: var(--c-cyan);
  color: var(--c-white);
}
.service-card h3 { color: var(--c-navy); margin-bottom: 10px; font-weight: 600; }
.service-card p {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  flex-grow: 1;
  margin-bottom: 16px;
}
.service-card .more {
  color: var(--c-cyan);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card .more .arrow { transition: var(--transition); }
.service-card:hover .more .arrow { transform: translateX(4px); }

/* ==========================================================================
   USP block (Waarom kiezen voor ...)
   ========================================================================== */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.usp-card {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: 28px;
  text-align: left;
  border: 1px solid var(--c-border);
}
.usp-icon {
  width: 48px;
  height: 48px;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.usp-icon svg { width: 24px; height: 24px; }
.usp-card h3 { color: var(--c-navy); margin-bottom: 8px; font-size: 1.0625rem; }
.usp-card p { font-size: 0.9375rem; color: var(--c-text-muted); margin: 0; }

/* ==========================================================================
   Camera focus (dark feature block)
   ========================================================================== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.feature-block .feature-image {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-navy-soft) 0%, var(--c-navy) 100%);
  box-shadow: var(--shadow-lg);
}
.feature-block .feature-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 30px, rgba(0,174,239,0.05) 30px 31px),
    repeating-linear-gradient(-45deg, transparent 0 30px, rgba(255,255,255,0.03) 30px 31px);
  z-index: 1;
}
.feature-block .feature-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 2; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

/* ============================================================
   BROTHERS GRID — Over ons pagina
   ============================================================ */
.brothers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.brother-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.brother-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.brother-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--c-soft);
}
.brother-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brother-body {
  padding: 28px 28px 32px;
}
.brother-body .eyebrow {
  color: var(--c-cyan);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.brother-body h3 {
  font-size: 1.375rem;
  color: var(--c-primary);
  margin: 0 0 12px;
}
.brother-body p {
  color: var(--c-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  .brothers-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.feature-list {
  list-style: none;
  margin: 28px 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}
.feature-list li > div {
  flex: 1;
  min-width: 0;
}
.feature-list li strong {
  display: inline;
  color: var(--c-primary);
  font-weight: 700;
}
.feature-list li .li-sub {
  display: inline;
  color: var(--c-muted);
}
.li-sub {
  color: var(--c-muted);
}
.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  background-color: var(--c-cyan);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") no-repeat center / contain;
}
.section-navy .feature-list li { color: rgba(255,255,255,0.9); }

/* ==========================================================================
   Projects
   ========================================================================== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.project-card {
  background: var(--c-white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: var(--transition);
}
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.project-image {
  aspect-ratio: 4/3;
  position: relative;
  background: linear-gradient(135deg, var(--c-blue-mid) 0%, var(--c-navy-soft) 100%);
  overflow: hidden;
}
.project-image img { width: 100%; height: 100%; object-fit: cover; }
.project-image .tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--c-cyan);
  color: var(--c-white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 2;
}
.project-body { padding: 18px 20px 22px; }
.project-body h3 { color: var(--c-navy); margin-bottom: 4px; font-size: 1rem; }
.project-body p { color: var(--c-text-muted); font-size: 0.875rem; margin: 0; }

/* ==========================================================================
   Persoonlijk advies blok (Robin photo + dark background)
   ========================================================================== */
.advice-block {
  position: relative;
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
  border-radius: var(--r-xl);
  overflow: hidden;
  padding: 56px;
  color: var(--c-white);
  display: grid;
  grid-template-columns: 240px 1fr auto;
  gap: 40px;
  align-items: center;
}
.advice-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(60deg, transparent 0 60px, rgba(0,174,239,0.06) 60px 61px),
    repeating-linear-gradient(120deg, transparent 0 60px, rgba(255,255,255,0.03) 60px 61px);
  pointer-events: none;
}
.advice-photo {
  position: relative;
  z-index: 2;
  width: 240px;
  height: 240px;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--c-navy-soft) 0%, var(--c-cyan) 100%);
  flex-shrink: 0;
}
.advice-photo img { width: 100%; height: 100%; object-fit: cover; }
.advice-photo .photo-placeholder { color: var(--c-white); }
.advice-text { position: relative; z-index: 2; }
.advice-text h2 { color: var(--c-white); margin-bottom: 12px; }
.advice-text p { color: rgba(255,255,255,0.85); margin-bottom: 16px; max-width: 480px; }
.advice-text .person {
  font-size: 0.875rem;
  color: var(--c-cyan);
  font-weight: 600;
}
.advice-contact { position: relative; z-index: 2; }
.advice-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--c-white);
  padding: 8px 0;
  font-size: 0.9375rem;
}
.advice-contact a:hover { color: var(--c-cyan); }
.advice-contact svg { width: 18px; height: 18px; color: var(--c-cyan); }
.advice-cta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   Brands
   ========================================================================== */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.brand-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--c-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.brand-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.brand-card:hover::before { transform: scaleX(1); }
.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-navy);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.brand-card .sub {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-cyan);
  font-weight: 600;
  margin-bottom: 16px;
}
.brand-card p { color: var(--c-text-muted); font-size: 0.9375rem; margin-bottom: 20px; }
.brand-card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.brand-card .tag {
  background: var(--c-bg-soft);
  color: var(--c-navy);
  padding: 4px 10px;
  border-radius: var(--r-sm);
  font-size: 0.75rem;
  font-weight: 500;
}

/* ==========================================================================
   Werkgebied
   ========================================================================== */
.areas {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 12px;
}
.area-pill {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: 14px 16px;
  border-radius: var(--r-sm);
  text-align: center;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--c-navy);
  transition: var(--transition);
}
.area-pill:hover {
  background: var(--c-cyan);
  border-color: var(--c-cyan);
  color: var(--c-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Contact / Form
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info .lead { color: var(--c-text-muted); margin-bottom: 32px; font-size: 1.0625rem; }

.contact-list { list-style: none; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
}
.contact-list .icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--c-blue-light);
  color: var(--c-navy);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-list .icon-wrap svg { width: 20px; height: 20px; }
.contact-list .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-text-muted);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-list .value { font-weight: 600; color: var(--c-navy); font-size: 1rem; }
.contact-list a:hover .value { color: var(--c-cyan); }

.contact-form {
  background: var(--c-white);
  padding: 40px;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--c-border);
}
.contact-form h3 { margin-bottom: 6px; font-size: 1.375rem; }
.contact-form .form-sub { color: var(--c-text-muted); font-size: 0.9375rem; margin-bottom: 24px; }
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--c-navy);
  margin-bottom: 6px;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 0.9375rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-sm);
  background: var(--c-white);
  color: var(--c-text);
  transition: var(--transition);
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}
.form-row textarea { resize: vertical; min-height: 120px; }
.form-row.cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-row.cols > div { margin-bottom: 0; }
.form-notice {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin-top: 14px;
  padding: 12px 14px;
  background: var(--c-blue-light);
  border-left: 3px solid var(--c-cyan);
  border-radius: var(--r-sm);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--c-navy-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.85fr 1.45fr;
  gap: 40px;
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
}
.footer-col h3, .footer-col h4 {
  color: var(--c-white);
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col p { font-size: 0.9375rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.9375rem; word-break: normal; overflow-wrap: break-word; }
.footer-col ul a {
  color: rgba(255,255,255,0.7);
}
.footer-col ul a:hover { color: var(--c-cyan); padding-left: 4px; }
.footer-col ul a.footer-email:hover { padding-left: 0; }
.footer-col ul a.footer-email { word-break: normal; overflow-wrap: anywhere; }

.footer-showroom {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-showroom-label {
  display: block;
  color: var(--c-cyan);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.footer-showroom a {
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-showroom a:hover { color: var(--c-cyan); }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--c-white);
}
.footer-tagline {
  color: var(--c-cyan);
  font-style: italic;
  font-size: 0.9375rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 2;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: var(--c-cyan); }

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy) 100%);
  color: var(--c-white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(60deg, transparent 0 60px, rgba(0,174,239,0.06) 60px 61px);
  pointer-events: none;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-banner h2 { color: var(--c-white); margin: 0; }
.cta-banner p { color: rgba(255,255,255,0.8); margin: 8px 0 0; max-width: 520px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 24px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-navy);
  cursor: pointer;
}
.faq-question .toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-blue-light);
  color: var(--c-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.125rem;
  line-height: 1;
  transition: var(--transition);
}
.faq-item.open .toggle {
  background: var(--c-cyan);
  color: var(--c-white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}
.faq-answer-inner { padding: 0 24px 22px; }
.faq-item.open .faq-answer { max-height: 600px; }

/* ==========================================================================
   Prose content (artikelpagina's)
   ========================================================================== */
.content-prose { max-width: 760px; }
.content-prose h2 { margin: 40px 0 16px; }
.content-prose h3 { margin: 28px 0 12px; }
.content-prose p { margin-bottom: 16px; color: var(--c-text); font-size: 1.0625rem; }
.content-prose ul { margin: 16px 0; padding-left: 24px; }
.content-prose li { margin-bottom: 8px; color: var(--c-text); }
.content-prose ul.feature-list { padding-left: 0; }
.content-prose ul.feature-list li { margin-bottom: 0; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  :root { --section: 72px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
  .brands-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-block { grid-template-columns: 1fr; gap: 40px; }
  .feature-block.reverse { direction: ltr; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 500px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .advice-block { grid-template-columns: 200px 1fr; padding: 40px; }
  .advice-block > *:last-child { grid-column: 1 / -1; }
  .areas { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
  :root { --section: 56px; --pad: 20px; }
  .container { padding: 0 20px; }
  .header-inner { padding: 14px 0; }
  .logo-img { height: 42px; }
  .logo { margin-left: 8px; }
  .menu-toggle { margin-right: 8px; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-navy);
    flex-direction: column;
    gap: 0;
    padding: 12px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    display: none;
    align-items: stretch;
  }
  .main-nav.open { display: flex; }
  .main-nav > a,
  .main-nav > .has-dropdown > a {
    padding: 14px 24px;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: block;
    box-sizing: border-box;
  }
  .main-nav a::after { display: none; }
  .has-dropdown {
    width: 100%;
    display: block;
  }
  .has-dropdown .dropdown {
    position: static;
    transform: none !important;
    box-shadow: none;
    background: var(--c-navy-deep);
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    border-radius: 0;
    display: none;
    width: 100%;
    min-width: 0;
    left: auto;
    pointer-events: auto;
  }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown::before { display: none; }
  .dropdown a {
    color: rgba(255,255,255,0.7);
    padding: 12px 36px;
    display: block;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    box-sizing: border-box;
    white-space: normal;
  }
  .dropdown a:hover,
  .dropdown a:active { background: var(--c-navy); color: var(--c-cyan); }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .top-bar { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row.cols { grid-template-columns: 1fr; }
  .areas { grid-template-columns: repeat(2, 1fr); }
  .advice-block {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }
  .advice-photo { width: 180px; height: 180px; margin: 0 auto; }
  .advice-cta { width: 100%; }
  .cta-banner-inner { flex-direction: column; text-align: center; }

  .poly-bg { display: none; }
}
