/* ==========================================================================
   Usluge · Single usluga · Krojna lista  (g-services)
   Tehnički list: kote, hairline ćelije, mono mere. Samo postojeći tokeni.
   ========================================================================== */

/* ---------- Zajedničko ---------- */
.ph {
  position: relative;
  color: var(--ink-4);
}
.ph::before,
.ph::after {
  font-family: var(--f-mono);
  font-weight: 300;
  color: var(--wood);
  font-size: 0.7em;
}
.ph::before {
  content: "[ ";
}
.ph::after {
  content: " ]";
}
.ph-note {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ph-note .ic {
  width: 16px;
  height: 16px;
  color: var(--wood-600);
  flex: none;
}

/* Plan sečenja (isti crtež kao na početnoj - stilovi ovde da stranica ne učitava home.css) */
.cutplan {
  width: 100%;
  height: auto;
  font-family: var(--f-mono);
}
.cutplan text {
  font-size: 9px;
  fill: var(--ink-3);
}
.cp__panel {
  stroke: var(--ink);
  stroke-width: 1;
}
.cp__hatch {
  stroke: var(--ink-4);
  stroke-width: 0.6;
  opacity: 0.6;
}
.cp__piece rect {
  fill: var(--card);
  stroke: var(--ink-2);
  stroke-width: 0.8;
}
.cp__edge {
  stroke: var(--wood);
  stroke-width: 2.4;
}
.cp__n {
  font-family: var(--f-sans);
  font-size: 10px !important;
  font-weight: 500;
  fill: var(--ink) !important;
}
.cp__d {
  font-size: 8.5px !important;
}
.cp__dim line {
  stroke: var(--ink-3);
  stroke-width: 0.8;
}
.cp__dim text {
  font-size: 10px;
  fill: var(--ink-2);
}
.cp__lblbg {
  fill: var(--card);
}
.cp__legend text {
  font-size: 9.5px;
}
.cutplan--anim .cp__piece {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: calc(var(--i) * 70ms);
}
.is-in .cutplan--anim .cp__piece,
.no-js .cutplan--anim .cp__piece {
  opacity: 1;
  transform: none;
}

/* Sitne kontrole koje se ponavljaju */
.g-small,
.kf-small {
  font-size: 14px;
}
.kf-seg {
  position: relative;
  cursor: pointer;
}
.kf-seg input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.kf-seg > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  padding: 0 12px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: var(--r);
  white-space: nowrap;
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    box-shadow var(--t-fast);
}
.kf-seg > span small {
  font-size: 10.5px;
  font-weight: 400;
  color: var(--ink-4);
}
.kf-seg:hover > span {
  color: var(--ink);
}
.kf-seg input:checked + span {
  background: var(--card);
  color: var(--ink);
  box-shadow:
    0 1px 2px rgba(23, 26, 28, 0.08),
    0 0 0 1px var(--line);
}
.kf-seg input:focus-visible + span {
  outline: 2px solid var(--wood);
  outline-offset: 2px;
}

/* ==========================================================================
   KROJNA LISTA
   ========================================================================== */
.kf-head {
  position: relative;
  padding-block: clamp(22px, 2.6vw, 36px) clamp(36px, 4vw, 60px);
  overflow: clip;
}
.kf-head::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  background-position: -1px -1px;
  mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 30%, #000 100%);
}
.kf-head > .container {
  position: relative;
}
.kf-head .crumbs {
  margin-bottom: clamp(28px, 3.6vw, 52px);
}
.kf-head__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4.6fr);
  gap: 32px clamp(32px, 5vw, 96px);
  align-items: end;
}
.kf-head .h1 {
  max-width: 13ch;
  margin-bottom: 22px;
}
.kf-head .lead {
  max-width: 54ch;
}

/* Zaglavlje naloga - kao sastavnica tehničkog crteža */
.kf-tb {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--ink);
}
.kf-tb > div {
  display: grid;
  gap: 3px;
  align-content: start;
  padding: 11px 14px 12px;
  background: var(--card);
  min-width: 0;
}
.kf-tb dt {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.kf-tb dd {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.35;
}
.kf-tb dd.mono {
  font-size: 13px;
}
.kf-tb .kf-tb__title {
  grid-column: 1 / -1;
  background: var(--ink);
  padding: 14px 14px 15px;
}
.kf-tb__title dt {
  color: rgba(246, 245, 242, 0.5);
}
.kf-tb__title dd {
  color: var(--paper);
  font-size: 17px;
  font-weight: 500;
  font-stretch: 108%;
  letter-spacing: -0.01em;
}
.kf-tb .status-dot {
  font-size: 13.5px;
}

/* Traka napretka (sticky) */
.kf-strip {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.kf-strip__in {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  height: 60px;
}
.kf-strip__id {
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
  padding-right: clamp(12px, 2vw, 28px);
  border-right: 1px solid var(--line);
  height: 28px;
  display: flex;
  align-items: center;
}
.kf-strip__steps {
  display: flex;
  gap: 2px;
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.kf-strip__steps::-webkit-scrollbar {
  display: none;
}
.kf-strip__steps a {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 38px;
  padding: 0 12px 0 9px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-3);
  border-radius: var(--r);
  white-space: nowrap;
  transition:
    background-color var(--t-fast),
    color var(--t-fast),
    box-shadow var(--t-fast);
}
.kf-strip__steps a:hover {
  background: var(--paper-2);
  color: var(--ink);
}
.kf-strip__steps i {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line-3);
  color: transparent;
  transition:
    background-color var(--t),
    border-color var(--t),
    color var(--t);
}
.kf-strip__steps i .ic {
  width: 12px;
  height: 12px;
  stroke-width: 2.6;
}
.kf-strip__steps .mono {
  font-size: 11px;
  color: var(--ink-4);
}
.kf-strip__steps li.is-done i {
  background: var(--ok);
  border-color: var(--ok);
  color: #fff;
}
.kf-strip__steps li.is-done a {
  color: var(--ink-2);
}
.kf-strip__steps li.is-cur a {
  background: var(--card);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-2);
}
.kf-strip__n {
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
}
.kf-strip__n b {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.kf-strip__go .ic {
  width: 16px;
  height: 16px;
}
.kf-strip__bar {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  bottom: -1px;
  height: 2px;
  background: transparent;
  overflow: hidden;
}
.kf-strip__bar i {
  display: block;
  height: 100%;
  background: var(--wood);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  transition: transform 0.8s var(--ease-out);
}

/* Raspored forme i pomoćne kolone */
.kf {
  padding-bottom: var(--section);
}
.kf__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4.3fr);
  gap: 0 clamp(32px, 5vw, 88px);
  align-items: stretch;
}
.kf__form {
  min-width: 0;
}

/* Sekcija forme */
.kf-sec {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  padding-block: clamp(36px, 4vw, 56px);
  border-bottom: 1px solid var(--line-2);
  scroll-margin-top: 56px;
}
.kf-sec__head {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: start;
  margin-bottom: 26px;
}
.kf-sec__no {
  display: grid;
  place-items: center;
  align-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--ink);
  font-size: 14px;
  color: var(--ink);
  line-height: 1.1;
  transition:
    background-color var(--t),
    color var(--t);
}
.kf-sec__no i {
  font-style: normal;
  font-size: 9.5px;
  color: var(--ink-4);
  transition: color var(--t);
}
.kf-sec.is-done .kf-sec__no {
  background: var(--ink);
  color: var(--paper);
}
.kf-sec.is-done .kf-sec__no i {
  color: rgba(246, 245, 242, 0.55);
}
.kf-sec__t {
  display: grid;
  gap: 6px;
  padding-top: 2px;
}
.kf-sec__t p {
  color: var(--ink-3);
  font-size: 15px;
}
.kf-state {
  align-self: start;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 26px;
  padding: 0 9px;
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  box-shadow: inset 0 0 0 1px var(--line-2);
  white-space: nowrap;
  transition:
    background-color var(--t),
    color var(--t),
    box-shadow var(--t);
}
.kf-state--opt {
  color: var(--ink-4);
}
.kf-sec.is-done .kf-state {
  background: var(--ok-bg);
  color: var(--ok);
  box-shadow: none;
}
.kf-sec__body {
  grid-column: 2;
  min-width: 0;
}

.kf-hint {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
}
.kf-hint .ic {
  width: 16px;
  height: 16px;
  color: var(--wood-600);
  margin-top: 2px;
}
.kf-hint a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-3);
}
.kf-hint a:hover {
  text-decoration-color: var(--wood);
}
.kf-hint b {
  color: var(--ink-2);
  font-weight: 600;
}
.kf-err {
  margin-top: 16px;
  animation: rise 0.45s var(--ease-out);
}

/* 01 - način unosa */
.kf-mode {
  margin-bottom: 18px;
}
.kf-mode__n:empty {
  display: none;
}
.kf-mode__n {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--paper-3);
  color: var(--ink-2);
  font-size: 10.5px;
}
.kf-mode [aria-selected="true"] .kf-mode__n {
  background: var(--ink);
  color: var(--paper);
}
.kf-panel .dropzone__target {
  padding: clamp(40px, 5vw, 64px) 24px;
}
.kf-panel .dropzone__title {
  font-size: 20px;
}

