:root{
  --ink:#1b1b1b;
  --muted:#667085;
  --accent:#0a523b;
  --brand:#f4a44d;
  --glass: rgba(255,255,255,.65);
  --radius:18px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --maxw:1160px;
}

*{box-sizing:border-box}
html,body{
  margin:0;
  padding:0;
  font-family:"Comfortaa",system-ui,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--ink);
  background:#fff;
}
a{color:var(--accent);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 20px}

/* ===== Topbar + banner ===== */
.br-banner{
  position:fixed;
  top:0;left:0;width:100%;
  background:#0a523b;
  color:#fff;
  text-align:center;
  padding:10px 0;
  font-size:14px;
  z-index:1000;
}
body.has-banner .topbar{margin-top:40px;}

.topbar{
  position:fixed;
  top:0;left:0;right:0;
  height:70px;
  display:flex;
  align-items:center;
  z-index:900;
  backdrop-filter:saturate(180%) blur(12px);
  background:var(--glass);
  border-bottom:1px solid rgba(0,0,0,.06);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:10px}
.brand img{height:38px}
.brand span{font-weight:700;font-size:20px}

.tb-actions{display:flex;gap:10px;align-items:center}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  border:1px solid var(--accent);
  background:#fff;
  color:var(--accent);
  cursor:pointer;
}
.btn.primary{
  background:var(--accent);
  color:#fff;
  border-color:transparent;
  box-shadow:var(--shadow);
}
.btn.sm{padding:9px 14px;font-size:13px}
.tb-actions a.login-link{
  border: 1px solid #ccc;
  border-radius: 15px;
  padding: 9px 14px;
}

@media (max-width: 760px){
  .tb-actions .btn.secondary{display:none}
  .tb-actions a.login-link{
	display:inline-block;
	font-weight:700;
	color:var(--accent);
	font-size:12px;
  }
  .tb-actions a.btn{font-size:12px;}
}

