/* ============================================================
   Eduard Stad Accounting & Advice — Demo Redesign Concept
   Faro Digital · 2026
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --color-primary:      #1E9FD0;
  --color-primary-dark: #137EA6;
  --color-accent:       #F15A24;
  --color-accent-dark:  #D94A1A;
  --color-heading:      #172033;
  --color-body:         #374151;
  --color-muted:        #6B7280;

  /* Surfaces — slightly richer blue tones for depth */
  --color-bg:         #FFFFFF;
  --color-bg-soft:    #EAF5FA;     /* near-white with blue tint */
  --color-bg-alt:     #D8EDF8;     /* stronger soft blue */
  --color-navy:       #172033;     /* dark navy for CTA strip & footer */
  --color-border:     #C8E4F0;     /* slightly stronger blue-tinted border */

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-card:       0 2px 16px rgba(23,32,51,0.08);
  --shadow-card-hover: 0 8px 32px rgba(23,32,51,0.14);
  --shadow-hero-card:  0 6px 32px rgba(23,32,51,0.14);

  --font-display: 'Lora', Georgia, serif;
  --font-body:    'Source Sans 3', sans-serif;

  --s-1:  0.25rem;
  --s-2:  0.5rem;
  --s-3:  0.75rem;
  --s-4:  1rem;
  --s-5:  1.25rem;
  --s-6:  1.5rem;
  --s-8:  2rem;
  --s-10: 2.5rem;
  --s-12: 3rem;
  --s-16: 4rem;
  --s-20: 5rem;
  --s-24: 6rem;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── TYPE SCALE ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--color-heading);
  line-height: 1.2;
  letter-spacing: -0.015em;
}
h1 { font-size: clamp(1.8rem, 4.2vw, 2.8rem); font-weight: 700; }
h2 { font-size: clamp(1.55rem, 3.5vw, 2.3rem); font-weight: 600; }
h3 { font-size: clamp(0.95rem, 2vw, 1.15rem); font-weight: 600; }

p { line-height: 1.75; margin-bottom: var(--s-4); }
p:last-child { margin-bottom: 0; }

a { color: var(--color-primary); text-decoration: none; transition: color 0.18s; }
a:hover { color: var(--color-primary-dark); }

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 var(--s-6);
}
section { padding: var(--s-20) 0; }
.section-bg-soft { background: var(--color-bg-soft); }
.section-bg-alt  { background: var(--color-bg-alt);  }

.section-header { margin-bottom: var(--s-10); }

.section-label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-3);
}

.section-rule {
  display: block;
  width: 34px;
  height: 3px;
  background: var(--color-accent);
  border-radius: 2px;
  margin-top: var(--s-4);
}

.intro-text {
  font-size: 1.025rem;
  max-width: 680px;
  line-height: 1.8;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.45rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s;
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}
.btn-primary:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(241,90,36,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--color-heading);
  border: none;
  padding-left: 0;
  padding-right: 0;
  text-decoration: underline;
  text-decoration-color: rgba(30,159,208,0.35);
  text-underline-offset: 3px;
}
.btn-ghost:hover {
  color: var(--color-primary);
  text-decoration-color: var(--color-primary);
}

/* ── FADE-IN ON SCROLL ──────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── HEADER ──────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  gap: var(--s-4);
}

.header-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.site-logo {
  height: 62px;
  width: auto;
  display: block;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: var(--s-4);
  align-items: center;
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-body);
  text-decoration: none;
  padding: var(--s-2) 0;
  transition: color 0.18s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width 0.2s;
  border-radius: 1px;
}
.nav-links a:hover        { color: var(--color-primary); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s-2);
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--color-heading);
  border-radius: 1px;
  transition: transform 0.28s, opacity 0.28s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 78px; left: 0; right: 0;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: var(--s-4) var(--s-6) var(--s-6);
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.mobile-menu.open { display: block; }

.mobile-menu ul { list-style: none; margin-bottom: var(--s-4); }
.mobile-menu a {
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--color-body);
  text-decoration: none;
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--color-border);
  min-height: 44px;
  transition: color 0.18s;
}
.mobile-menu a:hover { color: var(--color-primary); }
.mobile-menu li:last-child a { border-bottom: none; }

/* ── HERO ────────────────────────────────────────────────────── */
/* Blue-tinted gradient — no longer plain white */
#home {
  padding: var(--s-20) 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #F8FCFE 0%, #EEF8FC 55%, #E4F4FA 100%);
}

