:root{
  --page:#f5f7f6;
  --paper:#fff;
  --ink:#0d1110;
  --muted:#606b66;
  --line:rgba(13,17,16,.12);
  --green:#19b874;
  --accent-strong:#128556;
  --accent-soft:#e9f6ef;
  --green-dark:#062116;
  --dark:#0d1411;
  --shadow:0 26px 70px rgba(13,17,16,.12);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;overflow-x:clip}
h1,h2,h3,p,a,span,strong,small,b,li,button{
  overflow-wrap:anywhere;
}
body{
  min-height:100vh;
  color:var(--ink);
  background:
    radial-gradient(circle at 16% 6%, rgba(25,184,116,.14), transparent 30rem),
    linear-gradient(135deg,#fff 0%,var(--page) 46%,#edf3f0 100%);
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x:clip;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:linear-gradient(rgba(13,17,16,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(13,17,16,.035) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.38),transparent 74%);
}
a{color:inherit}
.site-shell{width:min(1180px,calc(100% - 40px));margin:0 auto}
.hero-copy,
.hero-panel,
.statement-stack,
.split-section > *,
.service-layout > *,
.service-row > *,
.scan-teaser > *,
.contact-band > *{
  min-width:0;
}

.page-wipe{
  position:fixed;
  inset:0;
  width:100%;
  max-width:100%;
  z-index:45;
  pointer-events:none;
  background:linear-gradient(135deg,#fff,var(--page),#e8f2ed);
  transform:translateY(100%);
  transition:transform .42s cubic-bezier(.72,0,.2,1);
}
body.is-leaving .page-wipe{transform:translateY(0)}
.scroll-progress{
  position:fixed;
  inset:0 0 auto;
  width:100%;
  max-width:100%;
  height:3px;
  z-index:40;
  background:rgba(13,17,16,.08);
}
.scroll-progress span{
  display:block;
  width:0%;
  height:100%;
  background:linear-gradient(90deg,var(--green),#61d9c9);
  box-shadow:0 0 18px rgba(25,184,116,.34);
}

.topbar{
  min-height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  position:sticky;
  top:0;
  z-index:50;
  isolation:isolate;
  padding-inline:0;
  transition:top .28s ease,padding .28s ease;
}
.topbar::before{
  content:"";
  position:absolute;
  left:50%;
  top:0;
  width:100vw;
  height:100%;
  transform:translateX(-50%);
  z-index:0;
  pointer-events:none;
  background:rgba(248,251,249,.9);
  border-bottom:1px solid rgba(13,17,16,.08);
  box-shadow:0 8px 24px rgba(13,17,16,.035);
  transition:width .28s ease,border-radius .28s ease,top .28s ease,height .28s ease,box-shadow .28s ease,background .28s ease;
}
.topbar > *{position:relative;z-index:1}
body.has-scrolled .topbar{
  top:12px;
  padding-inline:clamp(10px,2vw,18px);
}
body.has-scrolled .topbar::before{
  top:0;
  width:min(1180px,calc(100vw - 28px));
  height:100%;
  border-radius:22px;
  background:rgba(248,251,249,.92);
  border:1px solid rgba(13,17,16,.09);
  box-shadow:0 18px 48px rgba(13,17,16,.1);
}
@supports(backdrop-filter:blur(16px)){
  .topbar::before{
    background:rgba(248,251,249,.72);
    backdrop-filter:blur(18px);
  }
  body.has-scrolled .topbar::before{
    background:rgba(248,251,249,.86);
  }
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;font-weight:950}
.brand-mark{
  width:58px;
  height:44px;
  border-radius:0;
  background:transparent;
  position:relative;
  overflow:hidden;
  border:0;
  box-shadow:none;
}
.brand-mark img{
  position:absolute;
  left:50%;
  top:50%;
  width:178px;
  max-width:none;
  height:auto;
  transform:translate(-50%,-45%);
}
.nav{display:flex;align-items:center;gap:24px;min-width:0}
.nav a{
  min-width:0;
  color:var(--muted);
  text-decoration:none;
  font-size:14px;
  font-weight:800;
}
.nav a:hover{color:var(--ink)}
.nav .nav-cta{
  position:relative;
  overflow:hidden;
  color:#fff;
  background:var(--dark);
  border:2px solid #2c2c2c;
  padding:10px 17px;
  border-radius:999px;
  transition:background .34s ease,border-color .34s ease,transform .2s ease,box-shadow .2s ease;
}
.nav a.nav-cta.active{color:#fff}
.nav .nav-cta::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle,rgba(255,255,255,.28) 0%,rgba(255,255,255,0) 70%);
  transform:scale(0);
  transition:transform .52s ease;
  pointer-events:none;
}
.nav .nav-cta:hover{
  color:#fff;
  background:#292929;
  border-color:#666;
  transform:translateY(-1px);
  box-shadow:0 16px 34px rgba(13,17,16,.14);
}
.nav .nav-cta:hover::after{transform:scale(4)}
.mobile-menu{display:none}
.mobile-menu summary{list-style:none}
.mobile-menu summary::-webkit-details-marker{display:none}
.mobile-menu-panel a{text-decoration:none}

.button{
  position:relative;
  z-index:1;
  overflow:hidden;
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  border-radius:999px;
  padding:0 24px;
  font-weight:950;
  font-size:14px;
  text-decoration:none;
  border:2px solid transparent;
  cursor:pointer;
  max-width:100%;
  text-align:center;
  transition:transform .22s ease, box-shadow .28s ease, border-color .34s ease, background .34s ease, color .34s ease;
}
.button::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle,rgba(255,255,255,.26) 0%,rgba(255,255,255,0) 70%);
  transform:scale(0);
  transition:transform .52s ease;
  pointer-events:none;
}
.button:hover{
  transform:translateY(-2px);
}
.button:hover::after{transform:scale(4)}
.button.primary{
  background:#1a1a1a;
  color:#fff;
  border:2px solid #2c2c2c;
  box-shadow:0 18px 38px rgba(13,17,16,.14);
}
.button.primary:hover{
  background:#292929;
  border-color:#666;
  box-shadow:0 22px 44px rgba(13,17,16,.18);
}
.button.secondary{
  background:#fff;
  border:2px solid rgba(13,17,16,.14);
  color:var(--ink);
  box-shadow:0 12px 26px rgba(13,17,16,.05);
}
.button.secondary::after{
  background:radial-gradient(circle,rgba(13,17,16,.1) 0%,rgba(13,17,16,0) 70%);
}
.button.secondary:hover{
  background:#f8fbf9;
  border-color:rgba(13,17,16,.28);
  box-shadow:0 14px 30px rgba(13,17,16,.07);
}
.scan-teaser .button.primary,
.contact-band .button.primary{
  background:var(--green);
  color:var(--green-dark);
  border:2px solid rgba(25,184,116,.5);
  box-shadow:0 18px 38px rgba(25,184,116,.2);
}
.scan-teaser .button.primary:hover,
.contact-band .button.primary:hover{
  background:#20c77f;
  border-color:rgba(255,255,255,.38);
  box-shadow:0 22px 44px rgba(25,184,116,.25);
}
.scan-teaser .button.secondary::after,
.contact-band .button.secondary::after{
  background:radial-gradient(circle,rgba(13,17,16,.12) 0%,rgba(13,17,16,0) 70%);
}

