/* ============================================================
   COOLGEREGELD — main.css
   ============================================================ */

/* ── Tokens ──────────────────────────────────────────────── */
:root {
  /* Brand blues — matched to Coolgeregeld logo */
  --blue-50:  #eef5fe;
  --blue-100: #d5e8fb;
  --blue-200: #b0d2f6;
  --blue-400: #62aeef;   /* light logo blue "GEREGELD" */
  --blue-500: #2e80e5;
  --blue-600: #1a54d2;   /* primary logo blue "COOL" */
  --blue-700: #1443b5;   /* hover / darker */
  --blue-800: #1038a0;
  --blue-900: #0d2f8c;

  --ink:       #111827;
  --ink-muted: #6b7280;
  --ink-light: #9ca3af;

  --surface:     #ffffff;
  --surface-alt: #f8fafc;

  --border:       #e5e7eb;
  --border-light: #f3f4f6;

  --green-wa: #25d366;

  --s1:  0.25rem;  --s2:  0.5rem;   --s3:  0.75rem;
  --s4:  1rem;     --s5:  1.25rem;  --s6:  1.5rem;
  --s7:  1.75rem;  --s8:  2rem;     --s10: 2.5rem;
  --s12: 3rem;     --s14: 3.5rem;   --s16: 4rem;
  --s20: 5rem;     --s24: 6rem;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;

  --r-sm:   0.25rem;
  --r-md:   0.5rem;
  --r-lg:   0.75rem;
  --r-xl:   1rem;
  --r-2xl:  1.5rem;
  --r-full: 9999px;

  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow:    0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; background: none; border: none; }
input, select, textarea { font: inherit; }

/* ── Layout ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s5);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--r-md);
  transition: all 0.2s var(--ease);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1.4;
}
.btn:focus-visible { outline: 3px solid var(--blue-500); outline-offset: 2px; }
.btn--primary { background: var(--blue-600); color: white; border-color: var(--blue-600); }
.btn--primary:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--primary:active { transform: translateY(0); }
.btn--outline { background: transparent; color: var(--blue-700); border-color: var(--blue-200); }
.btn--outline:hover { background: var(--blue-50); border-color: var(--blue-600); }
.btn--secondary { background: white; color: var(--blue-700); border-color: white; }
.btn--secondary:hover { background: var(--blue-50); }
.btn--sm { padding: var(--s2) var(--s4); font-size: var(--text-xs); }
.btn--lg { padding: var(--s4) var(--s8); font-size: var(--text-base); }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* Transparent state — only when hero is visible behind sticky nav */
.nav--top {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
}
.nav--top .nav__links a { color: rgba(255,255,255,0.82); }
.nav--top .nav__links a:hover,
.nav--top .nav__links a.is-active { color: #fff; }
.nav--top .nav__phone { color: rgba(255,255,255,0.9); }
.nav--top .nav__phone:hover { color: #fff; }
.nav--top .nav__burger span { background: #fff; }

@media (prefers-reduced-motion: reduce) { .nav { transition: none; } }
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--s6);
  height: 68px;
}
.nav__logo { flex-shrink: 0; }
.nav__logo img { height: 54px; width: auto; object-fit: contain; }

.nav__links {
  display: none;
  align-items: center;
  gap: var(--s6);
  margin-left: auto;
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--ink-muted);
  transition: color 0.15s;
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.is-active { color: var(--blue-600); font-weight: 600; }
.nav__mobile a.is-active { color: var(--blue-600); font-weight: 700; }

.nav__right {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-left: auto;
}
.nav__phone {
  display: none;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue-700);
  transition: color 0.15s;
}
.nav__phone svg { width: 16px; height: 16px; }
.nav__phone:hover { color: var(--blue-900); }
.nav__cta { display: none; }

.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.2s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-bottom: 1px solid var(--border);
  padding: var(--s4) var(--s5);
  gap: 0;
}
.nav__mobile.is-open { display: flex; }
.nav__mobile a {
  display: block;
  padding: var(--s3) 0;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--border-light);
  font-size: var(--text-base);
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile-phone {
  display: flex !important;
  align-items: center;
  gap: var(--s2);
  color: var(--blue-700) !important;
  font-weight: 600 !important;
}
.nav__mobile-phone svg { width: 16px; height: 16px; }

@media (min-width: 768px) {
  .nav__links { display: flex; }
  .nav__phone { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .nav__right { margin-left: 0; }
}

/* ── Hero — split ────────────────────────────────────────── */
.hero--split {
  padding: var(--s16) 0 var(--s12);
  background: linear-gradient(135deg, #091525 0%, #0d1e42 50%, #162f62 100%);
}
.hero--split .hero__pill {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.18);
}
.hero--split .hero__pill svg { color: var(--blue-300); }
.hero--split .hero__title { color: white; }
.hero--split .hero__subtitle { color: rgba(255,255,255,0.72); }
.hero--split .hero__tag { color: rgba(255,255,255,0.62); }
.hero--split .hero__tag svg { color: var(--blue-300); }
.hero--split .btn--outline { color: white; border-color: rgba(255,255,255,0.35); }
.hero--split .btn--outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); color: white; }
.hero__mosaic .hero__photo { box-shadow: 0 16px 48px rgba(0,0,0,0.45); }
.hero__split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__split-grid { grid-template-columns: 1fr 1fr; gap: var(--s16); }
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--blue-50);
  color: var(--blue-700);
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--s2) var(--s4);
  border-radius: var(--r-full);
  border: 1px solid var(--blue-100);
  margin-bottom: var(--s6);
}
.hero__pill svg { width: 16px; height: 16px; }