/* ===== Hero met Ken-Burns + bokeh ===== */
.hero{
  position:relative;
  width:100%;
  height:78vh;
  min-height:520px;
  max-height:880px;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  margin-top:70px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:
	linear-gradient(180deg, rgba(0,0,0,.10) 0%, rgba(0,0,0,.35) 65%, rgba(0,0,0,.50) 100%),
	var(--hero-url) center/cover no-repeat;
  transform-origin:50% 55%;
  animation: kenburns 42s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenburns{
  0%{transform:scale(1.04) translate3d(0,0,0)}
  50%{transform:scale(1.08) translate3d(-8px,-10px,0)}
  100%{transform:scale(1.12) translate3d(10px,6px,0)}
}
@media (prefers-reduced-motion: reduce){
  .hero::before{animation:none; transform:none}
}

.hero .bokeh{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  mix-blend-mode:screen;
  overflow:hidden;
}
.hero .bokeh i{
  position:absolute;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), rgba(255,255,255,0) 60%);
  filter: blur(14px);
  opacity:.55;
  animation:bokehFloat 30s linear infinite;
  will-change:transform,opacity;
}
.hero .bokeh i:nth-child(1){width:140px;height:140px;left:8%;top:68%;animation-duration:34s;animation-delay:-6s;}
.hero .bokeh i:nth-child(2){width:120px;height:120px;left:22%;top:22%;animation-duration:28s;animation-delay:-3s;}
.hero .bokeh i:nth-child(3){width:200px;height:200px;left:66%;top:64%;animation-duration:40s;animation-delay:-12s;}
.hero .bokeh i:nth-child(4){width:110px;height:110px;left:78%;top:18%;animation-duration:26s;animation-delay:-9s;}
.hero .bokeh i:nth-child(5){width:160px;height:160px;left:42%;top:78%;animation-duration:36s;animation-delay:-15s;}
.hero .bokeh i:nth-child(6){width:130px;height:130px;left:5%;top:35%;animation-duration:32s;animation-delay:-18s;}
.hero .bokeh i:nth-child(odd){
  background: radial-gradient(circle at 30% 30%, rgba(244,164,77,.16), rgba(244,164,77,0) 60%);
}
.hero .bokeh i:nth-child(3n){
  background: radial-gradient(circle at 30% 30%, rgba(10,82,59,.14), rgba(10,82,59,0) 60%);
}
@keyframes bokehFloat{
  0%{transform:translate3d(0,0,0) scale(1); opacity:.45}
  50%{transform:translate3d(12px,-36px,0) scale(1.08); opacity:.62}
  100%{transform:translate3d(-14px,18px,0) scale(1); opacity:.45}
}
@media (max-width:980px){
  .hero .bokeh i:nth-child(n+5){display:none}
}
@media (prefers-reduced-motion: reduce){
  .hero .bokeh i{animation:none; opacity:.30}
}
.hero-content{position:relative;z-index:2;width:100%;padding:28px 0 36px;}
.hero-card{
  max-width:720px;
  color:#fff;
  padding:18px 22px;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(0,0,0,.38), rgba(0,0,0,.28));
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 12px 40px rgba(0,0,0,.25);
}
.kicker{color:#d2efe5;font-weight:700;letter-spacing:.02em;margin-bottom:6px}
h1{font-size:clamp(32px,5vw,56px);line-height:1.04;margin:4px 0 10px;color:#fff}
.lead{color:#eef6f4;font-size:clamp(16px,2vw,20px);line-height:1.6;margin:0 0 14px}
.cta-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:8px}
.cta-row .btn{border-color:#fff;color:#0a2a1e;background:#fff}
.cta-row .btn.primary{background:#0a523b;color:#fff}
.cta-row .btn:hover{filter:brightness(.96)}
@media (max-width:640px){ .cta-row{justify-content:center} }

/* ===== Stripes / kaarten ===== */
.stripe{padding:56px 0}
.eyebrow{color:var(--accent);font-weight:700;letter-spacing:.02em;text-transform:uppercase;font-size:13px}
h2{font-size:34px;margin:8px 0}
.muted{color:var(--muted);line-height:21px;}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin-top:20px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:20px}
.card{
  background:#fff;
  border:1px solid #e9e9e9;
  border-radius:var(--radius);
  padding:20px;
  box-shadow:var(--shadow);
  position:relative;
}
.card h3{margin:0 0 8px;font-size:20px;}
.team-photo-slot{
  width:100%;
  height:120px;
  border-radius:14px;
  background:#f5f5f5;
  border:1px dashed #d7d7d7;
  margin:10px 0 12px;
}
@media (max-width:980px){
  .grid-3,.grid-2{grid-template-columns:1fr}
}
.card-content{width:65%;display:inline-block;vertical-align:top;}
.card-img{width:20%;right:0;display:inline-block;margin:0;padding:0;}
.card-img img{width:auto;max-height:230px;border-radius:15px;}
.small{font-size:11px!important;}

/* Client logo's */
.client-logos{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  align-items:center;
  margin-top:20px;
}
.client-logos img{
  max-height:40px;
  width:auto;
  object-fit:contain;
  filter:grayscale(1) contrast(.85);
  opacity:.55;
  transition:opacity .2s, filter .2s;
}
.client-logos img:hover{
  opacity:.85;
  filter:grayscale(.2) contrast(1);
}
@media (max-width:980px){
  .client-logos{grid-template-columns:1fr 1fr}
}

/* Foto-reel */
.reel{
  position:relative;
  overflow:hidden;
  border-radius:16px;
  border:1px solid #eee;
  background:#fafafa;
  box-shadow:var(--shadow);
}
.reel-track{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding:12px;
  -webkit-overflow-scrolling:touch;
}
.reel-track::-webkit-scrollbar{height:10px}
.reel-track::-webkit-scrollbar-thumb{background:#ddd;border-radius:20px}
.reel-item{
  scroll-snap-align:center;
  flex:0 0 auto;
  width:min(86vw,520px);
  aspect-ratio:16/9;
  border-radius:12px;
  overflow:hidden;
  position:relative;
  background:#eaeaea;
  border:1px solid #e6e6e6;
}
.reel-item img{width:100%;height:100%;object-fit:cover;display:block}
.reel-nav{
  position:absolute;
  inset:auto 12px 12px auto;
  display:flex;
  gap:8px;
  z-index:2;
}
.reel-btn{
  background:rgba(255,255,255,.9);
  border:1px solid #ddd;
  border-radius:999px;
  padding:8px 12px;
  cursor:pointer;
  font-weight:700;
}

/* CTA band */
.band{
  background:linear-gradient(180deg,#fff7ed 0,#fff 100%);
  border-top:1px solid #eee;
  padding:48px 0;
  text-align:center
}
.band h3{font-size:28px;margin:0 0 10px}

/* Footer */
.site-footer{
  padding:30px 0;
  border-top:1px solid #eee;
  color:var(--muted);
  font-size:14px;
}
.foot-grid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.foot-logo{height:32px;margin-right:8px}
.foot-left{display:flex;align-items:center;gap:10px}
.foot-links a{margin-left:4px}

/* Pricing */
#pricing .billing-toggle{
  display:flex;align-items:center;justify-content:center;gap:12px;margin:8px 0 24px
}
#pricing .lbl{font-weight:700;color:#333}
#pricing .switch{
  position:relative;width:84px;height:38px;border-radius:999px;background:#eaeaea;border:1px solid #ddd;cursor:pointer
}
#pricing .switch input{appearance:none;width:100%;height:100%;margin:0;cursor:pointer}
#pricing .knob{
  position:absolute;top:2px;left:2px;width:34px;height:34px;border-radius:50%;background:#fff;border:1px solid #d6d6d6;
  box-shadow:0 3px 8px rgba(0,0,0,.08);transition:left .2s
}
#pricing.yearly-active .knob{left:48px}
#pricing .rail{
  position:absolute;inset:0;display:flex;align-items:center;justify-content:space-between;padding:0 10px;font-size:12px;
  font-weight:700;color:#7a7a7a;pointer-events:none
}
#pricing.yearly-active .txtY{color:#0a523b}
#pricing:not(.yearly-active) .txtM{color:#0a523b}

#pricing .grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
#pricing .price-card{
  background:#fff;border:1px solid #e5e5e5;border-radius:16px;padding:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);text-align:center;
  padding-bottom:200px;position:relative;
}
#pricing .price-card.emph{border-color:#0a523b;box-shadow:0 16px 36px rgba(10,82,59,.15)}
#pricing .title{font-size:18px;font-weight:800;margin:0 0 4px}
#pricing .kicker{color:#667085;font-size:14px;margin:0 0 6px}
#pricing .price{font-size:34px;font-weight:900;margin:6px 0 2px}
#pricing .per{font-size:14px;color:#667085}
#pricing .sub{color:#667085;font-size:13px;margin:8px 0 10px}
#pricing .feat{list-style:none;padding:0;margin:0 0 12px;text-align:left;border-top:1px dashed #cfd8d3;}
#pricing .feat li{
  display:grid;
  grid-template-columns:16px 1fr;
  column-gap:8px;
  align-items:flex-start;
  margin:7px 0;
}
#pricing .feat li:before{
  content:"✓";
  color:#0a523b;
  font-weight:800;
  line-height:1.2;
  margin-top:3px;
}
#pricing .feat li ul{grid-column:2;margin:4px 0 0;padding-left:0;list-style:none}
#pricing .feat li ul li{display:block;margin:2px 0;color:#4b5563;font-size:13px}
#pricing .feat li ul li:before{content:none}
#pricing .btn{display:inline-flex;align-items:center;justify-content:center;padding:12px 18px;border-radius:999px;font-weight:800;border:1px solid #0a523b;color:#0a523b;background:#fff}
#pricing .btn.primary{background:#0a523b;color:#fff;border-color:transparent;position:absolute;bottom:50px;left:15px;width:90%;}
#pricing .fine{color:#667085;font-size:13px;margin-top:12px;text-align:center}