.hero{
  min-height:clamp(620px,78vh,760px);
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.54fr);
  gap:38px;
  align-items:center;
  padding:34px 0 68px;
}
.eyebrow,
.statement small,
.section-copy small,
.service-intro small,
.scan-teaser small{
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  margin-bottom:24px;
  box-shadow:0 8px 22px rgba(13,17,16,.04);
}
.eyebrow::before{
  content:"";
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(25,184,116,.15);
}
.headline{
  max-width:880px;
  display:grid;
  gap:2px;
  font-size:clamp(44px,6.1vw,84px);
  line-height:1.08;
  font-weight:950;
}
.headline span{
  display:block;
  opacity:1;
  transform:none;
}
body.is-loaded .headline span{animation:wordIn .75s cubic-bezier(.16,1,.3,1) both}
body.is-loaded .headline span:nth-child(2){animation-delay:.08s}
body.is-loaded .headline span:nth-child(3){animation-delay:.16s}
@keyframes wordIn{
  from{opacity:0;transform:translateY(32px)}
  to{opacity:1;transform:translateY(0)}
}
.hero-text{
  max-width:650px;
  color:#4d5752;
  font-size:18px;
  line-height:1.65;
  margin:24px 0 30px;
}
.hero-actions{display:flex;flex-wrap:wrap;gap:12px}
.microcopy{margin-top:12px;color:#66716b;font-size:13px;font-weight:800}
.hero-scan-copy{
  max-width:650px;
  display:grid;
  gap:5px;
  margin-top:18px;
  padding-left:16px;
  border-left:3px solid var(--green);
}
.hero-scan-copy strong{
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
  text-transform:uppercase;
}
.hero-scan-copy p{
  color:#313a36;
  font-size:15px;
  font-weight:800;
  line-height:1.55;
}
.hero-scan-copy span{
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}

.hero-panel{
  min-height:430px;
  display:grid;
  align-content:space-between;
  gap:20px;
  color:#fff;
  background:
    linear-gradient(145deg,rgba(13,20,17,.96),rgba(13,20,17,.68)),
    radial-gradient(circle at 74% 18%,rgba(25,184,116,.34),transparent 18rem),
    linear-gradient(135deg,#18251f,#07110c);
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  padding:24px;
  box-shadow:var(--shadow);
}
.panel-top,
.panel-list div{
  display:flex;
  justify-content:space-between;
  gap:16px;
}
.panel-top{
  color:#cbd5d0;
  font-size:12px;
  font-weight:900;
}
.hero-panel strong{font-size:clamp(56px,7vw,92px);line-height:1}
.hero-panel p{max-width:34ch;color:#dce5e0;line-height:1.65;margin-top:12px}
.panel-list{
  display:grid;
  gap:1px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  overflow:hidden;
}
.panel-list div{padding:14px 16px;background:rgba(255,255,255,.06);font-size:13px;font-weight:850}
.panel-list b{color:var(--green)}

.statement{
  padding:54px 0;
  border-top:1px solid rgba(13,17,16,.08);
  border-bottom:1px solid rgba(13,17,16,.08);
}
.statement-stack{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:30px;
  box-shadow:0 14px 36px rgba(13,17,16,.05);
  display:grid;
  gap:22px;
}
.statement h2,
.section-copy h2,
.service-intro h2{
  max-width:790px;
  font-size:clamp(30px,3.8vw,50px);
  line-height:1.13;
  margin-top:14px;
}
.statement p,
.section-copy p,
.service-intro p{
  max-width:740px;
  color:var(--muted);
  line-height:1.65;
  margin-top:14px;
}
.proof-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
}
.proof-item,
.signal-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:20px;
}
.proof-item{background:var(--accent-soft)}
.proof-item strong,
.signal-card h3{display:block;font-size:22px;line-height:1.14;margin-bottom:8px}
.proof-item span,
.signal-card p{display:block;color:var(--muted);font-size:14px;line-height:1.55}

.section{padding:70px 0;border-top:1px solid rgba(13,17,16,.08)}
.audience-section{
  display:grid;
  grid-template-columns:minmax(0,.78fr) minmax(360px,.62fr);
  gap:34px;
  align-items:center;
}
.audience-copy small{
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
}
.audience-copy h2{
  max-width:720px;
  margin-top:14px;
  font-size:clamp(30px,3.8vw,50px);
  line-height:1.13;
}
.audience-copy p{
  max-width:700px;
  margin-top:14px;
  color:var(--muted);
  line-height:1.65;
}
.audience-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-content:center;
}
.audience-list span{
  display:inline-flex;
  min-height:44px;
  align-items:center;
  padding:0 16px;
  border:1px solid rgba(25,184,116,.22);
  border-radius:999px;
  color:#173b2d;
  background:#fff;
  box-shadow:0 10px 26px rgba(13,17,16,.05);
  font-size:14px;
  font-weight:900;
}
.split-section{
  display:grid;
  grid-template-columns:minmax(0,.7fr) minmax(360px,.72fr);
  gap:28px;
  align-items:start;
}
.signal-list{display:grid;gap:12px}
.signal-card small{color:var(--accent-strong);font-weight:950}

