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

:root {
  --bg:          #ffffff;
  --bg-subtle:   #f7f9fc;
  --bg-muted:    #eef2f8;
  --bg-dark:     #0d1f3c;
  --bg-dark-2:   #122444;
  --bg-blue:     #1648b8;

  --blue:        #1648b8;
  --blue-hi:     #1a55d0;
  --blue-light:  #eef3ff;
  --gold:        #f0c840;
  --gold-hi:     #d4ae2c;
  --green:       #22c55e;

  --text:        #0c1628;
  --text-2:      #4b6280;
  --text-3:      #8fa4bc;
  --text-inv:    #ffffff;
  --text-inv-2:  rgba(255,255,255,0.65);
  --text-inv-3:  rgba(255,255,255,0.38);

  --border:      #e4ecf5;
  --border-2:    #cfdaea;
  --border-dk:   rgba(255,255,255,0.09);
  --border-dk-2: rgba(255,255,255,0.14);

  --sh-xs:  0 1px 3px rgba(10,20,48,0.07);
  --sh-sm:  0 2px 8px rgba(10,20,48,0.08), 0 1px 2px rgba(10,20,48,0.05);
  --sh:     0 4px 16px rgba(10,20,48,0.09), 0 2px 4px rgba(10,20,48,0.05);
  --sh-lg:  0 10px 36px rgba(10,20,48,0.11), 0 4px 10px rgba(10,20,48,0.06);
  --sh-xl:  0 24px 60px rgba(10,20,48,0.15), 0 8px 24px rgba(10,20,48,0.08);

  --r-xs: 5px;   --r-sm: 8px;   --r: 11px;
  --r-md: 14px;  --r-lg: 18px;  --r-xl: 24px;
  --r-2xl: 32px; --r-full: 9999px;

  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }
body {
  font-family: "Figtree", -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(1200px, 100% - 48px); margin: 0 auto; }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.animate-fade-up  { opacity:0; animation: fadeUp 0.72s var(--ease) forwards; }
.animate-fade-up2 { opacity:0; animation: fadeUp 0.60s var(--ease) forwards; }
.animate-fade-scale { opacity:0; animation: fadeUp 0.80s var(--ease) forwards; }
.delay-1{animation-delay:.08s;} .delay-2{animation-delay:.15s;} .delay-3{animation-delay:.23s;}
.delay-4{animation-delay:.34s;} .delay-5{animation-delay:.46s;} .delay-6{animation-delay:.60s;}
[data-reveal] { opacity:0; transform:translateY(26px); transition: opacity .85s var(--ease), transform .85s var(--ease); }
[data-reveal].revealed { opacity:1; transform:none; }