.hero__title {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: var(--s5);
}
.hero__title em { font-style: normal; color: var(--blue-600); }
@media (min-width: 1024px) { .hero__title { font-size: var(--text-5xl); } }

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: var(--s8);
  max-width: 480px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s8); }
.hero__tags { display: flex; flex-wrap: wrap; gap: var(--s3); }
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  color: var(--ink-muted);
  font-weight: 500;
}
.hero__tag svg { width: 16px; height: 16px; color: var(--blue-500); flex-shrink: 0; }

.hero__mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: var(--s3);
}
.hero__photo { border-radius: var(--r-xl); overflow: hidden; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo--tall { grid-row: span 2; min-height: 380px; }
.hero__photo--sm { min-height: 180px; }

/* ── Hero — page (inner pages) ───────────────────────────── */
.hero--page {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,18,35,0.78) 0%, rgba(10,18,35,0.45) 55%, rgba(10,18,35,0.15) 100%);
}
.hero__content { position: relative; z-index: 1; }
.hero--page .hero__title {
  font-size: var(--text-3xl);
  color: white;
  margin-bottom: var(--s3);
}
.hero--page .hero__subtitle {
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero--page { height: 480px; }
  .hero--page .hero__title { font-size: var(--text-4xl); }
}

/* ── USP Bar ─────────────────────────────────────────────── */
.usp-bar { background: var(--blue-900); padding: var(--s10) 0; }
.usp-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s6);
}
@media (min-width: 768px) { .usp-list { grid-template-columns: repeat(4, 1fr); } }
.usp-item { display: flex; align-items: flex-start; gap: var(--s4); }
.usp-item__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  color: var(--blue-200);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.usp-item__icon svg { width: 20px; height: 20px; }
.usp-item__text strong { display: block; color: white; font-weight: 700; font-size: var(--text-sm); margin-bottom: 2px; }
.usp-item__text span { display: block; color: rgba(255,255,255,0.6); font-size: var(--text-xs); }

/* ── Section ─────────────────────────────────────────────── */
.section { padding: var(--s16) 0; }
.section--alt { background: var(--surface-alt); }
.section__header { margin-bottom: var(--s12); }
.section__header h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s3);
}
.section__header p {
  font-size: var(--text-lg);
  color: var(--ink-muted);
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section__header p { margin-inline: auto; }

/* ── Services list ───────────────────────────────────────── */
.services-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.service-row {
  display: flex;
  align-items: flex-start;
  gap: var(--s6);
  padding: var(--s8);
  border-bottom: 1px solid var(--border);
  transition: background 0.15s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--blue-50); }
.service-row__tag {
  flex-shrink: 0;
  width: 128px;
  text-align: center;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--s1) var(--s3);
  border-radius: var(--r-full);
  margin-top: 4px;
  white-space: nowrap;
}
.service-row__body h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--s2); }
.service-row__body p { color: var(--ink-muted); margin-bottom: var(--s4); }
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--blue-600);
}
.link-arrow:hover { color: var(--blue-800); }

/* ── Logo bar ────────────────────────────────────────────── */
.logo-bar { padding: var(--s16) 0; background: var(--surface-alt); }
.logo-bar__track {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s8) var(--s12);
  margin-bottom: var(--s10);
}
.logo-bar__item {
  display: flex;
  align-items: center;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: all 0.2s;
}
.logo-bar__item:hover { opacity: 1; filter: none; }
.logo-bar__item img { height: 36px; width: auto; object-fit: contain; }