.services{background:rgba(255,255,255,.35)}
.service-layout{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:28px;
  align-items:start;
}
.service-intro{position:sticky;top:84px;display:grid;gap:16px}
.service-rows{
  position:relative;
  isolation:isolate;
  display:grid;
  gap:1px;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:var(--line);
  box-shadow:0 14px 36px rgba(13,17,16,.06);
}
.service-rows::before,
.package-ladder::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  border-radius:inherit;
  opacity:0;
  background:radial-gradient(520px circle at var(--mx,50%) var(--my,50%),rgba(25,184,116,.16),transparent 58%);
  transition:opacity .24s ease;
}
.service-rows.is-hovered::before,
.package-ladder.is-hovered::before{opacity:1}
.service-row{
  position:relative;
  z-index:1;
  min-height:126px;
  display:grid;
  grid-template-columns:64px minmax(0,1fr) minmax(170px,.24fr);
  gap:20px;
  align-items:center;
  background:#fff;
  padding:22px;
  text-decoration:none;
  color:inherit;
}
.service-row > span{color:var(--accent-strong);font-size:13px;font-weight:950}
.service-row h3{font-size:clamp(24px,2.6vw,34px);line-height:1.18}
.service-row p{color:var(--muted);line-height:1.65;margin-top:8px}
.service-row b{
  justify-self:end;
  min-width:178px;
  display:inline-flex;
  justify-content:center;
  padding:9px 12px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--accent-soft);
  font-size:13px;
}
.service-separator{
  position:relative;
  z-index:1;
  display:flex;
  align-items:center;
  gap:14px;
  min-height:54px;
  padding:0 22px;
  background:#f7fbf9;
  color:var(--accent-strong);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
}
.service-separator::after{
  content:"";
  height:1px;
  flex:1;
  background:rgba(18,133,86,.22);
}
.service-row-ai{
  background:linear-gradient(135deg,#fff 0%,#f4fbf7 100%);
}

.scan-teaser{
  color:#fff;
  background:
    linear-gradient(110deg,rgba(13,20,17,.98),rgba(13,20,17,.76)),
    radial-gradient(circle at 84% 20%,rgba(25,184,116,.36),transparent 22rem),
    var(--dark);
  border-radius:8px;
  padding:28px;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(250px,.38fr);
  gap:22px;
  align-items:center;
  box-shadow:var(--shadow);
}
.scan-teaser h2{max-width:720px;font-size:clamp(28px,3vw,42px);line-height:1.14;margin:14px 0}
.scan-teaser p{color:#cbd5d0;line-height:1.65;max-width:620px;margin-bottom:20px}
.scan-list{
  display:grid;
  gap:1px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
  overflow:hidden;
}
.scan-list div{background:rgba(255,255,255,.06);padding:14px 16px}
.scan-list strong{display:block;margin-bottom:6px}
.scan-list span{color:#cbd5d0;font-size:13px;line-height:1.45}

.packages{
  display:grid;
  gap:26px;
}
.package-head{
  max-width:820px;
}
.package-head small,
.package-card small{
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
}
.package-head h2{
  font-size:clamp(34px,5vw,62px);
  line-height:1.1;
  margin-top:14px;
}
.package-head p{
  max-width:760px;
  color:var(--muted);
  line-height:1.7;
  margin-top:16px;
}
.package-ladder{
  position:relative;
  isolation:isolate;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  border-radius:8px;
}
.package-card{
  position:relative;
  z-index:1;
  min-height:300px;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  gap:22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  padding:22px;
  box-shadow:0 14px 36px rgba(13,17,16,.06);
  color:inherit;
  text-decoration:none;
}
.package-card.featured{
  color:var(--ink);
  background:#fff;
  border-color:var(--line);
  box-shadow:0 14px 36px rgba(13,17,16,.06);
}
.package-meta{
  min-height:34px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
}
.package-tag{
  width:max-content;
  max-width:70%;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  padding:0 11px;
  color:var(--green-dark);
  background:var(--green);
  font-size:12px;
  font-weight:950;
}
.package-tag.secondary{
  color:var(--accent-strong);
  background:var(--accent-soft);
  border:1px solid rgba(25,184,116,.22);
}
.package-card h3{
  font-size:clamp(23px,2.4vw,30px);
  line-height:1.15;
  margin:12px 0;
}
.package-card p{
  color:var(--muted);
  line-height:1.62;
  font-size:14px;
}
.package-card.featured small{color:var(--accent-strong)}
.package-card.featured p{color:var(--muted)}
.package-card.separate{
  background:#fff;
  border-color:var(--line);
}
.package-card > span{
  display:inline-flex;
  min-height:34px;
  align-items:center;
  align-self:flex-start;
  margin-top:auto;
  border-radius:999px;
  padding:0 11px;
  color:var(--dark);
  background:var(--accent-soft);
  font-size:12px;
  font-weight:950;
}
.package-card.featured > span{background:#dff6eb}
.package-card.separate > span{background:var(--accent-soft)}
.package-card .dnb-service-card-button::after{
  content:"\2192";
  margin-left:7px;
  font-size:14px;
  line-height:1;
}

.contact-band{
  margin:52px 0 24px;
  padding:28px;
  border-radius:8px;
  color:#fff;
  background:
    linear-gradient(90deg,rgba(13,20,17,.96),rgba(13,20,17,.74)),
    radial-gradient(circle at 82% 24%,rgba(25,184,116,.34),transparent 20rem),
    var(--dark);
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:24px;
  align-items:center;
  box-shadow:var(--shadow);
}
.contact-band h2{font-size:clamp(26px,3vw,36px);line-height:1.18;margin-bottom:10px}
.contact-band p{color:#cbd5d0;line-height:1.65;max-width:700px}
.contact-actions{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:10px;
}
.contact-dialog{
  width:min(560px,calc(100% - 28px));
  max-height:calc(100dvh - 28px);
  margin:auto;
  padding:0;
  border:0;
  border-radius:8px;
  color:var(--ink);
  background:transparent;
  box-shadow:0 34px 90px rgba(13,17,16,.28);
  overflow:auto;
}
.contact-dialog::backdrop{
  background:rgba(6,14,10,.64);
  backdrop-filter:blur(7px);
}
.contact-dialog-surface{
  padding:26px;
  background:#fff;
  border:1px solid rgba(13,17,16,.12);
}
.contact-dialog-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  margin-bottom:22px;
}
.contact-dialog-head small{
  color:var(--accent-strong);
  font-size:12px;
  font-weight:950;
  text-transform:uppercase;
}
.contact-dialog-head h2{
  margin:7px 0 8px;
  font-size:30px;
  line-height:1.12;
}
.contact-dialog-head p{
  max-width:430px;
  color:var(--muted);
  line-height:1.6;
}
.contact-dialog-close{
  flex:0 0 40px;
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  padding:0;
  border:0;
  border-radius:999px;
  color:#fff;
  background:var(--dark);
  font:inherit;
  font-size:27px;
  line-height:1;
  cursor:pointer;
}
.contact-request-form{
  display:grid;
  gap:14px;
}
.contact-request-form[hidden]{display:none}
.contact-request-form label{
  display:grid;
  gap:7px;
  color:#29302d;
  font-size:13px;
  font-weight:900;
}
.contact-request-form label span{
  color:var(--muted);
  font-size:11px;
  font-weight:700;
}
.contact-request-form input,
.contact-request-form textarea{
  width:100%;
  border:1px solid rgba(13,17,16,.18);
  border-radius:8px;
  background:#f7faf8;
  color:var(--ink);
  outline:0;
  padding:12px 13px;
  font:inherit;
  font-size:16px;
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.contact-request-form textarea{
  min-height:104px;
  resize:vertical;
}
.contact-request-form input:focus,
.contact-request-form textarea:focus{
  border-color:var(--green);
  background:#fff;
  box-shadow:0 0 0 4px rgba(25,184,116,.12);
}
.contact-dialog .button.primary{
  width:100%;
  background:var(--green);
  color:var(--green-dark);
  border-color:rgba(25,184,116,.5);
  box-shadow:0 18px 38px rgba(25,184,116,.18);
}
.contact-form-note{
  color:var(--muted);
  font-size:12px;
  line-height:1.55;
  text-align:center;
}
.contact-form-message{
  min-height:18px;
  color:#a02929;
  font-size:13px;
  font-weight:800;
  text-align:center;
}
.contact-request-success{
  display:grid;
  gap:12px;
  padding:16px 0 4px;
  text-align:center;
}
.contact-request-success[hidden]{display:none}
.contact-request-success strong{
  font-size:24px;
  line-height:1.2;
}
.contact-request-success p{color:var(--muted)}

/* Premium hover depth: no square cursor artefacts, pseudo stays inside rounded card */
.hover-depth{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  transform-style:preserve-3d;
  will-change:transform;
  transition:transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease;
}
.hover-depth::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  border-radius:inherit;
  opacity:0;
  background:radial-gradient(360px circle at var(--mx,50%) var(--my,50%),rgba(25,184,116,.18),transparent 48%);
  transition:opacity .24s ease;
}
.hover-depth > *{position:relative;z-index:1}
.hover-depth:hover{
  transform:translateY(-6px) rotateX(var(--rx,0deg)) rotateY(var(--ry,0deg));
  border-color:rgba(25,184,116,.36);
  box-shadow:0 28px 70px rgba(13,17,16,.14);
}
.hover-depth:hover::after{opacity:1}
.package-card.hover-depth:hover{
  border-color:var(--line);
}
.service-row.hover-depth::after,
.package-card.hover-depth::after{
  background:linear-gradient(135deg,rgba(25,184,116,.08),transparent 62%);
}
.service-rows,
.package-ladder,
.proof-grid,
.signal-list{
  perspective:1200px;
}
.reveal{
  opacity:1;
  transform:none;
  filter:none;
  transition:opacity .75s ease, transform .75s cubic-bezier(.16,1,.3,1), filter .75s ease;
}
body.is-loaded .reveal:not(.visible){opacity:0}
body.is-loaded .reveal.fade-up:not(.visible){transform:translateY(34px)}
body.is-loaded .reveal.slide-left:not(.visible){transform:translateX(-52px)}
body.is-loaded .reveal.slide-right:not(.visible){transform:translateX(52px)}
body.is-loaded .reveal.scale-in:not(.visible){transform:scale(.94)}
body.is-loaded .reveal.blur-sharp:not(.visible){transform:translateY(18px);filter:blur(16px)}
.reveal.visible{opacity:1;transform:translate(0,0) scale(1);filter:blur(0)}

.mobile-sticky-cta{display:none}

.scan-microcopy{
  margin-top:12px;
  margin-bottom:0;
  color:#dce6e1;
  font-size:13px;
  font-weight:800;
}

.footer{
  padding:30px 0 48px;
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  color:#68716c;
  font-size:14px;
}
.footer-trust{
  flex-basis:100%;
  max-width:760px;
  color:#4d5752;
  line-height:1.55;
}
.footer-links{display:flex;flex-wrap:wrap;gap:18px}
.footer a{color:#4d5752;text-decoration:none}
.footer a:hover{color:var(--ink)}

.site-footer{
  position:relative;
  margin-top:72px;
  color:#eef7f2;
  background:#07130e;
  border-top:1px solid rgba(25,184,116,.42);
  overflow:hidden;
}
.site-footer::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(rgba(25,184,116,.055) 1px,transparent 1px),
    linear-gradient(90deg,rgba(25,184,116,.04) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,#000,transparent 78%);
}
.footer-main,
.footer-bottom{position:relative;z-index:1}
.footer-main{
  display:grid;
  grid-template-columns:minmax(280px,1.35fr) repeat(3,minmax(150px,.58fr));
  gap:44px;
  padding-top:58px;
  padding-bottom:46px;
}
.footer-brand-block{max-width:390px}
.footer-brand{
  display:inline-flex;
  align-items:center;
  gap:13px;
  color:#fff;
  text-decoration:none;
  font-size:20px;
  font-weight:950;
}
.footer-logo{
  width:54px;
  height:38px;
  flex:0 0 auto;
  position:relative;
  overflow:hidden;
}
.footer-logo img{
  position:absolute;
  left:50%;
  top:50%;
  width:160px;
  max-width:none;
  height:auto;
  transform:translate(-50%,-44.5%);
  filter:invert(1);
}
.footer-brand-block p{
  max-width:360px;
  margin:20px 0 24px;
  color:#aabbb2;
  font-size:14px;
  line-height:1.7;
}
.footer-primary{
  max-width:340px;
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 8px 0 18px;
  border:1px solid rgba(25,184,116,.42);
  border-radius:999px;
  color:#eafff4;
  background:rgba(25,184,116,.09);
  text-decoration:none;
  font-size:13px;
  font-weight:900;
  transition:background .25s ease,border-color .25s ease,transform .25s ease;
}
.footer-primary b{
  width:34px;
  height:34px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
  border-radius:50%;
  color:#062116;
  background:#19b874;
  font-size:18px;
}
.footer-primary:hover{
  color:#fff;
  background:rgba(25,184,116,.16);
  border-color:rgba(25,184,116,.72);
  transform:translateY(-2px);
}
.footer-column{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
}
.footer-column small{
  margin-bottom:5px;
  color:#6f8c7d;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.footer-column a{
  color:#c4d1ca;
  text-decoration:none;
  font-size:13px;
  line-height:1.4;
  transition:color .2s ease,transform .2s ease;
}
.footer-column a:hover{
  color:#20c77f;
  transform:translateX(3px);
}
.footer-bottom{
  min-height:70px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid rgba(255,255,255,.1);
  color:#71847a;
  font-size:12px;
}

@media(max-width:980px){
  .topbar{flex-wrap:wrap;align-items:flex-start;padding:14px 0 16px}
  .nav{width:100%;display:grid;grid-template-columns:repeat(5,minmax(0,1fr));gap:8px}
  .nav a{min-height:40px;display:flex;align-items:center;justify-content:center;padding:0 10px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.76);font-size:12px;text-align:center}
  .hero,.audience-section,.split-section,.service-layout,.scan-teaser,.contact-band,.dnb-faq-section{grid-template-columns:1fr}
  .service-intro{position:relative;top:auto}
  .dnb-faq-head{position:relative;top:auto}
  .dnb-faq-actions{grid-column:auto}
  .proof-grid{grid-template-columns:repeat(2,1fr)}
  .package-ladder{grid-template-columns:repeat(2,1fr)}
  .slide-left,
  .slide-right{transform:translateY(24px)}
  .footer-main{
    grid-template-columns:minmax(260px,1.2fr) repeat(2,minmax(150px,.7fr));
    gap:34px 26px;
  }
  .footer-column:last-child{grid-column:2}
}
@media(max-width:680px){
  .site-shell{width:min(1180px,calc(100% - 28px))}
  .topbar{align-items:center;gap:12px;padding:14px 0 16px}
  .topbar .nav{display:none}
  .mobile-menu{
    display:block;
    width:100%;
    margin-left:0;
    position:relative;
    z-index:20;
  }
  .mobile-menu summary{display:none}
  .mobile-menu-panel{
    display:flex;
    gap:6px;
    width:100%;
    overflow-x:auto;
    padding:2px 0 4px;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    scrollbar-width:none;
  }
  .mobile-menu-panel::-webkit-scrollbar{
    display:none;
  }
  .mobile-menu-panel a{
    flex:0 0 auto;
    min-height:38px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;
    border-radius:999px;
    color:var(--ink);
    background:rgba(255,255,255,.84);
    border:1px solid var(--line);
    font-size:13px;
    font-weight:850;
    text-decoration:none;
  }
  .mobile-menu-panel > a:first-child{display:none}
  .mobile-menu-panel > a[href="/website-scan"]{
    position:relative;
    overflow:hidden;
    justify-content:center;
    color:#fff;
    background:var(--dark);
    border:2px solid #2c2c2c;
    padding:0 14px;
    transition:background .34s ease,border-color .34s ease,box-shadow .28s ease;
  }
  .mobile-menu-panel > a[href="/website-scan"]::after{
    content:"";
    position:absolute;
    inset:0;
    background:radial-gradient(circle,rgba(255,255,255,.28) 0%,rgba(255,255,255,0) 70%);
    transform:scale(0);
    transition:transform .52s ease;
    pointer-events:none;
  }
  .mobile-menu-panel > a[href="/website-scan"]:hover{
    background:#292929;
    border-color:#666;
    box-shadow:0 14px 30px rgba(13,17,16,.12);
  }
  .mobile-menu-panel > a[href="/website-scan"]:hover::after{
    transform:scale(4);
  }
  .brand-mark{width:54px;height:40px}
  .brand-mark img{width:164px}
  .hero{gap:28px;padding:30px 0 58px}
  .headline{font-size:clamp(34px,9vw,40px);line-height:1.12}
  .hero-text{font-size:16px}
  .hero-actions .button,.button{width:100%}
  .hero-panel{min-height:360px;padding:20px}
  .panel-top{flex-wrap:wrap;font-size:11px}
  .panel-list div{align-items:flex-start;flex-wrap:wrap}
  .site-footer{margin-top:54px}
  .footer-main{
    grid-template-columns:1fr 1fr;
    gap:34px 22px;
    padding-top:44px;
    padding-bottom:34px;
  }
  .footer-brand-block{
    grid-column:1 / -1;
    max-width:none;
  }
  .footer-brand-block p{max-width:520px}
  .footer-primary{max-width:none}
  .footer-column:last-child{grid-column:auto}
  .footer-bottom{
    min-height:auto;
    align-items:flex-start;
    flex-direction:column;
    padding-top:22px;
    padding-bottom:96px;
  }
  .slide-left,
  .slide-right{transform:translateY(24px)}
  .proof-grid{grid-template-columns:1fr}
  .package-ladder{grid-template-columns:1fr}
  .package-card{min-height:auto}
  .statement-stack{padding:22px}
  .service-row{grid-template-columns:1fr;gap:12px;min-height:auto;padding:22px}
  .service-row b{justify-self:start}
  .scan-teaser{padding:24px}
  .contact-band{padding:24px}
  .contact-actions{justify-content:stretch}
  .contact-actions .button{width:100%}
  .contact-dialog-surface{padding:21px}
  .contact-dialog-head h2{font-size:26px}
  .contact-dialog-head{gap:12px}
  .contact-dialog-close{
    flex-basis:38px;
    width:38px;
    height:38px;
  }
  .footer{padding-bottom:112px}
  .hover-depth:hover{transform:translateY(-3px)}
  .mobile-sticky-cta{
    position:fixed;
    z-index:38;
    left:14px;
    right:14px;
    bottom:max(12px,env(safe-area-inset-bottom));
    display:grid;
    grid-template-columns:minmax(0,1.35fr) minmax(0,.65fr);
    gap:8px;
    padding:8px;
    border:1px solid rgba(13,17,16,.14);
    border-radius:8px;
    background:rgba(255,255,255,.94);
    box-shadow:0 18px 48px rgba(13,17,16,.18);
    backdrop-filter:blur(16px);
    opacity:0;
    pointer-events:none;
    transform:translateY(calc(100% + 28px));
    transition:opacity .26s ease,transform .36s cubic-bezier(.16,1,.3,1);
  }
  .mobile-sticky-cta a{
    min-width:0;
    min-height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 12px;
    border:1px solid var(--dark);
    border-radius:6px;
    color:var(--ink);
    background:transparent;
    font-size:12px;
    line-height:1.2;
    font-weight:950;
    text-align:center;
    text-decoration:none;
  }
  .mobile-sticky-cta a:first-child{
    border-color:var(--green);
    color:var(--green-dark);
    background:var(--green);
  }
  body.show-mobile-cta:not(.mobile-menu-open):not(.contact-dialog-open) .mobile-sticky-cta{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
  }
  body.contact-in-view .mobile-sticky-cta{
    opacity:0!important;
    pointer-events:none!important;
    transform:translateY(calc(100% + 28px))!important;
  }
}
.dnb-learn-more{
  position:relative;
  display:inline-flex;
  align-items:center;
  min-width:280px;
  min-height:66px;
  padding:0 28px 0 8px;
  color:var(--ink);
  background:rgba(255,255,255,.2);
  border:2px solid rgba(13,17,16,.9);
  border-radius:999px;
  text-decoration:none;
  cursor:pointer;
  overflow:hidden;
  box-shadow:0 16px 34px rgba(13,17,16,.08);
  transition:transform .22s ease,box-shadow .28s ease,border-color .28s ease,background .28s ease;
}
.dnb-learn-more .dnb-circle{
  position:relative;
  display:block;
  flex:0 0 52px;
  width:52px;
  height:52px;
  margin:0 18px 0 0;
  background:#16a56d;
  border-radius:999px;
  box-shadow:0 16px 34px rgba(22,165,109,.18);
  transition:background .28s ease,box-shadow .28s ease,transform .28s ease;
}
.dnb-learn-more .dnb-icon{
  position:absolute;
  inset:0 auto 0 0;
  margin:auto;
  background:#fafaf8;
  transition:transform .45s cubic-bezier(.65,0,.076,1),background .45s cubic-bezier(.65,0,.076,1);
}
.dnb-learn-more .dnb-icon.dnb-arrow{
  left:.82rem;
  width:1.12rem;
  height:.13rem;
  background:transparent;
}
.dnb-learn-more .dnb-icon.dnb-arrow::before{
  content:"";
  position:absolute;
  top:-.29rem;
  right:.02rem;
  width:.62rem;
  height:.62rem;
  border-top:.13rem solid #fafaf8;
  border-right:.13rem solid #fafaf8;
  transform:rotate(45deg);
}
.dnb-learn-more .dnb-button-text{
  position:relative;
  inset:auto;
  margin:0;
  padding:0;
  color:var(--ink);
  font-size:16px;
  font-weight:950;
  line-height:1.2;
  text-align:left;
  text-transform:uppercase;
  transition:color .28s ease;
}
.dnb-learn-more:hover,
.dnb-learn-more:focus-visible{
  background:rgba(255,255,255,.5);
  border-color:#0d1110;
  box-shadow:0 20px 44px rgba(13,17,16,.13);
  transform:translateY(-2px);
}
.dnb-learn-more:hover .dnb-circle,
.dnb-learn-more:focus-visible .dnb-circle{
  background:#19b874;
  box-shadow:0 18px 40px rgba(22,165,109,.3);
  transform:scale(1.04);
}
.dnb-learn-more:hover .dnb-icon.dnb-arrow,
.dnb-learn-more:focus-visible .dnb-icon.dnb-arrow{background:#fafaf8;transform:translate(.42rem,0)}
.dnb-learn-more:hover .dnb-button-text,
.dnb-learn-more:focus-visible .dnb-button-text{color:#080808}

.dnb-service-card{
  position:relative;
  transition:border-color .35s ease,box-shadow .35s ease,transform .35s ease;
}
.dnb-service-card:hover,
.dnb-service-card:focus-within{
  border-color:rgba(22,165,109,.48)!important;
  box-shadow:0 18px 48px rgba(22,165,109,.16),0 20px 54px rgba(13,17,16,.09)!important;
}
.dnb-service-card .dnb-service-card-button{
  transition:background .3s ease,color .3s ease,border-color .3s ease,transform .3s ease,box-shadow .3s ease;
}
.dnb-service-card:hover .dnb-service-card-button,
.dnb-service-card:focus-within .dnb-service-card-button{
  background:#16a56d!important;
  color:#062116!important;
  border-color:rgba(22,165,109,.46)!important;
  transform:translateY(-2px);
  box-shadow:0 14px 28px rgba(22,165,109,.18);
}

.dnb-faq-section{
  display:grid;
  grid-template-columns:minmax(0,.72fr) minmax(320px,.58fr);
  gap:40px;
  align-items:start;
  padding-top:54px;
  padding-bottom:42px;
  border-bottom:1px solid rgba(13,17,16,.12);
}
.dnb-faq-head{
  position:sticky;
  top:120px;
}
.dnb-faq-head small{
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
}
.dnb-faq-head h2{
  max-width:620px;
  margin:12px 0 12px;
  font-size:clamp(30px,3.8vw,48px);
  line-height:1.1;
}
.dnb-faq-head p{
  max-width:560px;
  color:var(--muted);
  line-height:1.7;
}
.dnb-faq-list{
  display:grid;
  gap:10px;
}
.dnb-faq-item{
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 14px 36px rgba(13,17,16,.06);
  overflow:hidden;
}
.dnb-faq-item summary{
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:0 18px;
  cursor:pointer;
  color:var(--ink);
  font-weight:950;
  list-style:none;
}
.dnb-faq-item summary::-webkit-details-marker{display:none}
.dnb-faq-item summary::after{
  content:"+";
  flex:0 0 28px;
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:var(--green-dark);
  background:var(--accent-soft);
  transition:transform .2s ease,background .2s ease;
}
.dnb-faq-item[open] summary::after{
  content:"-";
  background:var(--green);
  transform:rotate(180deg);
}
.dnb-faq-item p{
  padding:0 18px 18px;
  color:var(--muted);
  line-height:1.7;
}
#contact .contact-band{margin-top:30px}

@media(max-width:980px){
  .dnb-faq-section{
    grid-template-columns:minmax(0,1fr);
    gap:20px;
  }
  .dnb-faq-head{
    position:relative;
    top:auto;
  }
}

@media(max-width:680px){
  .dnb-faq-section{
    gap:16px;
    padding-top:44px;
    padding-bottom:34px;
  }
  .dnb-faq-head h2{
    margin:9px 0 10px;
    font-size:30px;
    line-height:1.12;
  }
  .dnb-faq-head p{
    font-size:15px;
    line-height:1.6;
  }
  .dnb-faq-list{gap:8px}
  .dnb-faq-item summary{
    min-height:56px;
    padding:10px 14px;
    font-size:14px;
    line-height:1.35;
  }
  .dnb-faq-item summary::after{
    flex-basis:26px;
    width:26px;
    height:26px;
  }
  .dnb-faq-item p{
    padding:0 14px 16px;
    font-size:14px;
    line-height:1.6;
  }
  #contact .contact-band{margin-top:22px}
  .topbar{justify-content:space-between;flex-wrap:nowrap}
  .mobile-menu{
    display:block;
    width:auto;
    margin-left:auto;
    position:relative;
    z-index:20;
  }
  .mobile-menu summary.dnb-burger{
    position:relative;
    display:block;
    width:44px;
    height:38px;
    border:1px solid rgba(13,17,16,.12);
    border-radius:15px;
    background:#0d1411;
    cursor:pointer;
    box-shadow:0 14px 28px rgba(13,17,16,.12);
  }
  .dnb-burger span{
    position:absolute;
    left:10px;
    display:block;
    width:22px;
    height:3px;
    border-radius:9px;
    background:#fafaf8;
    opacity:1;
    transform:rotate(0deg);
    transform-origin:left center;
    transition:top .25s ease-in-out,left .25s ease-in-out,width .25s ease-in-out,opacity .25s ease-in-out,transform .25s ease-in-out,background .2s ease;
  }
  .dnb-burger span:nth-of-type(1){top:10px}
  .dnb-burger span:nth-of-type(2){top:50%;transform:translateY(-50%)}
  .dnb-burger span:nth-of-type(3){top:25px}
  .mobile-menu[open] .dnb-burger span:nth-of-type(1){top:9px;left:12px;transform:rotate(45deg)}
  .mobile-menu[open] .dnb-burger span:nth-of-type(2){width:0;opacity:0}
  .mobile-menu[open] .dnb-burger span:nth-of-type(3){top:25px;left:12px;transform:rotate(-45deg)}
  .dnb-burger:hover span,
  .dnb-burger:focus-visible span{background:#16a56d}
  .mobile-menu-panel{
    display:none;
    position:absolute;
    top:calc(100% + 14px);
    right:0;
    width:min(290px,calc(100vw - 36px));
    padding:10px;
    border:1px solid rgba(13,17,16,.12);
    border-radius:18px;
    background:rgba(248,251,249,.94);
    box-shadow:0 22px 54px rgba(13,17,16,.16);
    overflow:visible;
    backdrop-filter:blur(16px);
  }
  .mobile-menu[open] .mobile-menu-panel{display:grid;gap:8px}
  .mobile-menu-panel a,
  .mobile-menu-panel a:first-child{
    width:100%;
    min-height:40px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:0 14px;
  }
  .dnb-learn-more{
    width:100%;
    min-width:0;
    min-height:60px;
    padding-right:18px;
  }
  .dnb-learn-more .dnb-button-text{
    color:var(--ink);
    font-size:14px;
  }
}

.nav-services{
  position:relative;
  display:flex;
  align-items:center;
}
.nav-services-trigger{
  display:inline-flex;
  align-items:center;
  gap:7px;
}
.nav-services-trigger > span{
  width:7px;
  height:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:translateY(-2px) rotate(45deg);
  transition:transform .2s ease;
}
.nav-services-menu{
  position:absolute;
  top:calc(100% + 26px);
  left:50%;
  width:350px;
  padding:8px;
  border:1px solid rgba(13,17,16,.12);
  border-radius:14px;
  background:rgba(250,252,251,.97);
  box-shadow:0 24px 60px rgba(13,17,16,.16);
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transform:translate(-50%,-8px);
  transition:opacity .2s ease,transform .2s ease,visibility .2s ease;
}
.nav-services-menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-28px;
  height:30px;
}
.nav-services-menu a{
  width:100%;
  min-height:0!important;
  display:grid!important;
  gap:3px;
  justify-content:start!important;
  padding:11px 12px!important;
  border:0!important;
  border-radius:8px!important;
  color:var(--ink)!important;
  background:transparent!important;
  text-align:left!important;
}
.nav-services-menu a:hover,
.nav-services-menu a:focus-visible{
  background:var(--accent-soft)!important;
}
.nav-services-menu strong{
  font-size:14px;
  line-height:1.25;
}
.nav-services-menu small{
  color:var(--muted);
  font-size:12px;
  font-weight:650;
  line-height:1.4;
}
.nav-services:hover .nav-services-menu,
.nav-services:focus-within .nav-services-menu{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
  transform:translate(-50%,0);
}
.nav-services:hover .nav-services-trigger > span,
.nav-services:focus-within .nav-services-trigger > span{
  transform:translateY(2px) rotate(225deg);
}
.nav-services.active > .nav-services-trigger{color:var(--ink)}

@media(min-width:681px) and (max-width:980px){
  .nav-services{min-width:0}
  .nav-services-trigger{
    width:100%;
    justify-content:center;
  }
  .nav-services-menu{
    left:0;
    transform:translate(0,-8px);
  }
  .nav-services:hover .nav-services-menu,
  .nav-services:focus-within .nav-services-menu{
    transform:translate(0,0);
  }
}

@media(max-width:680px){
  .mobile-menu-panel > a:first-child{display:flex}
  .mobile-services{
    width:100%;
  }
  .mobile-services summary{
    width:100%;
    min-height:42px;
    display:flex!important;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:0 14px;
    border:1px solid var(--line);
    border-radius:999px;
    color:var(--ink);
    background:rgba(255,255,255,.84);
    font-size:13px;
    font-weight:900;
    cursor:pointer;
  }
  .mobile-services summary span{
    width:24px;
    height:24px;
    display:grid;
    place-items:center;
    border-radius:999px;
    color:var(--green-dark);
    background:var(--accent-soft);
    transition:transform .2s ease,background .2s ease;
  }
  .mobile-services[open] summary span{
    background:var(--green);
    transform:rotate(45deg);
  }
  .mobile-services-list{
    display:grid;
    gap:6px;
    margin:7px 6px 2px;
    padding:6px 0 2px 10px;
    border-left:2px solid rgba(25,184,116,.35);
  }
  .mobile-menu-panel .mobile-services-list > a,
  .mobile-menu-panel .mobile-services-list > a:last-child{
    min-height:38px;
    justify-content:flex-start;
    padding:0 12px;
    border:1px solid rgba(13,17,16,.08);
    border-radius:8px;
    color:var(--ink);
    background:#f2f8f5;
    font-size:12px;
    text-align:left;
    box-shadow:none;
  }
  .mobile-menu-panel .mobile-services-list > a::after{display:none}
  .hero-scan-copy{
    margin-top:18px;
    padding-left:14px;
  }
}

@media(max-width:680px){
  .mobile-menu summary.dnb-burger{
    width:44px;
    height:40px;
    border:2px solid var(--ink);
    border-radius:999px;
    background:transparent;
    box-shadow:none;
  }
  .dnb-burger span{
    height:2px;
    background:var(--ink);
  }
  .mobile-menu[open] summary.dnb-burger{background:var(--dark)}
  .mobile-menu[open] .dnb-burger span{background:#fff}
  .dnb-burger:hover span,
  .dnb-burger:focus-visible span{background:var(--green)}

  .mobile-menu-panel{
    top:calc(100% + 12px);
    right:0;
    width:min(340px,calc(100vw - 28px));
    max-height:calc(100dvh - 104px);
    padding:8px 16px 14px;
    border:1px solid rgba(13,17,16,.12);
    border-radius:8px;
    background:rgba(255,255,255,.98);
    box-shadow:0 24px 64px rgba(13,17,16,.18);
    overflow-y:auto;
    backdrop-filter:blur(18px);
  }
  .mobile-menu[open] .mobile-menu-panel{
    display:block;
  }
  .mobile-menu-panel > a,
  .mobile-menu-panel > a:first-child{
    min-height:48px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:0 2px;
    border:0;
    border-bottom:1px solid var(--line);
    border-radius:0;
    color:var(--ink);
    background:transparent;
    font-size:15px;
    font-weight:850;
    text-align:left;
  }
  .mobile-services{
    border-bottom:1px solid var(--line);
  }
  .mobile-services summary{
    min-height:48px;
    display:grid!important;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    padding:0 2px;
    border:0;
    border-radius:0;
    background:transparent;
    font-size:15px;
    text-align:left;
  }
  .mobile-services summary span{
    justify-self:end;
    width:auto;
    height:auto;
    color:var(--accent-strong);
    background:transparent;
    font-size:20px;
  }
  .mobile-services[open] summary span{
    color:var(--ink);
    background:transparent;
  }
  .mobile-services-list{
    gap:0;
    margin:0 0 8px 2px;
    padding:0 0 4px 14px;
    border-left:1px solid rgba(25,184,116,.5);
  }
  .mobile-menu-panel .mobile-services-list > a,
  .mobile-menu-panel .mobile-services-list > a:last-child{
    min-height:38px;
    padding:0 4px;
    border:0;
    border-radius:0;
    color:var(--muted);
    background:transparent;
    font-size:13px;
    font-weight:800;
  }
  .mobile-menu-panel > a[href="/website-scan"]{
    min-height:46px;
    justify-content:center;
    margin-top:12px;
    border:0;
    border-radius:999px;
    color:var(--green-dark);
    background:var(--green);
    box-shadow:0 14px 30px rgba(25,184,116,.2);
  }
  .mobile-menu-panel > a[href="/website-scan"]:hover{
    color:var(--green-dark);
    background:#20c77f;
    border-color:transparent;
  }
}

@media(prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important}
  .page-wipe{display:none}
  .reveal{opacity:1!important;transform:none!important;filter:none!important}
}

/* Homepage repositioning: websites, beheer en klantenportaal */
.nav .utility-login,
.mobile-menu-panel .utility-login{
  color:var(--ink);
  background:transparent;
  border:1px solid rgba(13,17,16,.28);
  border-radius:999px;
  padding:10px 15px;
}
.nav .utility-login:hover{
  color:var(--ink);
  border-color:var(--green);
  background:rgba(255,255,255,.74);
}
.homepage-hero{
  min-height:clamp(640px,82vh,780px);
  grid-template-columns:minmax(0,1.08fr) minmax(340px,.58fr);
}
.homepage-hero .headline{
  max-width:850px;
  font-size:clamp(43px,5.2vw,74px);
}
.homepage-hero-panel{
  min-height:440px;
  transform:none!important;
}
.homepage-hero-panel small{
  color:#75d9ad;
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}
.homepage-hero-panel h2{
  max-width:12ch;
  margin-top:12px;
  font-size:clamp(30px,3.2vw,45px);
  line-height:1.08;
}
.benefits-grid{grid-template-columns:repeat(3,1fr)}
.offer-section{
  display:grid;
  grid-template-columns:minmax(260px,.55fr) minmax(0,1fr);
  gap:34px;
  align-items:start;
}
.offer-list{
  display:grid;
  gap:1px;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:8px;
  background:var(--line);
  box-shadow:0 14px 36px rgba(13,17,16,.06);
}
.offer-row{
  min-height:148px;
  display:grid;
  grid-template-columns:46px minmax(0,1fr) auto;
  gap:22px;
  align-items:center;
  padding:24px;
  color:inherit;
  background:#fff;
  text-decoration:none;
}
.offer-row > span{
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
}
.offer-row h3{
  margin-bottom:8px;
  font-size:clamp(24px,2.4vw,32px);
  line-height:1.15;
}
.offer-row p{
  max-width:630px;
  color:var(--muted);
  line-height:1.62;
}
.offer-row b{
  min-width:156px;
  padding:10px 13px;
  border:1px solid var(--line);
  border-radius:999px;
  background:var(--accent-soft);
  font-size:12px;
  text-align:center;
}
.automation-note{
  grid-column:2;
  padding-left:16px;
  border-left:3px solid var(--green);
  color:var(--muted);
  font-size:14px;
  line-height:1.6;
}
.examples-section{background:rgba(255,255,255,.48)}
.section-heading{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,.42fr);
  gap:36px;
  align-items:end;
  margin-bottom:28px;
}
.section-heading small,
.portal-copy small,
.contact-copy small{
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
}
.section-heading h2,
.portal-copy h2,
.contact-copy h2{
  max-width:800px;
  margin-top:14px;
  font-size:clamp(32px,4.2vw,54px);
  line-height:1.1;
}
.section-heading > p{
  color:var(--muted);
  line-height:1.65;
}
.homepage-examples-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
.homepage-example-card{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px 18px;
  padding:12px 12px 20px;
  color:inherit;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:0 14px 36px rgba(13,17,16,.06);
  text-decoration:none;
}
.homepage-example-card img{
  grid-column:1 / -1;
  width:100%;
  height:clamp(220px,28vw,340px);
  aspect-ratio:16 / 9;
  object-fit:cover;
  border-radius:5px;
  background:#e8eeeb;
}
.homepage-example-card > span{
  grid-column:1 / -1;
  margin-top:8px;
  color:var(--accent-strong);
  font-size:11px;
  font-weight:950;
  text-transform:uppercase;
}
.homepage-example-card h3{
  font-size:clamp(23px,2.5vw,32px);
  line-height:1.15;
}
.homepage-example-card p{
  grid-column:1;
  color:var(--muted);
  font-size:14px;
  line-height:1.55;
}
.homepage-example-card b{
  grid-column:2;
  grid-row:3 / 5;
  align-self:end;
  color:var(--accent-strong);
  font-size:13px;
}
.section-link{
  display:flex;
  justify-content:center;
  margin-top:24px;
}
.portal-section{
  color:#f5faf7;
  background:#08130e;
  border-top-color:rgba(25,184,116,.3);
}
.portal-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.55fr);
  gap:60px;
  align-items:center;
}
.portal-copy small{color:#62d6a4}
.portal-copy p{
  max-width:720px;
  margin:18px 0 26px;
  color:#b9c9c0;
  line-height:1.7;
}
.portal-copy .button.secondary{
  color:#f6fbf8;
  background:transparent;
  border-color:rgba(255,255,255,.32);
  box-shadow:none;
}
.portal-points{
  display:grid;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.14);
  border-radius:8px;
}
.portal-points div{
  display:grid;
  grid-template-columns:42px minmax(0,1fr);
  gap:14px;
  align-items:center;
  min-height:82px;
  padding:16px 18px;
  background:rgba(255,255,255,.045);
}
.portal-points div + div{border-top:1px solid rgba(255,255,255,.12)}
.portal-points strong{color:#62d6a4}
.portal-points span{color:#d8e4dd;line-height:1.5}
.process-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  box-shadow:0 14px 36px rgba(13,17,16,.05);
}
.process-step{
  min-height:240px;
  padding:24px;
}
.process-step + .process-step{border-left:1px solid var(--line)}
.process-step span{
  display:block;
  color:var(--accent-strong);
  font-size:13px;
  font-weight:950;
}
.process-step h3{
  margin:48px 0 10px;
  font-size:23px;
  line-height:1.15;
}
.process-step p{color:var(--muted);font-size:14px;line-height:1.62}
.about-section{background:#fff}
.about-layout{
  display:grid;
  grid-template-columns:minmax(0,.75fr) minmax(0,.65fr);
  gap:70px;
  align-items:start;
}
.about-copy{
  display:grid;
  gap:16px;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}
.contact-section{
  color:#fff;
  background:#0b1511;
  border-top-color:rgba(25,184,116,.3);
}
.contact-layout{
  display:grid;
  grid-template-columns:minmax(0,.75fr) minmax(360px,.55fr);
  gap:64px;
  align-items:start;
}
.contact-copy small{color:#62d6a4}
.contact-copy p{
  max-width:620px;
  margin-top:18px;
  color:#b9c9c0;
  font-size:17px;
  line-height:1.7;
}
.contact-direct{
  display:flex;
  flex-wrap:wrap;
  gap:12px 22px;
  margin-top:28px;
}
.contact-direct a{
  color:#f3faf6;
  font-size:14px;
  font-weight:850;
  text-underline-offset:4px;
}
.contact-form-wrap{
  padding:24px;
  color:var(--ink);
  background:#fff;
  border:1px solid rgba(255,255,255,.18);
  border-radius:8px;
  box-shadow:0 24px 70px rgba(0,0,0,.25);
}
.contact-inline-form .button.primary{width:100%}
.form-honeypot{display:none!important}

@media(max-width:980px){
  .nav{gap:12px}
  .nav a{padding-inline:8px}
  .homepage-hero,
  .offer-section,
  .portal-layout,
  .contact-layout{grid-template-columns:1fr}
  .homepage-hero{min-height:auto}
  .homepage-hero-panel{min-height:360px}
  .automation-note{grid-column:1}
  .process-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .process-step:nth-child(3){border-left:0;border-top:1px solid var(--line)}
  .process-step:nth-child(4){border-top:1px solid var(--line)}
}

@media(max-width:680px){
  .topbar{
    min-height:72px;
    flex-wrap:nowrap;
    align-items:center;
    padding:10px 0;
  }
  body.has-scrolled .topbar{top:8px;padding-inline:10px}
  .brand{font-size:15px}
  .mobile-menu{
    width:auto;
    margin-left:auto;
  }
  .mobile-menu summary.dnb-burger{
    width:44px;
    height:44px;
    display:flex!important;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:5px;
    border:1px solid var(--line);
    border-radius:50%;
    background:rgba(255,255,255,.9);
    cursor:pointer;
  }
  .dnb-burger span{
    position:static;
    left:auto;
    top:auto;
    width:18px;
    height:2px;
    border-radius:2px;
    background:var(--ink);
    transform-origin:center;
    transition:transform .2s ease,opacity .2s ease;
  }
  .mobile-menu[open] summary.dnb-burger{
    background:#fff;
    border-color:rgba(13,17,16,.22);
  }
  .mobile-menu[open] .dnb-burger span{background:var(--ink)}
  .mobile-menu[open] .dnb-burger span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .mobile-menu[open] .dnb-burger span:nth-child(2){opacity:0}
  .mobile-menu[open] .dnb-burger span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .mobile-menu-panel{
    position:absolute;
    top:54px;
    right:0;
    width:min(310px,calc(100vw - 28px));
    display:grid;
    gap:0;
    overflow:visible;
    padding:10px 16px 14px;
    border:1px solid var(--line);
    border-radius:8px;
    background:rgba(250,252,251,.98);
    box-shadow:0 24px 64px rgba(13,17,16,.16);
  }
  .mobile-menu-panel > a,
  .mobile-menu-panel > a:first-child,
  .mobile-menu-panel > a:last-child{
    min-height:48px;
    display:flex;
    justify-content:flex-start;
    padding:0 2px;
    border:0;
    border-bottom:1px solid var(--line);
    border-radius:0;
    background:transparent;
    font-size:14px;
  }
  .mobile-menu-panel > a.utility-login{
    min-height:44px;
    justify-content:center;
    margin-top:12px;
    padding:0 14px;
    border:1px solid rgba(13,17,16,.28);
    border-radius:999px;
  }
  .homepage-hero{padding-top:40px}
  .homepage-hero .headline{font-size:clamp(36px,10vw,48px)}
  .homepage-hero-panel h2{font-size:32px}
  .benefits-grid,
  .homepage-examples-grid,
  .process-grid,
  .about-layout,
  .section-heading{grid-template-columns:1fr}
  .offer-row{
    grid-template-columns:36px minmax(0,1fr);
    gap:16px;
  }
  .offer-row b{
    grid-column:2;
    justify-self:start;
    min-width:0;
  }
  .section-heading{gap:14px}
  .homepage-example-card{grid-template-columns:1fr}
  .homepage-example-card img{height:210px}
  .homepage-example-card p,
  .homepage-example-card b{
    grid-column:1;
    grid-row:auto;
  }
  .portal-layout{gap:34px}
  .process-step{min-height:auto}
  .process-step + .process-step,
  .process-step:nth-child(3),
  .process-step:nth-child(4){
    border-left:0;
    border-top:1px solid var(--line);
  }
  .process-step h3{margin-top:24px}
  .about-layout{gap:22px}
  .contact-layout{gap:34px}
  .contact-form-wrap{padding:20px}
  .mobile-sticky-cta{
    grid-template-columns:minmax(0,1.3fr) minmax(0,.7fr);
  }
  .mobile-sticky-cta a:first-child{
    color:#fff;
    background:var(--dark);
    border-color:var(--dark);
  }
  .mobile-sticky-cta a:last-child{
    color:var(--ink);
    background:#fff;
    border-color:var(--line);
  }
  body.is-loaded .reveal.slide-left:not(.visible),
  body.is-loaded .reveal.slide-right:not(.visible){
    transform:translateY(24px);
  }
}
