/* =============================================================
   Govert Elektricien — demo
   Direction: owner-led-trades (cool navy + cyan trace + orange CTA)
   ============================================================= */

:root {
  --navy:        #003976;
  --navy-dark:   #002855;
  --navy-deeper: #001e45;
  --cyan:        #05b2dc;
  --cyan-muted:  #3aa0bf;
  --orange:      #fe621d;
  --orange-dark: #d44908;
  --ink:         #1a1a1a;
  --ink-muted:   #4a4f5a;
  --paper:       #fafafa;
  --paper-edge:  #eceef1;
  --paper-card:  #ffffff;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-card:    0 1px 2px rgba(0,30,69,.04), 0 8px 24px rgba(0,30,69,.06);
  --shadow-elev:    0 6px 14px rgba(0,30,69,.10), 0 18px 40px rgba(0,30,69,.12);

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-io:  cubic-bezier(.65,.05,.36,1);
}

/* ---------- reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: "Space Grotesk", "Inter", sans-serif;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.05;
  font-weight: 700;
}
p { margin: 0; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---------- layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}
section { position: relative; }

.eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
}

/* ---------- top nav ---------- */
.nav {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  padding: 22px 0 0;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #fff;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 17px;
  color: #fff;
}
.wordmark__dot {
  width: 10px; height: 10px;
  background: var(--cyan);
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(5,178,220,.25);
}
.nav__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14px;
  color: rgba(255,255,255,.78);
}
.nav__meta a { transition: color .2s var(--ease-out); }
.nav__meta a:hover { color: var(--cyan); }
.nav__lang {
  display: inline-flex;
  gap: 4px;
  padding: 5px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  font-size: 12px;
  letter-spacing: 0.1em;
}
.nav__lang b { color: #fff; font-weight: 600; }
.nav__lang span { color: rgba(255,255,255,.5); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 140px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 85% 10%, rgba(5,178,220,.22), transparent 60%),
    radial-gradient(900px 500px at 5% 95%, rgba(254,98,29,.08), transparent 60%);
  pointer-events: none;
  z-index: -1;
}
.hero__grid-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 45%, #000 40%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 90% 60% at 50% 45%, #000 40%, transparent 85%);
}
.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}
.hero__text { position: relative; }
.hero__overline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
  margin-bottom: 28px;
}
.hero__overline::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--cyan);
}
.hero__headline {
  font-size: clamp(44px, 7.2vw, 88px);
  line-height: .98;
  letter-spacing: -0.035em;
  font-weight: 700;
}
.hero__headline .accent {
  color: var(--cyan);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
}
.hero__sub {
  margin-top: 26px;
  font-size: clamp(17px, 1.3vw, 20px);
  color: rgba(255,255,255,.78);
  max-width: 52ch;
  line-height: 1.55;
}
.hero__ctas {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  padding: 16px 26px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.01em;
  transition: transform .18s var(--ease-out), background .22s var(--ease-out), box-shadow .22s var(--ease-out), color .22s var(--ease-out);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 24px rgba(254,98,29,.35), inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn--primary:hover { background: var(--orange-dark); transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.32);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.btn--solid-navy {
  background: var(--navy);
  color: #fff;
}
.btn--solid-navy:hover { background: var(--navy-dark); transform: translateY(-2px); }

.hero__phone-meta {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  font-size: 13px;
  color: rgba(255,255,255,.52);
  letter-spacing: 0.02em;
}
.hero__phone-meta span::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 999px;
  margin-right: 8px;
  transform: translateY(-2px);
}

