/* ============================================================
   VerfMeester — Schildersbedrijf (Siriux demo)
   Kleuren: petrol #0E7C66 · coral #FF6B5A · donker #102A28
   Fonts: Plus Jakarta Sans (koppen) · Inter (body)
   ============================================================ */

:root {
  --petrol: #0E7C66;
  --petrol-dark: #0a5d4c;
  --petrol-deep: #102A28;
  --coral: #FF6B5A;
  --coral-soft: #FF9489;
  --ink: #16312e;
  --slate: #4c635e;
  --muted: #6c827d;
  --line: #DCEAE6;
  --bg: #ffffff;
  --bg-alt: #F6FBFA;
  --card: #ffffff;
  --wa: #25D366;
  --wa-dark: #1da851;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(16, 42, 40, .06);
  --shadow: 0 14px 40px rgba(14, 124, 102, .14);
  --shadow-lg: 0 30px 70px rgba(16, 42, 40, .24);
  --maxw: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Plus Jakarta Sans', var(--font);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.1; letter-spacing: -.02em; }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

section { position: relative; }

/* ============ SCROLL PROGRESS ============ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--petrol));
  z-index: 1000;
  transition: width .1s linear;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .98rem;
  padding: .9rem 1.5rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  white-space: nowrap;
}
.btn svg { transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 10px 26px rgba(255, 107, 90, .38);
}
.btn--primary:hover { transform: translateY(-3px); background: #ff5642; box-shadow: 0 18px 38px rgba(255, 107, 90, .5); }
.btn--ghost {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255, 255, 255, .2); transform: translateY(-3px); }
.btn--wa { background: var(--wa); color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .35); }
.btn--wa:hover { background: var(--wa-dark); transform: translateY(-3px); }
.btn--block { width: 100%; justify-content: center; }

/* ============ NAVBAR ============ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  transition: background .35s, box-shadow .35s, padding .35s;
  padding: 1.1rem 0;
}
.nav.scrolled {
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
  padding: .65rem 0;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: -.03em;
  transition: color .35s;
}
.nav.scrolled .brand { color: var(--ink); }
.brand span { color: var(--coral); }
.nav.scrolled .brand span { color: var(--coral); }
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 16px rgba(255, 107, 90, .4);
  transform: rotate(-8deg);
  transition: transform .4s var(--ease);
}
.brand:hover .brand__mark { transform: rotate(4deg) scale(1.06); }

.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a {
  font-weight: 600;
  font-size: .96rem;
  color: rgba(255, 255, 255, .92);
  position: relative;
  transition: color .3s;
}
.nav.scrolled .nav__links a { color: var(--slate); }
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--coral);
  transition: width .3s var(--ease);
}
.nav.scrolled .nav__links a:not(.nav__cta)::after { background: var(--petrol); }
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a:hover { color: #fff; }
.nav.scrolled .nav__links a:hover { color: var(--petrol); }
.nav__cta {
  background: var(--coral);
  color: #fff !important;
  padding: .6rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(255, 107, 90, .4);
  transition: transform .25s var(--ease), box-shadow .25s;
}
.nav__cta:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(255, 107, 90, .55); }

.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav__burger span { width: 26px; height: 3px; background: #fff; border-radius: 2px; transition: .3s var(--ease); }
.nav.scrolled .nav__burger span { background: var(--ink); }
.nav__burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--petrol-deep) 0%, var(--petrol) 60%, var(--petrol-dark) 100%);
  color: #fff;
  overflow: hidden;
  padding: 7rem 0 4rem;
}
.hero__mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(40% 50% at 80% 20%, rgba(255, 107, 90, .28), transparent 70%),
    radial-gradient(45% 55% at 15% 85%, rgba(45, 212, 178, .30), transparent 70%);
  animation: meshFloat 14s ease-in-out infinite alternate;
}
@keyframes meshFloat {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-3%, 3%, 0) scale(1.1); }
}
.hero__grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 40%, transparent 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 3rem;
  align-items: center;
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255, 107, 90, .7); animation: ping 2s infinite; }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(255, 107, 90, .6); } 70% { box-shadow: 0 0 0 9px rgba(255, 107, 90, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 107, 90, 0); } }

.hero__title {
  font-size: clamp(2.5rem, 5.6vw, 4.4rem);
  font-weight: 800;
  margin: 1.4rem 0 1.2rem;
  letter-spacing: -.035em;
}
.hero__title .grad {
  display: inline-block;
  position: relative;
  background: linear-gradient(100deg, var(--coral), var(--coral-soft) 60%, #ffd9d2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
/* playful brush-stroke underline behind the accent words */
.hero__title .grad::after {
  content: '';
  position: absolute;
  left: -2%; right: -2%; bottom: .04em;
  height: .22em;
  background: var(--coral);
  opacity: .28;
  border-radius: 40% 60% 55% 45% / 60% 50% 60% 40%;
  z-index: -1;
}
.hero__sub {
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
  color: rgba(255, 255, 255, .85);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__trust { display: flex; align-items: center; gap: .8rem; margin-top: 2rem; font-size: .95rem; color: rgba(255,255,255,.85); }
.stars { color: var(--coral); letter-spacing: 2px; font-size: 1.05rem; }

/* Floating swatches */
.floaters { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.floater { position: absolute; font-size: 2rem; opacity: .5; filter: drop-shadow(0 8px 16px rgba(0,0,0,.3)); }
.f1 { top: 18%; left: 8%; animation: float 7s ease-in-out infinite; }
.f2 { top: 65%; left: 14%; font-size: 1.6rem; animation: float 9s ease-in-out infinite 1s; }
.f3 { top: 30%; right: 6%; font-size: 2.4rem; animation: float 8s ease-in-out infinite .5s; }
.f4 { top: 78%; right: 12%; animation: float 6.5s ease-in-out infinite 1.5s; }
.f5 { top: 50%; left: 48%; font-size: 1.3rem; animation: float 10s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0) rotate(-6deg); } 50% { transform: translateY(-22px) rotate(8deg); } }

/* Paint-roller illustration */
.hero__art { display: grid; place-items: center; }
.paintscene { position: relative; width: min(320px, 72vw); filter: drop-shadow(0 30px 50px rgba(0,0,0,.35)); }
.paintscene__glow {
  position: absolute; inset: -12% -12% -22%;
  background: radial-gradient(50% 50% at 50% 45%, rgba(255,107,90,.32), transparent 70%);
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100% { opacity: .6; transform: scale(.95); } 50% { opacity: 1; transform: scale(1.05); } }
.paintscene__svg { position: relative; width: 100%; height: auto; overflow: visible; }

/* growing paint band + roller sweeping down */
.paint-fill { animation: paintGrow 6s ease-in-out infinite; }
.roller { animation: rollerMove 6s ease-in-out infinite; }
@keyframes paintGrow {
  0%, 8%   { height: 0; }
  55%, 70% { height: 312px; }
  92%, 100%{ height: 0; }
}
@keyframes rollerMove {
  0%, 8%   { transform: translateY(38px); }
  55%, 70% { transform: translateY(350px); }
  92%, 100%{ transform: translateY(38px); }
}

.paintscene__tag {
  position: absolute; bottom: 8%; right: -6%;
  background: var(--coral); color: #fff;
  font-family: var(--font-head); font-weight: 700; font-size: .85rem;
  padding: .4rem .9rem; border-radius: 999px;
  box-shadow: var(--shadow);
  animation: float 5s ease-in-out infinite;
}
.swatches {
  position: absolute; top: 6%; left: -8%;
  display: flex; flex-direction: column; gap: .4rem;
  padding: .5rem; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22); border-radius: 14px;
  backdrop-filter: blur(6px);
  animation: float 6.5s ease-in-out infinite .8s;
}
.swatches span { width: 26px; height: 26px; border-radius: 8px; background: var(--s); box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.35); }