/* 01 - ručni unos */
.kf-tbl {
  border: 1px solid var(--line-2);
  background: var(--card);
}
.kf-rows {
  font-size: 14px;
}
.kf-rows th {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid var(--line-2);
  background: var(--paper-2);
  white-space: nowrap;
}
.kf-rows th small {
  font-size: 10px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-4);
}
.kf-rows th.num {
  text-align: right;
  padding-right: 14px;
}
.kf-rows td {
  padding: 5px 4px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.kf-row__i {
  width: 42px;
  text-align: center;
  font-size: 11.5px;
  color: var(--ink-4);
}
.kf-row__l,
.kf-row__w {
  width: 96px;
}
.kf-row__q {
  width: 70px;
}
.kf-row__g {
  width: 64px;
  text-align: center;
}
.kf-row__e {
  width: 78px;
}
.kf-row__x {
  width: 44px;
  text-align: center;
}
.kf-row__x .ibtn {
  color: var(--ink-4);
}
.kf-row__x .ibtn:hover {
  color: var(--err);
}
.kf-row.is-new {
  animation: rise 0.45s var(--ease-out);
}
.kf-row.is-out {
  opacity: 0;
  transform: translateX(12px);
  transition:
    opacity 0.25s var(--ease),
    transform 0.3s var(--ease);
}
.kf-in {
  width: 100%;
  height: 40px;
  padding: 0 10px;
  border: 1px solid transparent;
  border-radius: var(--r);
  background: transparent;
  font-size: 14.5px;
  color: var(--ink);
  transition:
    border-color var(--t-fast),
    background-color var(--t-fast),
    box-shadow var(--t-fast);
}
.kf-in::placeholder {
  color: var(--ink-4);
}
.kf-in:hover {
  border-color: var(--line-2);
}
.kf-in:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(165, 123, 85, 0.2);
}
.kf-in--num {
  text-align: right;
  font-family: var(--f-mono);
  font-size: 13.5px;
  -moz-appearance: textfield;
  appearance: textfield;
}
.kf-in--num::-webkit-inner-spin-button,
.kf-in--num::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.kf-in.is-bad {
  border-color: var(--err);
  background: var(--err-bg);
}

.kf-grain {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-2);
  border-radius: var(--r);
  color: var(--ink-2);
  background: var(--card);
  transition: border-color var(--t-fast);
}
.kf-grain:hover {
  border-color: var(--ink);
}
.kf-grain svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  transition:
    transform 0.45s var(--ease-out),
    opacity var(--t-fast);
}
.kf-grain[data-grain="s"] svg {
  transform: rotate(90deg);
}
.kf-grain[data-grain="n"] svg {
  opacity: 0.22;
}
.kf-grain[data-grain="n"] {
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0 4px,
      rgba(23, 26, 28, 0.06) 4px 5px
    ),
    var(--card);
}

/* Kant po stranama - mali pravougaonik sa klikabilnim ivicama */
.kf-edge {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 40px;
  vertical-align: middle;
}
.kf-edge::before {
  content: "";
  position: absolute;
  inset: 9px 11px;
  border: 1px solid var(--line-3);
  background: var(--paper-2);
}
.kf-edge__s {
  position: absolute;
}
.kf-edge__s::after {
  content: "";
  position: absolute;
  background: var(--line-2);
  transition:
    background-color var(--t-fast),
    transform var(--t) var(--ease-out);
}
.kf-edge__s:hover::after {
  background: var(--wood-200);
}
.kf-edge__s[aria-pressed="true"]::after {
  background: var(--wood);
}
.kf-edge__s--t {
  left: 11px;
  right: 11px;
  top: 0;
  height: 12px;
}
.kf-edge__s--t::after {
  left: 0;
  right: 0;
  bottom: 1px;
  height: 3px;
}
.kf-edge__s--b {
  left: 11px;
  right: 11px;
  bottom: 0;
  height: 12px;
}
.kf-edge__s--b::after {
  left: 0;
  right: 0;
  top: 1px;
  height: 3px;
}
.kf-edge__s--l {
  top: 9px;
  bottom: 9px;
  left: 0;
  width: 14px;
}
.kf-edge__s--l::after {
  top: 0;
  bottom: 0;
  right: 1px;
  width: 3px;
}
.kf-edge__s--r {
  top: 9px;
  bottom: 9px;
  right: 0;
  width: 14px;
}
.kf-edge__s--r::after {
  top: 0;
  bottom: 0;
  left: 1px;
  width: 3px;
}
.kf-edge__s:focus-visible {
  outline: 2px solid var(--wood);
  outline-offset: 0;
  z-index: 1;
}

.kf-rows__empty {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 28px;
  color: var(--ink-3);
  font-size: 14px;
  border-bottom: 1px solid var(--line);
}
.kf-rows__empty .ic {
  width: 18px;
  height: 18px;
}
.kf-tbl__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  padding: 12px;
  flex-wrap: wrap;
}
.kf-tbl__foot .btn .ic {
  width: 16px;
  height: 16px;
}
.kf-tot {
  display: flex;
  gap: clamp(14px, 2vw, 26px);
}
.kf-tot > div {
  display: grid;
  gap: 1px;
}
.kf-tot dt {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.kf-tot dd {
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
}
.kf-tbl > .kf-hint {
  margin: 0;
  padding: 0 12px 14px;
}

/* 02 - materijal */
.kf-own {
  margin-bottom: 18px;
}
.kf-own-note {
  margin-bottom: 18px;
}
.kf-mat {
  display: grid;
  gap: 22px;
  transition: opacity var(--t) var(--ease);
}
.kf-mat.is-off {
  opacity: 0.32;
  pointer-events: none;
}
.kf-matcard {
  position: relative;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  padding: 14px 18px 14px 14px;
  background: var(--card);
  border: 1px solid var(--line-2);
  color: var(--ink-3);
}
.kf-matcard::before {
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  bottom: -1px;
  width: 4px;
  background: var(--wood);
}
.kf-matcard__img {
  position: relative;
  width: 96px;
  height: 96px;
  overflow: hidden;
  background: var(--paper-2);
}
.kf-matcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kf-matcard.is-swap .kf-matcard__img img,
.kf-matcard.is-swap .kf-matcard__info {
  animation: kfSwap 0.55s var(--ease-out);
}
@keyframes kfSwap {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.kf-matcard__info {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.kf-matcard__info .mono {
  font-size: 11.5px;
  color: var(--ink-3);
}
.kf-matcard__info b {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  font-stretch: 108%;
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--ink);
}
.kf-matcard__spec {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kf-matcard__buy {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
}
.kf-matcard__buy .price__retail,
.kf-matcard__buy .price__b2b {
  justify-content: flex-end;
}
.kf-matcard__u {
  font-size: 10.5px;
  color: var(--ink-4);
  margin-bottom: 6px;
}

.kf-pick {
  border: 1px solid var(--line-2);
  background: var(--paper);
}
.kf-pick__bar {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.kf-pick__q {
  flex: 1 1 220px;
}
.kf-pick__q .input {
  height: 40px;
  font-size: 14.5px;
  padding-left: 42px;
}
.kf-pick__q .ic {
  left: 14px;
  width: 18px;
  height: 18px;
}
.kf-pick__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(88px, 1fr));
  gap: 16px 12px;
  align-content: start;
  max-height: 356px;
  overflow-y: auto;
  padding: 16px 12px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-3) transparent;
  overscroll-behavior: contain;
}
.kf-dec {
  position: relative;
  display: grid;
  gap: 3px;
  align-content: start;
  cursor: pointer;
}
.kf-dec input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.kf-dec__sw {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}
.kf-dec__sw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease-out);
}
.kf-dec:hover .kf-dec__sw img {
  transform: scale(1.08);
}
.kf-dec__sw::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow:
    inset 0 0 0 2px var(--ink),
    inset 0 0 0 4px var(--card);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.kf-dec__sw i {
  position: absolute;
  right: 7px;
  top: 7px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transform: scale(0);
  transition: transform var(--t) var(--ease-out);
}
.kf-dec__sw i .ic {
  width: 13px;
  height: 13px;
  stroke-width: 2.4;
}
.kf-dec input:checked + .kf-dec__sw::after {
  opacity: 1;
}
.kf-dec input:checked + .kf-dec__sw i {
  transform: scale(1);
}
.kf-dec input:focus-visible + .kf-dec__sw {
  outline: 2px solid var(--wood);
  outline-offset: 3px;
}
.kf-dec__sku {
  font-size: 10.5px;
  color: var(--ink-3);
  margin-top: 5px;
}
.kf-dec__name {
  font-size: 12.5px;
  line-height: 1.25;
  color: var(--ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.kf-dec.is-hidden {
  display: none;
}
.kf-dec.is-enter {
  animation: rise 0.45s var(--ease-out) both;
  animation-delay: calc(var(--k, 0) * 18ms);
}
.kf-pick__empty {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  justify-items: start;
  padding: 24px;
  border: 1px dashed var(--line-3);
}
.kf-pick__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  color: var(--ink-3);
}
.kf-pick__foot b {
  color: var(--ink);
  font-weight: 500;
}
.kf-pick__foot .link-arrow {
  font-size: 13.5px;
  font-family: var(--f-sans);
}

.kf-opts2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2.4fr);
  gap: 24px 32px;
  align-items: start;
}
.kf-fs legend {
  margin-bottom: 12px;
}
.kf-fs legend .mono {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
}
.kf-bands {
  display: grid;
  border-top: 1px solid var(--line-2);
}
.kf-band {
  position: relative;
  display: grid;
  grid-template-columns: 20px 52px minmax(0, 1fr) auto auto;
  gap: 14px;
  align-items: center;
  padding: 10px 10px 10px 8px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background-color var(--t-fast);
}
.kf-band:hover,
.kf-band:has(input:checked) {
  background: var(--card);
}
.kf-band input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.kf-band__radio {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--line-3);
  background: var(--card);
  transition:
    box-shadow var(--t-fast),
    border-color var(--t-fast);
}
.kf-band input:checked + .kf-band__radio {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 5px var(--ink);
}
.kf-band input:focus-visible + .kf-band__radio {
  outline: 2px solid var(--wood);
  outline-offset: 2px;
}
.kf-band__sw {
  position: relative;
  display: block;
  width: 52px;
  height: 34px;
  overflow: hidden;
  background: var(--paper-2);
}
.kf-band__sw img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kf-band__sw i {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7px;
  background: rgba(0, 0, 0, 0.2);
}
.kf-band__info {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.kf-band__info .mono {
  font-size: 11px;
  color: var(--ink-3);
}
.kf-band__info b {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 14.5px;
  font-weight: 500;
}
.kf-band__info .badge {
  height: 20px;
  font-size: 10px;
  padding: 0 6px;
}
.kf-band .stock {
  font-size: 12.5px;
}
.kf-band__p {
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
  min-width: 76px;
  text-align: right;
}
.kf-band--none {
  grid-template-columns: 20px minmax(0, 1fr);
}
.kf-band.is-enter {
  animation: rise 0.45s var(--ease-out) both;
  animation-delay: calc(var(--k, 0) * 60ms);
}

/* 03 - usluge */
.kf-svc {
  border-top: 1px solid var(--line-2);
}
.kf-svc__row {
  border-bottom: 1px solid var(--line-2);
  transition: background-color var(--t) var(--ease);
}
.kf-svc__row:has(.kf-svc__cb:checked) {
  background: var(--card);
}
.kf-svc__main {
  position: relative;
  display: grid;
  grid-template-columns: 20px 24px 40px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px 16px 16px 14px;
  cursor: pointer;
}
.kf-svc__main::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  bottom: 0;
  width: 3px;
  background: var(--wood);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s var(--ease-out);
}
.kf-svc__row:has(.kf-svc__cb:checked) .kf-svc__main::before {
  transform: scaleY(1);
}
.kf-svc__row:has(.kf-svc__cb:checked) .kf-svc__more::before {
  transform: scaleY(1);
}
.kf-svc__cb {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.kf-svc__main .check__box {
  transition:
    background-color var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast);
}
.kf-svc__cb:checked + .check__box {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.kf-svc__cb:focus-visible + .check__box {
  outline: 2px solid var(--wood);
  outline-offset: 2px;
}
.kf-svc__main:hover .check__box {
  border-color: var(--ink);
}
.kf-svc__no {
  font-size: 11px;
  color: var(--ink-4);
}
.kf-svc__ic {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  transition:
    background-color var(--t),
    color var(--t),
    border-color var(--t);
}
.kf-svc__row:has(.kf-svc__cb:checked) .kf-svc__ic {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.kf-svc__txt {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.kf-svc__txt b {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 16.5px;
  font-weight: 500;
  font-stretch: 106%;
  letter-spacing: -0.01em;
}
.kf-svc__txt > span {
  font-size: 14px;
  color: var(--ink-3);
  line-height: 1.45;
}
.kf-svc__txt .badge {
  height: 21px;
  font-size: 10px;
}
.kf-svc__p {
  font-size: 12px;
  color: var(--ink-2);
  white-space: nowrap;
  text-align: right;
}
.kf-svc__row.is-locked .kf-svc__main {
  cursor: default;
}
.kf-svc__row.is-locked .check__box {
  opacity: 0.45;
}
.kf-svc__more {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}
.kf-svc__more::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--wood);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.5s 0.1s var(--ease-out);
}
.kf-svc__more > div {
  overflow: hidden;
  min-height: 0;
  visibility: hidden;
  transition: visibility 0s 0.5s;
}
.kf-svc__row:has(.kf-svc__cb:checked) .kf-svc__more {
  grid-template-rows: 1fr;
}
.kf-svc__row:has(.kf-svc__cb:checked) .kf-svc__more > div {
  visibility: visible;
  transition: none;
}
.kf-svc__opts {
  display: grid;
  gap: 12px;
  justify-items: start;
  padding: 0 16px 20px 136px;
}
.kf-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.kf-opt .label {
  font-size: 10.5px;
}
.kf-opt--col {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  width: 100%;
}
.kf-ship {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease-out);
}
.kf-ship > .field {
  overflow: hidden;
  min-height: 0;
  visibility: hidden;
  transition: visibility 0s 0.45s;
}
.kf-opt--col:has([data-kf-ship]:checked) .kf-ship {
  grid-template-rows: 1fr;
}
.kf-opt--col:has([data-kf-ship]:checked) .kf-ship > .field {
  visibility: visible;
  transition: none;
  padding: 8px 2px 2px;
}
.kf-more-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.kf-more-note .ic {
  width: 16px;
  height: 16px;
  color: var(--wood-600);
  margin-top: 2px;
}
.kf-other {
  height: 44px;
  font-size: 15px;
  max-width: 520px;
}