/* ── App info ────────────────────────────────────────────── */
.app-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 1024px) { .app-info { grid-template-columns: 1fr 1fr; } }
.app-features { display: flex; flex-direction: column; gap: var(--s6); margin-top: var(--s8); }
.app-feature { display: flex; align-items: flex-start; gap: var(--s4); }
.app-feature__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
}
.app-feature__icon svg { width: 20px; height: 20px; }
.app-feature strong { display: block; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.app-feature span { font-size: var(--text-sm); color: var(--ink-muted); }
.app-info__visual { display: flex; flex-direction: column; align-items: center; }

/* ── Phone Mockup ─────────────────────────────────────────── */
.phone-mockup {
  width: 244px;
  background: #1c1c1e;
  border-radius: 46px;
  padding: 10px;
  box-shadow: 0 0 0 1.5px #3a3a3c, 0 0 0 3px #111, 0 32px 72px rgba(0,0,0,0.38);
  position: relative;
}
.phone-island {
  width: 88px; height: 26px;
  background: #1c1c1e;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  position: relative; z-index: 10;
}
.phone-screen {
  background: #f4efe9;
  border-radius: 37px;
  overflow: hidden;
}
.phone-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px 4px;
  font-size: 11px;
  font-weight: 700;
  color: #1c1c1e;
}
.phone-time { letter-spacing: -0.01em; }
.phone-status__icons { display: flex; align-items: center; gap: 5px; color: #1c1c1e; }

/* AC App */
.ac-app { padding: 0 15px 10px; }
.ac-app__topbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 4px;
}
.ac-app__back {
  font-size: 24px; font-weight: 300; line-height: 1;
  color: #1c1c1e; background: none; border: none; cursor: pointer; padding: 0 3px;
}
.ac-app__topicons { display: flex; gap: 8px; }
.ac-app__iconbtn {
  width: 29px; height: 29px; border-radius: 50%;
  background: rgba(0,0,0,0.06); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #374151;
}
.ac-app__power { color: #22c55e; }
.ac-app__room {
  text-align: center; font-size: 14px; font-weight: 600;
  color: #1c1c1e; margin-bottom: 3px;
}
.ac-app__stats {
  display: flex; justify-content: center; gap: 14px;
  font-size: 10.5px; color: #9ca3af; margin-bottom: 4px;
}

/* Dial */
.ac-dial-wrap { position: relative; display: flex; justify-content: center; margin: 0 -4px; }
.ac-dial-svg { width: 100%; max-width: 214px; display: block; }
.ac-dial-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  pointer-events: none;
}
.ac-dial-mode {
  font-size: 8.5px; font-weight: 700; letter-spacing: 0.13em;
  color: var(--blue-600); margin-bottom: 1px;
}
.ac-dial-temprow { display: flex; align-items: flex-start; line-height: 1; }
.ac-dial-tempval {
  font-size: 44px; font-weight: 800; color: #1c1c1e;
  letter-spacing: -0.04em; line-height: 1;
}
.ac-dial-tempsup { font-size: 14px; font-weight: 400; color: #9ca3af; margin-top: 6px; margin-left: 1px; }
.ac-dial-sublabel { font-size: 9px; color: #c4bfb8; margin-top: 1px; }

/* Controls */
.ac-controls {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6px; margin-bottom: 4px;
}
.ac-ctrl-btn {
  width: 31px; height: 31px; border-radius: 50%;
  background: rgba(0,0,0,0.07); border: none;
  font-size: 22px; font-weight: 300; color: #1c1c1e;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; line-height: 1; transition: background 0.15s;
}
.ac-ctrl-btn:hover { background: rgba(0,0,0,0.13); }
.ac-next-action { text-align: center; }
.ac-next-label {
  display: block; font-size: 8px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--blue-500);
}
.ac-next-val { display: block; font-size: 9px; color: #374151; font-weight: 500; margin-top: 1px; }

/* Settings rows */
.ac-rows { border-top: 1px solid rgba(0,0,0,0.07); }
.ac-row {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  background: none; border-left: none; border-right: none;
  width: 100%; text-align: left; cursor: default; font: inherit;
}
button.ac-row { cursor: pointer; }
button.ac-row:hover { background: rgba(0,0,0,0.03); border-radius: 6px; }
.ac-row__icon {
  width: 25px; height: 25px; border-radius: 7px;
  background: rgba(26,84,210,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ac-row__label { font-size: 10px; color: #374151; font-weight: 500; flex: 1; }
.ac-row__val { font-size: 10px; color: var(--blue-600); font-weight: 600; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-item__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  text-align: left;
  font-weight: 600;
  color: var(--ink);
  font-size: var(--text-base);
  transition: background 0.15s;
}
.faq-item__question:hover { background: var(--blue-50); }
.faq-item__icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  background: var(--blue-100);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s var(--ease), background 0.2s;
}
.faq-item__icon svg { width: 16px; height: 16px; color: var(--blue-600); }
.faq-item__question[aria-expanded="true"] .faq-item__icon { transform: rotate(45deg); background: var(--blue-600); }
.faq-item__question[aria-expanded="true"] .faq-item__icon svg { color: white; }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-item__answer.is-open { max-height: 500px; }
.faq-item__answer-inner { padding: 0 var(--s6) var(--s6); color: var(--ink-muted); }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-banner { background: linear-gradient(135deg, var(--blue-800) 0%, var(--blue-900) 100%); padding: var(--s16) 0; }
.cta-banner__inner { text-align: center; }
.cta-banner__inner h2 { font-size: var(--text-3xl); font-weight: 800; color: white; letter-spacing: -0.02em; margin-bottom: var(--s3); }
.cta-banner__inner p { color: rgba(255,255,255,0.72); font-size: var(--text-lg); margin-bottom: var(--s8); }

/* ── Dienst blocks ───────────────────────────────────────── */
.dienst-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
  padding: var(--s10) 0;
  border-bottom: 1px solid var(--border);
}
.dienst-block:last-child { border-bottom: none; }
@media (min-width: 1024px) { .dienst-block { grid-template-columns: 1fr 1fr; } }
.dienst-block__header { display: flex; align-items: center; gap: var(--s4); margin-bottom: var(--s5); }
.dienst-block__icon {
  width: 48px; height: 48px;
  background: var(--blue-100); color: var(--blue-700);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dienst-block__icon svg { width: 24px; height: 24px; }
.dienst-block h3 { font-size: var(--text-2xl); font-weight: 700; }
.dienst-block p { color: var(--ink-muted); margin-bottom: var(--s4); }
.dienst-block__includes {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s6);
  align-self: flex-start;
}
.dienst-block__includes h4 {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-bottom: var(--s4);
}
.dienst-block__includes ul { display: flex; flex-direction: column; gap: var(--s2); }
.dienst-block__includes li {
  display: flex; align-items: flex-start; gap: var(--s3);
  font-size: var(--text-sm); color: var(--ink);
}
.dienst-block__includes li::before { content: "✓"; color: var(--blue-600); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Steps ───────────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: 1fr; gap: var(--s6); }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step { padding: var(--s6); background: white; border: 1px solid var(--border); border-radius: var(--r-xl); }
.step__num { font-size: var(--text-4xl); font-weight: 900; color: var(--blue-100); letter-spacing: -0.04em; margin-bottom: var(--s3); }
.step h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s3); }
.step p { color: var(--ink-muted); font-size: var(--text-sm); }

/* ── Prijzen ─────────────────────────────────────────────── */
.prijzen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s4); margin-bottom: var(--s8); }
@media (min-width: 768px) { .prijzen-grid { grid-template-columns: repeat(4, 1fr); } }
.prijs-card { background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s6); text-align: center; }
.prijs-card__type { font-size: var(--text-sm); color: var(--ink-muted); margin-bottom: var(--s2); }
.prijs-card__amount { font-size: var(--text-xl); font-weight: 800; color: var(--blue-700); margin-bottom: var(--s1); }
.prijs-card__note { font-size: var(--text-xs); color: var(--ink-light); }