/* ── TOPBAR ── */
.topbar {
  background: var(--gold);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  padding: 6px 0;
}
.topbar-inner { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.topbar-left { display:flex; align-items:center; gap:20px; }
.topbar-left span {
  display:flex; align-items:center; gap:6px;
  font-size:12.5px; font-weight:600; color:#0c1628;
  letter-spacing:.01em;
}
.topbar-left span::before {
  content:''; width:6px; height:6px; border-radius:50%; background:var(--blue);
  flex-shrink:0;
}
.topbar-right { display:flex; align-items:center; gap:6px; }
.topbar-vragen {
  font-size:12.5px; font-weight:700; color:var(--blue);
  letter-spacing:.05em; text-transform:uppercase; margin-right:4px;
}
.topbar-right a {
  font-size:12.5px; font-weight:600; color:#0c1628;
  display:flex; align-items:center; gap:5px; transition:opacity .18s;
}
.topbar-right a:hover { opacity:.65; }

/* ── HEADER ── */
.site-header {
  position:sticky; top:0; z-index:200;
  background: #080f1e;
  border-bottom: 1px solid transparent;
  transition: background .28s ease, box-shadow .28s ease, border-color .28s ease;
  padding: 0;
}
.site-header.scrolled {
  background: rgba(8,15,30,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05), 0 8px 32px rgba(0,0,0,0.25);
  border-bottom-color: rgba(255,255,255,0.04);
}
.nav-wrapper { display:flex; align-items:center; gap:16px; padding:15px 0; }
.logo { display:flex; align-items:center; gap:9px; flex-shrink:0; color:#fff; }
.logo-icon {
  width:32px; height:32px; border-radius:9px;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden; flex-shrink:0;
}
.logo-text { display:flex; flex-direction:column; line-height:1; }
.logo-name { font-size:17px; font-weight:800; letter-spacing:-.02em; }
.logo-sub { font-size:9px; font-weight:500; letter-spacing:.08em; text-transform:uppercase; opacity:.7; margin-top:4px; }
.main-nav { flex:1; display:flex; justify-content:center; }
.main-nav ul {
  display:flex; list-style:none; gap:2px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-full); padding:4px;
}
.main-nav a {
  display:block; padding:7px 15px;
  color:rgba(255,255,255,.68); font-size:14px; font-weight:500;
  border-radius:var(--r-full);
  transition: color .18s, background .18s;
}
.main-nav a:hover,.main-nav a.active { color:#fff; background:rgba(255,255,255,.1); }
.nav-actions { display:flex; align-items:center; gap:10px; flex-shrink:0; }
.nav-phone { font-size:13.5px; font-weight:600; color:rgba(255,255,255,.68); transition:color .18s; }
.nav-phone:hover { color:#fff; }

/* ── HAMBURGER ── */
.hamburger { display:none; flex-direction:column; gap:5px; padding:6px; flex-shrink:0; }
.hamburger span { display:block; width:22px; height:1.5px; background:#fff; border-radius:2px; transition:transform .28s ease, opacity .28s ease; }
.hamburger.open span:nth-child(1) { transform:translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-6.5px) rotate(-45deg); }
.mobile-nav { display:none; flex-direction:column; background:var(--bg-dark-2); padding:20px 24px 28px; border-top:1px solid var(--border-dk); }
.mobile-nav.open { display:flex; }
.mobile-nav ul { list-style:none; display:flex; flex-direction:column; margin-bottom:20px; }
.mobile-nav ul a { display:block; padding:12px 0; color:rgba(255,255,255,.8); font-size:16px; font-weight:500; border-bottom:1px solid rgba(255,255,255,.06); transition:color .18s; }
.mobile-nav ul a:hover { color:#fff; }
.mobile-cta { text-align:center; }

/* ── BREADCRUMB ── */
.breadcrumb { padding:12px 0; background:var(--bg-dark); border-bottom:1px solid var(--border-dk); }
.breadcrumb-inner { display:flex; align-items:center; gap:7px; font-size:13px; }
.breadcrumb-inner a { color:var(--text-inv-2); transition:color .18s; }
.breadcrumb-inner a:hover { color:#fff; }
.breadcrumb-inner span { color:var(--text-inv-3); font-size:11px; }
.breadcrumb-inner .current { color:rgba(255,255,255,.8); }

/* ── BUTTONS ── */
.primary-btn {
  display:inline-flex; align-items:center; justify-content:center; gap:7px;
  background:var(--gold); color:#0c1628;
  font-size:14.5px; font-weight:700; letter-spacing:-.01em;
  padding:12px 22px; border-radius:var(--r-md);
  box-shadow:0 2px 8px rgba(240,200,64,.28);
  transition: background .18s, transform .15s, box-shadow .18s;
  white-space:nowrap;
}
.primary-btn:hover { background:var(--gold-hi); transform:translateY(-1px); box-shadow:0 4px 18px rgba(240,200,64,.35); }
.dark-btn { background:var(--blue); color:#fff; box-shadow:0 2px 8px rgba(22,72,184,.3); }
.dark-btn:hover { background:var(--blue-hi); box-shadow:0 4px 18px rgba(22,72,184,.38); }
.ghost-btn {
  display:inline-flex; align-items:center; gap:9px;
  color:rgba(255,255,255,.72); font-size:14.5px; font-weight:600;
  padding:12px 0; transition:color .18s;
}
.ghost-btn:hover { color:#fff; }
.ghost-btn-dark {
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 22px; border-radius:var(--r-md); font-size:14.5px; font-weight:600;
  border:1.5px solid var(--border-2); color:var(--text);
  transition:border-color .18s, background .18s, color .18s;
  white-space:nowrap;
}
.ghost-btn-dark:hover { border-color:var(--blue); color:var(--blue); background:var(--blue-light); }
.featured-offerte-btn {
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 22px; border-radius:var(--r-md); font-size:14.5px; font-weight:700;
  background:var(--blue); color:#fff;
  transition:background .18s, transform .15s;
  white-space:nowrap;
}
.featured-offerte-btn:hover { background:var(--blue-hi); transform:translateY(-1px); }

/* ── SECTION LABELS ── */
.section-label {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  color:var(--blue); margin-bottom:14px;
}
.section-label::before { content:''; width:18px; height:2px; background:var(--blue); border-radius:1px; }
.section-label.inv { color:rgba(255,255,255,.55); }
.section-label.inv::before { background:rgba(255,255,255,.4); }

.section-tag {
  display:inline-block; background:var(--blue-light); color:var(--blue);
  font-size:11.5px; font-weight:700; letter-spacing:.09em; text-transform:uppercase;
  padding:5px 12px; border-radius:var(--r-full); margin-bottom:14px;
}
.section-tag.dark { background:rgba(22,72,184,.1); color:var(--blue); }

/* ── HERO ── */
.hero {
  background:var(--bg-dark);
  position:relative; overflow:hidden;
  padding:40px 0 48px;
}
.hero::before {
  content:'';
  position:absolute; inset:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 65% -10%, rgba(22,72,184,.55) 0%, transparent 65%),
    radial-gradient(ellipse 45% 50% at 95% 95%, rgba(22,72,184,.25) 0%, transparent 60%);
}
.hero::after {
  content:''; position:absolute; inset:0; pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size:48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:center; position:relative; z-index:1; }

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px;
  background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.11);
  color:rgba(255,255,255,.8); font-size:13px; font-weight:500;
  padding:7px 14px; border-radius:var(--r-full); margin-bottom:28px;
  letter-spacing:.01em;
}
.eyebrow-dot { width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 0 2.5px rgba(34,197,94,.22); flex-shrink:0; }

.hero h1 {
  font-size:clamp(48px,6.5vw,82px); font-weight:800;
  line-height:.97; letter-spacing:-.05em;
  color:#fff; margin-bottom:22px;
}
.hero h1 em {
  font-style:normal;
  background:linear-gradient(100deg, var(--gold) 0%, #fde68a 100%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.hero-desc { font-size:17px; line-height:1.78; color:var(--text-inv-2); max-width:420px; margin-bottom:36px; }
.hero-actions { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-trust { display:flex; align-items:center; gap:10px; }
.stars { color:var(--gold); letter-spacing:1px; }
.hero-trust .stars { font-size:14px; }
.hero-trust-text { font-size:13px; color:var(--text-inv-3); }

.hero-visual { position:relative; }
.hero-img-wrap {
  border-radius:var(--r-2xl); overflow:hidden;
  max-height:500px; position:relative;
  box-shadow:0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.07);
}
.hero-img-wrap img { width:100%; height:auto; max-height:500px; object-fit:cover; object-position:center 15%; display:block; }
.hero-img-wrap::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(8,15,30,.6) 0%, transparent 55%);
}

.hero-float-card {
  position:absolute;
  background:rgba(12,22,42,.82); backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.11);
  border-radius:var(--r-md); padding:13px 16px;
  display:flex; align-items:center; gap:11px;
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.hero-float-card-1 { bottom:32px; left:-28px; }
.hero-float-card-2 { top:36px; right:-28px; }
.float-icon {
  width:36px; height:36px; border-radius:9px; display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.float-icon-green { background:rgba(34,197,94,.15); color:var(--green); }
.float-icon-gold  { background:rgba(240,200,64,.15); color:var(--gold); }
.float-card-text strong { display:block; font-size:12.5px; font-weight:700; color:#fff; line-height:1.3; }
.float-card-text span  { font-size:11.5px; color:rgba(255,255,255,.5); }

/* ── STATS ── */
.stats { background:var(--bg); border-bottom:1px solid var(--border); }
.stats-grid {
  display:grid; grid-template-columns:repeat(4,1fr);
}
.stat {
  padding:34px 24px; text-align:center;
  border-right:1px solid var(--border);
  transition:background .2s;
}
.stat:last-child { border-right:none; }
.stat:hover { background:var(--bg-subtle); }
.stat-number { display:block; font-size:36px; font-weight:800; color:var(--text); letter-spacing:-.04em; line-height:1; margin-bottom:5px; }
.stat-number span { color:var(--blue); }
.stat-label { font-size:13px; color:var(--text-3); font-weight:500; }
.stat-divider { display:none; }

/* ── HOW IT WORKS ── */
.steps { background:var(--bg-subtle); padding:100px 0; }
.section-header { max-width:580px; margin:0 auto 64px; text-align:center; }
.section-header h2 { font-size:clamp(30px,4.5vw,48px); font-weight:700; letter-spacing:-.04em; line-height:1.1; color:var(--text); margin-bottom:14px; }
.section-header p { font-size:17px; line-height:1.75; color:var(--text-2); }
.section-header.light h2 { color:#fff; }
.section-header.light p { color:var(--text-inv-2); }

.steps-grid { display:grid; grid-template-columns:1fr auto 1fr auto 1fr; gap:24px; align-items:start; }
.step { display:flex; flex-direction:column; align-items:center; text-align:center; }
.step-num {
  width:52px; height:52px; border-radius:50%;
  background:#fff; border:1.5px solid var(--border-2);
  display:flex; align-items:center; justify-content:center;
  font-size:15px; font-weight:800; color:var(--blue);
  margin-bottom:20px; box-shadow:var(--sh-xs);
  flex-shrink:0;
}
.step-icon {
  width:72px; height:72px; border-radius:var(--r-lg);
  background:var(--blue); display:flex; align-items:center; justify-content:center;
  margin:0 auto 24px; transition:transform .25s var(--ease);
  box-shadow:0 8px 24px rgba(22,72,184,.3);
}
.step-icon:hover { transform:scale(1.07); }
.step-icon svg { width:32px; height:32px; color:#fff; }
.step h3 { font-size:18px; font-weight:700; color:var(--text); margin-bottom:8px; letter-spacing:-.01em; }
.step p { font-size:15px; line-height:1.65; color:var(--text-2); max-width:220px; margin:0 auto; }

.step-arrow {
  display:flex; align-items:center; justify-content:center; padding-top:28px; color:var(--text-3);
}
.step-arrow svg { width:20px; height:20px; }
.arrow { display:none; }

/* ── BRANDS ── */
.brands { background:var(--bg); padding:56px 0; border-bottom:1px solid var(--border); }
.brands-label { text-align:center; font-size:11.5px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--text-3); margin-bottom:32px; }
.brands-grid { display:flex; align-items:center; justify-content:center; gap:0; flex-wrap:wrap; }
.brand-item {
  padding:14px 56px; font-size:22px; font-weight:800; color:var(--text-3);
  letter-spacing:-.02em; border-right:1px solid var(--border);
  transition:color .18s;
}
.brand-item:last-child { border-right:none; }
.brand-item:hover { color:var(--blue); }

/* ── ABOUT ── */
.about { padding:100px 0; background:var(--bg); }
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.image-link { display:block; position:relative; border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-lg); }
.image-link img { width:100%; max-height:350px; object-fit:cover; object-position:center calc(50% - 150px); transition:transform .5s var(--ease); }
.image-link:hover img { transform:scale(1.04); }
.image-link::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(8,15,30,.5),transparent 55%); pointer-events:none; }
.image-overlay { position:absolute; bottom:24px; left:24px; color:#fff; font-size:16px; font-weight:600; z-index:1; pointer-events:none; letter-spacing:-.01em; }

.about-content h2 { font-size:clamp(28px,3.5vw,44px); font-weight:700; letter-spacing:-.04em; line-height:1.12; color:var(--text); margin-bottom:18px; }
.about-content p { font-size:16px; line-height:1.8; color:var(--text-2); margin-bottom:28px; max-width:480px; }
.about-list { list-style:none; display:flex; flex-direction:column; gap:14px; margin-bottom:36px; }
.about-list li { position:relative; padding-left:36px; font-size:16px; font-weight:500; color:var(--text); line-height:1.5; }
.about-list li::before {
  content:''; position:absolute; left:0; top:3px;
  width:20px; height:20px; border-radius:50%; background:var(--blue);
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size:12px; background-position:center; background-repeat:no-repeat;
}

/* ── SERVICES ── */
.services { padding:100px 0; background:var(--bg-dark); }
.services .section-header h2 { color:#fff; }
.services .section-header p { color:var(--text-inv-2); }
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--border-dk); border:1px solid var(--border-dk); border-radius:var(--r-xl); overflow:hidden; }
.service-card {
  background:var(--bg-dark-2); padding:32px 28px;
  transition:background .2s, transform .2s;
  display:flex; flex-direction:column; gap:14px;
  cursor:pointer; text-decoration:none;
}
.service-card:hover { background:rgba(22,72,184,.15); transform:translateY(-2px); }
.service-icon {
  width:44px; height:44px; border-radius:var(--r-sm);
  background:rgba(240,200,64,.12); border:1px solid rgba(240,200,64,.2);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold);
}
.service-card h3 { font-size:17px; font-weight:700; color:#fff; letter-spacing:-.01em; }
.service-card p { font-size:14.5px; line-height:1.65; color:var(--text-inv-2); flex:1; }
.service-link { font-size:13.5px; font-weight:600; color:var(--gold); opacity:.8; transition:opacity .18s; }
.service-link:hover { opacity:1; }

/* ── WERKGEBIED ── */
.werkgebied { padding:100px 0; background:var(--bg-subtle); }
.werkgebied-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.werkgebied-content h2 { font-size:clamp(28px,3.5vw,44px); font-weight:700; letter-spacing:-.04em; line-height:1.12; color:var(--text); margin-bottom:16px; margin-top:14px; }
.werkgebied-content p { font-size:16px; line-height:1.8; color:var(--text-2); margin-bottom:28px; }
.werkgebied-cities { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:36px; }
.city-pill { padding:7px 15px; background:var(--bg); border:1.5px solid var(--border); border-radius:var(--r-full); font-size:13.5px; font-weight:600; color:var(--text-2); transition:border-color .18s, color .18s; }
.city-pill:hover { border-color:var(--blue); color:var(--blue); }
.werkgebied-map { border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-lg); border:1px solid var(--border); }
.map-placeholder { background:var(--bg-muted); border-radius:var(--r-xl); overflow:hidden; }

/* ── TESTIMONIALS ── */
.testimonials { padding:100px 0; background:var(--bg); }
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial-card {
  background:var(--bg-subtle); border:1px solid var(--border); border-radius:var(--r-xl); padding:32px;
  display:flex; flex-direction:column; gap:18px;
  transition:box-shadow .2s, border-color .2s;
}
.testimonial-card:hover { box-shadow:var(--sh); border-color:var(--border-2); }
.testimonial-stars { color:#f59e0b; font-size:15px; letter-spacing:2px; }
.testimonial-card > p { font-size:15.5px; line-height:1.75; color:var(--text-2); flex:1; font-style:italic; }
.testimonial-author { display:flex; align-items:center; gap:12px; padding-top:18px; border-top:1px solid var(--border); }
.author-avatar {
  width:40px; height:40px; border-radius:50%;
  background:var(--blue); color:#fff; font-size:13px; font-weight:700;
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.testimonial-author strong { display:block; font-size:14.5px; font-weight:700; color:var(--text); }
.testimonial-author span { font-size:12.5px; color:var(--text-3); }

/* ── BLOG ── */
.blog-section { padding:100px 0; background:var(--bg-subtle); }
.blog-section .container { width:min(1200px,100% - 80px); }
.blog-header { max-width:680px; margin:0 auto 64px; text-align:center; }
.blog-header h2 { font-size:clamp(34px,5vw,56px); font-weight:700; letter-spacing:-.04em; color:var(--text); margin-bottom:14px; }
.blog-header p { font-size:17px; line-height:1.75; color:var(--text-2); }
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card { display:flex; flex-direction:column; background:var(--bg); border:1px solid var(--border); border-radius:var(--r-xl); overflow:hidden; transition:box-shadow .22s, transform .22s; }
.blog-card:hover { box-shadow:var(--sh-lg); transform:translateY(-4px); }
.blog-image-link { display:block; overflow:hidden; }
.blog-image-link img { width:100%; aspect-ratio:3/2; object-fit:cover; transition:transform .4s var(--ease); }
.blog-image-link:hover img { transform:scale(1.04); }
.blog-card-content { padding:24px; display:flex; flex-direction:column; flex:1; }
.blog-date { font-size:12.5px; color:var(--text-3); margin-bottom:8px; font-weight:500; }
.blog-card h3 { margin:0 0 16px; font-size:17px; line-height:1.45; font-weight:700; color:var(--text); letter-spacing:-.02em; flex:1; }
.blog-card h3 a { color:inherit; }
.blog-card h3 a:hover { color:var(--blue); }
.blog-read-more { display:inline-flex; align-items:center; gap:5px; font-size:13.5px; font-weight:700; color:var(--blue); transition:gap .18s; }
.blog-read-more:hover { gap:8px; }

/* ── CTA ── */
.cta { background:var(--bg-blue); position:relative; overflow:hidden; padding:90px 0; }
.cta::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 80% 60% at 20% 50%, rgba(255,255,255,.06) 0%, transparent 65%);
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.04) 1px,transparent 1px);
  background-size:52px 52px;
}
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:48px; position:relative; z-index:1; }
.cta-text h2 { font-size:clamp(28px,4vw,46px); font-weight:700; color:#fff; letter-spacing:-.04em; margin-bottom:8px; }
.cta-text p { font-size:17px; color:rgba(255,255,255,.65); }
.cta-actions { display:flex; gap:14px; flex-shrink:0; flex-wrap:wrap; }
.cta-btn { background:var(--gold); color:#0c1628; padding:15px 28px; border-radius:var(--r-md); font-size:15px; font-weight:700; white-space:nowrap; transition:background .18s,transform .15s; box-shadow:0 4px 20px rgba(0,0,0,.2); }
.cta-btn:hover { background:var(--gold-hi); transform:translateY(-1px); }
.cta-btn-outline { background:transparent; color:#fff; padding:15px 28px; border-radius:var(--r-md); font-size:15px; font-weight:600; border:1.5px solid rgba(255,255,255,.28); white-space:nowrap; transition:border-color .18s,background .18s; }
.cta-btn-outline:hover { border-color:rgba(255,255,255,.6); background:rgba(255,255,255,.08); }

/* ── FOOTER ── */
.site-footer { background:var(--bg-subtle); border-top:1px solid var(--border); padding:72px 0 40px; color:var(--text); }
.site-footer .container { width:min(1200px,100% - 48px); }
.footer-top { display:grid; grid-template-columns:1.2fr 0.9fr 0.7fr 0.7fr 0.75fr; gap:40px; align-items:start; }
.footer-logo { display:inline-flex; align-items:center; gap:9px; color:var(--text); margin-bottom:18px; }
.footer-logo-icon { width:34px; height:34px; border-radius:9px; background:var(--gold); display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:800; color:#0c1628; }
.footer-logo-text { font-size:18px; font-weight:800; letter-spacing:-.02em; }
.footer-description { font-size:14.5px; line-height:1.7; color:var(--text-2); margin-bottom:22px; max-width:260px; }
.footer-socials { display:flex; gap:10px; }
.footer-socials a { width:36px; height:36px; border-radius:var(--r-sm); background:var(--bg); border:1px solid var(--border); color:var(--text-2); display:flex; align-items:center; justify-content:center; transition:background .18s,color .18s,border-color .18s,transform .18s; }
.footer-socials a:hover { background:var(--blue); color:#fff; border-color:var(--blue); transform:translateY(-2px); }
.footer-insta { display:flex; flex-direction:column; gap:10px; }
.footer-insta-handle {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:600; color:var(--text-2);
  transition:color .18s;
}
.footer-insta-handle:hover { color:var(--blue); }
.footer-insta-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:4px; }
.footer-insta-img { display:block; aspect-ratio:1; overflow:hidden; border-radius:var(--r-sm); background:var(--bg-subtle); }
.footer-insta-img svg { width:100%; height:100%; display:block; }
.footer-insta-img:hover { opacity:.8; transition:opacity .18s; }
.footer-location h3 { font-size:14.5px; font-weight:700; margin-bottom:16px; color:var(--text); letter-spacing:-.01em; }
.footer-location p { font-size:14px; line-height:1.75; color:var(--text-2); margin-bottom:14px; }
.footer-nav-list { list-style:none; display:flex; flex-direction:column; gap:9px; }
.footer-nav-list a { font-size:14px; color:var(--text-2); transition:color .18s; }
.footer-nav-list a:hover { color:var(--blue); }
.footer-contact-links a { font-size:14px; color:var(--blue); transition:opacity .18s; }
.footer-contact-links a:hover { opacity:.75; }
.footer-maps-link { display:inline-flex; align-items:center; gap:4px; font-size:13.5px; font-weight:600; color:var(--blue); margin-top:4px; transition:gap .18s; }
.footer-maps-link:hover { gap:7px; }
.footer-divider { height:1px; background:var(--border); margin:52px 0 28px; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; gap:20px; }
.footer-bottom p { font-size:13px; color:var(--text-3); }
.footer-nav { display:flex; align-items:center; gap:24px; }
.footer-nav a { font-size:13px; color:var(--text-3); transition:color .18s; }
.footer-nav a:hover { color:var(--text); }

/* ── PAGE HERO ── */
.page-hero { padding:56px 0 60px; background:var(--bg-dark); position:relative; overflow:hidden; }
.page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 70% at 80% 50%, rgba(22,72,184,.4) 0%, transparent 65%); pointer-events:none; }
.page-hero-content { max-width:620px; position:relative; z-index:1; }
.page-hero h1 { font-size:clamp(40px,5.5vw,64px); font-weight:800; letter-spacing:-.05em; line-height:1.02; color:#fff; margin:14px 0 18px; }
.page-hero p { font-size:17px; line-height:1.78; color:var(--text-inv-2); max-width:460px; }

/* ── FEATURED PRODUCT ── */
.featured-product { background:var(--bg-dark); padding:0 0 80px; }
.featured-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  background:var(--bg-dark-2); border:1px solid var(--border-dk-2);
  border-radius:var(--r-2xl); overflow:hidden;
}
.featured-img { position:relative; background:var(--bg-dark); padding:48px 40px; display:flex; align-items:center; justify-content:center; }
.featured-label {
  position:absolute; top:20px; left:20px;
  background:var(--gold); color:#0c1628;
  font-size:11px; font-weight:800; letter-spacing:.09em; text-transform:uppercase;
  padding:5px 12px; border-radius:var(--r-full);
}
.featured-info { padding:48px; border-left:1px solid var(--border-dk); }
.featured-badges { display:flex; align-items:center; gap:8px; margin-bottom:12px; }
.brand-pill-lg { background:rgba(255,255,255,.09); border:1px solid var(--border-dk-2); border-radius:var(--r-full); padding:4px 13px; font-size:12.5px; font-weight:700; color:rgba(255,255,255,.8); }
.energy-badge-lg { border-radius:var(--r-full); padding:4px 13px; font-size:12.5px; font-weight:800; color:#fff; }
.featured-info h2 { font-size:clamp(24px,3vw,38px); font-weight:700; letter-spacing:-.04em; line-height:1.1; color:#fff; margin-bottom:14px; }
.featured-desc { font-size:15px; line-height:1.78; color:var(--text-inv-2); margin-bottom:28px; }
.featured-specs-row { display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin-bottom:28px; }
.fspec { background:rgba(255,255,255,.05); border:1px solid var(--border-dk); border-radius:var(--r-sm); padding:12px 10px; text-align:center; }
.fspec-val { display:block; font-size:17px; font-weight:800; color:#fff; line-height:1; margin-bottom:4px; }
.fspec-lab { display:block; font-size:11.5px; color:var(--text-inv-2); }
.featured-price { margin-bottom:22px; }
.featured-from { font-size:12px; color:var(--text-inv-3); display:block; margin-bottom:2px; }
.featured-amount { font-size:36px; font-weight:800; color:#fff; letter-spacing:-.04em; line-height:1; display:block; margin-bottom:4px; }
.featured-note { font-size:12px; color:var(--text-inv-3); }
.featured-actions { display:flex; gap:10px; flex-wrap:wrap; }

/* ── PRODUCTS SECTION ── */
.products-section { padding:80px 0 100px; background:var(--bg-subtle); }
.products-header { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:36px; flex-wrap:wrap; }
.products-header h2 { font-size:clamp(22px,3vw,34px); font-weight:700; color:var(--text); letter-spacing:-.03em; }
.filter-bar { display:flex; gap:6px; flex-wrap:wrap; background:var(--bg); border:1px solid var(--border); border-radius:var(--r-full); padding:4px; }
.filter-btn { padding:8px 18px; border-radius:var(--r-full); font-size:13.5px; font-weight:600; color:var(--text-2); border:none; background:transparent; cursor:pointer; transition:background .18s,color .18s; font-family:inherit; }
.filter-btn:hover { color:var(--text); }
.filter-btn.active { background:var(--blue); color:#fff; box-shadow:0 2px 8px rgba(22,72,184,.25); }
.products-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:18px; }
.product-card {
  background:var(--bg); border:1px solid var(--border); border-radius:var(--r-lg);
  overflow:hidden; display:flex; flex-direction:column;
  transition:box-shadow .22s var(--ease), transform .22s var(--ease), border-color .22s;
}
.product-card:hover { box-shadow:var(--sh-lg); transform:translateY(-5px); border-color:var(--border-2); }
.product-img {
  position:relative; background:linear-gradient(145deg,#eef3ff,#e0eaff);
  height:180px; display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.product-brand-badge { position:absolute; top:12px; left:12px; background:rgba(255,255,255,.92); backdrop-filter:blur(8px); border-radius:var(--r-sm); padding:3px 9px; font-size:11px; font-weight:700; color:var(--text); box-shadow:var(--sh-xs); }
.energy-badge { position:absolute; top:12px; right:12px; border-radius:var(--r-sm); padding:3px 9px; font-size:11px; font-weight:800; color:#fff; letter-spacing:.04em; }
.energy-aaa { background:#16a34a; }
.energy-aa  { background:#22c55e; }
.energy-a   { background:#4ade80; color:#14532d; }
.product-info { padding:18px 18px 20px; flex:1; display:flex; flex-direction:column; gap:10px; }
.product-name { font-size:15px; font-weight:700; color:var(--text); line-height:1.35; letter-spacing:-.01em; }
.product-type { font-size:12px; color:var(--text-3); font-weight:500; }
.product-specs { display:flex; flex-direction:column; gap:6px; padding:10px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.spec-row { display:flex; justify-content:space-between; align-items:center; }
.spec-label { font-size:12px; color:var(--text-3); }
.spec-value { font-size:12px; font-weight:600; color:var(--text); }
.product-price { display:flex; flex-direction:column; gap:1px; }
.price-from { font-size:11px; color:var(--text-3); }
.price-amount { font-size:22px; font-weight:800; color:var(--blue); letter-spacing:-.03em; line-height:1; }
.price-note { font-size:11px; color:var(--text-3); }
.product-actions { display:flex; gap:7px; margin-top:auto; }
.btn-info { flex:1; padding:10px 0; border-radius:var(--r); font-size:13px; font-weight:600; text-align:center; background:var(--blue-light); color:var(--blue); transition:background .18s; }
.btn-info:hover { background:var(--bg-muted); }
.btn-quote { flex:1; padding:10px 0; border-radius:var(--r); font-size:13px; font-weight:600; text-align:center; background:var(--blue); color:#fff; transition:background .18s; }
.btn-quote:hover { background:var(--blue-hi); }

/* ── PRODUCT DETAIL ── */
.product-detail { background:var(--bg-subtle); padding:64px 0 80px; }
.product-detail-grid { display:grid; grid-template-columns:1fr 1fr; gap:64px; align-items:start; }
.product-visual { background:var(--bg); border:1px solid var(--border); border-radius:var(--r-xl); padding:52px 40px; display:flex; align-items:center; justify-content:center; position:sticky; top:100px; box-shadow:var(--sh-sm); }
.product-visual svg { max-width:360px; width:100%; }
.product-detail-brand { display:flex; align-items:center; gap:8px; margin-bottom:12px; flex-wrap:wrap; }
.brand-pill { background:var(--bg-muted); border:1.5px solid var(--border); border-radius:var(--r-full); padding:4px 12px; font-size:12.5px; font-weight:700; color:var(--text); }
.product-detail-energy { border-radius:var(--r-full); padding:4px 12px; font-size:12.5px; font-weight:800; color:#fff; }
.product-detail-name { font-size:clamp(24px,3.5vw,40px); font-weight:800; color:var(--text); line-height:1.08; letter-spacing:-.04em; margin-bottom:5px; }
.product-detail-subname { font-size:15px; color:var(--text-3); margin-bottom:16px; }
.product-detail-rating { display:flex; align-items:center; gap:8px; margin-bottom:22px; }
.product-detail-rating .stars { font-size:15px; color:#f59e0b; }
.product-detail-rating span { font-size:13px; color:var(--text-3); }
.product-detail-desc { font-size:15.5px; line-height:1.8; color:var(--text-2); margin-bottom:26px; padding-bottom:26px; border-bottom:1px solid var(--border); }
.product-key-specs { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:24px; }
.key-spec-pill { display:flex; align-items:center; gap:6px; background:var(--bg); border:1.5px solid var(--border); border-radius:var(--r-full); padding:8px 14px; font-size:13px; font-weight:600; color:var(--text); }
.key-spec-pill svg { color:var(--blue); flex-shrink:0; }
.product-detail-price-box { background:var(--bg); border-radius:var(--r-lg); padding:22px; margin-bottom:18px; border:1.5px solid var(--border); box-shadow:var(--sh-xs); }
.product-detail-price-box .price-from { font-size:12px; color:var(--text-3); display:block; margin-bottom:3px; }
.product-detail-price-box .price-amount { font-size:38px; font-weight:800; color:var(--blue); letter-spacing:-.04em; line-height:1; display:block; margin-bottom:4px; }
.product-detail-price-box .price-note { font-size:12px; color:var(--text-3); }
.product-detail-actions { display:flex; gap:10px; margin-bottom:16px; }
.btn-offerte { flex:1; padding:17px 20px; background:var(--blue); color:#fff; border-radius:var(--r-md); font-size:15.5px; font-weight:700; text-align:center; transition:background .18s,transform .15s; box-shadow:0 4px 20px rgba(22,72,184,.35); letter-spacing:-.01em; }
.btn-offerte:hover { background:var(--blue-hi); transform:translateY(-2px); box-shadow:0 6px 28px rgba(22,72,184,.45); }
.btn-bel { flex:1; padding:15px; background:var(--blue); color:#fff; border-radius:var(--r-md); font-size:14.5px; font-weight:600; text-align:center; display:flex; align-items:center; justify-content:center; gap:7px; transition:background .18s; }
.btn-bel:hover { background:var(--blue-hi); }
.install-badge { display:flex; align-items:center; gap:10px; background:#f0fdf4; border:1.5px solid #bbf7d0; border-radius:var(--r-md); padding:12px 15px; font-size:13.5px; color:#166534; font-weight:500; }
.install-badge svg { flex-shrink:0; }

/* ── PRODUCT FEATURES ── */
.product-features { padding:80px 0; background:var(--bg); }
.product-features .section-header { max-width:520px; }
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:36px; margin-top:48px; }
.feature-item { display:flex; flex-direction:column; gap:10px; }
.feature-icon { width:46px; height:46px; border-radius:var(--r-sm); background:var(--blue-light); display:flex; align-items:center; justify-content:center; color:var(--blue); }
.feature-item h4 { font-size:15.5px; font-weight:700; color:var(--text); letter-spacing:-.01em; }
.feature-item p { font-size:14px; line-height:1.7; color:var(--text-2); }

/* ── SPECS TABLE ── */
.product-specs-section { padding:80px 0; background:var(--bg-subtle); }
.product-specs-section .section-header h2 { color:var(--text); }
.specs-table { width:100%; border-collapse:collapse; margin-top:36px; background:var(--bg); border-radius:var(--r-lg); overflow:hidden; border:1px solid var(--border); box-shadow:var(--sh-xs); }
.specs-table thead th { background:var(--text); color:#fff; font-size:13px; font-weight:600; padding:15px 22px; text-align:left; letter-spacing:.01em; }
.specs-table td { padding:13px 22px; font-size:14px; border-bottom:1px solid var(--border); }
.specs-table tr:last-child td { border-bottom:none; }
.specs-table tr:hover td { background:var(--bg-subtle); }
.spec-name { color:var(--text-2); width:50%; }
.spec-val { color:var(--text); font-weight:600; }

/* ── INSTALLATION ── */
.installation-section { padding:80px 0; background:var(--bg); }
.installation-section .section-header h2 { color:var(--text); }
.installation-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:48px; }
.install-card { background:var(--bg-subtle); border:1px solid var(--border); border-radius:var(--r-lg); padding:32px; }
.install-card-title { font-size:17px; font-weight:700; color:var(--text); margin-bottom:20px; display:flex; align-items:center; gap:12px; letter-spacing:-.01em; }
.install-card-icon { width:38px; height:38px; border-radius:var(--r-sm); background:var(--blue); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.install-card ul { list-style:none; display:flex; flex-direction:column; gap:11px; }
.install-card ul li { font-size:14.5px; color:var(--text-2); padding-left:22px; position:relative; line-height:1.55; }
.install-card ul li::before { content:'✓'; position:absolute; left:0; color:#16a34a; font-weight:800; font-size:12px; top:1px; }

/* ── RELATED ── */
.related-products { padding:80px 0 100px; background:var(--bg-subtle); }
.related-products .section-header h2 { color:var(--text); }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:48px; }

/* ── RESPONSIVE ── */
@media (max-width:1200px) {
  .services-grid { grid-template-columns:repeat(3,1fr); }
  .products-grid { grid-template-columns:repeat(3,1fr); }
  .footer-top { grid-template-columns:1fr 1fr 1fr; gap:36px; }
  .hero-grid { grid-template-columns:1fr; max-width:600px; margin:0 auto; }
  .hero-float-card-1,.hero-float-card-2 { display:none; }
  .hero h1,.hero-desc,.hero-eyebrow,.hero-actions,.hero-trust { text-align:center; margin-left:auto; margin-right:auto; }
  .hero-actions { justify-content:center; }
  .hero-img-wrap { max-height:400px; }
  .featured-grid { grid-template-columns:1fr; }
  .featured-info { border-left:none; border-top:1px solid var(--border-dk); padding:32px 40px 40px; }
  .product-detail-grid { grid-template-columns:1fr; }
  .product-visual { position:static; max-width:440px; margin:0 auto; }
  .werkgebied-grid { grid-template-columns:1fr; gap:40px; }
}
@media (max-width:1000px) {
  .about-grid { grid-template-columns:1fr; gap:40px; }
  .testimonials-grid { grid-template-columns:1fr 1fr; }
  .blog-grid { grid-template-columns:1fr 1fr; }
  .features-grid { grid-template-columns:repeat(2,1fr); }
  .installation-grid { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:repeat(2,1fr); }
  .cta-inner { flex-direction:column; text-align:center; }
  .cta-actions { justify-content:center; }
  .steps-grid { grid-template-columns:1fr; gap:0; }
  .step-arrow { display:none; }
  .step { padding:32px 0; border-bottom:1px solid var(--border); }
  .step:last-child { border-bottom:none; }
}
@media (max-width:900px) {
  .main-nav,.nav-phone { display:none; }
  .hamburger { display:flex; }
  .topbar-left { display:none; }
  .stats-grid { grid-template-columns:1fr 1fr; }
  .stat { border-right:none; border-bottom:1px solid var(--border); }
  .stat:nth-child(odd) { border-right:1px solid var(--border); }
  .stat:nth-child(3),.stat:last-child { border-bottom:none; }
}
@media (max-width:768px) {
  .container { width:min(100% - 28px,1200px); }
  .blog-section .container { width:min(100% - 40px,1200px); }
  .testimonials-grid,.blog-grid { grid-template-columns:1fr; max-width:520px; margin:0 auto; }
  .products-grid { grid-template-columns:repeat(2,1fr); }
  .services-grid { grid-template-columns:1fr; max-width:440px; margin:0 auto; }
  .featured-specs-row { grid-template-columns:repeat(2,1fr); }
  .features-grid { grid-template-columns:1fr; max-width:440px; }
  .related-grid { grid-template-columns:1fr; max-width:360px; margin:0 auto; }
  .footer-top { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; align-items:flex-start; gap:14px; }
  .footer-nav { flex-wrap:wrap; gap:10px 20px; }
  .cta { padding:64px 0; }
  .cta-btn,.cta-btn-outline { padding:14px 24px; }
}
@media (max-width:540px) {
  .products-grid { grid-template-columns:1fr; }
  .primary-btn { width:100%; justify-content:center; }
  .hero-actions { flex-direction:column; width:100%; }
  .ghost-btn { justify-content:center; }
  .product-detail-actions { flex-direction:column; }
  .cta-btn,.cta-btn-outline { width:100%; text-align:center; justify-content:center; }
}
@media (prefers-reduced-motion:reduce) {
  .animate-fade-up,.animate-fade-up2,.animate-fade-scale,[data-reveal] { opacity:1; animation:none; transform:none; transition:none; }
}

/* ── CITY PAGES ── */

/* City hero */
.city-hero { padding:64px 0 72px; background:var(--bg-dark); position:relative; overflow:hidden; }
.city-hero::before {
  content:''; position:absolute; inset:0; pointer-events:none;
  background:radial-gradient(ellipse 55% 65% at 75% 50%, rgba(22,72,184,.45) 0%, transparent 65%);
}
.city-hero-inner { position:relative; z-index:1; display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.city-hero-text { display:flex; flex-direction:column; }
#city-map { width:100%; height:320px; border-radius:var(--r-2xl); overflow:hidden; isolation:isolate; z-index:0; position:relative; border:2px solid rgba(255,255,255,.12); box-shadow:0 20px 60px rgba(0,0,0,.35); }
.city-hero h1 { font-size:clamp(40px,5.5vw,64px); font-weight:800; letter-spacing:-.05em; line-height:1.02; color:#fff; margin:14px 0 18px; }
.city-hero h1 em { font-style:normal; background:linear-gradient(100deg, var(--gold) 0%, #fde68a 100%); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.city-hero p { font-size:17px; line-height:1.78; color:var(--text-inv-2); max-width:500px; margin-bottom:32px; }
.city-hero-actions { display:flex; gap:12px; flex-wrap:wrap; }

/* City benefits */
.city-benefits { padding:88px 0; background:var(--bg); }
.benefits-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.benefit-card { border:1px solid var(--border); border-radius:var(--r-lg); padding:32px; transition:box-shadow .22s,border-color .22s,transform .22s; }
.benefit-card:hover { box-shadow:var(--sh-lg); border-color:var(--border-2); transform:translateY(-4px); }
.benefit-num { font-size:38px; font-weight:800; color:var(--blue); letter-spacing:-.04em; display:block; margin-bottom:10px; line-height:1; }
.benefit-card h3 { font-size:17px; font-weight:700; color:var(--text); margin-bottom:8px; letter-spacing:-.01em; }
.benefit-card p { font-size:15px; line-height:1.72; color:var(--text-2); }

/* City info strip */
.city-info-strip { background:var(--bg-dark); padding:64px 0; }
.city-info-strip .section-header.light { margin-bottom:40px; }
.city-info-grid {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1px; background:var(--border-dk);
  border:1px solid var(--border-dk); border-radius:var(--r-xl); overflow:hidden;
}
.city-info-item { background:var(--bg-dark-2); padding:32px 28px; }
.city-info-item > span { display:block; font-size:11px; font-weight:700; letter-spacing:.1em; text-transform:uppercase; color:var(--text-inv-3); margin-bottom:10px; }
.city-info-item strong { display:block; font-size:22px; font-weight:800; color:#fff; letter-spacing:-.03em; margin-bottom:6px; line-height:1.1; }
.city-info-item p { font-size:14px; color:var(--text-inv-2); line-height:1.65; }

/* City testimonial */
.city-testimonial { padding:88px 0; background:var(--bg-subtle); }
.testimonial-featured {
  max-width:760px; margin:0 auto;
  background:var(--bg); border:1px solid var(--border); border-radius:var(--r-2xl); padding:48px;
  box-shadow:var(--sh);
}
.testimonial-featured-quote { font-size:clamp(17px,2.5vw,20px); line-height:1.75; color:var(--text); font-style:italic; margin-bottom:32px; position:relative; padding-left:28px; }
.testimonial-featured-quote::before { content:'&#8220;'; position:absolute; left:0; top:-6px; font-size:48px; color:var(--blue); opacity:.25; font-style:normal; line-height:1; }
.testimonial-featured-author { display:flex; align-items:center; gap:14px; }
.testimonial-featured-avatar { width:48px; height:48px; border-radius:50%; background:var(--blue); color:#fff; font-size:14px; font-weight:700; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.testimonial-featured-author strong { display:block; font-size:15px; font-weight:700; color:var(--text); }
.testimonial-featured-author span { font-size:13px; color:var(--text-3); }
.testimonial-featured-stars { margin-left:auto; color:#f59e0b; font-size:16px; letter-spacing:1px; }

/* FAQ */
.faq-section { padding:88px 0; background:var(--bg); }
.faq-list { max-width:780px; margin:48px auto 0; display:flex; flex-direction:column; gap:8px; }
.faq-item { background:var(--bg-subtle); border:1px solid var(--border); border-radius:var(--r-lg); overflow:hidden; transition:border-color .18s; }
.faq-item[open] { border-color:var(--border-2); background:var(--bg); }
.faq-question {
  padding:20px 24px; font-size:15.5px; font-weight:600; color:var(--text);
  cursor:pointer; list-style:none;
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  transition:color .18s;
}
.faq-question::-webkit-details-marker { display:none; }
.faq-question::after {
  content:'+'; flex-shrink:0;
  width:26px; height:26px; border-radius:50%;
  background:var(--bg-muted); color:var(--text-2);
  display:flex; align-items:center; justify-content:center;
  font-size:18px; font-weight:400; line-height:1;
  transition:background .18s, color .18s, transform .2s;
}
.faq-item[open] .faq-question { color:var(--blue); }
.faq-item[open] .faq-question::after { content:'−'; background:var(--blue); color:#fff; }
.faq-answer { padding:0 24px 20px; padding-top:14px; border-top:1px solid var(--border); }
.faq-answer p { font-size:15px; line-height:1.78; color:var(--text-2); }

/* Other cities */
.other-cities { padding:88px 0; background:var(--bg-subtle); border-top:1px solid var(--border); }
.cities-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:10px; margin-top:40px; }
.city-link-card {
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px;
  padding:20px 12px; background:var(--bg);
  border:1px solid var(--border); border-radius:var(--r-lg);
  font-size:14px; font-weight:600; color:var(--text-2); text-align:center;
  transition:border-color .18s, color .18s, background .18s, box-shadow .18s, transform .18s;
}
.city-link-card:hover { border-color:var(--blue); color:var(--blue); background:var(--blue-light); transform:translateY(-3px); box-shadow:var(--sh); }
.city-link-card svg { color:var(--text-3); transition:color .18s; }
.city-link-card:hover svg { color:var(--blue); }

/* City page responsive */
@media (max-width:900px) {
  .benefits-grid { grid-template-columns:1fr 1fr; }
  .city-info-grid { grid-template-columns:1fr; }
  .cities-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:600px) {
  .benefits-grid { grid-template-columns:1fr; }
  .cities-grid { grid-template-columns:repeat(2,1fr); }
  .testimonial-featured { padding:28px 24px; }
  .city-hero-actions { flex-direction:column; }
  .city-hero-inner { grid-template-columns:1fr; }
  #city-map { height:260px; }
}

/* ═══════════════════════════════════
   AIRCONDITIONING / WARMTEPOMP / SERVICE / OVER ONS
═══════════════════════════════════ */
.intro-section { padding:88px 0; background:var(--bg); }
.intro-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.intro-visual { border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-xl); }
.intro-visual img { width:100%; object-fit:cover; }
.intro-content h2 { font-size:clamp(28px,3.5vw,44px); font-weight:700; letter-spacing:-.04em; line-height:1.12; color:var(--text); margin-bottom:16px; margin-top:14px; }
.intro-content p { font-size:16px; line-height:1.8; color:var(--text-2); margin-bottom:14px; }
.intro-content p:last-of-type { margin-bottom:28px; }
.system-types { padding:88px 0; background:var(--bg-subtle); }
.system-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin-top:52px; }
.system-card { background:var(--bg); border:1px solid var(--border); border-radius:var(--r-xl); padding:36px; display:flex; flex-direction:column; gap:16px; transition:box-shadow .22s,border-color .22s,transform .22s; }
.system-card:hover { box-shadow:var(--sh-lg); border-color:var(--border-2); transform:translateY(-4px); }
.system-card-icon { width:52px; height:52px; background:var(--blue-light); border-radius:var(--r-md); display:flex; align-items:center; justify-content:center; color:var(--blue); flex-shrink:0; }
.system-card h3 { font-size:19px; font-weight:700; color:var(--text); letter-spacing:-.02em; }
.system-card p { font-size:15px; line-height:1.72; color:var(--text-2); flex:1; }
.system-tags { display:flex; gap:7px; flex-wrap:wrap; margin-top:4px; }
.system-tag { padding:4px 10px; background:var(--bg-muted); border-radius:var(--r-full); font-size:12px; font-weight:600; color:var(--text-2); }
.service-packages { padding:88px 0; background:var(--bg-subtle); }
.packages-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:52px; }
.package-card { background:var(--bg); border:1.5px solid var(--border); border-radius:var(--r-xl); padding:36px; display:flex; flex-direction:column; gap:20px; transition:box-shadow .22s,transform .22s; }
.package-card:hover { box-shadow:var(--sh-lg); transform:translateY(-3px); }
.package-card.featured { border-color:var(--blue); }
.package-eyebrow { font-size:11px; font-weight:700; letter-spacing:.09em; text-transform:uppercase; color:var(--blue); }
.package-card h3 { font-size:20px; font-weight:700; color:var(--text); letter-spacing:-.02em; }
.package-price { display:flex; align-items:baseline; gap:5px; }
.package-price-amount { font-size:38px; font-weight:800; color:var(--text); letter-spacing:-.04em; line-height:1; }
.package-price-period { font-size:14px; color:var(--text-3); }
.package-desc { font-size:14px; color:var(--text-2); line-height:1.65; }
.package-features { list-style:none; display:flex; flex-direction:column; gap:10px; flex:1; }
.package-features li { font-size:14.5px; color:var(--text-2); padding-left:22px; position:relative; line-height:1.5; }
.package-features li::before { content:'✓'; position:absolute; left:0; color:#16a34a; font-weight:800; font-size:12px; top:1px; }
.package-features li.off { color:var(--text-3); }
.package-features li.off::before { content:'–'; color:var(--text-3); font-weight:400; }
.package-cta { display:block; padding:13px; text-align:center; border-radius:var(--r-md); font-size:14.5px; font-weight:700; background:var(--blue); color:#fff; transition:background .18s; margin-top:auto; }
.package-cta:hover { background:var(--blue-hi); }
.package-card.featured .package-cta { background:var(--gold); color:#0c1628; }
.package-card.featured .package-cta:hover { background:var(--gold-hi); }
.warmtepomp-types { padding:88px 0; background:var(--bg-subtle); }
.types-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin-top:52px; }
.type-card { border:1.5px solid var(--border); border-radius:var(--r-xl); overflow:hidden; transition:box-shadow .22s,transform .22s; }
.type-card:hover { box-shadow:var(--sh-lg); transform:translateY(-3px); }
.type-card-head { padding:28px 32px; background:var(--bg-dark); }
.type-card-head h3 { font-size:20px; font-weight:700; color:#fff; margin-bottom:6px; letter-spacing:-.02em; }
.type-card-head p { font-size:14px; color:var(--text-inv-2); line-height:1.6; }
.type-card-body { padding:28px 32px; background:var(--bg); }
.type-card-body ul { list-style:none; display:flex; flex-direction:column; gap:10px; margin-bottom:20px; }
.type-card-body ul li { font-size:14.5px; color:var(--text-2); padding-left:22px; position:relative; line-height:1.5; }
.type-card-body ul li::before { content:'✓'; position:absolute; left:0; color:#16a34a; font-weight:800; font-size:12px; top:1px; }
.type-best { display:inline-block; font-size:12px; font-weight:600; color:var(--text-2); background:var(--bg-muted); border:1px solid var(--border); padding:5px 12px; border-radius:var(--r-full); }
.subsidy-callout { background:var(--bg-dark); border:1px solid var(--border-dk-2); border-radius:var(--r-xl); padding:48px 52px; margin-top:52px; display:grid; grid-template-columns:1fr auto; gap:48px; align-items:center; }
.subsidy-callout h3 { font-size:clamp(22px,2.5vw,30px); font-weight:700; color:#fff; margin-bottom:12px; letter-spacing:-.03em; }
.subsidy-callout p { font-size:16px; line-height:1.75; color:var(--text-inv-2); max-width:540px; }
.subsidy-amount { text-align:center; flex-shrink:0; }
.subsidy-amount strong { display:block; font-size:52px; font-weight:800; color:var(--gold); letter-spacing:-.04em; line-height:1; margin-bottom:6px; }
.subsidy-amount span { font-size:14px; color:var(--text-inv-2); }
.team-section { padding:88px 0; background:var(--bg); }
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:52px; }
.team-card { text-align:center; padding:32px 20px; background:var(--bg-subtle); border:1px solid var(--border); border-radius:var(--r-xl); transition:box-shadow .22s,transform .22s; }
.team-card:hover { box-shadow:var(--sh); transform:translateY(-3px); }
.team-avatar { width:72px; height:72px; border-radius:50%; background:var(--blue); color:#fff; font-size:20px; font-weight:700; display:flex; align-items:center; justify-content:center; margin:0 auto 16px; letter-spacing:-.02em; }
.team-name { font-size:16px; font-weight:700; color:var(--text); margin-bottom:4px; letter-spacing:-.01em; }
.team-role { font-size:13px; color:var(--text-3); font-weight:500; margin-bottom:10px; }
.team-cert { display:inline-block; font-size:11.5px; color:var(--blue); background:var(--blue-light); padding:4px 10px; border-radius:var(--r-full); font-weight:600; }
.certs-section { padding:64px 0; background:var(--bg-subtle); border-top:1px solid var(--border); }
.certs-grid { display:grid; grid-template-columns:repeat(5,1fr); gap:14px; margin-top:40px; }
.cert-item { background:var(--bg); border:1px solid var(--border); border-radius:var(--r-lg); padding:20px 14px; text-align:center; display:flex; flex-direction:column; align-items:center; gap:10px; transition:box-shadow .2s; }
.cert-item:hover { box-shadow:var(--sh-sm); }
.cert-icon { width:44px; height:44px; border-radius:var(--r-sm); background:var(--blue-light); display:flex; align-items:center; justify-content:center; color:var(--blue); }
.cert-item span { font-size:12.5px; font-weight:600; color:var(--text); line-height:1.4; }
.about-story { padding:88px 0; background:var(--bg); }
.story-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.story-content h2 { font-size:clamp(28px,3.5vw,44px); font-weight:700; letter-spacing:-.04em; line-height:1.12; color:var(--text); margin-bottom:16px; margin-top:14px; }
.story-content p { font-size:16px; line-height:1.8; color:var(--text-2); margin-bottom:16px; }
.story-visual { border-radius:var(--r-xl); overflow:hidden; box-shadow:var(--sh-xl); }
.story-visual img { width:100%; object-fit:cover; }
.story-values { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:32px; }
.value-item { padding:18px; background:var(--bg-subtle); border:1px solid var(--border); border-radius:var(--r-lg); }
.value-item h4 { font-size:14px; font-weight:700; color:var(--text); margin-bottom:5px; display:flex; align-items:center; gap:8px; }
.value-item h4 svg { flex-shrink:0; }
.value-item p { font-size:13.5px; color:var(--text-2); line-height:1.6; }
@media (max-width:1000px) {
  .intro-grid,.story-grid { grid-template-columns:1fr; gap:40px; }
  .packages-grid { grid-template-columns:1fr; max-width:480px; margin-left:auto; margin-right:auto; }
  .types-grid { grid-template-columns:1fr; max-width:560px; margin-left:auto; margin-right:auto; }
  .subsidy-callout { grid-template-columns:1fr; text-align:center; padding:36px; }
  .subsidy-callout p { margin:0 auto; }
}
@media (max-width:900px) {
  .system-grid { grid-template-columns:1fr; max-width:560px; margin-left:auto; margin-right:auto; }
  .team-grid { grid-template-columns:repeat(2,1fr); }
  .certs-grid { grid-template-columns:repeat(3,1fr); }
}
@media (max-width:600px) {
  .certs-grid { grid-template-columns:repeat(2,1fr); }
  .story-values { grid-template-columns:1fr; }
}

/* ── CONTACT / OFFERTE FORM ── */
.contact-section { padding:88px 0; background:var(--bg); }
.contact-grid { display:grid; grid-template-columns:1fr 1.2fr; gap:80px; align-items:start; }
.contact-info h2 { font-size:clamp(26px,3vw,38px); font-weight:700; letter-spacing:-.04em; color:var(--text); margin-bottom:16px; margin-top:14px; }
.contact-info p { font-size:16px; line-height:1.8; color:var(--text-2); margin-bottom:28px; }
.contact-details { display:flex; flex-direction:column; gap:20px; }
.contact-detail { display:flex; align-items:flex-start; gap:14px; }
.contact-detail-icon { width:44px; height:44px; border-radius:var(--r-sm); background:var(--blue-light); display:flex; align-items:center; justify-content:center; color:var(--blue); flex-shrink:0; }
.contact-detail-text strong { display:block; font-size:14px; font-weight:700; color:var(--text); margin-bottom:3px; }
.contact-detail-text a, .contact-detail-text span { font-size:15px; color:var(--text-2); transition:color .18s; }
.contact-detail-text a:hover { color:var(--blue); }
.contact-hours { margin-top:28px; padding:20px; background:var(--bg-subtle); border:1px solid var(--border); border-radius:var(--r-lg); }
.contact-hours h4 { font-size:14px; font-weight:700; color:var(--text); margin-bottom:12px; }
.contact-hours-row { display:flex; justify-content:space-between; font-size:14px; padding:5px 0; border-bottom:1px solid var(--border); }
.contact-hours-row:last-child { border-bottom:none; }
.contact-hours-row span:first-child { color:var(--text-2); }
.contact-hours-row span:last-child { font-weight:600; color:var(--text); }

.quote-form { background:var(--bg-subtle); border:1px solid var(--border); border-radius:var(--r-2xl); padding:40px; }
.quote-form h3 { font-size:22px; font-weight:700; color:var(--text); margin-bottom:6px; letter-spacing:-.02em; }
.quote-form > p { font-size:14.5px; color:var(--text-2); margin-bottom:28px; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { display:flex; flex-direction:column; gap:6px; }
.form-group.full { grid-column:1/-1; }
.form-label { font-size:13px; font-weight:600; color:var(--text); }
.form-input, .form-select, .form-textarea {
  width:100%; padding:11px 14px;
  font-family:inherit; font-size:15px; color:var(--text);
  background:var(--bg); border:1.5px solid var(--border);
  border-radius:var(--r); outline:none;
  transition:border-color .18s, box-shadow .18s;
  -webkit-appearance:none; appearance:none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color:var(--blue);
  box-shadow:0 0 0 3px rgba(22,72,184,.1);
}
.form-textarea { min-height:110px; resize:vertical; line-height:1.6; }
.form-select { background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b6280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat:no-repeat; background-position:right 12px center; padding-right:36px; }
.form-submit { margin-top:8px; width:100%; padding:15px; background:var(--blue); color:#fff; border-radius:var(--r-md); font-size:15px; font-weight:700; cursor:pointer; transition:background .18s,transform .15s; letter-spacing:-.01em; }
.form-submit:hover { background:var(--blue-hi); transform:translateY(-1px); }
.form-note { font-size:12.5px; color:var(--text-3); text-align:center; margin-top:10px; }
.form-success { display:none; text-align:center; padding:32px; }
.form-success h4 { font-size:20px; font-weight:700; color:var(--text); margin-bottom:8px; }
.form-success p { font-size:15px; color:var(--text-2); }

/* Legal pages */
.legal-content { padding:72px 0 100px; background:var(--bg); }
.legal-body { max-width:780px; margin:0 auto; }
.legal-body h2 { font-size:22px; font-weight:700; color:var(--text); margin:40px 0 12px; letter-spacing:-.02em; }
.legal-body h2:first-child { margin-top:0; }
.legal-body p { font-size:15.5px; line-height:1.8; color:var(--text-2); margin-bottom:14px; }
.legal-body ul { padding-left:20px; margin-bottom:14px; }
.legal-body ul li { font-size:15.5px; line-height:1.8; color:var(--text-2); margin-bottom:6px; }
.legal-body a { color:var(--blue); text-decoration:underline; text-underline-offset:3px; }
.legal-updated { font-size:13px; color:var(--text-3); margin-bottom:40px; }

/* Sitemap */
.sitemap-section { padding:72px 0 100px; background:var(--bg); }
.sitemap-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:40px; margin-top:48px; }
.sitemap-group h3 { font-size:16px; font-weight:700; color:var(--text); margin-bottom:16px; padding-bottom:12px; border-bottom:2px solid var(--blue); display:inline-block; }
.sitemap-group ul { list-style:none; display:flex; flex-direction:column; gap:10px; margin-top:16px; }
.sitemap-group ul li a { font-size:15px; color:var(--text-2); display:flex; align-items:center; gap:6px; transition:color .18s; }
.sitemap-group ul li a::before { content:'→'; font-size:12px; color:var(--blue); }
.sitemap-group ul li a:hover { color:var(--blue); }

@media (max-width:1000px) { .contact-grid { grid-template-columns:1fr; gap:40px; } }
@media (max-width:700px) { .form-grid { grid-template-columns:1fr; } .sitemap-grid { grid-template-columns:1fr 1fr; } }
@media (max-width:500px) { .sitemap-grid { grid-template-columns:1fr; } .quote-form { padding:28px 20px; } }

/* Leaflet map */
#buying-map {
  width:100%; height:360px;
  border-radius:var(--r-2xl);
  overflow:hidden;
  box-shadow:var(--sh-lg);
  border:1px solid var(--border);
  isolation:isolate;
  z-index:0;
  position:relative;
}
.buying-map-tooltip {
  font-family:'Figtree',sans-serif;
  font-size:13px;
  font-weight:600;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--r);
  box-shadow:0 2px 8px rgba(0,0,0,.12);
  padding:5px 10px;
  color:var(--text);
}
.buying-map-tooltip::before { display:none; }
.leaflet-marker-icon { cursor:pointer; }

/* WhatsApp floating button */
.wa-float {
  position:fixed; bottom:28px; right:28px; z-index:999;
  display:flex; align-items:center; gap:10px;
  text-decoration:none;
}
.wa-float-btn {
  width:45px; height:45px; border-radius:50%;
  background:#25D366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.18);
  transition:transform .2s var(--ease), box-shadow .2s;
  position:relative;
}
.wa-float-btn::before {
  content:'';
  position:absolute; inset:-4px;
  border-radius:50%;
  background:rgba(37,211,102,.25);
  animation:wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform:scale(1);   opacity:.7; }
  70%  { transform:scale(1.55); opacity:0; }
  100% { transform:scale(1.55); opacity:0; }
}
.wa-float-btn svg { position:relative; z-index:1; }
.wa-float-tooltip {
  background:var(--bg-dark);
  color:#fff;
  font-size:13px; font-weight:600;
  padding:7px 13px;
  border-radius:var(--r);
  white-space:nowrap;
  opacity:0; pointer-events:none;
  transform:translateX(8px);
  transition:opacity .2s, transform .2s;
  box-shadow:0 4px 16px rgba(0,0,0,.25);
}
.wa-float:hover .wa-float-tooltip {
  opacity:1; transform:translateX(0);
}
.wa-float:hover .wa-float-btn {
  transform:scale(1.08);
  box-shadow:0 6px 28px rgba(37,211,102,.55), 0 2px 8px rgba(0,0,0,.2);
}
@media (max-width:600px) {
  .wa-float { bottom:18px; right:18px; }
  .wa-float-tooltip { display:none; }
}