/* 04 - povezivanje */
.kf-link {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.kf-link__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  min-height: 32px;
}
.kf-link__head .label .mono {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-4);
  margin-left: 6px;
}
.kf-link__head .btn--text {
  font-size: 13.5px;
}
.kf-cart {
  border-top: 1px solid var(--line-2);
}
.kf-cl {
  display: grid;
  grid-template-columns: 22px 48px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  transition: opacity var(--t) var(--ease);
  animation: rise 0.45s var(--ease-out) both;
}
.kf-cl:nth-child(2) {
  animation-delay: 0.06s;
}
.kf-cl:nth-child(3) {
  animation-delay: 0.12s;
}
.kf-cl:nth-child(4) {
  animation-delay: 0.18s;
}
.kf-cl.is-off {
  opacity: 0.45;
}
.kf-cl__c {
  padding: 0;
}
.kf-cl img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--paper-2);
}
.kf-cl__t {
  display: grid;
  gap: 1px;
  min-width: 0;
}
.kf-cl__t .mono {
  font-size: 11px;
  color: var(--ink-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kf-cl__t b {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kf-cl__q {
  display: grid;
  justify-items: end;
  gap: 2px;
  text-align: right;
}
.kf-cl__q .mono {
  font-size: 12.5px;
  color: var(--ink);
}
.kf-cl__q small {
  font-size: 10.5px;
  color: var(--wood-700);
  white-space: nowrap;
}
.kf-cart-empty {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border: 1px dashed var(--line-3);
}
.kf-cart-empty__art {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border: 1px dashed var(--line-3);
  color: var(--ink-3);
}
.kf-cart-empty .h5 {
  margin-bottom: 4px;
}
.kf-cart-empty .link-arrow {
  font-size: 14px;
  margin-top: 8px;
}
.kf-link__b2b {
  padding: 18px;
  background: var(--card);
  border: 1px solid var(--line);
}
.kf-link__all {
  margin-top: 12px;
  font-size: 14px;
}
.kf-b2b-lock {
  display: grid !important;
  grid-template-columns: 40px 1fr;
  gap: 14px;
}
html[data-user="b2b"] .kf-b2b-lock {
  display: none !important;
}
.kf-b2b-lock__ic {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--ink);
  color: var(--wood);
}
.kf-b2b-lock .h5 {
  margin-bottom: 4px;
}
.kf-b2b-lock__a {
  display: flex;
  gap: 6px 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.kf-b2b-lock__a .link-arrow {
  font-size: 14px;
}

/* 05 - kontakt */
.kf-b2bfill {
  margin-bottom: 20px;
  align-items: center;
}
.kf-b2bfill .btn--text {
  margin-left: 6px;
  font-size: 14px;
  color: var(--wood-700);
}

/* 06 - pregled i slanje */
.kf-send {
  padding-top: clamp(40px, 4vw, 56px);
  scroll-margin-top: 56px;
}
.kf-ticket {
  position: relative;
  background: var(--card);
  border: 1px solid var(--line-2);
  color: var(--ink-3);
}
.kf-ticket::before {
  content: "";
  position: absolute;
  left: -1px;
  right: -1px;
  top: -1px;
  height: 4px;
  background: var(--wood);
}
.kf-ticket__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 28px 28px 22px;
  border-bottom: 1px dashed var(--line-3);
}
.kf-ticket__head .label {
  margin-bottom: 8px;
}
.kf-ticket__meter {
  display: grid;
  gap: 8px;
  justify-items: end;
}
.kf-ticket__meter .mono {
  font-size: 12px;
}
.kf-ticket__meter b {
  color: var(--ink);
  font-weight: 500;
  font-size: 15px;
}
.kf-meter {
  display: block;
  width: 168px;
  height: 4px;
  background: var(--paper-3);
  overflow: hidden;
}
.kf-meter i {
  display: block;
  height: 100%;
  background: var(--ok);
  transform-origin: left;
  transform: scaleX(var(--p, 0));
  transition: transform 0.8s var(--ease-out);
}
.kf-sum {
  display: grid;
  padding: 6px 28px;
}
.kf-sum > div {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: baseline;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}
.kf-sum > div:last-child {
  border-bottom: 0;
}
.kf-sum dt {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-3);
}
.kf-sum dt .mono {
  font-size: 11px;
  color: var(--ink-4);
  padding-top: 2px;
  min-width: 16px;
}
.kf-sum dd {
  font-size: 14.5px;
  line-height: 1.45;
  color: var(--ink);
  font-weight: 500;
  min-width: 0;
  overflow-wrap: anywhere;
}
.kf-sum dd small {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-3);
  margin-top: 2px;
}
.kf-sum dd.is-empty {
  color: var(--err);
  font-weight: 400;
}
.kf-sum dd.is-flash {
  animation: kfFlash 0.9s var(--ease);
}
@keyframes kfFlash {
  0% {
    background: var(--wood-100);
  }
  100% {
    background: transparent;
  }
}
.kf-sum a {
  font-size: 13px;
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--line-3);
}
.kf-sum a:hover {
  color: var(--ink);
  text-decoration-color: var(--wood);
}
.kf-ticket__foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px 28px;
  align-items: end;
  padding: 22px 28px 28px;
  border-top: 1px dashed var(--line-3);
  background: var(--paper);
}
.kf-ticket__foot .check {
  grid-column: 1 / -1;
}
.kf-ticket__foot .fine {
  max-width: 54ch;
}

