/* =====================================================
   AVG Administratie Almere — Redesign v2
   Demo concept by Faro Digital
   Purple brand identity — clean, practical, local
   ===================================================== */

/* Font loaded via <link> in HTML — no @import needed here */

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand purple — drawn from the original AVG logo identity */
  --purple-900:  #2a0e60;
  --purple-800:  #3b1378;
  --purple-700:  #4a1a96;
  --purple-600:  #5c24b0;
  --purple-500:  #7035c4;
  --purple-100:  #ede8f8;
  --purple-50:   #f6f2fb;

  /* Lavender backgrounds */
  --lavender-bg: #f5f1fb;
  --lavender-mid: #ede8f7;
  --lavender-border: #d8cff0;

  /* Neutral/text */
  --ink:         #1f1a24;
  --ink-mid:     #3d3548;
  --ink-light:   #5f5866;
  --ink-faint:   #9490a0;

  /* White/light surfaces */
  --white:       #ffffff;
  --surface:     #faf9fd;
  --surface-alt: #f2eef9;

  /* Status/UI */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-pill: 999px;

  --shadow-xs:   0 1px 3px rgba(59,19,120,0.06);
  --shadow-sm:   0 2px 8px rgba(59,19,120,0.08);
  --shadow-md:   0 4px 20px rgba(59,19,120,0.10);
  --shadow-lg:   0 8px 40px rgba(59,19,120,0.13);

  --ease: 0.2s ease;

  /* Spacing scale */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  40px;
  --space-xl:  64px;
  --space-2xl: 88px;
}

/* ===== BASE ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin-bottom: 0.9em;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.2;
  color: var(--ink);
}

h1 { font-size: clamp(1.75rem, 4.2vw, 2.6rem); font-weight: 700; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 700; }
h3 { font-size: 1.05rem; font-weight: 600; }
h4 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section-pad {
  padding: var(--space-2xl) 0;
}

.section-pad-sm {
  padding: var(--space-xl) 0;
}

/* ===== SECTION LABELS ===== */
.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--purple-600);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background var(--ease),
    color var(--ease),
    border-color var(--ease),
    box-shadow var(--ease),
    transform var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--purple-800);
  color: var(--white);
  border-color: var(--purple-800);
}
.btn-primary:hover {
  background: var(--purple-900);
  border-color: var(--purple-900);
  box-shadow: 0 4px 18px rgba(59,19,120,0.32);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--purple-800);
  border-color: var(--purple-800);
}
.btn-outline:hover {
  background: var(--purple-50);
  transform: translateY(-1px);
}

.btn-ghost-white {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: white;
}

.btn-white {
  background: white;
  color: var(--purple-800);
  border-color: white;
}
.btn-white:hover {
  background: var(--purple-50);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.85rem;
}

/* ===== HEADER / NAV ===== */
#site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--lavender-border);
  transition: box-shadow var(--ease);
}

#site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.nav-logo img {
  height: 60px;
  width: 60px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.nav-logo-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-800);
  letter-spacing: -0.01em;
}

.nav-logo-sub {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 0.01em;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  padding: 7px 11px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
}

.nav-links a:hover {
  color: var(--purple-800);
  background: var(--purple-50);
}

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

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  transition: background var(--ease);
}

.hamburger:hover {
  background: var(--purple-50);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--purple-800);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}

.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
#mobile-drawer {
  display: none;
  position: fixed;
  inset: 76px 0 0 0;
  background: var(--white);
  z-index: 99;
  overflow-y: auto;
  padding: 24px var(--space-md) 32px;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--lavender-border);
}

#mobile-drawer.is-open {
  display: flex;
}

#mobile-drawer a.drawer-link {
  display: block;
  padding: 13px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--radius-md);
  border-bottom: 1px solid var(--lavender-mid);
  transition: background var(--ease), color var(--ease);
}

#mobile-drawer a.drawer-link:last-of-type {
  border-bottom: none;
}

#mobile-drawer a.drawer-link:hover {
  background: var(--purple-50);
  color: var(--purple-800);
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.drawer-actions .btn {
  width: 100%;
  padding: 14px;
  font-size: 0.95rem;
}

/* ===== HERO ===== */
#hero {
  background: linear-gradient(160deg, var(--purple-900) 0%, var(--purple-800) 50%, #4a2099 100%);
  padding: 72px 0 100px;
  position: relative;
  overflow: hidden;
}