/* Subtle grid over the blue gradient */
#home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg,
      transparent, transparent 44px,
      rgba(30,159,208,0.07) 44px, rgba(30,159,208,0.07) 45px),
    repeating-linear-gradient(90deg,
      transparent, transparent 44px,
      rgba(30,159,208,0.07) 44px, rgba(30,159,208,0.07) 45px);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--s-12);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content { width: 100%; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: var(--s-5);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 26px; height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.hero-headline { margin-bottom: var(--s-5); }

.hero-subheadline {
  font-size: 1.025rem;
  max-width: 520px;
  margin-bottom: var(--s-8);
  line-height: 1.8;
  color: var(--color-body);
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: wrap;
  margin-bottom: var(--s-6);
}

.hero-trust {
  font-size: 0.82rem;
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: var(--s-2);
  margin-bottom: var(--s-8);
}
.hero-trust svg { flex-shrink: 0; color: var(--color-primary); }

/* Slogan */
.hero-slogan-wrap { display: inline-block; }

.slogan-label {
  display: block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-primary);
  padding-left: calc(var(--s-5) + 4px);
  margin-bottom: var(--s-2);
}

.hero-slogan {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.9vw, 1.4rem);
  font-weight: 500;
  color: var(--color-heading);
  padding: var(--s-4) var(--s-5);
  border-left: 4px solid var(--color-accent);
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.4;
}

/* ── HERO CARD ───────────────────────────────────────────────── */
.hero-card {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-hero-card);
  overflow: hidden;
  position: relative;
}

/* Blue top accent */
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
}

.hero-card-inner {
  padding: calc(var(--s-6) + 4px) var(--s-6) var(--s-5);
}

.hero-card-tag {
  display: inline-block;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--s-3);
}

.hero-card-price {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: var(--s-1);
}

.hero-card-price-sub {
  font-size: 0.78rem;
  color: var(--color-muted);
  display: block;
  margin-bottom: var(--s-4);
}

.hero-card-desc {
  font-size: 0.875rem;
  color: var(--color-body);
  line-height: 1.65;
}
.hero-card-desc p { margin: 0; }

/* Soft blue contacts footer within card */
.hero-card-footer {
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  padding: var(--s-4) var(--s-6);
}

.hero-card-contacts { display: flex; flex-direction: column; gap: var(--s-3); }

.hero-card-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 0.85rem;
  color: var(--color-body);
  line-height: 1.45;
}
.hero-card-contact-item svg { flex-shrink: 0; color: var(--color-primary); margin-top: 1px; }
.hero-card-contact-item a {
  color: var(--color-body);
  text-decoration: none;
  transition: color 0.18s;
}
.hero-card-contact-item a:hover { color: var(--color-primary); }

/* ── WIE ZIJN WIJ ────────────────────────────────────────────── */
.about-text-block { margin-bottom: var(--s-8); }
.about-text-block p { max-width: 700px; margin-bottom: var(--s-4); }
.about-text-block p:last-child { margin-bottom: 0; }

/* Pillar cards — white on blue section for clear contrast */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-8);
  align-items: stretch;
}

.pillar {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--s-6) var(--s-6) var(--s-7);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border);
  border-top: 3px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s, border-top-color 0.22s;
}
.pillar:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-top-color: var(--color-accent);
}

.pillar-icon-wrap {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: var(--s-4);
  flex-shrink: 0;
}
.pillar-icon { width: 20px; height: 20px; color: var(--color-primary); display: block; }
.pillar h3  { font-size: 0.95rem; margin-bottom: var(--s-2); line-height: 1.3; }
.pillar p   { font-size: 0.875rem; color: var(--color-muted); margin: 0; line-height: 1.55; flex: 1; }

