:root {
  --ink:      #111110;
  --ink-soft: #3a3a38;
  --mid:      #7a7a76;
  --rule:     #d8d4cc;
  --bg:       #f6f3ee;
  --white:    #fdfcfa;
  --orange:   #d94f1e;
  --orange-h: #bf4118;
  --green:    #25D366;
  --radius:   4px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── FLOATING WHATSAPP ── */
.gl-whatsapp-fixed {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px; height: 56px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .2s, box-shadow .2s;
}
.gl-whatsapp-fixed:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,.45), 0 3px 12px rgba(0,0,0,.18);
}

/* ══════════ HEADER ══════════ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 2px solid var(--ink);
}
.header-inner {
  display: flex;
  align-items: stretch;
  height: 62px;
  max-width: none;
}
.logo-block {
  display: flex; align-items: center;
  padding: 0 28px;
  border-right: 2px solid var(--ink);
  text-decoration: none; gap: 12px; flex-shrink: 0;
}
.logo-block img {
  height: 40px;
  width: auto;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--orange); border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 16px; color: #fff; letter-spacing: -0.02em;
}
.logo-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 17px; color: var(--ink);
  letter-spacing: 0.01em; line-height: 1;
}
.logo-tagline {
  font-size: 10px; color: var(--mid);
  letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px;
}
.main-nav {
  display: flex; align-items: stretch; flex: 1; padding: 0 16px;
}
.main-nav a {
  display: flex; align-items: center; padding: 0 14px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--ink-soft); text-decoration: none; transition: color .15s;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
}
.main-nav a:hover { color: var(--orange); border-bottom-color: var(--orange); }
.header-actions {
  display: flex; align-items: center; gap: 10px;
  padding: 0 20px; border-left: 2px solid var(--ink); flex-shrink: 0;
}

/* Mobile menu */
.mobile-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; font-size: 24px; color: var(--ink);
}
.mobile-nav {
  display: none;
  position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 20px 28px;
  border-top: 2px solid var(--ink);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 18px; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
  border-bottom: 1px solid var(--rule);
}
.mobile-nav a:hover { color: var(--orange); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: var(--radius); padding: 9px 18px;
  transition: all .15s; cursor: pointer; white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary  { background: var(--orange); color: #fff; border-color: var(--orange); }
.btn-primary:hover { background: var(--orange-h); border-color: var(--orange-h); }
.btn-ink      { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-ink:hover { background: #2a2a28; }
.btn-outline  { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: #fff; }
.btn-whatsapp { background: var(--green); color: #fff; border-color: var(--green); }
.btn-whatsapp:hover { background: #1fba58; border-color: #1fba58; }
.btn-white    { background: #fff; color: var(--orange); border: 2px solid #fff; font-weight: 700; }
.btn-white:hover { background: var(--bg); border-color: var(--bg); }
.btn-trans    { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-trans:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn-lg { padding: 14px 28px; font-size: 15px; }

/* ══════════ HERO ══════════ */
.hero { background: var(--white); border-bottom: 2px solid var(--ink); overflow: hidden; padding: 0; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 400px;
  min-height: calc(100vh - 62px);
}
.hero-main {
  padding: 72px 60px 72px 0;
  display: flex; flex-direction: column; justify-content: center;
  border-right: 2px solid var(--ink); position: relative;
  padding-left: max(28px, calc((100vw - 1180px)/2 + 28px));
}
.hero-main::before {
  content: '01';
  position: absolute; bottom: 32px; right: 56px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: 160px; color: var(--rule); line-height: 1;
  pointer-events: none; user-select: none;
}
.hero-kicker {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 18px;
}
.hero-kicker::before { content:''; display:block; width:24px; height:2px; background:var(--orange); }
.hero-h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(68px, 8vw, 116px); line-height: 0.87;
  letter-spacing: -0.01em; color: var(--ink); margin-bottom: 8px;
}
.hero-h1 .ital {
  font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic; color: var(--orange);
}
.hero-sub {
  font-size: 17px; color: var(--ink-soft); max-width: 480px;
  line-height: 1.7; margin: 22px 0 36px; font-weight: 300;
}
.hero-sub strong { font-weight: 500; color: var(--ink); }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.trust-row { display: flex; gap: 22px; flex-wrap: wrap; }
.trust-chip {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-soft); font-weight: 400;
}
.trust-chip::before { content:'✓'; font-weight:700; color:var(--orange); font-size:14px; }

.hero-aside {
  display: flex; flex-direction: column; background: var(--ink); color: var(--white);
}
.aside-panel {
  padding: 36px 32px; border-bottom: 1px solid rgba(255,255,255,.1);
  flex: 1; display: flex; flex-direction: column; justify-content: center;
}
.aside-label {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 20px;
}
.scenario-list { display: flex; flex-direction: column; gap: 16px; }
.scenario { display: flex; align-items: flex-start; gap: 14px; }
.scenario-icon {
  width: 36px; height: 36px; border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0; margin-top: 1px;
}
.sc-g { background: rgba(37,211,102,.15); }
.sc-b { background: rgba(100,150,255,.15); }
.sc-r { background: rgba(217,79,30,.15); }
.scenario-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 15px; color: #fff; }
.scenario-desc  { font-size: 12.5px; color: rgba(255,255,255,.45); margin-top: 2px; line-height: 1.4; }

.aside-contact { padding: 24px 32px; display: flex; flex-direction: column; gap: 10px; }
.contact-link {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  padding: 11px 14px; border-radius: var(--radius); transition: background .15s;
  border: 1px solid rgba(255,255,255,.1);
}
.contact-link:hover { background: rgba(255,255,255,.06); }
.contact-icon {
  width: 30px; height: 30px; background: rgba(255,255,255,.08); border-radius: 3px;
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.contact-type { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); }
.contact-val  { font-size: 14px; color: rgba(255,255,255,.85); }

/* ══════════ MARQUEE ══════════ */
.strip { background: var(--orange); overflow: hidden; padding: 13px 0; border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.strip-track { display: flex; white-space: nowrap; animation: marquee 26s linear infinite; }
.strip-item {
  display: inline-flex; align-items: center; gap: 20px;
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 16px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; padding-right: 20px;
}
.strip-item .d { opacity: .45; font-size: 10px; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ══════════ SECTION BASE ══════════ */
section { padding: 88px 0; }
.sec-eye {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
  font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--orange);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.sec-eye::before { content:''; display:block; width:20px; height:2px; background:var(--orange); }
.sec-h {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(36px, 4.5vw, 56px); line-height: 0.9;
  letter-spacing: -0.01em; color: var(--ink);
}
.sec-h em { font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic; color: var(--orange); }
.sec-body { font-size: 16px; color: var(--ink-soft); line-height: 1.75; font-weight: 300; }
.sec-header {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: end; margin-bottom: 56px;
}

/* ══════════ DIENSTEN ══════════ */
.diensten { background: var(--white); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.diensten-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-left: 2px solid var(--ink); border-top: 2px solid var(--ink);
}
.d-card {
  border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink);
  padding: 34px 26px; background: var(--white);
  transition: background .15s; text-decoration: none; display: block; position: relative; overflow: hidden;
}
.d-card::after { content:''; position:absolute; bottom:0; left:0; right:0; height:0; background:var(--orange); transition:height .2s; }
.d-card:hover::after { height: 3px; }
.d-card:hover { background: var(--bg); }
.d-num { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:12px; letter-spacing:.1em; color:var(--rule); margin-bottom:18px; }
.d-ico { font-size:26px; margin-bottom:14px; display:block; }
.d-card h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:21px; color:var(--ink); letter-spacing:.01em; margin-bottom:9px; line-height:1.05; }
.d-card p  { font-size:14px; color:var(--mid); line-height:1.65; }
.d-more { display:inline-flex; align-items:center; gap:4px; margin-top:16px; font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--orange); }

/* ══════════ WERKWIJZE ══════════ */
.werkwijze { background: var(--bg); }
.steps-row {
  display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 56px;
  border-left: 2px solid var(--ink); border-top: 2px solid var(--ink);
}
.s-block { border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 32px 24px; }
.s-n { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:48px; color:var(--rule); line-height:1; margin-bottom:14px; }
.s-block h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:19px; color:var(--ink); margin-bottom:9px; letter-spacing:.01em; }
.s-block p  { font-size:14px; color:var(--mid); line-height:1.65; }
.s-block.hl { background:var(--orange); }
.s-block.hl .s-n, .s-block.hl h3, .s-block.hl p { color:#fff; }
.s-block.hl .s-n { opacity:.3; }
.s-block.hl p { opacity:.8; }

/* ══════════ TARIEVEN ══════════ */
.tarieven { background: var(--white); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.tarieven-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px;
  border-left: 2px solid var(--ink); border-top: 2px solid var(--ink);
}
.t-block { border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); padding: 40px 32px; }
.t-block.ft { background: var(--ink); color: var(--white); }
.t-scenario { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:11px; letter-spacing:.18em; text-transform:uppercase; color:var(--mid); margin-bottom:14px; }
.t-block.ft .t-scenario { color:rgba(255,255,255,.3); }
.t-heading { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:42px; line-height:.9; letter-spacing:-.01em; color:var(--ink); margin-bottom:12px; }
.t-block.ft .t-heading { color:#fff; }
.t-sub { font-size:14px; color:var(--mid); margin-bottom:24px; line-height:1.55; }
.t-block.ft .t-sub { color:rgba(255,255,255,.45); }
.t-list { list-style:none; display:flex; flex-direction:column; gap:10px; border-top:1px solid var(--rule); padding-top:22px; }
.t-block.ft .t-list { border-top-color:rgba(255,255,255,.12); }
.t-list li { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--ink-soft); line-height:1.45; }
.t-block.ft .t-list li { color:rgba(255,255,255,.75); }
.t-list li::before { content:'—'; color:var(--orange); font-weight:700; flex-shrink:0; }

/* ══════════ REGIO ══════════ */
.regio { background: var(--bg); }
.regio-layout {
  display: grid; grid-template-columns: 360px 1fr; margin-top: 56px;
  border: 2px solid var(--ink);
}
.regio-info { padding: 40px 32px; border-right: 2px solid var(--ink); background: var(--white); display: flex; flex-direction: column; gap: 18px; }
.regio-info h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:21px; color:var(--ink); margin-bottom:6px; }
.regio-info p  { font-size:14px; color:var(--mid); line-height:1.65; }
.hub-list { list-style:none; display:flex; flex-direction:column; gap:7px; }
.hub-list li { display:flex; align-items:center; gap:8px; font-size:14px; color:var(--ink-soft); }
.hub-list li::before { content:''; width:6px; height:6px; background:var(--orange); border-radius:50%; flex-shrink:0; }
.regio-cities { padding: 28px 24px; display: flex; flex-wrap: wrap; gap: 8px; align-content: flex-start; }
.city-pill {
  display: inline-block; padding: 7px 13px;
  border: 1.5px solid var(--rule); border-radius: 3px;
  font-family:'Barlow Condensed',sans-serif; font-weight:600; font-size:13px; letter-spacing:.04em;
  color:var(--ink-soft); text-decoration:none; transition:all .15s; background:var(--white);
}
.city-pill:hover { border-color:var(--orange); color:var(--orange); background:rgba(217,79,30,.04); }

/* ══════════ REVIEWS ══════════ */
.reviews { background: var(--white); border-top: 2px solid var(--ink); border-bottom: 2px solid var(--ink); }
.reviews-head { display:flex; align-items:center; justify-content:space-between; margin-bottom:44px; flex-wrap:wrap; gap:20px; }
.score-block { display:flex; align-items:center; gap:18px; padding:18px 24px; border:2px solid var(--ink); border-radius:var(--radius); background:var(--bg); }
.score-big { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:52px; color:var(--ink); line-height:1; }
.score-stars { color:var(--orange); font-size:18px; letter-spacing:2px; }
.score-info  { font-size:13px; color:var(--mid); margin-top:4px; }
.reviews-grid { display:grid; grid-template-columns:repeat(3,1fr); border-left:2px solid var(--ink); border-top:2px solid var(--ink); }
.r-item { border-right:2px solid var(--ink); border-bottom:2px solid var(--ink); padding:30px; }
.r-stars { color:var(--orange); font-size:14px; margin-bottom:13px; letter-spacing:2px; }
.r-quote { font-family:'Playfair Display',serif; font-style:italic; font-size:15px; color:var(--ink); line-height:1.7; margin-bottom:18px; }
.r-who { font-size:13px; color:var(--mid); font-weight:400; }
.r-who strong { color:var(--ink-soft); font-weight:500; }

/* ══════════ FAQ ══════════ */
.faq-sec { background: var(--bg); }
.faq-layout { display:grid; grid-template-columns:1fr 340px; gap:56px; margin-top:56px; align-items:start; }
.faq-list { display:flex; flex-direction:column; border-top:2px solid var(--ink); }
.faq-item { border-bottom:2px solid var(--ink); }
.faq-btn {
  width:100%; background:none; border:none; padding:20px 0;
  text-align:left; display:flex; align-items:center; justify-content:space-between; gap:16px;
  cursor:pointer; font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:18px;
  color:var(--ink); letter-spacing:.01em; transition:color .15s;
}
.faq-btn:hover { color:var(--orange); }
.faq-chev {
  width:28px; height:28px; border:2px solid var(--ink); border-radius:2px;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  font-size:18px; font-weight:300; color:var(--orange); transition:transform .2s, background .15s;
  background:var(--white); line-height:1;
}
.faq-item.open .faq-chev { transform:rotate(45deg); background:var(--orange); color:#fff; border-color:var(--orange); }
.faq-body { max-height:0; overflow:hidden; transition:max-height .3s ease; }
.faq-item.open .faq-body { max-height:280px; }
.faq-body-in { padding:0 0 22px; font-size:15px; color:var(--ink-soft); line-height:1.75; }

.contact-card {
  background: var(--ink); color: var(--white); padding: 36px 30px;
  border-radius: var(--radius); position: sticky; top: 80px;
}
.contact-card .sec-eye { color:rgba(255,255,255,.35); }
.contact-card .sec-eye::before { background:rgba(255,255,255,.2); }
.contact-card h3 { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:26px; color:#fff; margin-bottom:10px; line-height:1.1; letter-spacing:.01em; }
.contact-card p  { font-size:14px; color:rgba(255,255,255,.45); line-height:1.65; margin-bottom:22px; }
.contact-card .btn { width:100%; justify-content:center; margin-bottom:9px; }
.c-div { border:none; border-top:1px solid rgba(255,255,255,.1); margin:18px 0; }
.c-meta { font-size:12.5px; color:rgba(255,255,255,.3); line-height:2; }

/* ══════════ CTA STRIP ══════════ */
.cta-strip { background:var(--orange); border-top:2px solid var(--ink); border-bottom:2px solid var(--ink); padding:0; }
.cta-inner { display:grid; grid-template-columns:1fr auto; align-items:center; min-height:112px; }
.cta-text  { padding:36px 48px 36px 0; border-right:2px solid rgba(255,255,255,.25); }
.cta-text h2 { font-family:'Barlow Condensed',sans-serif; font-weight:900; font-size:clamp(30px,4vw,50px); color:#fff; line-height:.9; letter-spacing:.01em; margin-bottom:6px; }
.cta-text p  { font-size:14px; color:rgba(255,255,255,.75); }
.cta-actions { padding:0 0 0 44px; display:flex; gap:12px; }

/* ══════════ FOOTER ══════════ */
.site-footer { background: var(--ink); color: var(--white); }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:0; border-bottom:1px solid rgba(255,255,255,.08); }
.f-col { padding:44px 36px 44px 0; border-right:1px solid rgba(255,255,255,.08); }
.f-col:last-child { border-right:none; }
.f-col:not(:first-child) { padding-left:36px; }
.f-logo-name { font-family:'Barlow Condensed',sans-serif; font-weight:800; font-size:17px; color:#fff; letter-spacing:.01em; line-height:1; }
.f-logo-tag  { font-size:10px; color:rgba(255,255,255,.3); letter-spacing:.08em; text-transform:uppercase; margin-top:2px; }
.footer-desc { font-size:14px; color:rgba(255,255,255,.35); margin-top:14px; line-height:1.7; max-width:210px; }
.footer-contacts { margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.footer-contacts a { display:flex; align-items:center; gap:8px; text-decoration:none; font-size:14px; color:rgba(255,255,255,.6); transition:color .15s; }
.footer-contacts a:hover { color:#fff; }
.fi { color:var(--orange); font-size:14px; width:18px; }
.f-col h4 { font-family:'Barlow Condensed',sans-serif; font-weight:700; font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:rgba(255,255,255,.3); margin-bottom:18px; }
.f-col ul  { list-style:none; display:flex; flex-direction:column; gap:10px; }
.f-col ul li a { font-size:14px; color:rgba(255,255,255,.55); text-decoration:none; transition:color .15s; }
.f-col ul li a:hover { color:#fff; }
.footer-bottom { padding:18px 0; display:flex; align-items:center; justify-content:space-between; font-size:12px; color:rgba(255,255,255,.22); flex-wrap:wrap; gap:8px; }
.footer-bottom a { color:rgba(255,255,255,.28); text-decoration:none; }
.footer-bottom a:hover { color:rgba(255,255,255,.7); }
/* ══════════ ANIMATIONS ══════════ */
@keyframes fadeUp { from { opacity:0; transform:translateY(18px); } to { opacity:1; transform:translateY(0); } }
.hero-kicker { animation: fadeUp .45s ease both; }
.hero-h1     { animation: fadeUp .55s .07s ease both; }
.hero-sub    { animation: fadeUp .55s .14s ease both; }
.hero-ctas   { animation: fadeUp .55s .21s ease both; }
.trust-row   { animation: fadeUp .55s .28s ease both; }
.hero-aside  { animation: fadeUp .6s .15s ease both; }

/* ══════════ CITY PAGE ══════════ */
.city-hero { background: var(--white); border-bottom: 2px solid var(--ink); padding: 64px 0; }
.city-hero .hero-h1 { font-size: clamp(48px, 6vw, 80px); }
.city-content { padding: 64px 0; }
.city-content h2 { font-family: 'Barlow Condensed', sans-serif; font-weight: 800; font-size: 28px; color: var(--ink); margin-bottom: 16px; margin-top: 40px; }
.city-content h2:first-child { margin-top: 0; }
.city-content p { font-size: 16px; color: var(--ink-soft); line-height: 1.75; margin-bottom: 16px; }
.city-nearby { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns:1fr; }
  .hero-main { border-right:none; border-bottom:2px solid var(--ink); padding:60px 28px; }
  .hero-main::before { display:none; }
  .hero-aside { flex-direction:row; flex-wrap:wrap; }
  .aside-panel { flex:1 1 280px; }
  .aside-contact { flex:1 1 280px; border-top:1px solid rgba(255,255,255,.1); }
  .diensten-grid { grid-template-columns:repeat(2,1fr); }
  .steps-row { grid-template-columns:repeat(2,1fr); }
  .tarieven-grid { grid-template-columns:1fr; }
  .regio-layout { grid-template-columns:1fr; }
  .regio-info { border-right:none; border-bottom:2px solid var(--ink); }
  .reviews-grid { grid-template-columns:1fr; }
  .faq-layout { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr 1fr; }
  .sec-header { grid-template-columns:1fr; gap:16px; }
  .cta-inner { grid-template-columns:1fr; padding:36px 0; }
  .cta-text { padding-right:0; border-right:none; border-bottom:1px solid rgba(255,255,255,.2); padding-bottom:22px; margin-bottom:22px; }
  .cta-actions { padding-left:0; }
}
@media (max-width: 640px) {
  .main-nav { display:none; }
  .mobile-toggle { display: block; }
  .header-actions { padding: 0 12px; border-left: none; }
  .header-actions .btn-outline { display:none; }
  .header-actions .btn-primary { font-size: 11px; padding: 7px 12px; letter-spacing: 0.03em; }
  .logo-block { padding: 0 12px; }
  .logo-name { font-size: 14px; }
  .logo-tagline { font-size: 9px; }
  .diensten-grid { grid-template-columns:1fr; }
  .steps-row { grid-template-columns:1fr; }
  .footer-top { grid-template-columns:1fr; }
  .reviews-head { flex-direction:column; align-items:flex-start; }
}