.info-note {
  display: flex;
  gap: var(--s4);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--r-lg);
  padding: var(--s5);
}
.info-note > svg, .info-note > i { flex-shrink: 0; color: var(--blue-500); margin-top: 2px; width: 20px; height: 20px; }

/* ── Merken ──────────────────────────────────────────────── */
.merken-grid { display: grid; grid-template-columns: 1fr; gap: var(--s6); }
@media (min-width: 768px) { .merken-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .merken-grid { grid-template-columns: repeat(3, 1fr); } }
.merk-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s8);
  transition: box-shadow 0.2s, transform 0.2s;
}
.merk-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.merk-card__logo { margin-bottom: var(--s5); min-height: 44px; display: flex; align-items: center; gap: var(--s3); }
.merk-card__tier { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-full); background: var(--blue-600); color: white; flex-shrink: 0; }
.merk-card__logo img { max-height: 40px; width: auto; }
.merk-card h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--s3); }
.merk-card p { color: var(--ink-muted); font-size: var(--text-sm); margin-bottom: var(--s5); line-height: 1.6; }
.merk-card__features { display: flex; flex-direction: column; gap: var(--s2); margin-bottom: var(--s5); }
.merk-card__features li { font-size: var(--text-sm); color: var(--ink-muted); padding-left: var(--s5); position: relative; }
.merk-card__features li::before { content: "✓"; position: absolute; left: 0; color: var(--blue-500); font-weight: 700; }
.merk-card__app {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-xs); color: var(--ink-muted);
  border-top: 1px solid var(--border-light);
  padding-top: var(--s4);
}
.merk-card__app svg { width: 14px; height: 14px; color: var(--blue-500); }

/* ── Over ons ────────────────────────────────────────────── */
.about-story { display: grid; grid-template-columns: 1fr; gap: var(--s12); align-items: center; }
@media (min-width: 1024px) { .about-story { grid-template-columns: 1fr 1fr; } }
.about-story h2 { font-size: var(--text-3xl); font-weight: 800; letter-spacing: -0.02em; margin-bottom: var(--s6); }
.about-story p { color: var(--ink-muted); margin-bottom: var(--s4); }
.about-story__img { border-radius: var(--r-2xl); width: 100%; aspect-ratio: 4/3; object-fit: cover; }