/* Pomoćna kolona */
.kf-help {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: clamp(36px, 4vw, 56px);
  min-width: 0;
}
.kf-help__block {
  display: grid;
  gap: 20px;
  align-content: start;
}
.kf-help__block .eyebrow {
  margin-bottom: -6px;
}
.kf-help__lead {
  color: var(--ink-3);
  font-size: 15px;
  margin-top: -6px;
}
.kf-sheet-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-2);
  background: #fff;
  box-shadow: var(--sh-1);
}
.kf-sheet {
  font-family: var(--f-mono);
  font-size: 11px;
  font-variant-numeric: tabular-nums;
}
.kf-sheet th,
.kf-sheet td {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 6px 7px;
  white-space: nowrap;
  text-align: left;
  font-weight: 400;
  color: var(--ink-2);
}
.kf-sheet th:last-child,
.kf-sheet td:last-child {
  border-right: 0;
}
.kf-sheet tbody tr:last-child > * {
  border-bottom: 0;
}
.kf-sheet__cols th {
  background: var(--paper-2);
  color: var(--ink-4);
  text-align: center;
  font-size: 10px;
  padding: 3px 6px;
}
.kf-sheet tr > th:first-child {
  background: var(--paper-2);
  color: var(--ink-4);
  text-align: center;
  width: 26px;
  font-size: 10px;
}
.kf-sheet__h td {
  font-family: var(--f-sans);
  font-weight: 600;
  font-size: 10.5px;
  color: var(--ink);
  background: var(--wood-50);
}
.kf-sheet td.num {
  text-align: right;
}
.kf-sheet td.is-k {
  color: var(--wood-700);
  font-weight: 500;
}
.kf-sheet tbody td:first-of-type {
  color: var(--ink);
}
.kf-rules {
  display: grid;
  counter-reset: r;
  border-top: 1px solid var(--line);
}
.kf-rules li {
  counter-increment: r;
  position: relative;
  padding: 12px 0 12px 38px;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-2);
  line-height: 1.5;
}
.kf-rules li::before {
  content: counter(r, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 15px;
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--wood-700);
}
.kf-rules b {
  color: var(--ink);
  font-weight: 600;
}
.kf-help__fig {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 14px 12px 6px;
}
.kf-notation {
  width: 100%;
  height: auto;
  font-family: var(--f-mono);
}
.kn__face {
  fill: var(--paper-2);
  stroke: var(--ink-3);
  stroke-width: 1;
}
.kn__grain {
  stroke: var(--ink-4);
  stroke-width: 0.8;
  opacity: 0.55;
  fill: none;
}
.kn__edge {
  stroke: var(--wood);
  stroke-width: 4;
}
.kn__edge--thin {
  stroke-width: 1.8;
}
.kn__lbl {
  font-size: 11px;
  fill: var(--ink);
}
.kn__sub {
  font-size: 9.5px;
  fill: var(--ink-4);
}
.kn__dim line {
  stroke: var(--ink-3);
  stroke-width: 0.8;
}
.kn__dim text {
  font-size: 10px;
  fill: var(--ink-2);
}
.kn__bg {
  fill: var(--card);
}
.kn__arrow line,
.kn__arrow path {
  stroke: var(--ink-2);
  stroke-width: 1;
  fill: none;
}
.kn__arrow text {
  font-size: 10px;
  fill: var(--ink-2);
}
.kf-dl {
  display: grid;
  gap: 6px;
}
.kf-dl__a {
  display: grid;
  grid-template-columns: 44px 1fr 20px;
  gap: 14px;
  align-items: center;
  padding: 8px 14px 8px 8px;
  background: var(--card);
  border: 1px solid var(--line);
  transition: border-color var(--t-fast);
}
.kf-dl__a:hover {
  border-color: var(--ink);
}
.kf-dl__n {
  display: grid;
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.3;
}
.kf-dl__n small {
  font-size: 11px;
  color: var(--ink-3);
  font-weight: 400;
}
.kf-dl__a .ic {
  width: 18px;
  height: 18px;
  transition: transform var(--t) var(--ease-out);
}
.kf-dl__a:hover .ic {
  transform: translateY(2px);
}
.kf-help__sticky {
  position: sticky;
  top: calc(var(--header-h) + 84px);
  display: grid;
  gap: 14px;
}
.kf-help__plan {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 14px 14px 16px;
}
.kf-help__plan figcaption {
  font-size: 13.5px;
  color: var(--ink-3);
  margin-top: 6px;
  line-height: 1.5;
}
.kf-help__plan figcaption .mono {
  display: block;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wood-700);
  margin-bottom: 2px;
}
.kf-call {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 20px;
  background: var(--ink);
  color: rgba(246, 245, 242, 0.7);
}
.kf-call__ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-inv);
  color: var(--wood);
}
.kf-call .h5 {
  color: var(--paper);
  margin-bottom: 4px;
}
.kf-call .small {
  color: rgba(246, 245, 242, 0.6);
}
.kf-call .link-arrow {
  color: var(--paper);
  margin-top: 8px;
  font-family: var(--f-mono);
  font-size: 14px;
}
.kf-call .link-arrow:hover {
  color: var(--wood-200);
}