/* Subtle grid pattern overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Wave divider bottom */
#hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--white);
  clip-path: ellipse(58% 100% at 50% 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-pill);
  padding: 6px 15px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  margin-bottom: 22px;
}

.hero-pill::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #a78de8;
  border-radius: 50%;
}

.hero-text h1 {
  color: var(--white);
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
}

.hero-text h1 .accent {
  color: #c9b6f0;
}

.hero-text p {
  color: rgba(255,255,255,0.76);
  font-size: 1.02rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 36px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
}

.badge svg {
  width: 13px;
  height: 13px;
  stroke: #c9b6f0;
  flex-shrink: 0;
}

/* Hero right side — clean service/contact card (no photo) */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.22), 0 3px 10px rgba(0,0,0,0.08);
}

.hero-card-header {
  background: var(--purple-100);
  border-bottom: 1px solid var(--lavender-border);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-card-header img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.hero-card-header-text h3 {
  font-size: 0.95rem;
  color: var(--purple-900);
  margin-bottom: 2px;
}

.hero-card-header-text span {
  font-size: 0.78rem;
  color: var(--ink-light);
}

.hero-card-body {
  padding: 22px 24px 20px;
}

.hero-svc-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 14px;
}

.hero-svc-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--lavender-mid);
}

.hero-svc-item:last-child {
  border-bottom: none;
}

.hero-svc-item svg {
  width: 14px;
  height: 14px;
  stroke: var(--purple-600);
  flex-shrink: 0;
}

/* Phone number rows inside hero card */
.hero-card-phone {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 0 14px;
  border-top: 1px solid var(--lavender-mid);
  border-bottom: 1px solid var(--lavender-mid);
  margin-bottom: 14px;
}

.hero-phone-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--purple-800);
  transition: color var(--ease);
}

.hero-phone-link:hover {
  color: var(--purple-600);
}

.hero-phone-link svg {
  stroke: var(--purple-600);
  flex-shrink: 0;
}

.hero-card-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 0;
}

.hero-card-cta .btn {
  width: 100%;
  font-size: 0.875rem;
  padding: 11px 16px;
}

.hero-card-cta .contact-note {
  font-size: 0.74rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ===== DIENSTEN ===== */
#diensten {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head p {
  font-size: 1.02rem;
  color: var(--ink-light);
  max-width: 560px;
  margin-top: 10px;
}

.section-head.centered {
  text-align: center;
}

.section-head.centered p {
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.svc-card {
  background: var(--white);
  border: 1.5px solid var(--lavender-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition:
    box-shadow var(--ease),
    border-color var(--ease),
    transform var(--ease);
  position: relative;
}

.svc-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--purple-500);
  transform: translateY(-2px);
}

.svc-icon {
  width: 44px;
  height: 44px;
  background: var(--lavender-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--ease);
}

.svc-card:hover .svc-icon {
  background: var(--purple-100);
}

.svc-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--purple-700);
  stroke-width: 1.8;
}

.svc-card h3 {
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ===== SPLIT SECTIONS ===== */
.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.split-wrap.flip {
  direction: rtl;
}
.split-wrap.flip > * {
  direction: ltr;
}

/* Ondernemers section */
#ondernemers {
  background: var(--lavender-bg);
  padding: var(--space-2xl) 0;
}

.check-list {
  list-style: none;
  margin: 22px 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  color: var(--ink-mid);
  line-height: 1.5;
}

.check-list li svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple-700);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Stats block */
.stats-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
}

.stats-panel-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--lavender-border);
}

.stats-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: var(--lavender-bg);
  border-radius: var(--radius-md);
}

.stat-icon {
  width: 36px;
  height: 36px;
  background: var(--purple-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--purple-700);
}

.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
}

/* ===== PARTICULIEREN ===== */
#particulieren {
  background: var(--white);
  padding: var(--space-2xl) 0;
}

.ink-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.ink-card {
  background: var(--lavender-bg);
  border: 1.5px solid var(--lavender-border);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  transition: box-shadow var(--ease), border-color var(--ease);
}

.ink-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--purple-500);
}

.ink-card-icon {
  width: 40px;
  height: 40px;
  background: var(--purple-100);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.ink-card-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--purple-700);
  stroke-width: 1.8;
}

.ink-card h3 {
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 8px;
}

.ink-card p {
  font-size: 0.855rem;
  color: var(--ink-light);
  line-height: 1.6;
}