.certs-grid { display: flex; flex-direction: column; gap: var(--s4); }
@media (min-width: 768px) { .certs-grid { flex-direction: row; gap: var(--s5); } }
.cert-badge {
  display: flex; align-items: flex-start; gap: var(--s4);
  background: white; border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s6); flex: 1;
}
.cert-badge__icon {
  width: 44px; height: 44px;
  background: var(--blue-100); color: var(--blue-700);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cert-badge__icon svg { width: 22px; height: 22px; }
.cert-badge strong { display: block; font-weight: 700; margin-bottom: 2px; }
.cert-badge span { font-size: var(--text-sm); color: var(--ink-muted); }

.values-grid { display: grid; grid-template-columns: 1fr; gap: var(--s6); }
@media (min-width: 768px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card { padding: var(--s8); background: white; border: 1px solid var(--border); border-radius: var(--r-xl); }
.value-card__icon {
  width: 48px; height: 48px;
  background: var(--blue-100); color: var(--blue-700);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s5);
}
.value-card__icon svg { width: 24px; height: 24px; }
.value-card h3 { font-size: var(--text-xl); font-weight: 700; margin-bottom: var(--s3); }
.value-card p { color: var(--ink-muted); }

.werkgebied-list { display: flex; flex-wrap: wrap; gap: var(--s3); }
.werkgebied-item {
  display: flex; align-items: center; gap: var(--s2);
  background: white; border: 1px solid var(--border); border-radius: var(--r-full);
  padding: var(--s2) var(--s4); font-size: var(--text-sm); font-weight: 500;
}
.werkgebied-item svg { width: 14px; height: 14px; color: var(--blue-500); }
.werkgebied-item.is-main { background: var(--blue-600); color: white; border-color: var(--blue-600); }
.werkgebied-item.is-main svg { color: white; }

/* ── Contact ─────────────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: var(--s12); }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 400px; } }
.contact-info { display: flex; flex-direction: column; gap: var(--s5); }
.contact-card { background: var(--surface-alt); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s6); }
.contact-card h3 { font-size: var(--text-lg); font-weight: 700; margin-bottom: var(--s5); }
.contact-item { display: flex; align-items: flex-start; gap: var(--s4); padding: var(--s3) 0; border-bottom: 1px solid var(--border-light); }
.contact-item:last-child { border-bottom: none; }
.contact-item__icon {
  width: 36px; height: 36px;
  background: var(--blue-100); color: var(--blue-600);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-item__icon svg { width: 16px; height: 16px; }
.contact-item__label { display: block; font-size: var(--text-xs); color: var(--ink-muted); margin-bottom: 2px; }
.contact-item a { font-weight: 600; font-size: var(--text-sm); color: var(--ink); }
.contact-item a:hover { color: var(--blue-600); }
.contact-item span { font-weight: 600; font-size: var(--text-sm); }
.openingstijden { display: flex; flex-direction: column; gap: var(--s1); }
.openingstijden-row { display: flex; justify-content: space-between; font-size: var(--text-sm); padding: var(--s2) 0; border-bottom: 1px solid var(--border-light); }
.openingstijden-row:last-child { border-bottom: none; }
.wa-cta-block {
  display: flex; gap: var(--s4);
  background: #e7fbe7; border: 1px solid #bbf0bb; border-radius: var(--r-xl); padding: var(--s5);
}
.wa-cta-block__icon {
  width: 44px; height: 44px;
  background: var(--green-wa); border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white;
}
.wa-cta-block__icon svg { width: 24px; height: 24px; }
.wa-cta-block h4 { font-weight: 700; margin-bottom: var(--s1); }
.wa-cta-block p { font-size: var(--text-sm); color: var(--ink-muted); }

/* ── Form ────────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: var(--s5); }
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group label { font-size: var(--text-sm); font-weight: 600; color: var(--ink); }
.form-group label span { color: var(--blue-500); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: var(--s3) var(--s4);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: var(--text-sm);
  color: var(--ink);
  background: var(--surface);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group--honeypot { display: none !important; }

/* ── Privacy / Prose ─────────────────────────────────────── */
.prose { max-width: 720px; }
.prose h1 { font-size: var(--text-3xl); font-weight: 800; margin-bottom: var(--s6); }
.prose h2 { font-size: var(--text-xl); font-weight: 700; margin: var(--s8) 0 var(--s3); }
.prose p { color: var(--ink-muted); margin-bottom: var(--s4); }
.prose ul { margin-bottom: var(--s4); padding-left: var(--s5); }
.prose ul li { list-style: disc; color: var(--ink-muted); margin-bottom: var(--s2); }
.prose a { color: var(--blue-600); text-decoration: underline; }
.prose em { color: var(--ink-muted); }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: var(--ink); padding: var(--s16) 0 var(--s8); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: var(--s8); margin-bottom: var(--s12); }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: var(--s10); } }
.footer__brand img { height: 68px; width: auto; margin-bottom: var(--s4); }
.footer__tagline { font-size: var(--text-sm); color: rgba(255,255,255,0.45); margin-bottom: var(--s6); }
.footer__contact { display: flex; flex-direction: column; gap: var(--s3); }
.footer__contact a,
.footer__contact span {
  display: flex; align-items: center; gap: var(--s2);
  font-size: var(--text-sm); color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.footer__contact a:hover { color: white; }
.footer__contact svg { width: 14px; height: 14px; flex-shrink: 0; }
.footer__nav-heading {
  font-size: var(--text-xs); text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(255,255,255,0.35);
  font-weight: 700; margin-bottom: var(--s4);
}
.footer__nav-list { display: flex; flex-direction: column; gap: var(--s2); }
.footer__nav-list a { font-size: var(--text-sm); color: rgba(255,255,255,0.55); transition: color 0.15s; }
.footer__nav-list a:hover { color: white; }
.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: space-between; gap: var(--s4);
  padding-top: var(--s8);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer__copy { font-size: var(--text-xs); color: rgba(255,255,255,0.3); }
.footer__legal { display: flex; gap: var(--s6); }
.footer__legal a { font-size: var(--text-xs); color: rgba(255,255,255,0.3); transition: color 0.15s; }
.footer__legal a:hover { color: rgba(255,255,255,0.65); }

/* ── WhatsApp float ──────────────────────────────────────── */
.whatsapp-btn {
  position: fixed; bottom: var(--s6); right: var(--s6); z-index: 50;
  width: 56px; height: 56px;
  background: var(--green-wa); color: white;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: transform 0.2s var(--ease-spring);
}
.whatsapp-btn:hover { transform: scale(1.1); }
.whatsapp-btn svg { width: 30px; height: 30px; }

/* ── Reveal animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.stagger .reveal:nth-child(2) { transition-delay: 0.08s; }
.stagger .reveal:nth-child(3) { transition-delay: 0.16s; }
.stagger .reveal:nth-child(4) { transition-delay: 0.24s; }
.stagger .reveal:nth-child(5) { transition-delay: 0.32s; }
.stagger .reveal:nth-child(6) { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ── Orange color tokens ──────────────────────────────────── */
.btn--orange { background: var(--blue-600); color: white; border-color: var(--blue-600); }
.btn--orange:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--orange:active { transform: translateY(0); }
.btn--outline-white { background: transparent; color: white; border-color: rgba(255,255,255,0.55); }
.btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; color: white; }

