:root {
  --nk-ink: #071426;
  --nk-ink-soft: #0d2038;
  --nk-blue: #0d6efd;
  --nk-blue-light: #6fa8ff;
  --nk-cyan: #0d6efd;
  --nk-paper: #f4f6fa;
  --nk-paper-blue: #edf4ff;
  --nk-white: #ffffff;
  --nk-muted: #667389;
  --nk-line: rgba(7, 20, 38, .11);
  --nk-radius: 1.35rem;
  --nk-shadow: 0 28px 75px rgba(11, 31, 60, .13);
}

/* Kevyt sivujen välinen siirtymä samoilla nettikari.fi-sivuilla. */
@view-transition { navigation: auto; }

::view-transition-old(root) { animation: nk-page-out .14s ease-out both; }
::view-transition-new(root) { animation: nk-page-in .2s cubic-bezier(.22,.75,.28,1) both; }

@keyframes nk-page-out {
  to { opacity:0; transform:translateY(-3px); }
}

@keyframes nk-page-in {
  from { opacity:0; transform:translateY(5px); }
  to { opacity:1; transform:none; }
}

html, body { overflow-x: clip; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 78px;
}

body.nk-site {
  overflow-x: hidden;
  color: var(--nk-ink);
  background: var(--nk-paper);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.nk-menu-open { overflow: hidden; }

.nk-site h1,
.nk-site h2,
.nk-site h3,
.nk-site h4,
.nk-site h5,
.nk-site .display-4,
.nk-site .display-5,
.nk-site .display-6 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  letter-spacing: -.035em;
}

.nk-site p { line-height: 1.72; }
.nk-site section { scroll-margin-top: 78px; }

.nk-skip-link {
  position: fixed;
  z-index: 9999;
  top: .75rem;
  left: .75rem;
  padding: .65rem .9rem;
  border-radius: .65rem;
  color: var(--nk-ink);
  background: #fff;
  transform: translateY(-160%);
}

.nk-skip-link:focus { transform: none; }

/* Navigaatio */
.nk-main-nav {
  z-index: 1100;
  height: 78px;
  color: #fff;
  background: rgba(7, 20, 38, .52);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: height .25s ease, background .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(16px);
}

.nk-main-nav.nk-scrolled {
  height: 68px;
  background: rgba(7, 20, 38, .94);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.nk-nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff !important;
  font-family: "HemiHead", "Space Grotesk", sans-serif;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: .025em;
  text-decoration: none;
  white-space: nowrap;
}

.nk-brand-code {
  color: var(--nk-blue-light);
  font: 700 1.15rem/1 "Space Grotesk", sans-serif;
  letter-spacing: -.18em;
  transform: skew(-8deg);
}

.nk-desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: auto;
}

.nk-desktop-nav > a,
.nk-nav-parent {
  position: relative;
  color: rgba(255,255,255,.72);
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
}

.nk-desktop-nav > a::after,
.nk-nav-parent::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.55rem;
  height: 2px;
  background: var(--nk-cyan);
  transition: right .2s ease;
}

.nk-desktop-nav > a:hover,
.nk-nav-parent:hover,
.nk-desktop-nav > a.is-active,
.nk-nav-parent.is-active { color: #fff; }
.nk-desktop-nav > a:hover::after,
.nk-nav-parent:hover::after,
.nk-desktop-nav > a.is-active::after,
.nk-nav-parent.is-active::after { right: 0; }

.nk-nav-group { position: relative; }
.nk-nav-parent { display: inline-flex; align-items: center; gap: .35rem; }
.nk-nav-parent > i { font-size: .55rem; opacity: .65; transition: transform .2s ease; }
.nk-nav-group:hover .nk-nav-parent > i,
.nk-nav-group:focus-within .nk-nav-parent > i { transform: rotate(180deg); }
.nk-nav-dropdown {
  position: absolute;
  z-index: 20;
  top: calc(100% + 1.15rem);
  left: 50%;
  width: 330px;
  display: grid;
  gap: .25rem;
  padding: .7rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 1rem;
  visibility: hidden;
  opacity: 0;
  background: rgba(7,20,38,.98);
  box-shadow: 0 24px 65px rgba(0,0,0,.34);
  transform: translate(-50%, .55rem);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nk-nav-dropdown::before { content: ""; position: absolute; left: 0; right: 0; top: -1.2rem; height: 1.25rem; }
.nk-nav-dropdown-wide { width: 590px; grid-template-columns: 1fr 1fr; }
.nk-nav-group:hover .nk-nav-dropdown,
.nk-nav-group:focus-within .nk-nav-dropdown { visibility: visible; opacity: 1; transform: translate(-50%, 0); }
.nk-nav-dropdown a { display: grid; grid-template-columns: 2rem 1fr; gap: .65rem; align-items: center; padding: .7rem .75rem; border-radius: .7rem; color: #fff; text-decoration: none; }
.nk-nav-dropdown a:hover,
.nk-nav-dropdown a:focus-visible { color: #fff; background: rgba(255,255,255,.075); outline: none; }
.nk-nav-dropdown a > i { width: 2rem; height: 2rem; display: grid; place-items: center; border-radius: .55rem; color: #fff; background: var(--nk-blue); font-size: .78rem; }
.nk-nav-dropdown a span { display: flex; flex-direction: column; }
.nk-nav-dropdown a b { font-size: .75rem; }
.nk-nav-dropdown a small { margin-top: .08rem; color: rgba(255,255,255,.45); font-size: .58rem; }

.nk-nav-actions {
  display: flex;
  align-items: center;
  gap: .9rem;
}

.nk-nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  text-decoration: none;
}

.nk-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .68rem 1rem;
  border: 0;
  border-radius: .7rem;
  color: var(--nk-ink);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
  font-size: .76rem;
  font-weight: 800;
}

.nk-nav-cta:hover { color: var(--nk-blue); background: #fff; transform: translateY(-1px); }

.nk-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: .75rem;
  background: rgba(255,255,255,.07);
}

.nk-menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 5px auto;
  border-radius: 2px;
  background: #fff;
}

/* Off canvas */
.nk-menu-backdrop {
  position: fixed;
  z-index: 1190;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(3, 10, 20, .68);
  backdrop-filter: blur(5px);
  transition: opacity .32s ease, visibility .32s ease;
}

.nk-menu-backdrop.is-open { visibility: visible; opacity: 1; }

.nk-offcanvas {
  position: fixed;
  z-index: 1200;
  inset: 0 0 0 auto;
  width: min(91vw, 450px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  color: #fff;
  background: var(--nk-ink);
  box-shadow: -35px 0 90px rgba(0,0,0,.42);
  transform: translateX(105%);
  transition: transform .4s cubic-bezier(.22,.8,.24,1);
  overflow-y: auto;
}

.nk-offcanvas::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .12;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.08) 1px,transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(#000, transparent 76%);
}

.nk-offcanvas.is-open { transform: none; }
.nk-offcanvas-head, .nk-menu-kicker, .nk-mobile-nav, .nk-menu-contact { position: relative; z-index: 1; }
.nk-offcanvas-head { display: flex; align-items: center; justify-content: space-between; }
.nk-offcanvas-head .site-logo { font-size: 1.55rem; }

.nk-menu-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.06);
}