/* ── DIENSTEN OVERVIEW ───────────────────────────────────────── */
.diensten-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
}

.dienst-card {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: var(--s-8);
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.dienst-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }

.dienst-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: rgba(30,159,208,0.13);
  line-height: 1;
  margin-bottom: var(--s-3);
  letter-spacing: -0.02em;
}
.dienst-card h3  { font-size: 1.35rem; margin-bottom: var(--s-2); }
.dienst-subtitle { font-size: 0.875rem; color: var(--color-muted); margin-bottom: var(--s-5); line-height: 1.5; }

.preview-list { list-style: none; margin-bottom: var(--s-6); flex: 1; }
.preview-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  padding: var(--s-2) 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.5;
}
.preview-list li:last-child { border-bottom: none; }
.preview-list li::before {
  content: '';
  display: block;
  width: 14px; height: 14px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E9FD0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

/* ── SERVICE LISTS ───────────────────────────────────────────── */
.service-list-grid {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 var(--s-12);
  margin: var(--s-6) 0;
}
.service-list-grid li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  font-size: 0.925rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.5;
}
.service-list-grid li::before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E9FD0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.advies-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6) var(--s-12);
  margin: var(--s-6) 0;
}
.advies-cols ul { list-style: none; }
.advies-cols li {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  font-size: 0.925rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.5;
}
.advies-cols li::before {
  content: '';
  display: block;
  width: 15px; height: 15px;
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E9FD0' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.service-summary {
  margin-top: var(--s-8);
  padding: var(--s-5) var(--s-7);
  background: rgba(255,255,255,0.7);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-body);
}
.service-summary p { margin: 0; }

/* ── TARIEVEN ────────────────────────────────────────────────── */
.tarieven-text { max-width: 680px; font-size: 1.025rem; line-height: 1.8; }

.tarief-callout {
  display: flex;
  align-items: center;
  gap: var(--s-6);
  padding: var(--s-6) var(--s-8);
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-left: 5px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  box-shadow: var(--shadow-card);
  margin: var(--s-8) 0;
  max-width: 580px;
}
.tarief-price-block { flex-shrink: 0; text-align: center; }
.tarief-amount {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  display: block;
}
.tarief-per {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  display: block;
  margin-top: var(--s-1);
}
.tarief-divider {
  width: 1px; height: 46px;
  background: var(--color-border);
  flex-shrink: 0;
}
.tarief-desc { font-size: 0.95rem; line-height: 1.65; color: var(--color-body); }
.tarief-desc p { margin: 0; }

.tarief-cta-row {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 480px;
}
.tarief-cta-row p { font-size: 0.95rem; color: var(--color-body); margin: 0; }

/* ── CONTACT ─────────────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: start;
}

.form-wrap h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--s-6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.form-group { margin-bottom: var(--s-4); }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--s-2);
}
.form-group label .req { color: var(--color-accent); margin-left: 2px; }

.form-group input,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-body);
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: var(--s-3) var(--s-4);
  transition: border-color 0.18s, box-shadow 0.18s;
  min-height: 44px;
  line-height: 1.5;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9CA3AF; }
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(30,159,208,0.12);
}
.form-group textarea { height: 110px; resize: vertical; min-height: 80px; }

.form-privacy {
  margin-top: var(--s-3);
  font-size: 0.77rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.form-success {
  display: none;
  padding: var(--s-5) var(--s-6);
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-md);
  color: #15803D;
  font-size: 0.925rem;
  line-height: 1.6;
}

.contact-info h3 {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: var(--s-6);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.contact-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--s-6);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.contact-biz-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  margin-bottom: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--color-border);
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-3);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.875rem;
  line-height: 1.55;
}
.contact-row:last-of-type { border-bottom: none; }
.contact-row svg { flex-shrink: 0; color: var(--color-primary); margin-top: 1px; }
.contact-row a { color: var(--color-body); text-decoration: none; transition: color 0.18s; }
.contact-row a:hover { color: var(--color-primary); }

.contact-legal {
  margin-top: var(--s-4);
  padding-top: var(--s-4);
  border-top: 1px solid var(--color-border);
  font-size: 0.77rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── NAVY CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: var(--color-navy);
  padding: var(--s-16) 0;
}

.cta-strip-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-strip h2 {
  color: #fff;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
  margin-bottom: var(--s-4);
  line-height: 1.3;
}

.cta-strip p {
  color: rgba(255,255,255,0.68);
  font-size: 1.025rem;
  line-height: 1.7;
  margin-bottom: var(--s-8);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
.site-footer {
  background: #111827;   /* slightly deeper than navy to distinguish */
  padding: var(--s-12) 0 var(--s-8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--s-12);
  align-items: start;
  padding-bottom: var(--s-8);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: var(--s-6);
}