/* ── Topbar ───────────────────────────────────────────────── */
.topbar { background: #0a0f1a; padding: 9px 0; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; }
.topbar__contacts { display: flex; align-items: center; gap: var(--s6); }
.topbar__contacts a {
  display: inline-flex; align-items: center; gap: var(--s2);
  font-size: var(--text-xs); color: rgba(255,255,255,0.6);
  transition: color 0.15s;
}
.topbar__contacts a:hover { color: white; }
.topbar__contacts svg { width: 13px; height: 13px; }
.topbar__socials { display: flex; align-items: center; gap: var(--s2); }
.topbar__social {
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: background 0.15s, color 0.15s;
}
.topbar__social:hover { background: var(--blue-600); color: white; }
.topbar__social svg { width: 13px; height: 13px; }
@media (max-width: 639px) { .topbar { display: none; } }

/* ── Eyebrow label ────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue-600);
  margin-bottom: var(--s3);
}
.eyebrow--light { color: rgba(255,255,255,0.5); }

/* ── Hero v2 (full-width photo background) ────────────────── */
.hero-v2 {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: -68px; /* pull hero behind sticky nav so nav can be transparent */
}
@media (min-width: 768px) { .hero-v2 { min-height: 720px; } }
.hero-v2__bg { position: absolute; inset: 0; z-index: 0; }
.hero-v2__bg img {
  position: absolute;
  top: -30%;
  left: 0;
  width: 100%;
  height: 160%;
  object-fit: cover;
  object-position: center 30%;
  will-change: transform;
}
.hero-v2__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,10,22,0.94) 0%, rgba(5,10,22,0.78) 50%, rgba(5,10,22,0.35) 100%);
}
.hero-v2__inner { position: relative; z-index: 1; padding: calc(var(--s20) + 68px) 0 var(--s20); }
.hero-v2__text { max-width: 580px; }
.hero-v2__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #ffffff;
  margin-bottom: var(--s4);
}
.hero-v2__title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: var(--s5);
}
.hero-v2__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: var(--s8);
  max-width: 480px;
}
.hero-v2__ctas { display: flex; flex-wrap: wrap; gap: var(--s3); margin-bottom: var(--s8); }
.hero-v2__trust { font-size: var(--text-sm); color: rgba(255,255,255,0.48); margin-bottom: var(--s5); font-weight: 500; }
.hero-v2__logos { display: flex; align-items: center; gap: var(--s4); flex-wrap: wrap; }
.hero-v2__logo {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  padding: 7px 16px;
  display: flex; align-items: center; justify-content: center;
}
.hero-v2__logo img { height: 24px; width: auto; filter: brightness(0) invert(1); opacity: 0.65; object-fit: contain; }
.hero-v2__rating {
  position: absolute;
  bottom: var(--s12);
  right: var(--s8);
  z-index: 2;
}
.rating-card {
  background: white;
  border-radius: var(--r-xl);
  padding: var(--s4) var(--s6);
  box-shadow: 0 12px 48px rgba(0,0,0,0.4);
  display: flex; align-items: center; gap: var(--s4);
}
.rating-card__stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 2px; }
.rating-card__score { font-size: var(--text-2xl); font-weight: 900; color: var(--ink); line-height: 1; }
.rating-card__label { font-size: var(--text-xs); color: var(--ink-muted); line-height: 1.4; }
@media (max-width: 767px) { .hero-v2__rating { display: none; } }

/* ── Why Us ───────────────────────────────────────────────── */
.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 1024px) { .why-us__grid { grid-template-columns: 1fr 1fr; gap: var(--s14); } }
.why-us__content h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: var(--s5);
  line-height: 1.2;
}
@media (min-width: 768px) { .why-us__content h2 { font-size: var(--text-4xl); } }
.why-us__content > p { color: var(--ink-muted); margin-bottom: var(--s6); line-height: 1.7; }
.why-us__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  margin-bottom: var(--s8);
}
.feature-box {
  display: flex;
  align-items: center;
  gap: var(--s3);
  background: var(--surface-alt);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s4) var(--s4);
  transition: border-color 0.2s, background 0.2s;
}
.feature-box:hover { border-color: var(--blue-500); background: var(--blue-50); }
.feature-box__icon {
  width: 38px; height: 38px;
  background: var(--blue-600);
  color: white;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.feature-box__icon svg { width: 18px; height: 18px; }
.feature-box strong { font-size: var(--text-sm); font-weight: 700; color: var(--ink); line-height: 1.3; }
.why-us__image { position: relative; }
.why-us__image img {
  width: 100%;
  border-radius: var(--r-2xl);
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
}
.why-us__stat {
  position: absolute;
  bottom: var(--s8);
  left: calc(-1 * var(--s6));
  background: white;
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s7);
  box-shadow: var(--shadow-xl);
  text-align: center;
}
.why-us__stat__num { font-size: 2.2rem; font-weight: 900; color: var(--blue-700); letter-spacing: -0.04em; line-height: 1; }
.why-us__stat__lbl { font-size: var(--text-xs); color: var(--ink-muted); font-weight: 500; }
@media (max-width: 1023px) { .why-us__stat { left: var(--s4); } }

/* ── How It Works — dark blue section ────────────────────── */
.how-it-works {
  background: linear-gradient(135deg, #091525 0%, #0e2246 55%, #152d5e 100%);
  padding: var(--s16) 0;
}
.hiw-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px)  { .hiw-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .hiw-steps { grid-template-columns: repeat(4, 1fr); } }
.hiw-step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-2xl);
  padding: var(--s7) var(--s6);
  display: flex; flex-direction: column; gap: var(--s3);
  transition: background 0.2s;
}
.hiw-step:hover { background: rgba(255,255,255,0.1); }
.hiw-step__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.05em;
  line-height: 1;
}
.hiw-step__icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  color: white;
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hiw-step__icon--active { background: var(--blue-500); }
.hiw-step__icon svg { width: 26px; height: 26px; }
.hiw-step h3 { font-size: var(--text-base); font-weight: 700; color: white; }
.hiw-step p { color: rgba(255,255,255,0.55); font-size: var(--text-sm); line-height: 1.65; }