/* Uspeh - šta sledi */
.kf-done {
  padding-block: clamp(36px, 5vw, 72px) var(--section);
  outline: none;
}
.kf-done__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4.3fr);
  gap: 48px clamp(32px, 5vw, 88px);
  align-items: start;
}
.kf-done .success-mark {
  margin-bottom: 28px;
}
.kf-done .h1 {
  max-width: 14ch;
  margin-bottom: 22px;
}
.kf-done .lead b {
  color: var(--ink);
  font-weight: 600;
}
.kf-next {
  display: grid;
  margin: 44px 0 40px;
  border-bottom: 1px solid var(--line);
}
.kf-next li {
  position: relative;
  display: grid;
  grid-template-columns: 40px minmax(120px, 170px) minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.kf-next li::before {
  content: "";
  position: absolute;
  left: 11.5px;
  top: 46px;
  bottom: -22px;
  width: 1px;
  background: var(--line-2);
}
.kf-next li:last-child::before {
  display: none;
}
.kf-next li.is-done::before {
  background: var(--ok);
}
.kf-next__dot {
  grid-row: 1 / span 2;
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--line-3);
  background: var(--paper);
}
.kf-next__dot .ic {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}
.kf-next li.is-done .kf-next__dot {
  background: var(--ok);
  border-color: var(--ok);
  color: #fff;
}
.kf-next li.is-now .kf-next__dot {
  border-color: var(--wood);
}
.kf-next li.is-now .kf-next__dot::after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wood);
  animation: kfBeat 1.8s var(--ease) infinite;
}
@keyframes kfBeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.6);
  }
}
.kf-next .mono {
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 12px;
  color: var(--ink-3);
  padding-top: 3px;
}
.kf-next li.is-now .mono {
  color: var(--wood-700);
}
.kf-next b {
  grid-column: 3;
  font-size: 18px;
  font-weight: 500;
  font-stretch: 106%;
  letter-spacing: -0.01em;
}
.kf-next p {
  grid-column: 3;
  color: var(--ink-3);
  font-size: 15px;
  max-width: 56ch;
}
.kf-done__cta {
  gap: 12px 20px;
}
.kf-done__side {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.kf-ticket--done .kf-ticket__head {
  align-items: center;
}
.kf-ticket--done .kf-sum > div {
  grid-template-columns: 128px minmax(0, 1fr);
}
.kf-ticket--done .kf-sum a {
  display: none;
}
.kf-ticket--done > .fine {
  padding: 16px 28px 24px;
  border-top: 1px dashed var(--line-3);
}

/* ---------- Krojna lista: responzivno ---------- */
@media (max-width: 1180px) {
  .kf__grid,
  .kf-done__grid {
    grid-template-columns: 1fr;
  }
  .kf-help {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 32px 40px;
    padding-top: 56px;
  }
  .kf-help__sticky {
    position: static;
    align-content: start;
  }
  .kf-done__side {
    position: static;
  }
  .kf-strip__id {
    display: none;
  }
}
@media (max-width: 1000px) {
  .kf-head__grid {
    grid-template-columns: 1fr;
  }
  .kf-head .h1 {
    max-width: 16ch;
  }
}
@media (max-width: 900px) {
  .kf-sec {
    grid-template-columns: 1fr;
  }
  .kf-sec__head {
    grid-template-columns: 58px minmax(0, 1fr);
    row-gap: 12px;
  }
  .kf-state {
    grid-column: 2;
    justify-self: start;
    margin-top: 0;
  }
  .kf-sec__no {
    width: 44px;
    height: 44px;
  }
  .kf-sec__body {
    grid-column: 1;
  }
  .kf-opts2,
  .kf-link {
    grid-template-columns: 1fr;
  }
  .kf-help {
    grid-template-columns: 1fr;
  }
  .kf-strip__lbl {
    display: none;
  }
  .kf-strip__steps a {
    padding: 0 8px 0 6px;
    gap: 6px;
  }
  .kf-svc__opts {
    padding-left: 16px;
  }
}
@media (max-width: 720px) {
  .kf-strip__in {
    height: 54px;
    gap: 10px;
  }
  .kf-strip__steps {
    gap: 0;
  }
  .kf-strip__go {
    width: 40px;
    padding: 0;
  }
  .kf-strip__go span {
    display: none;
  }
  .kf-tb {
    grid-template-columns: 1fr 1fr;
  }
  .kf-matcard {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }
  .kf-matcard__img {
    width: 72px;
    height: 72px;
  }
  .kf-matcard__buy {
    grid-column: 1 / -1;
    grid-template-columns: auto auto 1fr;
    align-items: baseline;
    justify-items: start;
    gap: 8px;
    text-align: left;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }
  .kf-matcard__buy [data-m="stock"] {
    justify-self: end;
  }
  .kf-matcard__u {
    margin: 0;
  }
  .kf-svc__main {
    grid-template-columns: 20px 36px minmax(0, 1fr);
    padding: 14px 12px;
    gap: 12px;
  }
  .kf-svc__no {
    display: none;
  }
  .kf-svc__ic {
    width: 36px;
    height: 36px;
  }
  .kf-svc__ic .ic {
    width: 18px;
    height: 18px;
  }
  .kf-svc__p {
    grid-column: 3;
    text-align: left;
    margin-top: -6px;
  }
  .kf-band {
    grid-template-columns: 20px 44px minmax(0, 1fr);
    row-gap: 6px;
  }
  .kf-band__sw {
    width: 44px;
  }
  .kf-band .stock,
  .kf-band__p {
    grid-column: 3;
    text-align: left;
  }
  .kf-band .stock {
    grid-row: 2;
  }
  .kf-band__p {
    grid-row: 2;
    justify-self: end;
    min-width: 0;
  }
  .kf-band--none {
    grid-template-columns: 20px minmax(0, 1fr);
  }
  .kf-sum {
    padding: 4px 18px;
  }
  .kf-sum > div {
    grid-template-columns: minmax(0, 1fr) auto;
    row-gap: 2px;
  }
  .kf-sum dd {
    grid-column: 1;
    grid-row: 2;
  }
  .kf-sum a {
    grid-row: 1;
    grid-column: 2;
  }
  .kf-ticket__head {
    padding: 22px 18px 18px;
  }
  .kf-ticket__meter {
    justify-items: start;
  }
  .kf-ticket__foot {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .kf-ticket__foot .btn {
    width: 100%;
  }
  .kf-ticket--done .kf-sum > div {
    grid-template-columns: 1fr;
  }
  .kf-ticket--done .kf-sum dd {
    grid-row: auto;
  }
  .kf-next li {
    grid-template-columns: 36px minmax(0, 1fr);
  }
  .kf-next .mono {
    grid-column: 2;
    grid-row: 1;
    padding: 0;
  }
  .kf-next b,
  .kf-next p {
    grid-column: 2;
  }
  .kf-next__dot {
    grid-row: 1 / span 3;
  }
  .kf-next li::before {
    top: 46px;
  }
  /* ručni unos - red kao kartica */
  .kf-rows thead {
    display: none;
  }
  .kf-rows,
  .kf-rows tbody {
    display: block;
  }
  .kf-rows tr {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) 44px 60px;
    grid-template-areas: "i n n n x" "l w q g e";
    gap: 6px 6px;
    padding: 10px 10px 12px;
    border-bottom: 1px solid var(--line-2);
  }
  .kf-rows td {
    display: grid;
    gap: 3px;
    padding: 0;
    border: 0;
    width: auto !important;
    text-align: left !important;
  }
  .kf-rows td[data-l]::before {
    content: attr(data-l);
    font-family: var(--f-mono);
    font-size: 9.5px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-4);
  }
  .kf-row__i {
    grid-area: i;
    align-self: end;
  }
  .kf-row__i::before {
    visibility: hidden;
  }
  .kf-row__i {
    place-content: end start;
    padding-bottom: 10px !important;
    font-size: 12px;
  }
  .kf-row__n {
    grid-area: n;
  }
  .kf-row__n::before {
    visibility: hidden;
  }
  .kf-row__x {
    grid-area: x;
    align-self: end;
  }
  .kf-row__l {
    grid-area: l;
  }
  .kf-row__w {
    grid-area: w;
  }
  .kf-row__q {
    grid-area: q;
  }
  .kf-row__g {
    grid-area: g;
    justify-items: start;
  }
  .kf-row__e {
    grid-area: e;
    justify-items: start;
  }
  .kf-in {
    border-color: var(--line-2);
    background: #fff;
    height: 40px;
  }
  .kf-in--num {
    text-align: left;
    padding: 0 8px;
  }
  .kf-row__i::before,
  .kf-row__n::before {
    content: "";
  }
  .kf-tot {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 420px) {
  .kf-tb {
    font-size: 12px;
  }
  .kf-tb > div {
    padding: 9px 10px;
  }
  .kf-pick__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 8px;
    max-height: 330px;
  }
  .kf-link__b2b {
    padding: 14px;
  }
}
.kf-state .ic {
  width: 12px;
  height: 12px;
  stroke-width: 2.4;
  margin-left: -2px;
}
@media (max-width: 560px) {
  .kf-pick__foot {
    flex-wrap: wrap;
  }
  .kf-pick__foot .link-arrow {
    white-space: nowrap;
  }
  .kf-cl {
    grid-template-columns: 22px 44px minmax(0, 1fr);
    row-gap: 4px;
  }
  .kf-cl img {
    width: 44px;
    height: 44px;
    grid-row: span 2;
  }
  .kf-cl__c {
    grid-row: span 2;
  }
  .kf-cl__t b {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .kf-cl__q {
    grid-column: 3;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    text-align: left;
  }
  .kf-opt {
    gap: 8px;
  }
}

/* ==========================================================================
   USLUGE - landing
   ========================================================================== */
.sv-hero {
  position: relative;
  padding-top: clamp(22px, 2.6vw, 36px);
  overflow: clip;
}
.sv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: -1px -1px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 62%);
}
.sv-hero > .container {
  position: relative;
}
.sv-hero .crumbs {
  margin-bottom: clamp(36px, 5vw, 80px);
}
.sv-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4.4fr);
  gap: 28px clamp(32px, 5vw, 96px);
  align-items: end;
}
.sv-hero__title {
  font-size: clamp(46px, 6.6vw, 116px);
  margin-top: 4px;
}
.sv-line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
  margin-bottom: -0.08em;
}
.sv-line > span {
  display: block;
  animation: svLine 1.2s var(--ease-out) both;
}
.sv-line:nth-child(2) > span {
  animation-delay: 0.12s;
}
@keyframes svLine {
  from {
    transform: translateY(105%);
  }
  to {
    transform: none;
  }
}
@keyframes svRise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.sv-hero__side {
  padding-bottom: 10px;
  animation: svRise 1s 0.35s var(--ease-out) both;
}
.sv-hero__side .lead {
  margin-bottom: 28px;
}
.sv-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Sekvenca: ploča → sečenje → kant → element */
.sv-seq {
  position: relative;
  display: grid;
  grid-template-columns: 2.1fr 3fr 3fr 4.4fr;
  gap: clamp(16px, 2.2vw, 36px);
  align-items: end;
  margin-top: clamp(48px, 6vw, 96px);
  padding-bottom: clamp(16px, 2vw, 32px);
}
.sv-seq__f {
  display: grid;
  gap: 14px;
  min-width: 0;
}
.sv-seq__dim {
  color: var(--ink-3);
}
.sv-seq__img {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--paper-2);
  color: var(--ink-3);
}
.sv-seq__f--4 .sv-seq__img {
  overflow: visible;
}
.sv-seq__f--4 .sv-seq__img img {
  position: relative;
  z-index: 0;
}
.sv-seq__f--1 .sv-seq__img {
  aspect-ratio: 3 / 4;
}
.sv-seq__f--2 .sv-seq__img {
  aspect-ratio: 4 / 5;
}
.sv-seq__f--3 .sv-seq__img {
  aspect-ratio: 5 / 7;
}
.sv-seq__f--4 .sv-seq__img {
  aspect-ratio: 5 / 6;
}
.sv-seq__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: svImg 1.4s var(--ease-out) both;
  animation-delay: calc(0.25s + var(--i) * 0.14s);
}
@keyframes svImg {
  from {
    opacity: 0;
    transform: scale(1.06);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.sv-seq__node {
  position: relative;
  height: 22px;
}
.sv-seq__node::before {
  content: "";
  position: absolute;
  left: 0;
  right: calc(-1 * clamp(16px, 2.2vw, 36px));
  top: 10px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  animation: svDraw 1.1s var(--ease-io) both;
  animation-delay: calc(0.6s + var(--i) * 0.22s);
}
.sv-seq__f:last-child .sv-seq__node::before {
  right: 0;
}
.sv-seq__node::after {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--wood);
  animation: pop 0.6s var(--ease-out) both;
  animation-delay: calc(0.7s + var(--i) * 0.22s);
}
@keyframes svDraw {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.sv-seq__cap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 10px;
  align-items: baseline;
}
.sv-seq__cap .mono:first-child {
  font-size: 11.5px;
  color: var(--wood-700);
}
.sv-seq__cap b {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  font-stretch: 108%;
  letter-spacing: -0.015em;
}
.sv-seq__s {
  grid-column: 2;
  font-size: 11.5px;
  color: var(--ink-3);
}

/* 01 - indeks usluga */
.sv-list {
  border-top: 1px solid var(--ink);
}
.sv-row {
  position: relative;
  display: grid;
  grid-template-columns: 40px 48px minmax(0, 4.4fr) minmax(
      0,
      2.2fr
    ) 120px 168px 44px;
  gap: 0 clamp(16px, 1.8vw, 28px);
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-2);
}
.sv-row::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
}
.sv-row:hover::after,
.sv-row:focus-visible::after {
  transform: scaleX(1);
}
.sv-row__no {
  font-size: 12px;
  color: var(--ink-4);
}
.sv-row__ic {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  transition:
    background-color var(--t),
    color var(--t),
    border-color var(--t);
}
.sv-row:hover .sv-row__ic {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.sv-row__main {
  display: grid;
  gap: 8px;
  min-width: 0;
}
.sv-row__name {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: clamp(23px, 2.1vw, 34px);
  font-weight: 450;
  font-stretch: 110%;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.sv-row__desc {
  font-size: 15px;
  color: var(--ink-3);
  max-width: 54ch;
  line-height: 1.5;
}
.sv-row__spec {
  display: grid;
  gap: 7px;
  font-size: 12px;
  color: var(--ink-2);
}
.sv-row__spec span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sv-row__spec span::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--wood);
  flex: none;
}
.sv-row__price {
  display: grid;
  gap: 2px;
}
.sv-row__price b {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.sv-row__price .mono {
  font-size: 11px;
  color: var(--ink-3);
}
.sv-row__img {
  display: block;
  width: 168px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}
.sv-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.sv-row:hover .sv-row__img img {
  transform: scale(1.07);
}
.sv-row__go {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  transition:
    background-color var(--t),
    color var(--t),
    border-color var(--t);
}
.sv-row__go .ic {
  width: 18px;
  height: 18px;
  transition: transform var(--t) var(--ease-out);
}
.sv-row:hover .sv-row__go {
  background: var(--wood);
  border-color: var(--wood);
  color: #fff;
}
.sv-row:hover .sv-row__go .ic {
  transform: translate(2px, -2px);
}

/* 02 - gantogram */
.sv-gantt {
  border: 1px solid var(--line-2);
  background: var(--paper);
}
.sv-gantt__head,
.sv-gantt__row {
  display: grid;
  grid-template-columns: minmax(240px, 3fr) minmax(0, 7.4fr);
}
.sv-gantt__head {
  background: var(--paper-2);
  border-bottom: 1px solid var(--ink);
}
.sv-gantt__lbl {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-content: center;
  gap: 1px 6px;
  padding: 14px 20px;
  border-right: 1px solid var(--line-2);
}
.sv-gantt__head .sv-gantt__lbl {
  display: flex;
  align-items: center;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.sv-gantt__lbl .mono {
  grid-row: span 2;
  font-size: 11px;
  color: var(--ink-4);
  padding-top: 3px;
}
.sv-gantt__lbl b {
  font-size: 15.5px;
  font-weight: 500;
  line-height: 1.3;
}
.sv-gantt__lbl small {
  font-size: 13px;
  color: var(--ink-3);
  line-height: 1.35;
}
.sv-gantt__days {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.sv-gantt__days span {
  padding: 14px 12px;
  border-left: 1px solid var(--line);
  font-size: 11px;
  color: var(--ink-3);
  white-space: nowrap;
}
.sv-gantt__days span:first-child {
  border-left: 0;
}
.sv-gantt__days b {
  color: var(--ink);
  font-weight: 500;
  margin-right: 6px;
}
.sv-gantt__row {
  border-bottom: 1px solid var(--line);
  transition: background-color var(--t-fast);
}
.sv-gantt__row:hover {
  background: var(--card);
}
.sv-gantt__track {
  position: relative;
  min-height: 64px;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0 calc(20% - 1px),
    var(--line) calc(20% - 1px) 20%
  );
}
.sv-gantt__bar {
  position: absolute;
  top: 50%;
  height: 28px;
  margin-top: -14px;
  left: calc(var(--a) / 5 * 100%);
  width: calc((var(--b) - var(--a)) / 5 * 100%);
  display: flex;
  align-items: center;
  padding: 0 8px;
  background: var(--ink);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 1s var(--ease-out);
  transition-delay: calc(0.15s + var(--i) * 0.13s);
}
.sv-gantt__bar .mono {
  font-size: 10.5px;
  color: var(--paper);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  transition-delay: calc(0.8s + var(--i) * 0.13s);
}
.sv-gantt.is-in .sv-gantt__bar,
.no-js .sv-gantt__bar {
  transform: scaleX(1);
}
.sv-gantt.is-in .sv-gantt__bar .mono {
  opacity: 1;
}
.sv-gantt__row--v .sv-gantt__bar {
  background: var(--wood-50);
  box-shadow: inset 0 0 0 1.5px var(--wood);
}
.sv-gantt__row--v .sv-gantt__bar .mono {
  color: var(--wood-700);
}
.sv-gantt__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 28px;
  padding: 14px 20px;
  background: var(--paper-2);
  font-size: 13px;
  color: var(--ink-3);
}
.sv-gantt__key {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.sv-gantt__key i {
  width: 20px;
  height: 10px;
  background: var(--ink);
}
.sv-gantt__key i.v {
  background: var(--wood-50);
  box-shadow: inset 0 0 0 1.5px var(--wood);
}
.sv-gantt__note {
  margin-left: auto;
  font-size: 11px;
  color: var(--ink-4);
}

/* 03 - mašine (tamno) */
.sv-mach {
  overflow: hidden;
}
.sv-mach__head {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4.4fr);
  gap: 24px clamp(32px, 5vw, 96px);
  align-items: end;
  margin-bottom: clamp(36px, 4.4vw, 64px);
}
.sv-mach__head .h2 {
  max-width: 16ch;
}
.sv-mach__side .lead {
  margin-bottom: 16px;
}
.sv-mach .ph-note {
  color: rgba(246, 245, 242, 0.5);
}
.sv-mach__track {
  --w: minmax(300px, calc((100% - 40px) / 3.15));
  gap: 20px;
}
.sv-m {
  display: grid;
  grid-template-rows: auto 1fr;
  background: rgba(246, 245, 242, 0.035);
  border: 1px solid var(--line-inv);
  transition: border-color var(--t);
}
.sv-m:hover {
  border-color: rgba(246, 245, 242, 0.32);
}
.sv-m__img {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0f1112;
}
.sv-m__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition:
    transform 1.4s var(--ease-out),
    opacity var(--t);
}
.sv-m:hover .sv-m__img img {
  transform: scale(1.05);
  opacity: 1;
}
.sv-m__no {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 4px 8px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
}
.sv-m__body {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px 20px 22px;
}
.sv-m__k {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--wood-200);
}
.sv-m__flag {
  color: rgba(246, 245, 242, 0.5);
  letter-spacing: 0.02em;
  text-transform: none;
}
.sv-m__model {
  font-size: 12px;
  color: rgba(246, 245, 242, 0.5);
}
.sv-m__model .ph {
  color: rgba(246, 245, 242, 0.5);
}
.sv-m__spec {
  margin-top: 8px;
  border-top: 1px solid var(--line-inv);
}
.sv-m__spec > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-inv);
  font-size: 14px;
}
.sv-m__spec dt {
  color: rgba(246, 245, 242, 0.58);
}
.sv-m__spec dd {
  color: var(--paper);
  font-size: 12.5px;
  text-align: right;
}
.sv-mach__ctrl .progress {
  background: var(--line-inv);
}
.sv-mach__ctrl .progress i {
  background: var(--paper);
}
.sv-mach .ibtn--line {
  border-color: var(--line-inv);
  color: var(--paper);
}
.sv-mach .ibtn--line:hover {
  border-color: var(--paper);
}