.nk-menu-kicker {
  margin: 3rem 0 1.1rem;
  color: var(--nk-blue-light);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.nk-mobile-nav { display: flex; flex-direction: column; }
.nk-mobile-nav a {
  display: grid;
  grid-template-columns: 1.8rem 1fr 1.1rem;
  align-items: center;
  gap: .35rem;
  padding: 1rem 0;
  border-top: 1px solid rgba(255,255,255,.11);
  color: #fff;
  font: 600 1.3rem/1.2 "Space Grotesk", sans-serif;
  text-decoration: none;
}

.nk-mobile-nav a:last-child { border-bottom: 1px solid rgba(255,255,255,.11); }
.nk-mobile-nav small { color: rgba(255,255,255,.3); font-size: .55rem; }
.nk-mobile-nav i { color: var(--nk-cyan); font-size: .8rem; }
.nk-mobile-shortcuts { position: relative; z-index: 1; margin-top: 1.2rem; }
.nk-mobile-shortcuts > strong { display: block; margin-bottom: .65rem; color: rgba(255,255,255,.46); font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; }
.nk-mobile-shortcuts > div { display: grid; grid-template-columns: 1fr 1fr; gap: .45rem; }
.nk-mobile-shortcuts a { min-width:0; display:flex; align-items:center; gap:.5rem; padding:.58rem .65rem; border:1px solid rgba(255,255,255,.11); border-radius:.55rem; color:rgba(255,255,255,.8); background:rgba(255,255,255,.04); font-size:.66rem; font-weight:700; text-decoration:none; }
.nk-mobile-shortcuts a > i,
.nk-mobile-shortcuts a > svg { flex:0 0 1rem; width:1rem; color:var(--nk-cyan); text-align:center; font-size:.72rem; }
.nk-mobile-shortcuts a > span { min-width:0; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.nk-mobile-shortcuts a:hover { color: #fff; border-color: rgba(13,110,253,.7); background: rgba(13,110,253,.16); }
.nk-menu-contact { margin-top: auto; padding-top: 1.4rem; }

.nk-availability {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #8fdcb3;
  font-size: .68rem;
  font-weight: 700;
}

.nk-availability > i,
.nk-floating-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #55dfa0;
  box-shadow: 0 0 0 5px rgba(85,223,160,.12);
}

.nk-menu-contact-actions { display:grid; grid-template-columns:1fr 1fr; gap:.55rem; margin:1rem 0; }

.nk-menu-phone,
.nk-menu-email {
  min-width:0;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding:.65rem;
  border:1px solid rgba(255,255,255,.1);
  border-radius:.7rem;
  color: #fff;
  background:rgba(255,255,255,.045);
  font: 700 .82rem "Space Grotesk", sans-serif;
  text-decoration: none;
}

.nk-menu-phone:hover,
.nk-menu-email:hover { border-color:rgba(13,110,253,.65); color:#fff; background:rgba(13,110,253,.13); }
.nk-menu-phone > i,
.nk-menu-phone > svg,
.nk-menu-email > i,
.nk-menu-email > svg { box-sizing:border-box; flex:0 0 1.7rem; width:1.7rem; height:1.7rem; display:grid; place-items:center; padding:.42rem; border-radius:.5rem; color:var(--nk-cyan); background:rgba(13,110,253,.14); font-size:.9rem; }
.nk-menu-phone span,
.nk-menu-email span { min-width:0; display:flex; flex-direction:column; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.nk-menu-phone small,
.nk-menu-email small { margin-bottom:.1rem; color:rgba(255,255,255,.45); font:500 .52rem "Manrope", sans-serif; }
.nk-menu-email { font-size:.62rem; }
.nk-menu-quote { min-height:52px; display:flex; align-items:center; justify-content:center; gap:.5rem; border-radius:.75rem; font-size:.8rem; font-weight:800; text-align:center; }

/* Etusivun hero */
.hero-gradient {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--nk-ink) !important;
}

.hero-gradient::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.055) 1px, transparent 1px);
  background-size: 62px 62px;
  mask-image: linear-gradient(to bottom, #000 15%, transparent 86%);
}

.hero-gradient > .container { position: relative; z-index: 2; }
.hero-gradient .container::before { z-index: 0 !important; opacity: .1 !important; color: #76baff !important; }

.nk-home-hero { min-height: auto; padding: 9.7rem 0 2.8rem; }
.nk-hero-glow { position: absolute; z-index: 0; border-radius: 50%; pointer-events: none; }
.nk-hero-glow-one { width: 680px; height: 680px; top: -180px; right: -200px; background: radial-gradient(circle, rgba(18,104,243,.49), transparent 68%); }
.nk-hero-glow-two { width: 480px; height: 480px; bottom: -300px; left: 17%; background: radial-gradient(circle, rgba(13,110,253,.18), transparent 70%); }
.nk-hero-row { min-height: 590px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .5rem .75rem;
  border: 1px solid rgba(132,196,255,.24);
  border-radius: 999px;
  color: #89c8ff;
  background: rgba(38,102,172,.14);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.hero-tag i { color: var(--nk-cyan); }
.nk-hero-title { max-width: 720px; font-size: clamp(4rem, 6.2vw, 6rem); line-height: .95; }
.nk-hero-title em { color: var(--nk-blue-light); font-style: normal; }
.nk-hero-title small {
  display: block;
  max-width: 620px;
  margin-top: 1.3rem;
  color: rgba(255,255,255,.55);
  font: 700 .76rem/1.55 "Manrope", sans-serif;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.nk-hero-lead { max-width: 650px; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.nk-hero-actions .btn { min-height: 54px; display: inline-flex; align-items: center; border-radius: .75rem; font-size: .84rem; font-weight: 800; }
.nk-hero-actions .btn-primary { border-color: var(--nk-blue); background: var(--nk-blue); box-shadow: 0 15px 35px rgba(18,104,243,.3); }
.nk-hero-actions .btn-outline-light { border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.035); }

.nk-price-link {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-top: 1rem;
  color: var(--nk-blue-light);
  font-size: .76rem;
  font-weight: 800;
  text-decoration: none;
}

.nk-price-link:hover { color: #fff; }
.nk-price-link i:last-child { font-size: .65rem; }

.nk-hero-trust { display: flex; align-items: center; gap: .9rem; margin-top: 1.55rem; }
.nk-trust-icons { display: flex; padding-left: .55rem; }
.nk-trust-icons span { width: 36px; height: 36px; display: grid; place-items: center; margin-left: -.55rem; border: 3px solid var(--nk-ink); border-radius: 50%; color: #fff; background: #213a5c; font-size: .58rem; font-weight: 800; }
.nk-trust-icons span:nth-child(2) { color: var(--nk-ink); background: var(--nk-cyan); }
.nk-trust-icons span:nth-child(3) { background: var(--nk-blue); }
.nk-hero-trust p { margin: 0; color: rgba(255,255,255,.45); font-size: .69rem; line-height: 1.5; }
.nk-hero-trust strong { color: #fff; }

.nk-system-window {
  position: relative;
  max-width: 590px;
  margin-inline: auto;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 1.45rem;
  background: rgba(16,37,65,.86);
  box-shadow: 0 45px 100px rgba(0,0,0,.38);
  transform: perspective(1200px) rotateY(-3deg);
  backdrop-filter: blur(14px);
}

.nk-window-bar { height: 45px; display: flex; align-items: center; gap: .4rem; padding: 0 1rem; border-bottom: 1px solid rgba(255,255,255,.09); }
.nk-window-bar > span { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.22); }
.nk-window-bar > span:first-child { background: var(--nk-cyan); }
.nk-window-bar small { margin-left: .35rem; color: rgba(255,255,255,.35); font: 500 .55rem "Space Grotesk", sans-serif; }
.nk-window-body { padding: 1.7rem; }
.nk-system-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.nk-system-heading > div > span { color: var(--nk-blue-light); font-size: .55rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.nk-system-heading h2 { margin: .4rem 0 0; font-size: 1.8rem; line-height: 1.06; }
.nk-system-heading > small { display: inline-flex; align-items: center; gap: .4rem; padding: .42rem .6rem; border-radius: 999px; color: #98edc4; background: rgba(61,207,136,.11); font-size: .52rem; font-weight: 700; white-space: nowrap; }
.nk-system-heading > small i { width: 5px; height: 5px; border-radius: 50%; background: #4cdb99; box-shadow: 0 0 0 4px rgba(76,219,153,.12); }

.nk-system-map { position: relative; height: 265px; margin: 1.15rem 0; border: 1px solid rgba(255,255,255,.08); border-radius: 1rem; background: radial-gradient(circle at 50% 50%, rgba(18,104,243,.21), transparent 36%); }
.nk-system-map::before, .nk-system-map::after { content: ""; position: absolute; top: 50%; left: 12%; right: 12%; height: 1px; background: linear-gradient(90deg,transparent,rgba(13,110,253,.5),transparent); }
.nk-system-map::after { top: 10%; bottom: 10%; left: 50%; right: auto; width: 1px; height: auto; }
.nk-system-core { position: absolute; z-index: 2; top: 50%; left: 50%; width: 120px; height: 120px; display: flex; flex-direction: column; align-items: center; justify-content: center; border: 1px solid rgba(13,110,253,.48); border-radius: 50%; background: #0d213b; box-shadow: 0 0 45px rgba(44,129,255,.25); transform: translate(-50%,-50%); }
.nk-system-core b { width: 36px; height: 32px; display: grid; place-items: center; margin-bottom: .4rem; border-radius: .55rem; color: #fff; background: var(--nk-blue); font: 800 .78rem "Space Grotesk"; }
.nk-system-core strong { font-size: .68rem; }.nk-system-core small { margin-top: .2rem; color: rgba(255,255,255,.4); font-size: .45rem; }
.nk-system-node { position: absolute; z-index: 2; min-width: 96px; display: flex; align-items: center; gap: .45rem; padding: .55rem .65rem; border: 1px solid rgba(255,255,255,.1); border-radius: .6rem; color: rgba(255,255,255,.8); background: #112a49; box-shadow: 0 8px 22px rgba(0,0,0,.2); font-size: .52rem; font-weight: 800; }
.nk-system-node i { color: var(--nk-blue-light); font-size: .75rem; }.nk-node-a { top: 1.7rem; left: 1.7rem; }.nk-node-b { top: 1.7rem; right: 1.7rem; }.nk-node-c { bottom: 1.7rem; left: 1.7rem; }.nk-node-d { right: 1.7rem; bottom: 1.7rem; }
.nk-integration-row { display: flex; flex-wrap: wrap; gap: .4rem; }.nk-integration-row span { padding: .35rem .5rem; border-radius: .42rem; color: rgba(255,255,255,.45); background: rgba(255,255,255,.055); font-size: .46rem; font-weight: 800; }.nk-integration-row span:first-child { color: var(--nk-cyan); }
.nk-float-proof { position: absolute; z-index: 3; display: flex; align-items: center; gap: .7rem; padding: .75rem .9rem; border: 1px solid rgba(255,255,255,.17); border-radius: .8rem; color: #fff; background: rgba(17,41,72,.94); box-shadow: 0 18px 40px rgba(0,0,0,.28); backdrop-filter: blur(16px); }
.nk-float-proof > span { display: flex; flex-direction: column; font-size: .58rem; font-weight: 800; }.nk-float-proof small { color: rgba(255,255,255,.44); font-size: .45rem; font-weight: 500; }.nk-proof-experience { top: 4rem; right: -1rem; }.nk-proof-experience b { color: var(--nk-cyan); font: 700 1.4rem "Space Grotesk"; }.nk-proof-data { left: -1rem; bottom: 3.5rem; }.nk-proof-data > i { color: var(--nk-cyan); font-size: 1.25rem; }
.nk-hero-stats { display: grid; grid-template-columns: .7fr .75fr .9fr 2.25fr; margin-top: 2.6rem; padding: 1.55rem 0 .4rem; border-top: 1px solid rgba(255,255,255,.1); }
.nk-hero-stats > div { min-height: 55px; display: flex; flex-direction: column; justify-content: center; padding: 0 1.7rem; border-right: 1px solid rgba(255,255,255,.1); }.nk-hero-stats > div:first-child { padding-left: 0; }.nk-hero-stats > div:last-child { border: 0; }.nk-hero-stats strong { font: 700 1.5rem "Space Grotesk"; }.nk-hero-stats span { color: rgba(255,255,255,.44); font-size: .58rem; }.nk-stat-note { flex-direction: row !important; align-items: center; gap: .8rem; }.nk-stat-note > i { color: var(--nk-cyan); }.nk-stat-note strong { color: #fff; font: 700 .65rem "Manrope"; }
.nk-stat-highlights { display: grid !important; grid-template-columns: repeat(3,1fr); gap: .55rem; padding-right: 0 !important; }
.nk-stat-highlights span { min-height: 52px; display: flex; align-items: center; gap: .55rem; padding: .55rem .65rem; border: 1px solid rgba(255,255,255,.09); border-radius: .7rem; color: #fff; background: rgba(255,255,255,.035); }
.nk-stat-highlights i { color: var(--nk-blue-light); font-size: .8rem; }
.nk-stat-highlights b { color: #fff; font-size: .86rem; line-height: 1.35; }

/* Muut sivukohtaiset herot */
.nk-site main > .hero-gradient:not(.nk-home-hero) { padding: 9.5rem 0 5.5rem !important; }
.nk-site main > .hero-gradient:not(.nk-home-hero) h1 { max-width: 850px; font-size: clamp(2.7rem, 5vw, 4.6rem) !important; line-height: 1.02; }
.nk-site main > .hero-gradient:not(.nk-home-hero) .lead { max-width: 820px; color: rgba(255,255,255,.7); font-size: 1.05rem; }
.nk-site main > .hero-gradient:not(.nk-home-hero) .btn { min-height: 51px; display: inline-flex; align-items: center; border-radius: .75rem; font-size: .82rem; font-weight: 800; }

/* Osastot ja kortit */
.nk-site .py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.nk-site .pb-6 { padding-bottom: 6rem; }
.nk-site .nk-section-title { color: var(--nk-blue); font-size: .68rem; font-weight: 800; letter-spacing: .15em; }
.nk-site section > .container > h2,
.nk-site section > .container > h3.h2 { font-size: clamp(2.25rem, 4vw, 3.5rem); }
.nk-site .text-muted { color: var(--nk-muted) !important; }
.nk-divider { width: min(90%, 1160px); height: 1px; margin: 0 auto !important; background: linear-gradient(90deg, transparent, rgba(7,20,38,.14), transparent); }
.nk-divider::after { display: none; }

#palvelut { padding-top: 3.5rem; background: var(--nk-paper); }
#palvelut .container > .row:first-of-type { margin-top: 0 !important; }
#palvelut .container > .row:first-of-type .col-lg-8 { max-width: 100%; flex: 0 0 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem 4rem; align-items: center; }
#palvelut .container > .row:first-of-type h2,
#palvelut .container > .row:first-of-type p { grid-column: 1; text-align: left !important; }
#palvelut .container > .row:first-of-type h2 { align-self: end; margin: 0 !important; font-size: clamp(2.3rem,4vw,3.4rem); }
#palvelut .container > .row:first-of-type p { margin: 0 !important; color: var(--nk-muted); }
#palvelut .container > .row:first-of-type p + p { align-self: start; }
#palvelut .ratkaisut-visual { grid-column: 2; grid-row: 1 / span 3; margin: 0 !important; }
#palvelut > .container > .nk-section-title { margin-top: 5rem !important; }
.ratkaisut-visual, .palvelut-visual { overflow: hidden; border-radius: 1.5rem !important; box-shadow: var(--nk-shadow) !important; }
.ratkaisut-visual img, .palvelut-visual img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.nk-site .nk-card-soft,
.nk-site .card.shadow-sm,
.nk-site article.card {
  overflow: hidden;
  border: 1px solid var(--nk-line) !important;
  border-radius: var(--nk-radius) !important;
  background: #fff;
  box-shadow: 0 12px 38px rgba(11,31,60,.06) !important;
}

.nk-site .nk-card-soft { transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease; }
.nk-site .nk-card-soft:hover { border-color: rgba(18,104,243,.2) !important; box-shadow: var(--nk-shadow) !important; transform: translateY(-5px); }
.nk-site .service-icon-circle { width: 52px; height: 52px; margin: 0 auto 1rem; border-radius: .95rem; color: var(--nk-blue); background: #e7f1ff; }
.nk-site .service-icon-circle i { display: inline-block; color: currentColor !important; font-size: 1.25rem; }
.nk-site #palvelut .card-body { padding: 1.4rem; }
.nk-site #palvelut .card h2 { font-size: 1.35rem; line-height: 1.15; }
.nk-site #palvelut .card p { font-size: .79rem; }
.nk-site #palvelut .card .btn,
.nk-site #ratkaisut .card .btn { min-height: 46px; display: inline-flex; align-items: center; justify-content: center; padding: .7rem .9rem; border-radius: .7rem; font-size: .86rem; font-weight: 800; line-height: 1.35; }
.nk-site #palvelut .row.g-4 > div:nth-child(2) .service-icon-circle { color: #6a45dc; background: #ece7ff; }
.nk-site #palvelut .row.g-4 > div:nth-child(3) .service-icon-circle { color: #cb6b12; background: #fff0df; }
.nk-site #palvelut .row.g-4 > div:nth-child(4) .service-icon-circle { color: #14784c; background: #e0f7eb; }
.nk-site #palvelut .row.g-4 > div:nth-child(5) .service-icon-circle { color: #405773; background: #e8edf3; }
.nk-site #palvelut .row.g-4 > div:nth-child(6) .service-icon-circle { color: #8b4bd6; background: #f1e7ff; }
.nk-site #palvelut .row.g-4.justify-content-center > div:nth-child(1) .service-icon-circle { color: #16764b; background: #e1f7ec; }
.nk-site #palvelut .row.g-4.justify-content-center > div:nth-child(2) .service-icon-circle { color: #b03f79; background: #fde8f2; }

#ratkaisut { padding-top: 2rem; background: #fff; }
#ratkaisut > .container > .row:first-child { margin-top: 0 !important; }
#ratkaisut > .container > .nk-section-title { margin-top: 4.5rem !important; }
#ratkaisut .nk-pill-badge { align-self: center; padding: .32rem .55rem; border-radius: 999px; color: var(--nk-blue); background: #e3efff; font-size: .54rem; font-weight: 800; letter-spacing: .08em; line-height:1.2; }
#ratkaisut .card { display: flex; }
#ratkaisut .card h5 { margin-top: .7rem; font-size: 1.22rem; line-height:1.2; }
.nk-product-kicker { display:flex; align-items:center; gap:.6rem; min-height:42px; }
.nk-product-icon { flex:0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; margin:0; border-radius: .78rem; color: #fff; background: var(--nk-blue); box-shadow: 0 9px 20px rgba(13,110,253,.18); font-size: 1rem; }
.nk-product-icon i { display: inline-block; color:inherit; }
#ratkaisut .row.g-4 > div:nth-child(2) .nk-product-icon { background: #6549d5; }
#ratkaisut .row.g-4 > div:nth-child(3) .nk-product-icon { background: #0d8a66; }
#ratkaisut .row.g-4 > div:nth-child(4) .nk-product-icon { background: #d56a22; }
#ratkaisut .row.g-4 > div:nth-child(5) .nk-product-icon { background: #405773; }
#ratkaisut .row.g-4 > div:nth-child(6) .nk-product-icon { background: #8b4bd6; }

#meista { position: relative; overflow: hidden; color: #fff; background: var(--nk-ink) !important; }
#meista::before { content: ""; position: absolute; inset: 0; opacity: .18; 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: 55px 55px; }
#meista > .container { position: relative; z-index: 1; }
#meista .nk-section-title { color: var(--nk-cyan); }
#meista h5 { color: var(--nk-blue-light) !important; }
#meista .nk-card-soft { color: rgba(255,255,255,.68); background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.11) !important; box-shadow: none !important; backdrop-filter: blur(10px); }

#referenssit.ref-gradient { color: #fff; background: radial-gradient(circle at top left, #2e7cd9, #0d6efd 42%, #084ea8 72%, #041530) !important; }
#referenssit > .container > .nk-section-title { color: rgba(255,255,255,.72) !important; }
#referenssit > .container > h2 { color: #fff !important; }
#referenssit > .container > p { color: rgba(255,255,255,.78) !important; }
#referenssit .nk-ref-card img, #referenssit article img { border-radius: 1rem; }
#referenssit .badge, #referenssit .nk-pill-badge { border-radius: 999px; }
#referenssit .btn { border-radius: .65rem; font-size: .74rem; font-weight: 800; }
#referenssit .ref-card .card-body { max-width:none !important; padding:1rem; }
#referenssit .ref-card,
.nk-reference-archive .ref-grid-card { position:relative; cursor:pointer; }
.nk-card-modal-hit { position:absolute; z-index:1; inset:0; width:100%; padding:0; border:0; border-radius:inherit; background:transparent; cursor:pointer; }
.ref-card .ref-actions,
.ref-card .ref-link,
.ref-card .carousel-control-prev,
.ref-card .carousel-control-next,
.ref-card .carousel-indicators,
.ref-grid-card .ref-grid-actions,
.ref-grid-card .ref-grid-link { position:relative; z-index:2; }
.ref-card:has(.nk-card-modal-hit:focus-visible),
.ref-grid-card:has(.nk-card-modal-hit:focus-visible) { outline:3px solid #fff; outline-offset:3px; }
.nk-reference-archive .ref-grid-card:has(.nk-card-modal-hit:focus-visible) { outline-color:var(--nk-blue); }
#referenssit .ref-badge i,
.nk-reference-archive .ref-mini-badge i,
.nk-reference-archive .ref-filter i { color:var(--nk-blue); }
.nk-reference-archive .ref-mini-badge { gap:.42rem; padding:.28rem .6rem .28rem .36rem; font-weight:700; }
.nk-reference-archive .ref-mini-badge i { width:1.5rem; height:1.5rem; display:grid; place-items:center; border-radius:50%; background:#e3efff; font-size:.66rem; }
.nk-reference-archive .ref-filter .btn { display:inline-flex; align-items:center; min-height:36px; padding:.4rem .72rem; font-weight:700; }
.nk-reference-archive .ref-filter .btn i { width:1.1rem; text-align:center; }

/* Referenssin yksityiskohtanäkymä */
.nk-site .modal-backdrop { z-index:1190; }
.nk-ref-modal { z-index:1200; }
.nk-ref-modal .modal-dialog { max-width:940px; }
.nk-ref-modal .modal-content { max-height:calc(100vh - 2rem); overflow:hidden; border:0; border-radius:1.35rem; background:#f7f9fc; box-shadow:0 28px 90px rgba(3,18,38,.32); }
.nk-ref-modal .modal-header { align-items:flex-start; padding:1.25rem 1.4rem; border:0; color:#fff; background:linear-gradient(125deg, #071b35 0%, #0d3f77 62%, #0d6efd 130%); }
.nk-ref-modal-title { display:flex; align-items:center; gap:.85rem; min-width:0; }
.nk-ref-modal-icon { flex:0 0 46px; width:46px; height:46px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.17); border-radius:.85rem; color:#fff; background:rgba(255,255,255,.1); box-shadow:inset 0 1px rgba(255,255,255,.12); }
.nk-ref-modal-kicker { display:block; margin-bottom:.18rem; color:rgba(255,255,255,.62); font-size:.57rem; font-weight:800; letter-spacing:.14em; text-transform:uppercase; }
.nk-ref-modal .modal-title { color:#fff; font-size:1.28rem; line-height:1.18; }
.nk-ref-modal-meta { display:flex; flex-wrap:wrap; align-items:center; gap:.3rem .55rem; color:rgba(255,255,255,.72); font-size:.72rem; }
.nk-ref-modal .modal-header .ref-mini-badge { padding:.22rem .48rem; border-color:rgba(255,255,255,.15); color:#fff; background:rgba(255,255,255,.1); }
.nk-ref-modal .btn-close { flex:0 0 auto; margin:.05rem 0 0 auto; filter:invert(1) grayscale(1); opacity:.75; }
.nk-ref-modal .btn-close:hover { opacity:1; }
.nk-ref-modal .modal-body { overflow-y:auto; padding:1.25rem; }
.nk-ref-modal-media { overflow:hidden; margin-bottom:1rem; border:1px solid rgba(11,31,60,.1); border-radius:1rem; background:#eaf0f7; box-shadow:0 14px 34px rgba(11,31,60,.12); }
.nk-ref-modal-media img { width:100%; max-height:min(540px, 56vh); display:block; object-fit:cover; border-radius:0 !important; }
.nk-ref-modal-domain { display:inline-flex; align-items:center; gap:.55rem; padding:.55rem .72rem; border:1px solid rgba(13,110,253,.15); border-radius:.65rem; color:#174f93; background:#eaf3ff; font-size:.82rem; font-weight:700; text-decoration:none; }
.nk-ref-modal-domain:hover { color:#083d7b; background:#dcecff; }
.nk-ref-modal .modal-footer { padding:.9rem 1.25rem; border-color:rgba(11,31,60,.09); background:#fff; }
.nk-ref-modal .modal-footer .btn { min-height:42px; padding:.58rem .9rem; border-radius:.65rem; font-size:.78rem; font-weight:800; }
.nk-ref-modal .modal-footer .btn-primary { box-shadow:0 8px 20px rgba(13,110,253,.2); }

@media (max-width:575.98px) {
  .nk-ref-modal .modal-dialog { margin:.6rem; }
  .nk-ref-modal .modal-content { border-radius:1rem; }
  .nk-ref-modal .modal-header { padding:1rem; }
  .nk-ref-modal-icon { flex-basis:40px; width:40px; height:40px; }
  .nk-ref-modal .modal-title { font-size:1.05rem; }
  .nk-ref-modal-meta .nk-ref-modal-description { display:none; }
  .nk-ref-modal .modal-body { padding:.8rem; }
  .nk-ref-modal .modal-footer { padding:.75rem .8rem; }
}

/* Blogit */
.nk-site article.card .card-body { padding: 1.6rem; }
.nk-site article.card .card-img-top { border-radius: 0 !important; }
.nk-site article.card h2 a, .nk-site article.card h3 a { color: var(--nk-ink); }
.nk-site article.card h2 a:hover, .nk-site article.card h3 a:hover { color: var(--nk-blue); }
.nk-site article.card .stretched-link { color: var(--nk-blue); }
.nk-site article.card .nk-blog-link { display: inline-flex; align-items: center; gap: .35rem; padding: .58rem .78rem; border-radius: .6rem; color: var(--nk-blue) !important; background: #edf4ff; font-size: .86rem; }
.nk-site article.card:hover .nk-blog-link,
.nk-site article.card .nk-blog-link:hover { color: #fff !important; background: var(--nk-blue); }

/* Lomakkeet, yhteys, laskuri */
#yhteys { position: relative; background: var(--nk-paper-blue) !important; }
#yhteys > .container > h2 { font-size: clamp(2.4rem,4vw,3.7rem); }
#yhteys .nk-form-card { border-radius: 1.5rem; background: #fff; box-shadow: var(--nk-shadow); }
#yhteys .nav-pills { gap: .65rem; padding: .35rem; border: 0; border-radius: .85rem; background: var(--nk-paper); }
#yhteys .nav-pills .nav-item { min-width:0; }
#yhteys .nav-pills .nav-link { width:100%; min-height:46px; border:1px solid rgba(13,110,253,.2); border-radius:.65rem; color:var(--nk-blue); background:rgba(255,255,255,.58); font-size:.77rem; font-weight:800; }
#yhteys .nav-pills .nav-link:hover { border-color:rgba(13,110,253,.45); background:#fff; }
#yhteys .nav-pills .nav-link.active { border-color:var(--nk-blue); color:#fff; background:var(--nk-blue); box-shadow:0 8px 20px rgba(18,104,243,.2); }
.nk-site .form-control, .nk-site .form-select { min-height: 52px; border-color: rgba(7,20,38,.13); border-radius: .8rem !important; background-color: #fbfcfe; }
.nk-site textarea.form-control { min-height: 140px; }
.nk-site .form-control:focus, .nk-site .form-select:focus { border-color: var(--nk-blue); box-shadow: 0 0 0 .22rem rgba(18,104,243,.11); background: #fff; }
.nk-site .nk-captcha-box { border-color: rgba(18,104,243,.28); border-radius: .8rem; background: #f4f8ff; }
.nk-site .nk-captcha-code { color: var(--nk-blue); font-family: "Space Grotesk", sans-serif; }
#yhteys .col-lg-5 .card { border-radius: 1.25rem !important; }
#yhteys iframe { border-radius: 1.25rem !important; filter: saturate(.75) contrast(.97); }
.nk-site #nk-price-form { border-radius: 1.35rem; box-shadow: var(--nk-shadow); }
.nk-site .nk-radio-pill { display:grid !important; grid-template-columns:repeat(2,minmax(0,1fr)); gap:.55rem !important; }
.nk-site .nk-radio-pill .form-check { min-width:0; margin:0; padding:0; }
.nk-site .nk-radio-pill .form-check-label { width:100%; min-height:52px; display:flex; align-items:center; justify-content:center; padding:.72rem .65rem; border:1px solid rgba(13,110,253,.2); border-radius:.8rem; color:var(--nk-blue); background:#fff; text-align:center; }
.nk-site .nk-radio-pill .form-check-input:checked + .form-check-label { border-color:var(--nk-blue); color:#fff; background:var(--nk-blue); box-shadow:0 10px 25px rgba(18,104,243,.2); }
.nk-site .accordion-item { overflow: hidden; margin-bottom: .65rem; border: 1px solid var(--nk-line); border-radius: .9rem !important; }
.nk-site .accordion-button { font-weight: 700; background: #fff; box-shadow: none; }
.nk-site .accordion-button:not(.collapsed) { color: var(--nk-blue); background: #eef5ff; }

/* Sisältösivut */
.nk-site main > .container:first-child { padding-top: 6rem; }
.nk-site main > .container:first-child section:first-child { padding-top: 4rem !important; }
.nk-site main > section:not(.hero-gradient):not(#palvelut):not(#ratkaisut):not(#meista):not(#referenssit):not(#yhteys) { background: var(--nk-paper); }
.nk-site main > section:nth-of-type(even):not(.hero-gradient):not(#meista):not(#yhteys) { background: #fff; }
.nk-site .badge { padding: .45rem .65rem; border-radius: 999px; font-weight: 700; }
.nk-site .btn { font-size: .82rem; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease; }
.nk-site .btn:hover { transform: translateY(-2px); }
.nk-site .btn-primary { border-color: var(--nk-blue); color: #fff !important; background: var(--nk-blue); }
.nk-site .btn-primary:hover,
.nk-site .btn-primary:focus-visible { border-color: #095bd5; color: #fff !important; background: #095bd5; box-shadow: 0 12px 28px rgba(13,110,253,.25); }
.nk-site .btn-outline-primary { border-color: rgba(18,104,243,.42); color: var(--nk-blue); }
.nk-site .btn-outline-primary:hover,
.nk-site .btn-outline-primary:focus-visible { border-color: var(--nk-blue); color: #fff !important; background: var(--nk-blue); box-shadow: 0 12px 28px rgba(13,110,253,.2); }

/* Footer */
.nk-footer { padding: 5rem 0 1.2rem; color: rgba(255,255,255,.5); background: #050e1b; }
.nk-footer-grid { display: grid; grid-template-columns: 1.45fr .72fr .72fr 1fr; gap: 3.5rem; }
.nk-footer-intro .site-logo { margin-bottom: 1.1rem; }
.nk-footer-intro p { max-width: 390px; margin: 0 0 1rem; font-size: .75rem; }
.nk-footer-proof { display: inline-flex; align-items: center; gap: .45rem; color: var(--nk-cyan); font-size: .6rem; font-weight: 700; }
.nk-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; font-size: .69rem; }
.nk-footer-column strong { margin-bottom: .35rem; color: #fff; font-size: .6rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.nk-footer-column a { color: rgba(255,255,255,.55); text-decoration: none; }.nk-footer-column a:hover { color: #fff; }
.nk-footer-contact a, .nk-footer-contact span { display: grid; grid-template-columns: 1rem 1fr; gap: .45rem; }.nk-footer-contact i { color: var(--nk-blue-light); }
.nk-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: 3.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.09); font-size: .58rem; }
.nk-footer-bottom > div { display: flex; align-items: center; gap: 1rem; }.nk-footer-bottom a { color: rgba(255,255,255,.58); text-decoration: none; }.nk-footer-bottom .d-block { display: inline-block !important; margin: 0 !important; }

.nk-floating-contact { position: fixed; z-index: 1050; right: 1.35rem; bottom: 1.35rem; height: 50px; display: flex; align-items: center; gap: .55rem; padding: 0 1rem; border: 1px solid rgba(255,255,255,.3); border-radius: 999px; color: #fff; background: var(--nk-blue); box-shadow: 0 15px 35px rgba(18,104,243,.36); font-size: .72rem; font-weight: 800; text-decoration: none; }
.nk-floating-contact:hover { color: #fff; transform: translateY(-2px); }
.nk-mobile-contact-bar { display: none; }
.nk-back-to-top { right: 1.5rem; bottom: 5.2rem; color: #fff !important; background: var(--nk-ink) !important; border: 0; }
.nk-back-to-top i { display: none; }
.nk-back-to-top::before { content: "\2191"; font: 800 1.05rem/1 "Manrope", sans-serif; }
.nk-menu-close i { display: none; }
.nk-menu-close::before { content: "\00D7"; color: #fff; font: 400 1.65rem/1 "Manrope", sans-serif; }

/* Cookie consent sulautetaan uuteen ilmeeseen */
.cm, .pm { font-family: "Manrope", sans-serif !important; border-radius: 1rem !important; }
.cm__btn, .pm__btn { border-radius: .65rem !important; font-weight: 800 !important; }

@media (hover:hover) and (pointer:fine) {
  .nk-site .card img { transition: transform .45s ease; }
  .nk-site .card:hover img { transform: scale(1.025); }
}

@media (max-width: 1199px) {
  .nk-desktop-nav { gap: 1.15rem; }
  .nk-nav-phone { display: none; }
  .nk-hero-title { font-size: clamp(3.7rem,6vw,5.25rem); }
}

@media (max-width: 991px) {
  .nk-main-nav, .nk-main-nav.nk-scrolled { height: 68px; background: rgba(7,20,38,.94); }
  .nk-desktop-nav, .nk-nav-phone, .nk-nav-cta { display: none; }
  .nk-nav-inner { gap:1rem; }
  .nk-nav-actions { margin-left:auto; }
  .nk-menu-toggle { display: block; margin-left: auto; }
  .nk-home-hero { padding-top: 8rem; }
  .nk-system-window { max-width: 670px; transform: none; }
  .nk-proof-experience { right: -.25rem; }.nk-proof-data { left: -.25rem; }
  .nk-hero-stats { grid-template-columns: repeat(3,1fr); }
  .nk-stat-highlights { grid-column: 1 / -1; margin-top: 1rem; padding: 1rem 0 0 !important; border-top: 1px solid rgba(255,255,255,.1); border-right: 0 !important; }
  #palvelut .container > .row:first-of-type .col-lg-8 { grid-template-columns: 1fr; gap: 1rem; }
  #palvelut .ratkaisut-visual { grid-column: 1; grid-row: auto; margin-top: 1.5rem !important; }
  .nk-footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }.nk-footer-contact { grid-column: 2 / span 2; }
}

@media (max-width: 767px) {
  html { scroll-padding-top: 68px; }
  .container { --bs-gutter-x: 1.75rem; }
  .site-logo { font-size: 1.55rem; }
  .nk-home-hero { min-height: auto; padding: 7.5rem 0 2rem; }
  .hero-gradient::after { background-size: 44px 44px; }
  .hero-gradient .container::before { width: 100% !important; right: -45% !important; font-size: 13px !important; opacity: .08 !important; }
  .hero-tag { font-size: .55rem; letter-spacing: .1em; }
  .nk-hero-title { font-size: clamp(3.05rem,14vw,4.1rem); }
  .nk-hero-title small { font-size: .64rem; }
  .nk-hero-lead { font-size: .94rem; }
  .nk-hero-actions { display: grid !important; grid-template-columns: 1fr; }.nk-hero-actions .btn { width: 100%; justify-content: center; }
  .nk-price-link { align-items: flex-start; font-size: .7rem; line-height: 1.5; }
  .nk-hero-trust { align-items: flex-start; }.nk-hero-trust p br { display: none; }
  .nk-system-window { border-radius: 1.05rem; }
  .nk-window-body { padding: 1rem; }.nk-system-heading h2 { font-size: 1.35rem; }.nk-system-heading > small { display: none; }
  .nk-system-map { height: 215px; }.nk-system-core { width: 94px; height: 94px; }.nk-system-node { min-width: 78px; padding: .45rem; font-size: .43rem; }.nk-node-a,.nk-node-c { left: .7rem; }.nk-node-b,.nk-node-d { right: .7rem; }.nk-node-a,.nk-node-b { top: 1rem; }.nk-node-c,.nk-node-d { bottom: 1rem; }
  .nk-float-proof { display: none; }
  .nk-integration-row span { font-size: .4rem; }
  .nk-hero-stats { grid-template-columns: 1fr 1fr; margin-top: 2.5rem; }.nk-hero-stats > div { padding: 0 .8rem; }.nk-hero-stats > div:nth-child(2) { border: 0; }.nk-hero-stats > div:nth-child(3) { display: none; }.nk-hero-stats strong { font-size: 1.25rem; }
  .nk-stat-highlights { grid-template-columns: 1fr; gap: .45rem; padding: 1rem 0 0 !important; }
  .nk-stat-highlights span { min-height: 44px; }
  .nk-site main > .hero-gradient:not(.nk-home-hero) { padding: 8rem 0 4.5rem !important; }
  .nk-site main > .hero-gradient:not(.nk-home-hero) h1 { font-size: 2.65rem !important; }
  .nk-site main > .hero-gradient:not(.nk-home-hero) .lead { font-size: .95rem; }
  .nk-site main > .hero-gradient:not(.nk-home-hero) .d-flex.gap-3 { display: grid !important; }.nk-site main > .hero-gradient:not(.nk-home-hero) .btn { width: 100%; justify-content: center; }
  .nk-site .py-6 { padding-top: 4.5rem; padding-bottom: 4.5rem; }.nk-site .pb-6 { padding-bottom: 4.5rem; }
  .nk-site section > .container > h2, .nk-site section > .container > h3.h2 { font-size: 2.25rem; }
  #palvelut .container > .row:first-of-type h2 { font-size: 2.3rem; }
  #palvelut > .container > .nk-section-title { margin-top: 3.2rem !important; }
  #ratkaisut > .container > .nk-section-title { margin-top: 3.2rem !important; }
  .nk-site #palvelut .card-body { padding: 1rem; }
  .nk-site .service-icon-circle { width: 49px; height: 49px; }
  .nk-footer { padding-top: 4rem; }.nk-footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }.nk-footer-contact { grid-column: auto; }.nk-footer-bottom { align-items: flex-start; flex-direction: column; padding-bottom: 4.5rem; }
  .nk-floating-contact { display: none; }
  .nk-mobile-contact-bar { position: fixed; z-index: 1080; left: .65rem; right: .65rem; bottom: .65rem; display: grid; grid-template-columns: .78fr 1.22fr; padding: .32rem; border: 1px solid rgba(255,255,255,.17); border-radius: .9rem; background: rgba(7,20,38,.95); box-shadow: 0 18px 45px rgba(0,0,0,.32); backdrop-filter: blur(16px); }
  .nk-mobile-contact-bar a { min-height: 48px; display: flex; align-items: center; justify-content: center; gap: .45rem; border-radius: .65rem; color: #fff; font-size: .72rem; font-weight: 800; text-decoration: none; }.nk-mobile-contact-bar a:last-child { background: var(--nk-blue); }
  .nk-back-to-top { display: none !important; }
  #yhteys .nk-form-card { padding: 1rem !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
  ::view-transition-old(root), ::view-transition-new(root) { animation:none !important; }
}