.hero__scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px; z-index: 3;
}
.hero__scroll span { width: 4px; height: 8px; background: var(--coral); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(14px); opacity: 0; } 100% { opacity: 0; } }

/* ============ STRIP ============ */
.strip { background: var(--coral); overflow: hidden; padding: .85rem 0; border-top: 3px solid var(--petrol-deep); }
.strip__track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; animation: marquee 28s linear infinite; }
.strip__track span { font-family: var(--font-head); font-weight: 700; color: #fff; font-size: .95rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ STATS ============ */
.stats { background: var(--petrol-deep); color: #fff; padding: 3.2rem 0; }
.stats__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center;
}
.stat { display: flex; flex-direction: column; align-items: center; }
.stat__num { font-family: var(--font-head); font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 800; color: var(--coral); line-height: 1; letter-spacing: -.04em; }
.stat__suffix { display: none; }
.stat__label { margin-top: .5rem; color: rgba(255,255,255,.78); font-size: .92rem; font-weight: 500; }

/* ============ SECTIONS ============ */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--alt { background: var(--bg-alt); }
.section__head {
  max-width: 720px; margin: 0 auto clamp(2.5rem, 5vw, 4rem); text-align: center;
  padding: 0 clamp(1rem, 4vw, 2rem);
}
.eyebrow {
  display: inline-block; font-family: var(--font-head); font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--petrol); background: rgba(14,124,102,.09); padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1rem;
}
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; margin-bottom: .9rem; }
.section__head p { color: var(--muted); font-size: 1.08rem; }
.section__head code { background: #e7f2ee; padding: .1rem .45rem; border-radius: 6px; font-size: .92em; color: var(--petrol); }

/* ============ CARDS ============ */
.cards {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem;
}
.card {
  position: relative; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.8rem; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--petrol), var(--coral)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  font-size: 1.8rem; background: linear-gradient(135deg, rgba(14,124,102,.12), rgba(255,107,90,.18)); margin-bottom: 1.2rem;
  transition: transform .4s var(--ease);
}
.card:hover .card__icon { transform: rotate(-8deg) scale(1.08); }
.card h3 { font-size: 1.25rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card__tag {
  position: absolute; top: 1.4rem; right: 1.4rem;
  background: var(--coral); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .72rem;
  padding: .25rem .65rem; border-radius: 999px;
}

/* ============ OVER / ABOUT ============ */
.about {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
}
.about__photo { position: relative; }
.about__ph {
  position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius);
  background: linear-gradient(150deg, var(--petrol), var(--petrol-deep));
  display: grid; place-items: center; overflow: hidden; box-shadow: var(--shadow-lg);
}
.about__ph::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.about__initials {
  font-family: var(--font-head); font-size: clamp(4rem, 10vw, 7rem); font-weight: 800; color: rgba(255,255,255,.16);
  letter-spacing: -.04em; position: relative;
}
.about__photo-hint {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%);
  background: rgba(255,255,255,.14); backdrop-filter: blur(6px); color: #fff;
  font-size: .82rem; font-weight: 600; padding: .5rem 1rem; border-radius: 999px; white-space: nowrap;
}
.about__badge {
  position: absolute; bottom: -22px; right: -16px;
  background: var(--coral); color: #fff;
  border-radius: 16px; padding: 1rem 1.3rem; text-align: center;
  box-shadow: var(--shadow); animation: float 5.5s ease-in-out infinite;
}
.about__badge-num { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; line-height: 1; }
.about__badge span:last-child { font-size: .78rem; font-weight: 600; }