#pricing .toggle .show-year{display:inline}
#pricing .toggle .show-month{display:none}
#pricing:not(.yearly-active) .toggle .show-year{display:none}
#pricing:not(.yearly-active) .toggle .show-month{display:inline}

#pricing .plus-wrap{margin-top:24px}
#pricing .plus-card{
  background:#fff;border:1px solid #e5e5e5;border-radius:16px;padding:18px;
  box-shadow:0 10px 26px rgba(0,0,0,.06);text-align:center
}

.price-card .addon{
  display:flex;align-items:center;gap:10px;
  margin:8px 0 12px;padding:10px 12px;
  background:#fff;border:1px dashed #cfd8d3;border-radius:10px;
  font-size:13px;color:#2d3b34;line-height:1.35;
  text-decoration:none!important;
  position:absolute;bottom:90px;left:15px;width:90%;
}
.price-card .addon strong{font-weight:800}
.price-card .addon .pill{
  background:#0a523b;color:#fff;font-weight:800;font-size:11px;
  padding:4px 8px;border-radius:999px;white-space:nowrap;
}
#pricing:not(.yearly-active) .addon{display:none;}
.price-card .price-sub,
.price-card .price-sub *{text-decoration:none!important;border:0;}
.last{position:absolute;bottom:10px;}
@media (max-width:1180px){#pricing .grid-4{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){#pricing .grid-4{grid-template-columns:1fr}}

/* FAQ */
#faq .faq-wrap{max-width:980px;margin:0 auto}
#faq h2{font-size:34px;margin:8px 0 18px}
#faq .accordion{display:grid;gap:12px}
#faq details{
  background:#fff;border:1px solid #e7e7e7;border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;
}
#faq summary{
  list-style:none;cursor:pointer;padding:16px 18px;
  font-weight:700;display:flex;align-items:center;gap:10px;
}
#faq summary::-webkit-details-marker{display:none}
#faq summary .chev{margin-left:auto;transition:transform .18s ease}
#faq details[open] summary{border-bottom:1px dashed #e5e5e5}
#faq details[open] summary .chev{transform:rotate(180deg)}
#faq .answer{padding:16px 18px;color:var(--muted);line-height:1.6}
#faq .answer ul{margin:6px 0 0 18px}
#faq .answer li{margin:4px 0}
@media (max-width:700px){#faq h2{font-size:28px}}

/* Contact page */
.contact-wrap{max-width:880px;margin:0 auto;padding:120px 20px 40px;}
.contact-header{display:flex;align-items:center;gap:12px;margin-bottom:8px}
.contact-header img{height:48px}
.contact-header h1{margin:0 0 6px;color:var(--ink);}
.contact-lead{color:var(--muted);margin:0 0 24px}
.contact-card{
  background:#fff;border:1px solid #e4e4e4;border-radius:var(--radius);
  box-shadow:var(--shadow);padding:22px;
}
label{display:block;font-weight:700;margin:12px 0 6px}
input,textarea{
  width:100%;padding:12px 14px;border:1px solid #e4e4e4;
  border-radius:12px;font-family:inherit;font-size:14px;
}
textarea{min-height:140px;resize:vertical}
.note{color:var(--muted);font-size:14px;margin-top:12px}
.alert{padding:10px 12px;border-radius:12px;margin-bottom:16px}
.alert-ok{background:#ecfdf5;border:1px solid #a7f3d0;color:#065f46}
.alert-err{background:#fef2f2;border:1px solid #fecaca;color:#7f1d1d}


#pricing .show-year{display:none;}
#pricing .show-month{display:inline;}
#pricing.is-year .show-year,
#pricing.yearly-active .show-year{display:inline;}
#pricing.is-year .show-month,
#pricing.yearly-active .show-month{display:none;}