/* ===== TRUST / WHY US ===== */
#vertrouwen {
  background: var(--purple-900);
  padding: var(--space-2xl) 0;
}

#vertrouwen .eyebrow {
  color: #b49be0;
}

#vertrouwen h2 {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 44px;
}

.trust-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: background var(--ease), border-color var(--ease);
}

.trust-card:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(167,141,232,0.45);
}

.trust-card-icon {
  width: 50px;
  height: 50px;
  background: rgba(167,141,232,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.trust-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #c9b6f0;
}

.trust-card h3 {
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.trust-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.6;
}

/* ===== WERKGEBIED ===== */
#werkgebied {
  background: var(--lavender-bg);
  padding: var(--space-xl) 0;
}

.werkgebied-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.area-chip {
  background: var(--white);
  border: 1.5px solid var(--lavender-border);
  border-radius: var(--radius-pill);
  padding: 6px 14px;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--ink-mid);
}

.kantoor-photo {
  width: 100%;
  border-radius: var(--radius-md);
  margin-top: 24px;
  object-fit: cover;
  max-height: 200px;
  filter: saturate(0.9);
  border: 1px solid var(--lavender-border);
}

/* Contact inline box */
.quick-contact-box {
  background: var(--white);
  border: 1.5px solid var(--lavender-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}

.quick-contact-box h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--purple-900);
  margin-bottom: 8px;
}

.quick-contact-box p {
  font-size: 0.9rem;
  color: var(--ink-light);
  margin-bottom: 20px;
}

.quick-contact-box .btn {
  width: 100%;
  margin-bottom: 8px;
}

.quick-contact-box .btn:last-of-type {
  margin-bottom: 0;
}

.quick-contact-box .email-hint {
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: center;
}

/* ===== CTA BAND ===== */
#cta-band {
  background: linear-gradient(135deg, var(--purple-800) 0%, var(--purple-700) 100%);
  padding: var(--space-xl) 0;
  text-align: center;
}

#cta-band h2 {
  color: var(--white);
  margin-bottom: 12px;
}

#cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto 30px;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== CONTACT DETAILS ===== */
#contact-details {
  background: var(--white);
  padding: var(--space-xl) 0;
}

.contact-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.c-icon {
  width: 42px;
  height: 42px;
  background: var(--lavender-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.c-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--purple-700);
}

.contact-item h3 {
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
  font-size: 0.875rem;
  color: var(--ink-light);
  line-height: 1.55;
}

.contact-item a:hover {
  color: var(--purple-700);
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 52px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  margin-bottom: 24px;
}

.footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-brand-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.footer-brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
}

.footer-brand > p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.footer-col ul li {
  margin-bottom: 7px;
}

.footer-col a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}

.footer-col a:hover {
  color: #c9b6f0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-copyright {
  font-size: 0.76rem;
  color: rgba(255,255,255,0.35);
}

.faro-badge {
  font-size: 0.73rem;
  color: rgba(255,255,255,0.4);
  text-align: right;
}

.faro-badge strong {
  color: #b49be0;
}

/* ===== MOBILE STICKY BAR ===== */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: var(--white);
  border-top: 1px solid var(--lavender-border);
  padding: 10px var(--space-sm);
  box-shadow: 0 -4px 20px rgba(59,19,120,0.10);
}

.sticky-bar-inner {
  display: flex;
  gap: 9px;
}

.sticky-bar .btn {
  flex: 1;
  padding: 13px 10px;
  font-size: 0.87rem;
}

/* Contact meta row (KvK, BTW, contactpersoon, werkgebied) */
.contact-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 36px;
  background: var(--lavender-border);
  border: 1px solid var(--lavender-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.contact-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--lavender-bg);
}

.contact-meta-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.contact-meta-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-mid);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1000px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-wrap,
  .split-wrap.flip {
    grid-template-columns: 1fr;
    gap: 36px;
    direction: ltr;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ink-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .werkgebied-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-meta {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 660px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 46px;
    width: 46px;
  }

  .nav-logo-name {
    font-size: 0.9rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .ink-cards {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-items {
    grid-template-columns: 1fr;
  }

  .contact-meta {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .faro-badge {
    text-align: left;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .cta-band-actions .btn {
    width: 100%;
  }

  .sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 64px;
  }

  #hero {
    padding: 52px 0 88px;
  }
}

@media (max-width: 400px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }
}