.hero__mark {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin-left: auto;
  display: grid;
  place-items: center;
}
.hero__mark::before {
  content: "";
  position: absolute;
  inset: 4%;
  border-radius: 50%;
  border: 1px dashed rgba(5,178,220,.45);
  animation: spin 60s linear infinite;
}
.hero__mark::after {
  content: "";
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.08);
}
.hero__mark-ring {
  position: absolute;
  inset: -3%;
  border-radius: 50%;
  border: 1px solid rgba(5,178,220,.22);
}
.hero__mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 24px 40px rgba(5,178,220,.28));
  position: relative;
  z-index: 2;
}
.hero__mark-stat {
  position: absolute;
  z-index: 3;
  padding: 12px 16px;
  background: rgba(0,30,69,.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  font-size: 12px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.02em;
}
.hero__mark-stat b { font-family: "Space Grotesk"; font-size: 17px; letter-spacing: -0.01em; }
.hero__mark-stat--top    { top: 6%;  left: -4%; }
.hero__mark-stat--bottom { bottom: 8%; right: -2%; }
.hero__mark-stat .dot { width: 8px; height: 8px; border-radius: 999px; background: var(--cyan); box-shadow: 0 0 0 4px rgba(5,178,220,.18); }
.hero__mark-stat--bottom .dot { background: var(--orange); box-shadow: 0 0 0 4px rgba(254,98,29,.22); }

@keyframes spin { to { transform: rotate(360deg); } }

.hero__trace {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyan) 20%, var(--cyan) 80%, transparent);
  opacity: .9;
}

/* ---------- trust strip ---------- */
.trust {
  background: var(--navy);
  color: #fff;
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 28px 0 36px;
}
.trust__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255,255,255,.85);
}
.trust__item b { color: #fff; font-weight: 600; }
.trust__icon {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(5,178,220,.12);
  color: var(--cyan);
}
.trust__icon svg { width: 20px; height: 20px; }
.trust__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
  margin-right: 6px;
}
.trust__stars svg { width: 14px; height: 14px; }

/* ---------- owner section ---------- */
.owner {
  padding: 128px 0 120px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.owner::before {
  content: "G";
  position: absolute;
  right: -40px; bottom: -120px;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 620px;
  line-height: .8;
  color: rgba(0,57,118,.035);
  pointer-events: none;
  user-select: none;
}
.owner__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}
.owner__portrait {
  position: sticky;
  top: 100px;
  aspect-ratio: 4 / 5;
  background: linear-gradient(155deg, var(--navy) 0%, var(--navy-deeper) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-elev);
  display: grid;
  place-items: center;
  color: #fff;
}
.owner__portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 320px at 30% 20%, rgba(5,178,220,.22), transparent 60%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.025) 0 2px, transparent 2px 20px);
}
.owner__portrait-inner {
  position: relative;
  z-index: 2;
  padding: 32px;
  text-align: center;
}
.owner__portrait-label {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.owner__portrait-label::before {
  content: "";
  width: 20px; height: 1px; background: var(--cyan);
}
.owner__portrait-name {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 64px;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}
.owner__portrait-role {
  font-family: "Inter";
  font-size: 15px;
  color: rgba(255,255,255,.62);
  margin-bottom: 36px;
}
.owner__portrait-sig {
  margin: 0 auto 24px;
  width: 160px;
  height: 1px;
  background: rgba(255,255,255,.18);
}
.owner__portrait-quote {
  font-family: "Space Grotesk";
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: rgba(255,255,255,.78);
  line-height: 1.3;
  max-width: 22ch;
  margin: 0 auto;
}

.owner__text { max-width: 56ch; }
.owner__heading {
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-top: 16px;
  margin-bottom: 28px;
}
.owner__lead {
  font-size: 20px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 24px;
}
.owner__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-muted);
  margin-bottom: 20px;
}
.owner__pull {
  margin: 36px 0;
  padding: 26px 30px 26px 34px;
  border-left: 3px solid var(--orange);
  background: linear-gradient(90deg, rgba(254,98,29,.045), transparent 70%);
  font-family: "Space Grotesk";
  font-style: italic;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--navy);
  line-height: 1.25;
}
.owner__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.owner__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--paper-edge);
  background: var(--paper-card);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--ink-muted);
  font-weight: 500;
}
.owner__tag b { color: var(--navy); font-weight: 700; }
.owner__tag::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 999px;
}