/* 04 - cene + računica */
.sv-price__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 48px clamp(40px, 6vw, 112px);
  align-items: start;
}
.sv-price__copy .lead {
  margin: 20px 0 32px;
}
.sv-ptable {
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.sv-ptable th {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
}
.sv-ptable td {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.sv-ptable td:first-child {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sv-ptable td:first-child .ic {
  width: 18px;
  height: 18px;
  color: var(--wood-600);
}
.sv-ptable td.mono {
  font-size: 12.5px;
  color: var(--ink-3);
}
.sv-ptable .num {
  text-align: right;
}
.sv-ptable td.num b {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.sv-ptable tbody tr {
  transition: background-color var(--t-fast);
}
.sv-ptable tbody tr:hover {
  background: var(--card);
}
.sv-ptable__inc {
  display: inline-block;
  font-size: 10.5px;
  padding: 3px 7px;
  background: var(--ok-bg);
  color: var(--ok);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sv-price__fine {
  margin-top: 16px;
}
.sv-calc {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: var(--card);
  border: 1px solid var(--line-2);
  color: var(--ink-3);
}
.sv-calc__head {
  padding: 24px 24px 18px;
  border-bottom: 1px solid var(--line);
}
.sv-calc__head .label {
  margin-bottom: 8px;
}
.sv-calc__in {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  padding: 20px 24px 24px;
}
.sv-calc__f {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
}
.sv-calc__f > label,
.sv-calc__f legend {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink);
}
.sv-calc__f legend {
  margin-bottom: 8px;
}
.sv-calc__f .qty {
  width: 100%;
}
.sv-calc__f .seg {
  display: flex;
}
.sv-calc__f .kf-seg {
  flex: 1;
}
.sv-calc__f .kf-seg > span {
  justify-content: center;
  width: 100%;
}
.sv-calc__sw {
  font-size: 14px;
  color: var(--ink);
}
.sv-calc__sw small {
  font-size: 11px;
  color: var(--ink-4);
}
.sv-calc__out {
  display: grid;
  gap: 14px;
  padding: 20px 24px 24px;
  background: var(--paper);
  border-top: 1px dashed var(--line-3);
}
.sv-calc__rows > div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  font-size: 14px;
  border-bottom: 1px dotted var(--line-3);
}
.sv-calc__rows dd {
  color: var(--ink);
  font-size: 13.5px;
}
.sv-calc__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}
.sv-calc__total .mono {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sv-calc__total b {
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 450;
  font-stretch: 110%;
  letter-spacing: -0.035em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.sv-calc__total small {
  font-size: 15px;
  color: var(--ink-3);
  letter-spacing: 0;
}
.sv-calc__total b.is-bump {
  animation: svBump 0.5s var(--ease-out);
}
@keyframes svBump {
  0% {
    opacity: 0.4;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

/* 05 - krojna lista (list crteža) */
.sv-kl__grid {
  display: grid;
  grid-template-columns: minmax(0, 6.4fr) minmax(0, 5fr);
  gap: 48px clamp(40px, 6vw, 112px);
  align-items: center;
}
.sv-sheet {
  display: grid;
  background: var(--card);
  border: 1px solid var(--ink);
  padding: 10px;
  box-shadow: var(--sh-1);
}
.sv-sheet__in {
  border: 1px solid var(--line-2);
  border-bottom: 0;
  padding: clamp(12px, 2vw, 28px);
}
.sv-sheet__tb {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-self: stretch;
  gap: 1px;
  background: var(--line-2);
  border: 1px solid var(--line-2);
  border-top-color: var(--ink);
  font-size: 11px;
}
.sv-sheet__tb > div {
  display: grid;
  gap: 1px;
  padding: 6px 12px 7px;
  background: var(--card);
}
.sv-sheet__tb dt {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.sv-sheet__tb dd {
  color: var(--ink);
}
.sv-sheet__tb .sv-sheet__tb-t {
  grid-column: 1 / -1;
  background: var(--paper-2);
}
.sv-kl__copy .lead {
  margin: 20px 0 28px;
}
.sv-kl__list {
  display: grid;
  border-top: 1px solid var(--line-2);
  margin-bottom: 32px;
}
.sv-kl__list li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  font-size: 15.5px;
  color: var(--ink-2);
}
.sv-kl__list .ic {
  color: var(--wood-600);
}
.sv-kl__cta {
  gap: 12px;
}

/* 06 - FAQ */
.sv-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 40px clamp(40px, 6vw, 112px);
  align-items: start;
}
.sv-faq__side .h2 {
  max-width: 12ch;
}
.sv-contact {
  display: grid;
  gap: 10px;
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--line-2);
  background: var(--card);
  max-width: 360px;
}
.sv-contact .label {
  margin-bottom: 2px;
}
.sv-contact__l {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  transition: color var(--t-fast);
}
.sv-contact__l .ic {
  width: 18px;
  height: 18px;
  color: var(--wood-600);
}
.sv-contact__l:hover {
  color: var(--wood-700);
}
.sv-contact__h {
  font-size: 12px;
  color: var(--ink-3);
}

@media (max-width: 1280px) {
  .sv-row {
    grid-template-columns: 40px 48px minmax(0, 1fr) 112px 132px 44px;
  }
  .sv-row__spec {
    display: none;
  }
  .sv-row__img {
    width: 132px;
  }
}
@media (max-width: 1000px) {
  .sv-hero__grid,
  .sv-mach__head,
  .sv-price__grid,
  .sv-kl__grid,
  .sv-faq__grid {
    grid-template-columns: 1fr;
  }
  .sv-calc {
    position: static;
  }
  .sv-gantt__head,
  .sv-gantt__row {
    grid-template-columns: minmax(200px, 3fr) minmax(0, 6fr);
  }
}
@media (max-width: 900px) {
  .sv-row {
    grid-template-columns: minmax(0, 1fr) 96px;
    grid-template-areas: "main img" "spec spec" "price go";
    gap: 16px 16px;
    padding: 22px 0;
  }
  .sv-row__no,
  .sv-row__ic {
    display: none;
  }
  .sv-row__main {
    grid-area: main;
    align-self: start;
  }
  .sv-row__img {
    grid-area: img;
    width: 96px;
    align-self: start;
  }
  .sv-row__spec {
    grid-area: spec;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
  }
  .sv-row__price {
    grid-area: price;
    grid-template-columns: auto auto;
    align-items: baseline;
    justify-content: start;
    gap: 8px;
  }
  .sv-row__go {
    grid-area: go;
    justify-self: end;
  }
  .sv-gantt__head .sv-gantt__lbl {
    display: none;
  }
  .sv-gantt__head,
  .sv-gantt__row {
    grid-template-columns: 1fr;
  }
  .sv-gantt__lbl {
    border-right: 0;
    padding: 14px 14px 6px;
  }
  .sv-gantt__track {
    min-height: 44px;
    margin: 0 0 8px;
  }
  .sv-gantt__days span {
    padding: 10px 6px;
    font-size: 10px;
    text-align: center;
  }
  .sv-gantt__days b {
    display: block;
    margin: 0;
  }
  .sv-gantt__note {
    margin-left: 0;
    width: 100%;
  }
}
@media (max-width: 720px) {
  .sv-seq {
    grid-template-columns: 1fr 1fr;
    gap: 28px 12px;
    align-items: end;
  }
  .sv-seq__node {
    display: none;
  }
  .sv-seq__f--1 .sv-seq__img {
    aspect-ratio: 4 / 5;
  }
  .sv-seq__f--2 .sv-seq__img {
    aspect-ratio: 4 / 5.6;
  }
  .sv-seq__f--3 .sv-seq__img,
  .sv-seq__f--4 .sv-seq__img {
    aspect-ratio: 4 / 5;
  }
  .sv-seq__f--3 {
    margin-top: -40px;
  }
  .sv-seq__cap {
    grid-template-columns: 1fr;
  }
  .sv-seq__s {
    grid-column: 1;
  }
  .sv-seq__dim .dim {
    font-size: 10px;
  }
  .sv-hero__cta .btn {
    flex: 1 1 auto;
  }
  .sv-calc__in {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .sv-calc__head,
  .sv-calc__out {
    padding-inline: 18px;
  }
  .sv-mach__track {
    --w: 84%;
  }
  .sv-sheet__tb {
    grid-template-columns: 1fr 1fr;
  }
  .sv-ptable td:nth-child(2),
  .sv-ptable th:nth-child(2) {
    display: none;
  }
  .su-kl__ex .dtable td,
  .su-kl__ex .dtable th {
    white-space: nowrap;
    padding: 10px 8px;
  }
  .sv-ptable td:first-child span {
    font-size: 14.5px;
  }
  .sv-kl__cta .btn {
    flex: 1 1 auto;
  }
}

/* ==========================================================================
   USLUGA - Kantovanje
   ========================================================================== */
.su-crumbs {
  padding-block: 20px;
}
.su-hero {
  padding-bottom: clamp(48px, 6vw, 96px);
  overflow: clip;
}
.su-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 40px clamp(32px, 5vw, 88px);
  align-items: center;
}
.su-hero__copy {
  padding-top: clamp(8px, 2vw, 32px);
}
.su-hero__title {
  font-size: clamp(38px, 4.8vw, 76px);
  max-width: 11ch;
  margin-bottom: 22px;
}
.su-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 40px;
}
.su-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ink);
}
.su-facts > div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
}
.su-facts > div:nth-child(odd) {
  padding-right: 16px;
  border-right: 1px solid var(--line-2);
}
.su-facts > div:nth-child(even) {
  padding-left: 20px;
}
.su-facts dt {
  font-family: var(--f-mono);
  font-size: 10.5px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-4);
}
.su-facts dd {
  font-size: 17px;
  color: var(--ink);
}
.su-hero__media {
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  margin-right: calc(var(--gutter) * -1);
}
@media (min-width: 1560px) {
  .su-hero__media {
    margin-right: calc((100vw - var(--container)) / -2 - var(--gutter) + 8px);
  }
}
.su-hero__dimh {
  grid-column: 2;
  grid-row: 1;
  padding: 0 var(--gutter) 12px 0;
}
.su-hero__dimv {
  grid-column: 1;
  grid-row: 2;
  display: flex;
}
.su-hero__img {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  aspect-ratio: 1.24;
  color: var(--ink-3);
}
.su-hero__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: svImg 1.6s 0.1s var(--ease-out) both;
}
.su-hero__cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  gap: 16px;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 11.5px;
}
.su-hero__cap span + span {
  color: var(--ink-3);
  padding-left: 16px;
  border-left: 1px solid var(--line-2);
}