.about__copy .eyebrow { margin-bottom: 1rem; }
.about__copy h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1.2rem; }
.about__lead { font-size: 1.12rem; color: var(--ink); margin-bottom: 1rem; }
.about__copy p { color: var(--muted); margin-bottom: 1.2rem; }
.about__copy strong { color: var(--ink); }
.about__points { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem 1.4rem; margin: 1.6rem 0; }
.about__point { display: flex; align-items: center; gap: .6rem; font-weight: 600; font-size: .96rem; color: var(--ink); }
.about__point span { display: grid; place-items: center; width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--petrol); color: #fff; font-size: .75rem; font-weight: 800; }
.about__sign { margin-bottom: 1.6rem; }
.about__signature { display: block; font-family: var(--font-head); font-size: 1.5rem; font-weight: 800; color: var(--petrol); letter-spacing: -.02em; }
.about__role { font-size: .9rem; color: var(--muted); }

/* ============ STEPS ============ */
.steps {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex; align-items: stretch; justify-content: center; gap: 1rem; flex-wrap: wrap;
}
.step {
  flex: 1; min-width: 220px; background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem 1.6rem; text-align: center; position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step__no {
  display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem;
  border-radius: 50%; background: var(--petrol); color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(14,124,102,.32);
}
.step h3 { font-size: 1.18rem; margin-bottom: .5rem; }
.step p { color: var(--muted); font-size: .96rem; }
.step__arrow { display: grid; place-items: center; font-size: 1.8rem; color: var(--coral); font-weight: 800; }

/* ============ PRICING ============ */
.pricing {
  max-width: var(--maxw); margin: 3rem auto 0; padding: 2.5rem clamp(1.2rem, 4vw, 2.5rem);
  background: var(--petrol-deep); color: #fff; border-radius: var(--radius); text-align: center;
  width: calc(100% - 2rem);
}
.pricing > h3 { font-size: 1.5rem; margin-bottom: 1.6rem; }
.pricing__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.price {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-sm); padding: 1.4rem 1rem; transition: transform .3s var(--ease), background .3s;
}
.price:hover { transform: translateY(-5px); background: rgba(255,255,255,.1); }
.price--feat { background: var(--coral); color: #fff; border-color: var(--coral); }
.price--feat .price__sub { color: rgba(255,255,255,.8); }
.price__name { display: block; font-weight: 700; font-size: .92rem; margin-bottom: .4rem; opacity: .9; }
.price__amt { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 800; letter-spacing: -.03em; }
.price__sub { display: block; font-size: .8rem; color: rgba(255,255,255,.6); margin-top: .3rem; }
.pricing__note { margin-top: 1.5rem; font-size: .85rem; color: rgba(255,255,255,.6); }

/* ============ GALLERY ============ */
.gallery {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.shot { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s; }
.shot:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.shot__ph {
  aspect-ratio: 4 / 3; display: grid; place-items: center; color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.1rem;
  letter-spacing: .02em; text-shadow: 0 2px 10px rgba(0,0,0,.3); position: relative; overflow: hidden; text-align: center; padding: 1rem;
}
.shot__ba {
  position: absolute; top: 12px; left: 12px;
  background: rgba(16,42,40,.55); backdrop-filter: blur(4px);
  font-size: .72rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; letter-spacing: .02em;
}
.shot__ph::after { content: '📷 voorbeeld'; position: absolute; bottom: 10px; right: 12px; font-size: .7rem; font-weight: 600; opacity: .85; font-family: var(--font); }
.ph1 { background: linear-gradient(135deg, #0E7C66, #14a085); }
.ph2 { background: linear-gradient(135deg, #0a5d4c, #0E7C66); }
.ph3 { background: linear-gradient(135deg, #FF6B5A, #ff8f7f); }
.ph4 { background: linear-gradient(135deg, #102A28, #0E7C66); }
.ph5 { background: linear-gradient(135deg, #0E7C66, #FF6B5A); }
.ph6 { background: linear-gradient(135deg, #14a085, #102A28); }
.shot figcaption { padding: .9rem 1.1rem; font-weight: 600; font-size: .92rem; background: var(--card); color: var(--ink); }
.gallery__note {
  max-width: var(--maxw); margin: 1.6rem auto 0; padding: 0 clamp(1rem, 4vw, 2rem);
  text-align: center; color: var(--muted); font-size: .92rem;
}

/* ============ REVIEWS ============ */
.reviews {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem;
}
.review {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; position: relative; transition: transform .35s var(--ease), box-shadow .35s;
}
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review__stars { color: var(--coral); letter-spacing: 2px; font-size: 1.1rem; margin-bottom: .9rem; }
.review p { color: var(--ink); font-size: 1.04rem; margin-bottom: 1.4rem; }
.review__by { display: flex; align-items: center; gap: .8rem; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--c, var(--petrol)); color: #fff; font-family: var(--font-head); font-weight: 700; }
.review__by strong { display: block; font-size: .96rem; }
.review__by span { font-size: .85rem; color: var(--muted); }

/* ============ AANVRAAG ============ */
.aanvraag {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid; grid-template-columns: 1.4fr .8fr; gap: 2rem; align-items: start;
}
.form {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label { display: flex; flex-direction: column; gap: .4rem; font-weight: 600; font-size: .92rem; color: var(--ink); }
.form input, .form select, .form textarea {
  font-family: inherit; font-size: .98rem; padding: .8rem .95rem; border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); background: #fbfdfc; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--petrol); box-shadow: 0 0 0 4px rgba(14,124,102,.12); background: #fff;
}
.form textarea { resize: vertical; }
.file__hint { font-weight: 500; font-size: .82rem; color: var(--muted); }
.is-hidden { display: none !important; }
.form__status { font-size: .92rem; font-weight: 600; text-align: center; min-height: 1.2rem; }
.form__status.ok { color: var(--petrol); }
.form__status.err { color: #d8392b; }

.aanvraag__side { display: flex; flex-direction: column; gap: 1.4rem; }
.wa-card {
  background: linear-gradient(160deg, var(--petrol), var(--petrol-deep)); color: #fff;
  border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow);
}
.wa-card__head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.wa-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: var(--wa); color: #fff; }
.wa-card__head strong { display: block; font-size: 1.1rem; }
.wa-card__head span { font-size: .85rem; color: rgba(255,255,255,.7); }
.wa-card p { color: rgba(255,255,255,.85); font-size: .95rem; margin-bottom: 1.3rem; }
.reassure { list-style: none; display: flex; flex-direction: column; gap: .7rem; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; }
.reassure li { font-weight: 600; color: var(--ink); font-size: .95rem; }

/* ============ FOOTER ============ */
.footer { background: var(--petrol-deep); color: rgba(255,255,255,.8); padding: 3.5rem 0 0; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem) 2.5rem;
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 2rem;
}
.brand--footer { color: #fff; font-size: 1.6rem; }
.footer__brand p { margin-top: .8rem; max-width: 24rem; font-size: .95rem; }
.footer__col h4 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer__col a, .footer__col span { display: block; font-size: .93rem; margin-bottom: .6rem; transition: color .25s; }
.footer__col a:hover { color: var(--coral); }
.footer__bar { border-top: 1px solid rgba(255,255,255,.1); padding: 1.4rem clamp(1rem,4vw,2rem); text-align: center; font-size: .82rem; color: rgba(255,255,255,.5); display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.footer__demo { font-size: .8rem; color: rgba(255,255,255,.72); background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); padding: .45rem 1rem; border-radius: 999px; }
.footer__demo a { color: var(--coral); font-weight: 700; }
.footer__demo a:hover { text-decoration: underline; }

/* ============ CHAT ============ */
.chat-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 950;
  width: 64px; height: 64px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--coral); color: #fff; display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(255,107,90,.45); transition: transform .3s var(--ease), background .3s;
}
.chat-fab:hover { transform: scale(1.08) rotate(-6deg); background: #ff5642; }
.chat-fab__pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--petrol); animation: ping 2.2s infinite; }
.chat-fab.hidden { transform: scale(0); opacity: 0; pointer-events: none; }

.chat {
  position: fixed; bottom: 24px; right: 24px; z-index: 951;
  width: min(380px, calc(100vw - 32px)); height: min(600px, calc(100vh - 48px));
  background: #fff; border-radius: 22px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(20px) scale(.96); pointer-events: none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.chat.open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.chat__head {
  background: linear-gradient(135deg, var(--petrol), var(--petrol-deep)); color: #fff;
  padding: 1rem 1.1rem; display: flex; align-items: center; justify-content: space-between;
}
.chat__id { display: flex; align-items: center; gap: .7rem; }
.chat__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--coral); display: grid; place-items: center; font-size: 1.3rem; }
.chat__id strong { display: block; font-size: 1rem; }
.chat__status { font-size: .78rem; color: rgba(255,255,255,.8); display: flex; align-items: center; gap: .35rem; }
.chat__status .dot { width: 8px; height: 8px; border-radius: 50%; background: #4ade80; box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: ping 2s infinite; }
.chat__close { background: rgba(255,255,255,.15); border: none; color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; font-size: .9rem; transition: background .25s; }
.chat__close:hover { background: rgba(255,255,255,.3); }

.chat__body { flex: 1; overflow-y: auto; padding: 1.2rem 1rem; display: flex; flex-direction: column; gap: .7rem; background: var(--bg-alt); }
.msg { max-width: 82%; padding: .7rem 1rem; border-radius: 16px; font-size: .94rem; line-height: 1.5; animation: msgIn .35s var(--ease); }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.msg--bot { background: #fff; color: var(--ink); border: 1px solid var(--line); border-bottom-left-radius: 5px; align-self: flex-start; box-shadow: var(--shadow-sm); }
.msg--user { background: var(--petrol); color: #fff; border-bottom-right-radius: 5px; align-self: flex-end; }
.msg--summary { background: #fff; border: 1.5px solid var(--petrol); align-self: stretch; max-width: 100%; }
.msg--summary strong { color: var(--petrol); }
.typing { display: inline-flex; gap: 4px; padding: .9rem 1rem; }
.typing span { width: 7px; height: 7px; border-radius: 50%; background: var(--muted); animation: typing 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: .2s; }
.typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typing { 0%, 60%, 100% { transform: translateY(0); opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

.chat__quick { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0 1rem; background: var(--bg-alt); }
.chat__quick:not(:empty) { padding: .2rem 1rem .6rem; }
.quick-btn {
  background: #fff; border: 1.5px solid var(--petrol); color: var(--petrol); font-weight: 700; font-size: .85rem;
  padding: .5rem .9rem; border-radius: 999px; cursor: pointer; transition: background .2s, color .2s, transform .2s;
}
.quick-btn:hover { background: var(--petrol); color: #fff; transform: translateY(-2px); }

.chat__input { display: flex; gap: .5rem; padding: .8rem; background: #fff; border-top: 1px solid var(--line); }
.chat__input input { flex: 1; border: 1.5px solid var(--line); border-radius: 999px; padding: .7rem 1rem; font-family: inherit; font-size: .92rem; }
.chat__input input:focus { outline: none; border-color: var(--petrol); }
.chat__input button { width: 44px; height: 44px; border-radius: 50%; border: none; background: var(--petrol); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s, transform .25s; flex-shrink: 0; }
.chat__input button:hover { background: var(--petrol-dark); transform: scale(1.05); }

/* ============ REVEAL ANIMATION ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.shot.reveal { transition-delay: calc(var(--i) * .08s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .paint-fill { height: 312px; }
  .roller { transform: translateY(350px); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__art { display: none; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__cta, .hero__trust { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .pricing__grid { grid-template-columns: repeat(2, 1fr); }
  .aanvraag { grid-template-columns: 1fr; }
  .reviews { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .step__arrow { display: none; }
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 380px; margin: 0 auto 1.5rem; width: 100%; }
  .about__badge { right: 8px; }

  .nav__links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(300px, 80vw);
    background: var(--petrol-deep); flex-direction: column; justify-content: center;
    gap: 1.8rem; transform: translateX(100%); transition: transform .4s var(--ease); padding: 2rem;
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { color: #fff !important; font-size: 1.1rem; }
  .nav__burger { display: flex; z-index: 20; }
  .nav.scrolled .nav__burger span { background: var(--ink); }
  .nav__links.open ~ .nav__burger span { background: #fff; }
}

@media (max-width: 560px) {
  .cards, .gallery, .pricing__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}