.footer-logo-wrap { margin-bottom: var(--s-4); }

.footer-logo-bg {
  display: inline-block;
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius-sm);
  padding: 5px 10px;
  line-height: 0;
}

.footer-logo {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.62);
  margin: 0;
  line-height: 1.5;
}

.footer-cols {
  display: flex;
  gap: var(--s-12);
  align-items: flex-start;
  justify-content: flex-end;
}

.footer-nav { text-align: right; }
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3) var(--s-5);
  justify-content: flex-end;
  max-width: 240px;
}
.footer-nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  text-decoration: none;
  transition: color 0.18s;
}
.footer-nav a:hover { color: var(--color-primary); }

.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s-2);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}
.footer-contact-row svg {
  flex-shrink: 0;
  margin-top: 2px;
  stroke: rgba(255,255,255,0.5);
}
.footer-contact-row a {
  color: rgba(255,255,255,0.68);
  transition: color 0.18s;
}
.footer-contact-row a:hover { color: var(--color-primary); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2) var(--s-6);
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.42);
}
.footer-demo { font-style: italic; color: rgba(255,255,255,0.50); }

/* ── MOBILE STICKY CTA ───────────────────────────────────────── */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-accent);
}
.mobile-cta-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: var(--s-4) var(--s-6);
  min-height: 56px;
  transition: background 0.18s;
}
.mobile-cta-bar a:hover { background: var(--color-accent-dark); color: #fff; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: var(--s-8);
  }
  .hero-card { max-width: 480px; }
  #home::before { opacity: 0.6; }
}

@media (max-width: 768px) {
  .header-nav     { display: none; }
  .hamburger      { display: flex; }
  .mobile-cta-bar { display: block; }

  body { padding-bottom: 56px; }
  section { padding: var(--s-16) 0; }
  .cta-strip { padding: var(--s-12) 0; }

  .pillars           { grid-template-columns: 1fr; }
  .diensten-grid     { grid-template-columns: 1fr; }
  .service-list-grid { grid-template-columns: 1fr; gap: 0; }
  .advies-cols       { grid-template-columns: 1fr; gap: 0; }
  .contact-layout    { grid-template-columns: 1fr; gap: var(--s-8); }
  .footer-top        { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer-cols       { flex-direction: column; gap: var(--s-6); }
  .footer-nav        { text-align: left; }
  .footer-nav ul     { justify-content: flex-start; max-width: none; }
  .footer-bottom     { flex-direction: column; gap: var(--s-2); }

  .tarief-callout { flex-direction: column; align-items: flex-start; gap: var(--s-4); }
  .tarief-divider { display: none; }
  .hero-ctas      { flex-direction: column; align-items: flex-start; gap: var(--s-3); }

  .site-logo { height: 48px; }
}

@media (max-width: 480px) {
  .container    { padding: 0 var(--s-4); }
  .hero-slogan  { font-size: 1rem; }
  .site-logo    { height: 42px; }
  .header-inner { height: 68px; }
  .mobile-menu  { top: 68px; }
}

@media (max-width: 360px) {
  h1 { font-size: 1.7rem; }
  .tarief-amount { font-size: 2rem; }
  .site-logo { height: 36px; }
}