.su-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 30;
  background: var(--paper);
  border-block: 1px solid var(--line);
}
.su-nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.su-nav ul {
  display: flex;
  gap: clamp(18px, 2vw, 30px);
  overflow-x: auto;
  scrollbar-width: none;
}
.su-nav ul::-webkit-scrollbar {
  display: none;
}
.su-nav ul a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 56px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink-3);
  white-space: nowrap;
  transition: color var(--t-fast);
}
.su-nav ul a .mono {
  font-size: 10.5px;
  color: var(--ink-4);
}
.su-nav ul a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t) var(--ease-out);
}
.su-nav ul a:hover,
.su-nav ul a.is-on {
  color: var(--ink);
}
.su-nav ul a.is-on::after {
  transform: scaleX(1);
}
.su-nav__cta {
  flex: none;
}

.su-sec {
  padding-block: clamp(56px, 7vw, 104px);
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 56px;
}
.su-sec__grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 9fr);
  gap: 24px clamp(24px, 4vw, 72px);
}
.su-sec__head {
  position: sticky;
  top: calc(var(--header-h) + 88px);
  align-self: start;
  display: grid;
  gap: 10px;
  align-content: start;
}
.su-sec__no {
  font-size: 12px;
  color: var(--wood-700);
}
.su-sec__sub {
  font-size: 14.5px;
  color: var(--ink-3);
  max-width: 28ch;
}
.su-sec__body {
  min-width: 0;
}

.su-about {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
}
.su-about__side .label {
  margin-bottom: 12px;
}
.su-pick {
  border-top: 1px solid var(--line-2);
}
.su-pick li {
  display: grid;
  grid-template-columns: 52px 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.45;
}
.su-pick b {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}
.su-pick__band {
  position: relative;
  height: 30px;
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px var(--line-3);
}
.su-pick__band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: var(--wood);
}
.su-pick__band--1::after {
  width: 2px;
}
.su-pick__band--2::after {
  width: 4px;
}
.su-pick__band--3::after {
  width: 8px;
}