/* ── About v2 ─────────────────────────────────────────────── */
.about-v2__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 1024px) { .about-v2__grid { grid-template-columns: 1fr 1fr; gap: var(--s14); } }
.about-v2__img { position: relative; flex-shrink: 0; }
.about-v2__img img {
  width: 100%;
  border-radius: var(--r-2xl);
  object-fit: cover;
  aspect-ratio: 1 / 1;
  display: block;
}
.about-v2__badge {
  position: absolute;
  top: var(--s6);
  left: calc(-1 * var(--s4));
  background: linear-gradient(135deg, var(--blue-700) 0%, var(--blue-600) 100%);
  color: white;
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s6);
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.about-v2__badge .big { font-size: 2rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; display: block; }
.about-v2__badge .small { font-size: var(--text-xs); opacity: 0.88; display: block; margin-top: 3px; }
@media (max-width: 1023px) { .about-v2__badge { left: var(--s4); } }
.about-v2__content h2 {
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--s5);
  line-height: 1.2;
}
.about-v2__content p { color: var(--ink-muted); margin-bottom: var(--s4); line-height: 1.7; }
.about-v2__bullets { display: flex; flex-direction: column; gap: var(--s3); margin: var(--s5) 0 var(--s8); }
.about-v2__bullet {
  display: flex; align-items: center; gap: var(--s3);
  font-size: var(--text-sm); font-weight: 600;
}
.about-v2__bullet::before {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue-600);
  flex-shrink: 0;
}

/* ── Certifications row ───────────────────────────────────── */
.certs-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px) { .certs-row { grid-template-columns: repeat(3, 1fr); } }
.cert-card {
  border: 2px solid var(--border);
  border-radius: 50%;
  aspect-ratio: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: var(--s6);
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 220px;
  margin: 0 auto;
}
.cert-card:hover { border-color: var(--blue-500); }
.cert-card__icon {
  width: 44px; height: 44px;
  background: var(--blue-100);
  color: var(--blue-700);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s3);
}
.cert-card__icon svg { width: 22px; height: 22px; }
.cert-card strong { font-size: var(--text-sm); font-weight: 800; display: block; margin-bottom: var(--s1); }
.cert-card span { font-size: var(--text-xs); color: var(--ink-muted); line-height: 1.4; }

/* ── Stats strip (homepage) ───────────────────────────────── */
.stats-strip {
  background: white;
  padding: var(--s10) 0;
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s6);
  text-align: center;
}
@media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-item { display: flex; flex-direction: column; align-items: center; gap: var(--s1); }
.stat-item__num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--blue-700);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-item__lbl { font-size: var(--text-sm); color: var(--ink-muted); font-weight: 500; }

/* ── Service cards (homepage) ─────────────────────────────── */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
}
@media (min-width: 768px) { .service-cards { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  transition: all 0.2s var(--ease);
}
.service-card:hover { box-shadow: var(--shadow-lg); border-color: var(--blue-200); transform: translateY(-3px); }
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--blue-600);
  color: white;
  border-radius: var(--r-xl);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--s1);
  flex-shrink: 0;
}
.service-card__icon svg { width: 26px; height: 26px; }
.service-card__tag {
  display: inline-block;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: var(--r-full);
  align-self: flex-start;
}
.service-card h3 { font-size: var(--text-xl); font-weight: 700; }
.service-card p { color: var(--ink-muted); font-size: var(--text-sm); line-height: 1.65; flex: 1; }