/* ---------- services ---------- */
.services {
  padding: 120px 0;
  background: var(--paper);
  border-top: 1px solid var(--paper-edge);
}
.services__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 60px;
}
.services__heading {
  font-size: clamp(44px, 5vw, 72px);
  letter-spacing: -0.03em;
}
.services__heading em {
  font-style: normal;
  color: var(--cyan);
  font-weight: 500;
}
.services__intro {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.65;
  max-width: 42ch;
  justify-self: end;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--paper-card);
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .26s var(--ease-out), box-shadow .26s var(--ease-out), border-color .26s var(--ease-out);
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }

.service-card__art {
  aspect-ratio: 4 / 3;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-dark) 60%, var(--navy-deeper) 100%);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #fff;
}
.service-card__art::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 40%, #000 40%, transparent 100%);
}
.service-card__art svg { position: relative; z-index: 2; width: 55%; height: 55%; }
.service-card__tag {
  position: absolute;
  top: 18px; left: 18px;
  z-index: 3;
  padding: 6px 12px;
  background: rgba(0,30,69,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--cyan);
}
.service-card__body {
  padding: 30px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex-grow: 1;
}
.service-card__title {
  font-size: 26px;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.service-card__copy {
  font-size: 15px;
  color: var(--ink-muted);
  line-height: 1.65;
}
.service-card__link {
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.service-card__link svg { width: 14px; height: 14px; transition: transform .2s var(--ease-out); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
.service-card__link b { color: var(--orange); font-weight: 700; }

/* ---------- kopzorgen (use-case block on navy) ---------- */
.kopzorgen {
  padding: 120px 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.kopzorgen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(800px 500px at 20% 100%, rgba(5,178,220,.18), transparent 60%),
    radial-gradient(600px 400px at 100% 0%, rgba(254,98,29,.08), transparent 60%);
  pointer-events: none;
}
.kopzorgen__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}
.kopzorgen__heading {
  font-size: clamp(40px, 4.6vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin-bottom: 20px;
}
.kopzorgen__heading b {
  color: var(--orange);
  font-weight: 700;
  font-style: italic;
}
.kopzorgen__sub {
  font-size: 17px;
  color: rgba(255,255,255,.72);
  max-width: 40ch;
  line-height: 1.6;
  margin-bottom: 30px;
}
.kopzorgen__closer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-family: "Space Grotesk";
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: rgba(255,255,255,.88);
  line-height: 1.4;
  max-width: 36ch;
}
.kopzorgen__cta {
  margin-top: 28px;
}

.kopzorgen__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  counter-reset: kop;
}
.kopzorgen__item {
  padding: 22px 0 22px 64px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,.92);
  position: relative;
  transition: padding-left .25s var(--ease-out), color .2s var(--ease-out);
  counter-increment: kop;
}
.kopzorgen__item:last-child { border-bottom: 0; }
.kopzorgen__item::before {
  content: counter(kop, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 26px;
  font-family: "Space Grotesk";
  font-size: 13px;
  font-weight: 600;
  color: var(--cyan);
  letter-spacing: 0.12em;
}
.kopzorgen__item::after {
  content: "";
  position: absolute;
  left: 34px;
  top: 31px;
  width: 20px; height: 1px;
  background: rgba(5,178,220,.42);
  transition: width .25s var(--ease-out);
}
.kopzorgen__item:hover { padding-left: 72px; color: #fff; }
.kopzorgen__item:hover::after { width: 28px; background: var(--cyan); }

/* ---------- testimonials ---------- */
.reviews {
  padding: 128px 0;
  background: var(--paper);
  border-top: 1px solid var(--paper-edge);
}
.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}
.reviews__heading {
  font-size: clamp(38px, 4.4vw, 62px);
  letter-spacing: -0.025em;
}
.reviews__heading b {
  color: var(--cyan);
  font-weight: 700;
  font-style: italic;
}
.reviews__agg {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: var(--paper-card);
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-card);
}
.reviews__agg-score {
  font-family: "Space Grotesk";
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.reviews__agg-meta {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.3;
}
.reviews__agg-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--orange);
}
.reviews__agg-stars svg { width: 14px; height: 14px; }

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--paper-card);
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius-lg);
  padding: 32px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out);
}
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.review-card__mark {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: var(--cyan);
  letter-spacing: -0.05em;
}
.review-card__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
}
.review-card__stars svg { width: 16px; height: 16px; }
.review-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  flex-grow: 1;
}
.review-card__text.is-en { font-style: italic; color: var(--ink-muted); }
.review-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--paper-edge);
}
.review-card__avatar {
  width: 40px; height: 40px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--cyan));
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}
.review-card__who { display: flex; flex-direction: column; line-height: 1.3; }
.review-card__name { font-weight: 600; font-size: 15px; color: var(--navy); }
.review-card__src {
  font-size: 12px;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- contact ---------- */
.contact {
  padding: 128px 0 112px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  left: 50%; top: 0;
  width: 120vw; height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--paper) 0%, #fff5ef 100%);
  z-index: 0;
}
.contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 72px;
}
.contact__head { max-width: 44ch; }
.contact__heading {
  font-size: clamp(44px, 5.2vw, 76px);
  letter-spacing: -0.03em;
  line-height: .98;
  margin: 18px 0 24px;
}
.contact__heading b {
  color: var(--orange);
  font-style: italic;
  font-weight: 700;
}
.contact__sub {
  font-size: 17px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 36px;
}
.contact__card {
  background: var(--paper-card);
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius-lg);
  padding: 28px 30px;
  box-shadow: var(--shadow-card);
}
.contact__row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--paper-edge);
}
.contact__row:last-child { border-bottom: 0; }
.contact__row-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,57,118,.06);
  color: var(--navy);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__row-icon svg { width: 16px; height: 16px; }