.su-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-2);
  border-left: 1px solid var(--line-2);
}
.su-step {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 20px 20px 26px;
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  background: var(--card);
}
.su-step__no {
  font-size: 12px;
  color: var(--wood-700);
}
.su-step__svg {
  width: 100%;
  height: auto;
  margin: 2px 0 8px;
  border: 1px solid var(--line);
}
.su-step p {
  font-size: 14.5px;
  color: var(--ink-3);
  line-height: 1.5;
}
.xs-paper {
  fill: var(--paper);
}
.xs-core {
  stroke: var(--ink-3);
  stroke-width: 1;
}
.xs-dot {
  fill: var(--ink-4);
  opacity: 0.55;
}
.xs-skin {
  stroke: var(--wood-600);
  stroke-width: 2.4;
  fill: none;
}
.xs-cut {
  fill: var(--err-bg);
  stroke: var(--err);
  stroke-width: 0.8;
  stroke-dasharray: 2 2;
}
.xs-tool {
  fill: none;
  stroke: var(--ink-2);
  stroke-width: 1.2;
}
.xs-arr {
  fill: none;
  stroke: var(--ink-2);
  stroke-width: 1.2;
}
.xs-glue {
  fill: var(--wood-200);
}
.xs-glue-l {
  fill: none;
  stroke: var(--wood-200);
  stroke-width: 3;
}
.xs-band {
  fill: var(--wood);
}
.xs-lead {
  stroke: var(--ink-3);
  stroke-width: 0.8;
}
.xs-t {
  font-family: var(--f-mono);
  font-size: 9.5px;
  fill: var(--ink-2);
}

.su-matrix-wrap {
  background: var(--card);
}
.su-matrix {
  font-size: 14.5px;
}
.su-matrix th {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  text-align: left;
  padding: 12px 16px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line-2);
  white-space: nowrap;
}
.su-matrix td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.su-matrix tbody tr:last-child td {
  border-bottom: 0;
}
.su-matrix tbody tr {
  transition: background-color var(--t-fast);
}
.su-matrix tbody tr:hover {
  background: #fff;
}
.su-matrix .c {
  text-align: center;
}
.su-matrix td.mono {
  font-size: 12.5px;
  color: var(--ink-2);
  white-space: nowrap;
}
.su-matrix__m {
  display: flex;
  align-items: center;
  gap: 14px;
}
.su-matrix__m img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  flex: none;
}
.su-matrix__m b {
  font-weight: 500;
}
.su-matrix__note {
  font-size: 13.5px;
  color: var(--ink-3);
  min-width: 200px;
}
.su-mk {
  font-family: var(--f-mono);
  font-size: 16px;
  font-style: normal;
}
.su-mk--s {
  color: var(--ink);
}
.su-mk--d {
  color: var(--wood-600);
}
.su-mk--n {
  color: var(--ink-4);
}
.su-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-3);
}
.su-legend i {
  margin-right: 8px;
}

.su-tech {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.su-spec td small {
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-3);
}
.su-xs-fig {
  position: sticky;
  top: calc(var(--header-h) + 88px);
  background: var(--card);
  border: 1px solid var(--line);
  padding: 16px 16px 12px;
}
.su-xs-fig__ctrl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 8px;
}
.su-xs-fig figcaption {
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 4px;
}
.su-xs {
  width: 100%;
  height: auto;
  font-family: var(--f-mono);
  overflow: visible;
}
.su-xs .xs-dot {
  opacity: 0.5;
}
.xs-board {
  stroke: var(--ink-3);
  stroke-width: 1;
}
.xs-dec {
  fill: var(--wood-600);
}
.xs-break {
  stroke: var(--card);
  stroke-width: 3;
  stroke-dasharray: 12 5;
}
.xs-gl {
  fill: var(--wood-700);
  transition: width 0.6s var(--ease-out);
}
.xs-kant {
  fill: var(--wood);
  transition: d 0.6s var(--ease-out);
}
.xs-dimh line,
.xs-dimv line {
  stroke: var(--ink-3);
  stroke-width: 1;
  transition:
    x1 0.6s var(--ease-out),
    x2 0.6s var(--ease-out);
}
.xs-dimh text,
.xs-dimv text {
  font-size: 11px;
  fill: var(--ink-2);
}
.xs-bg {
  fill: var(--card);
}
.xs-call path {
  fill: none;
  stroke: var(--ink-3);
  stroke-width: 0.8;
  transition: d 0.6s var(--ease-out);
}
.xs-call text {
  font-size: 11px;
  fill: var(--ink);
}

.su-kl {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.su-kl__copy .body-l {
  color: var(--ink-2);
  margin-bottom: 24px;
  max-width: 56ch;
}
.su-kl__copy .body-l b {
  color: var(--ink);
}
.su-kl__ex {
  margin-bottom: 24px;
}
.su-kl__ex .dtable td {
  padding: 12px 14px;
}
.su-kl__ex .dtable th {
  padding: 10px 14px;
}
.su-kl__ex .su-k {
  color: var(--wood-700);
  font-weight: 500;
}
.su-kl__cta {
  gap: 12px;
}
.su-kl__fig {
  background: var(--card);
  border: 1px solid var(--line);
  padding: 18px 14px 12px;
}
.su-kl__fig figcaption {
  font-size: 11px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 6px;
}
.su-note {
  width: 100%;
  height: auto;
  font-family: var(--f-mono);
}

.su-price {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
}
.su-price__list {
  border-top: 1px solid var(--ink);
}
.su-price__list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-2);
}
.su-price__t {
  display: grid;
  gap: 2px;
}
.su-price__t b {
  font-size: 17px;
  font-weight: 500;
}
.su-price__t span {
  font-size: 13.5px;
  color: var(--ink-3);
}
.su-price__p {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.su-price__p b {
  font-size: 26px;
  font-weight: 450;
  font-stretch: 108%;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.su-price__p .mono {
  font-size: 11px;
  color: var(--ink-3);
}
.su-price__add {
  background: var(--wood-50);
  padding-inline: 14px !important;
  margin-top: -1px;
}
.su-price__ex {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: var(--card);
  border: 1px solid var(--line);
}
.su-price__eq {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: baseline;
  padding: 8px 0;
  border-bottom: 1px dotted var(--line-3);
  font-size: 14px;
  color: var(--ink-3);
}
.su-price__eq b {
  font-size: 16px;
  color: var(--ink);
  font-weight: 500;
}
.su-price__ex .link-arrow {
  justify-self: start;
  font-size: 14px;
  margin-top: 4px;
}

.su-cta {
  position: relative;
  overflow: hidden;
}
.su-cta__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 4.4fr);
  gap: 48px clamp(40px, 6vw, 112px);
  align-items: end;
}
.su-cta__copy .h2 {
  max-width: 15ch;
}
.su-cta__copy .lead {
  margin: 20px 0 32px;
}
.su-cta__btns {
  gap: 12px;
}
.su-cta__other .label {
  color: rgba(246, 245, 242, 0.5);
  margin-bottom: 12px;
}
.su-cta__other ul {
  border-top: 1px solid var(--line-inv);
}
.su-cta__other a {
  display: grid;
  grid-template-columns: 28px 22px 1fr 18px;
  gap: 12px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-inv);
  font-size: 16px;
  color: rgba(246, 245, 242, 0.86);
  transition:
    color var(--t-fast),
    padding var(--t) var(--ease-out);
}
.su-cta__other a .mono {
  font-size: 11px;
  color: rgba(246, 245, 242, 0.42);
}
.su-cta__other a .ic {
  width: 20px;
  height: 20px;
  color: var(--wood);
}
.su-cta__other a .ic:last-child {
  width: 16px;
  height: 16px;
  color: rgba(246, 245, 242, 0.5);
  transition: transform var(--t) var(--ease-out);
}
.su-cta__other a:hover {
  color: #fff;
  padding-left: 6px;
}
.su-cta__other a:hover .ic:last-child {
  transform: translateX(4px);
  color: var(--paper);
}

@media (max-width: 1180px) {
  .su-hero__grid {
    grid-template-columns: 1fr;
  }
  .su-hero__media {
    margin-right: 0;
  }
  .su-steps {
    grid-template-columns: 1fr 1fr;
  }
  .su-tech,
  .su-kl,
  .su-price,
  .su-about {
    grid-template-columns: 1fr;
  }
  .su-xs-fig {
    position: static;
  }
  .su-cta__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 900px) {
  .su-sec__grid {
    grid-template-columns: 1fr;
  }
  .su-sec__head {
    position: static;
  }
  .su-nav__cta {
    display: none;
  }
  .su-nav ul a {
    height: 50px;
  }
}
@media (max-width: 720px) {
  .su-hero__media {
    grid-template-columns: 1fr;
    margin-inline: calc(var(--gutter) * -1);
  }
  .su-hero__dimv,
  .su-hero__dimh {
    display: none;
  }
  .su-hero__img {
    grid-column: 1;
    aspect-ratio: 1.1;
  }
  .su-hero__img .crop {
    display: none;
  }
  .su-hero__cta .btn {
    flex: 1 1 auto;
  }
  .su-steps {
    grid-template-columns: 1fr;
  }
  .su-matrix__note {
    display: none;
  }
  .su-matrix td,
  .su-matrix th {
    padding: 10px 10px;
  }
  .su-matrix__m {
    gap: 10px;
  }
  .su-matrix__m img {
    width: 36px;
    height: 36px;
  }
  .su-matrix__m b {
    font-size: 13.5px;
  }
  .su-kl__cta .btn,
  .su-cta__btns .btn {
    flex: 1 1 auto;
  }
  .su-price__eq {
    grid-template-columns: 1fr auto;
  }
  .su-price__eq > span:nth-child(2) {
    display: none;
  }
}
.xs-gl.is-pur {
  fill: var(--wood-200);
}

/* Ispravke horizontalnog prelivanja na mobilnom */
.su-nav__in {
  min-width: 0;
}
.su-nav ul {
  flex: 1 1 auto;
  min-width: 0;
}
.sv-mach__track {
  min-width: 0;
}
@media (max-width: 760px) {
  .su-matrix { table-layout: fixed; width: 100%; font-size: 12px; }
  .su-matrix th, .su-matrix td { white-space: normal; padding-inline: 6px; word-break: break-word; }
}
.su-kl, .su-kl > * { min-width: 0; }
.su-kl svg, .su-kl__fig svg { max-width: 100%; height: auto; }