/* ── Brand tiles (homepage) ───────────────────────────────── */
.brand-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
  margin-bottom: var(--s10);
}
@media (min-width: 640px) { .brand-tiles { grid-template-columns: repeat(3, 1fr); } }
.brand-tile {
  border-radius: var(--r-2xl);
  padding: var(--s8) var(--s6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
  text-align: center;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  min-height: 190px;
}
.brand-tile:hover { transform: translateY(-5px); box-shadow: 0 22px 64px rgba(0,0,0,0.28); }
.brand-tile--lg     { background: linear-gradient(135deg, #7a0016 0%, #b8001e 100%); }
.brand-tile--daikin { background: linear-gradient(135deg, #00256e 0%, #003eae 100%); }
.brand-tile--mitsu  { background: linear-gradient(135deg, #05103a 0%, #0b1e60 100%); }
.brand-tile__logo-box {
  background: white;
  border-radius: 14px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.brand-tile__logo-box img { height: 40px; width: auto; object-fit: contain; display: block; }
.brand-tile__name { color: rgba(255,255,255,0.78); font-weight: 600; font-size: var(--text-sm); letter-spacing: 0.05em; text-transform: uppercase; }

/* ── Process steps / Werkwijze (homepage) ─────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px)  { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-steps { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--r-2xl);
  padding: var(--s7) var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.process-step__num {
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-100);
  letter-spacing: -0.05em;
  line-height: 1;
}
.process-step__icon {
  width: 44px; height: 44px;
  background: var(--blue-600);
  color: white;
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.process-step__icon svg { width: 22px; height: 22px; }
.process-step h3 { font-size: var(--text-base); font-weight: 700; }
.process-step p { color: var(--ink-muted); font-size: var(--text-sm); line-height: 1.65; }

/* ── Brand Hero Slideshow (Merken page) ──────────────────── */
.brand-hero {
  position: relative;
  height: 380px;
  overflow: hidden;
}
@media (min-width: 768px) { .brand-hero { height: 480px; } }
@media (max-width: 767px) {
  .brand-slide__deco { display: none; }
  .brand-slide__content { width: 100%; max-width: 100%; }
}

.brand-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}
.brand-slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

/* Brand colour backgrounds */
.brand-slide--lg         { background: linear-gradient(135deg, #7a0016 0%, #b8001e 55%, #8c0018 100%); }
.brand-slide--daikin     { background: linear-gradient(135deg, #00256e 0%, #003eae 55%, #002878 100%); }
.brand-slide--mitsubishi { background: linear-gradient(135deg, #05103a 0%, #0b1e60 55%, #07143e 100%); }

/* Large decorative logo — right side */
.brand-slide__deco {
  position: absolute;
  right: 7%;
  top: 50%;
  transform: translateY(-50%);
  width: 32%;
  max-width: 380px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.96);
  border-radius: 20px;
  box-shadow: 0 12px 56px rgba(0,0,0,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2.5rem;
  pointer-events: none;
  z-index: 2;
}
.brand-slide__deco img {
  width: 100%;
  max-width: 220px;
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}

.brand-slide__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 480px;
  width: 52%;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.7s ease 0.3s, transform 0.75s cubic-bezier(0.22,1,0.36,1) 0.3s;
}
.brand-slide.is-active .brand-slide__content {
  opacity: 1;
  transform: translateX(0);
}

.brand-slide__logo-wrap {
  background: white;
  border-radius: 12px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 28px rgba(0,0,0,0.35);
  margin-bottom: 1.4rem;
}
.brand-slide__logo {
  height: 38px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  display: block;
}

.brand-slide__badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 0.85rem;
  color: rgba(255,255,255,0.92);
}
.brand-slide__name {
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.65rem;
  color: white;
}
.brand-slide__models {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.brand-slide__cta {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.13);
  border: 1.5px solid rgba(255,255,255,0.55);
  border-radius: 9px;
  padding: 0.7rem 1.5rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
}
.brand-slide__cta::after { content: ' →'; margin-left: 6px; }
.brand-slide__cta:hover  { background: rgba(255,255,255,0.24); border-color: white; transform: translateX(3px); }

/* Bottom nav: animated progress bars + slide counter */
.brand-nav {
  position: absolute;
  bottom: 28px;
  left: 0; right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.brand-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.brand-dot {
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.brand-dot::after {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: white;
  border-radius: 999px;
}
.brand-dot.is-active::after { animation: bar-fill 5s linear forwards; }
@keyframes bar-fill { from { width: 0; } to { width: 100%; } }
.brand-counter {
  display: flex;
  align-items: baseline;
  gap: 2px;
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.brand-counter__current { color: white; font-size: 0.88rem; }

/* ── Video hero (Diensten page) ───────────────────────────── */
.hero--video {
  position: relative;
  height: 380px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #111;
}
@media (min-width: 768px) { .hero--video { height: 480px; } }

.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Overlay and content layout */
.hero--video .hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to right, rgba(10,20,40,0.78) 0%, rgba(10,20,40,0.4) 55%, rgba(10,20,40,0.15) 100%);
}
.hero--video .hero__content { position: relative; z-index: 3; }
.hero--video .hero__title { font-size: var(--text-3xl); color: white; margin-bottom: var(--s3); }
.hero--video .hero__subtitle { color: rgba(255,255,255,0.88); max-width: 540px; }
@media (min-width: 768px) {
  .hero--video .hero__title { font-size: var(--text-4xl); }
}

/* ── Logo Intro animation (Over Ons page — acts as hero) ─── */
.logo-intro {
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 65%, #3b82f6 100%);
  height: 380px;
  padding: var(--s16) var(--s5);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .logo-intro { height: 480px; }
}
/* Over ons hero — split layout */
.logo-intro__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo-intro__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  flex: 1 1 320px;
}
.logo-intro__img {
  height: clamp(44px, 6vw, 72px);
  width: auto;
  object-fit: contain;
  opacity: 0;
  animation: logoTextIn 0.6s ease 0.2s forwards;
}
.logo-intro__title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
  opacity: 0;
  animation: logoTextIn 0.6s ease 0.4s forwards;
}
.logo-intro__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  max-width: 420px;
  margin: 0;
  opacity: 0;
  animation: logoTextIn 0.6s ease 0.55s forwards;
}
.logo-intro__cta {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 9px;
  padding: 0.65rem 1.4rem;
  color: white;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  opacity: 0;
  animation: logoTextIn 0.6s ease 0.7s forwards;
}
.logo-intro__cta:hover { background: rgba(255,255,255,0.26); border-color: white; }

/* Right: certification badges */
.logo-intro__right {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  flex: 0 1 340px;
  opacity: 0;
  animation: logoTextIn 0.7s ease 0.5s forwards;
}
.logo-intro__badge {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 0.8rem 1rem;
  backdrop-filter: blur(6px);
}
.logo-intro__badge svg {
  flex-shrink: 0;
  color: rgba(255,255,255,0.85);
}
.logo-intro__badge strong {
  display: block;
  color: white;
  font-size: 0.88rem;
  font-weight: 700;
}
.logo-intro__badge span {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  margin-top: 1px;
}

@media (max-width: 700px) {
  .logo-intro__right { display: none; }
}
.logo-intro__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  pointer-events: none;
}
.logo-intro__wave-svg {
  display: block;
  width: 100%;
  height: 56px;
  opacity: 0;
  animation: waveReveal 1.2s ease-out 1.0s forwards;
}
.logo-intro__wave-svg--2 {
  position: absolute;
  bottom: 0;
  left: 0;
  animation-delay: 1.25s;
}

@keyframes logoIconIn {
  from { opacity: 0; transform: scale(0.4) rotate(-60deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes logoTextIn {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes waveReveal {
  from { opacity: 0; transform: translateX(-10%); }
  to   { opacity: 1; transform: translateX(0); }
}