.contact__row-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact__row-value {
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
}
.contact__row-value a:hover { color: var(--orange); }

.contact__form {
  background: #fff;
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}
.contact__form::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 6px; height: 100%;
  background: linear-gradient(180deg, var(--cyan), var(--orange) 60%);
}
.form-title {
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-sub {
  font-size: 14px;
  color: var(--ink-muted);
  margin-bottom: 30px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--paper-edge);
  border-radius: var(--radius-md);
  transition: border-color .18s var(--ease-out), background .18s var(--ease-out);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-submit {
  margin-top: 10px;
  width: 100%;
  padding: 18px;
  font-size: 15px;
  font-weight: 600;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  letter-spacing: 0.02em;
  transition: background .2s var(--ease-out), transform .18s var(--ease-out);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.form-submit:hover { background: var(--navy-dark); }
.form-submit svg { width: 16px; height: 16px; }
.form-escape {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.5;
}
.form-escape a { color: var(--navy); font-weight: 600; border-bottom: 1px solid var(--paper-edge); }
.form-escape a:hover { color: var(--orange); border-color: var(--orange); }

/* ---------- footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.78);
  padding: 72px 0 36px;
  position: relative;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--cyan) 20%, var(--cyan) 80%, transparent);
  opacity: .9;
}
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__mark {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-family: "Space Grotesk";
  font-weight: 600;
  font-size: 18px;
}
.footer__mark img { width: 40px; height: 40px; }
.footer__line {
  font-size: 13px;
  color: rgba(255,255,255,.52);
  letter-spacing: 0.02em;
}
.footer__col h4 {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
}
.footer__col p,
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,.78);
  line-height: 1.6;
  display: block;
}
.footer__col a:hover { color: var(--cyan); }
.footer__socials { display: flex; gap: 10px; margin-top: 14px; }
.footer__social {
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.78);
  transition: color .2s var(--ease-out), border-color .2s var(--ease-out), transform .2s var(--ease-out);
}
.footer__social:hover { color: var(--cyan); border-color: var(--cyan); transform: translateY(-2px); }
.footer__social svg { width: 16px; height: 16px; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.footer__bottom a:hover { color: var(--cyan); }

/* ---------- cookie bar ---------- */
.cookie {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--ink-muted);
  box-shadow: var(--shadow-elev);
  z-index: 50;
  transform: translateY(120%);
  transition: transform .4s var(--ease-out);
}
.cookie.is-visible { transform: translateY(0); }
.cookie b { color: var(--navy); font-weight: 700; }
.cookie button {
  margin-left: auto;
  padding: 10px 18px;
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 13px;
  transition: background .2s var(--ease-out);
  flex-shrink: 0;
}
.cookie button:hover { background: var(--navy-dark); }

/* ---------- reveal animation (JS-gated so no-JS / SSR screenshots stay visible) ---------- */
.is-revealing .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.is-revealing .reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 128px 0 72px; }
  .hero__mark { max-width: 360px; margin: 0 auto; }

  .owner__inner { grid-template-columns: 1fr; gap: 40px; }
  .owner__portrait { position: static; aspect-ratio: 16 / 10; max-width: 520px; }
  .owner__portrait-name { font-size: 52px; }

  .services__head { grid-template-columns: 1fr; gap: 20px; }
  .services__intro { justify-self: start; }
  .services__grid { grid-template-columns: 1fr 1fr; }

  .kopzorgen__inner { grid-template-columns: 1fr; gap: 48px; }

  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { padding: 0 20px; }
  .nav { padding-top: 16px; }
  .nav__meta { gap: 14px; font-size: 13px; }
  .nav__phone-label { display: none; }
  .nav__lang { display: none; }
  .hero { padding: 110px 0 64px; }
  .hero__headline { font-size: clamp(40px, 10vw, 64px); }
  .hero__sub { font-size: 16px; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__phone-meta { flex-direction: column; gap: 8px; font-size: 12px; }

  .trust { padding: 28px 0; }
  .trust__grid { grid-template-columns: 1fr; gap: 18px; }

  .owner { padding: 88px 0 80px; }
  .owner__portrait { aspect-ratio: 4 / 5; max-width: 100%; }
  .owner__portrait-name { font-size: 44px; }
  .owner__portrait-quote { font-size: 17px; }
  .owner__heading { font-size: 34px; margin-bottom: 22px; }
  .owner__lead { font-size: 17px; }
  .owner__pull { font-size: 20px; padding: 20px 22px; margin: 28px 0; }

  .services { padding: 80px 0; }
  .services__grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card__body { padding: 24px 22px 24px; }
  .service-card__title { font-size: 22px; }

  .kopzorgen { padding: 80px 0; }
  .kopzorgen__heading { font-size: 34px; }
  .kopzorgen__item { font-size: 16px; padding: 18px 0 18px 52px; }
  .kopzorgen__item::before { top: 22px; }
  .kopzorgen__item::after { top: 27px; }

  .reviews { padding: 80px 0; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
  .reviews__heading { font-size: 32px; }
  .reviews__grid { grid-template-columns: 1fr; }

  .contact { padding: 80px 0; }
  .contact__heading { font-size: 40px; }
  .contact__form { padding: 28px 22px; }
  .form-title { font-size: 23px; }
  .form-grid { grid-template-columns: 1fr; }

  .footer { padding: 56px 0 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; margin-bottom: 32px; }
  .footer__bottom { flex-direction: column; font-size: 12px; }

  .cookie { flex-direction: column; align-items: stretch; gap: 10px; text-align: left; }
  .cookie button { width: 100%; }

  .hero__mark-stat--top { top: 2%; left: 0; }
  .hero__mark-stat--bottom { bottom: 4%; right: 0; }
}

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