/* sofis - custom styles (load after style.css) */

/* ---------- fonts ---------- */

@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plex/IBMPlexSans-Regular-Latin1.woff2") format("woff2");
  unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plex/IBMPlexSans-Regular-Latin2.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plex/IBMPlexSans-SemiBold-Latin1.woff2") format("woff2");
  unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/plex/IBMPlexSans-SemiBold-Latin2.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plex/IBMPlexMono-Regular-Latin1.woff2") format("woff2");
  unicode-range: U+0000, U+000D, U+0020-007E, U+00A0-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2013-2014, U+2018-201A, U+201C-201E, U+2020-2022, U+2026, U+2030, U+2039-203A, U+2044, U+2074, U+20AC, U+2122, U+2212, U+FB01-FB02;
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/plex/IBMPlexMono-Regular-Latin2.woff2") format("woff2");
  unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- vars ---------- */
:root {
  --s-green: #4dd964;
  --s-green-text: #17803a;
  --s-green-hover: #11662e;
  --s-green-soft: #e8f7eb;
  --s-navy: #354b65;
  --s-navy-dark: #22334a;
  --s-ink: #1f2933;
  --s-muted: #52606d;
  --s-line: #dde3e8;
  --s-bg: #ffffff;
  --s-bg-soft: #f4f6f5;
  --s-on-dark: #ffffff;
  --s-on-dark-muted: #c9d3dd;

  --s-font: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
  --s-mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  --s-radius: 4px;
  --s-section: clamp(56px, 8vw, 104px);
  --s-measure: 68ch;

  --bs-body-font-family: var(--s-font);
  --bs-body-color: var(--s-ink);
}

/* ---------- base ---------- */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--s-font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--s-ink);
  background: var(--s-bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6,
p, li, a, button, input, textarea, select {
  font-family: var(--s-font);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--s-ink);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-transform: none;
}
h1 { font-size: clamp(34px, 5vw, 56px); letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 3.4vw, 40px); }
h3 { font-size: clamp(20px, 2vw, 24px); }
h4 { font-size: 18px; }

p { margin-bottom: 1em; }
p, li { max-width: var(--s-measure); }
.text-center p, .text-center li { margin-left: auto; margin-right: auto; }

strong, b { font-weight: 600; }

::selection { background: var(--s-green); color: var(--s-ink); }

/* ---------- template overrides ---------- */
/* container na mobitelu */
@media only screen and (max-width: 767px) {
  .container { width: 100%; max-width: 100%; padding-left: 20px; padding-right: 20px; }
}

.section-ptb { padding: var(--s-section) 0; }
.section-pt  { padding-top: var(--s-section); }
.section-pb  { padding-bottom: var(--s-section); }

*:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--s-green) !important;
  outline-offset: 2px;
}

.hero-slider-1 .single-slide { height: auto; min-height: 0; padding: 150px 0 80px; }
@media only screen and (max-width: 991px) {
  .hero-slider-1 .single-slide { padding: 120px 0 56px; }
  .hero-slider-1 .single-slide .slider-inner-image { margin-top: 32px; text-align: center; }
}
.hero-slider-1 .single-slide .slider-text-info h4 { font-family: var(--s-mono); }
.hero-slider-1 .single-slide .slider-text-info h1 { font-family: var(--s-font); }

/* style.css h2 ima !important */
.main-wrapper .container h2 {
  color: var(--s-ink) !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
}
.main-wrapper .s-dark .container h2,
.main-wrapper .s-cta .container h2 { color: var(--s-on-dark) !important; }

/* meanmenu */
@media only screen and (max-width: 991px) {
  .main-menu { display: none; }
}

img, svg { max-width: 100%; height: auto; }

.s-skip {
  position: absolute; left: 12px; top: -60px; z-index: 10000;
  background: var(--s-ink); color: #fff; padding: 10px 16px; border-radius: var(--s-radius);
}
.s-skip:focus { top: 12px; color: #fff; }

@media only screen and (max-width: 767px) { .logo { margin-left: 0 !important; } }

/* ---------- buttons ---------- */
a { color: var(--s-green-text); text-underline-offset: 3px; }
a:hover { color: var(--s-green-hover); }
.main-wrapper p a, .s-prose a { text-decoration: underline; }

.s-btn,
.default-btn,
.perfect-start-aera .get-started-button .start-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 24px;
  font-family: var(--s-font);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  background: var(--s-green-text);
  border: 2px solid var(--s-green-text);
  border-radius: var(--s-radius);
  text-decoration: none;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.s-btn:hover,
.default-btn:hover,
.perfect-start-aera .get-started-button .start-btn:hover {
  color: #fff;
  background: var(--s-green-hover);
  border-color: var(--s-green-hover);
}

.s-btn--ghost {
  color: var(--s-ink);
  background: transparent;
  border-color: var(--s-ink);
}
.s-btn--ghost:hover { color: #fff; background: var(--s-ink); border-color: var(--s-ink); }

.s-dark .s-btn { color: var(--s-ink); background: var(--s-green); border-color: var(--s-green); }
.s-dark .s-btn:hover { color: var(--s-ink); background: #fff; border-color: #fff; }

.s-link {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid var(--s-green);
  padding-bottom: 2px;
}

/* ---------- header ---------- */
.header-area { background: rgba(255, 255, 255, .96); }
.main-menu ul li { margin-right: 32px; }
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li { margin-right: 20px; }
}
.main-menu ul li a {
  font-family: var(--s-font);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--s-ink);
}
.main-menu ul li a:hover,
.main-menu ul li.active > a,
.main-menu ul li a[aria-current="page"] { color: var(--s-green-text); }
.main-menu ul li a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--s-green); }
.main-menu ul li .sub-menu { width: 240px; border-radius: 0 0 var(--s-radius) var(--s-radius); }
.main-menu ul li .sub-menu li > a { text-transform: none; letter-spacing: 0; font-weight: 400; }

.main-menu ul li:focus-within .sub-menu { visibility: visible; opacity: 1; }

.mobile-menu .mean-bar .mean-nav,
.mobile-menu .mean-bar .mean-nav > ul li .sub-menu { background-color: var(--s-navy-dark); }
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::before,
.mobile-menu .mean-bar .meanmenu-reveal span.menu-bar::after { background-color: var(--s-ink); }

/* ---------- sections ---------- */
.bg-grey, .s-soft { background-color: var(--s-bg-soft); }

.s-dark {
  background: var(--s-navy-dark);
  color: var(--s-on-dark-muted);
}
.s-dark h1, .s-dark h2, .s-dark h3, .s-dark h4 { color: var(--s-on-dark); }
.s-dark a:not(.s-btn) { color: var(--s-green); }

.s-eyebrow,
.section-title h4 {
  display: inline-block;
  font-family: var(--s-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--s-navy);
  margin: 0 0 14px;
}
.s-dark .s-eyebrow { color: var(--s-green); }

.section-title h3 {
  font-family: var(--s-font);
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 600;
  text-transform: none;
}
.section-title h3 span { color: var(--s-green-text); }

.s-head { max-width: 760px; margin-bottom: 48px; }
.s-head p:not(.s-eyebrow) { color: var(--s-muted); font-size: 19px; }
.s-dark .s-head p:not(.s-eyebrow) { color: var(--s-on-dark-muted); }

/* ---------- components ---------- */

/* hero */
.s-hero { padding: 90px 0 var(--s-section); border-bottom: 1px solid var(--s-line); }
.s-hero h1 { max-width: 16ch; margin-bottom: 24px; }
.s-hero h1 em { font-style: normal; color: var(--s-green-text); }
.s-hero .s-lead { font-size: clamp(18px, 1.6vw, 21px); color: var(--s-muted); max-width: 56ch; margin-bottom: 32px; }
.s-hero__actions { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: center; }
@media only screen and (max-width: 991px) { .s-hero { padding-top: 120px; } }

.s-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 24px; border-top: 1px solid var(--s-line); }
@media only screen and (max-width: 479px) { .s-stats { grid-template-columns: 1fr; } }
.s-stat { padding: 24px 24px 24px 0; border-bottom: 1px solid var(--s-line); }
.s-stat__num { display: block; font-family: var(--s-mono); font-size: clamp(32px, 4vw, 44px); line-height: 1; color: var(--s-ink); margin-bottom: 10px; }
.s-stat__label { display: block; font-size: 15px; color: var(--s-muted); max-width: 28ch; }
.s-dark .s-stats, .s-dark .s-stat { border-color: rgba(255,255,255,.15); }
.s-dark .s-stat__num { color: var(--s-green); }

.s-list { list-style: none; margin: 0 0 1em; padding: 0; }
.s-list li { position: relative; padding-left: 20px; margin-bottom: 10px; }
.s-list li::before { content: ""; position: absolute; left: 0; top: .6em; width: 7px; height: 7px; background: var(--s-green); }

/* toc */
.s-hero--page h1 { max-width: 22ch; }
.s-toc { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--s-line); }
.s-toc ul { list-style: none; margin: 0 !important; padding: 0; display: flex; flex-wrap: wrap; gap: 10px 12px; }
.s-toc li { margin: 0 !important; max-width: none; }
.s-toc a { display: inline-block; padding: 8px 14px; font-size: 15px; color: var(--s-ink); text-decoration: none; border: 1px solid var(--s-line); border-radius: var(--s-radius); background: #fff; }
.s-toc a:hover { color: var(--s-green-text); border-color: var(--s-green-text); }
[id] { scroll-margin-top: 90px; }

/* steps */
.s-steps { list-style: none; margin: 0; padding: 0; counter-reset: s-step; }
.s-steps > li {
  counter-increment: s-step;
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 8px 24px;
  padding: 28px 0;
  border-top: 1px solid var(--s-line);
  max-width: none;
}
.s-steps > li::before {
  content: counter(s-step, decimal-leading-zero);
  grid-row: span 2;
  font-family: var(--s-mono);
  font-size: 28px;
  line-height: 1;
  color: var(--s-green-text);
}
.s-steps h3 { margin: 0; font-size: 20px; }
.s-steps p { margin: 0; color: var(--s-muted); }
.s-steps .s-tag { justify-self: start; }
.s-dark .s-steps > li { border-color: rgba(255,255,255,.15); }
.s-dark .s-steps > li::before { color: var(--s-green); }
.s-dark .s-steps p { color: var(--s-on-dark-muted); }

.s-tag {
  display: inline-block;
  font-family: var(--s-mono);
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 3px 8px;
  border: 1px solid currentColor;
  border-radius: 2px;
  color: var(--s-navy);
}
.s-tag--green { color: var(--s-green-text); background: var(--s-green-soft); border-color: transparent; }

.s-block {
  height: 100%;
  padding: 28px 28px 28px 24px;
  border-left: 3px solid var(--s-green);
  background: var(--s-bg);
}
.s-soft .s-block { background: var(--s-bg); }
.s-block h3 { font-size: 21px; margin-bottom: 10px; }
.s-block h3 a { color: var(--s-ink); text-decoration: none; }
.s-block h3 a:hover { color: var(--s-green-text); }
.s-block p { color: var(--s-muted); margin-bottom: 14px; }
.s-block .s-meta { font-family: var(--s-mono); font-size: 13px; color: var(--s-navy); letter-spacing: .02em; }

.s-split { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: 48px 72px; align-items: start; }
@media only screen and (max-width: 991px) { .s-split { grid-template-columns: 1fr; } }
.s-sticky { position: sticky; top: 110px; }
@media only screen and (max-width: 991px) { .s-sticky { position: static; } }

.s-quote { margin: 0; padding: 0 0 0 24px; border-left: 3px solid var(--s-green); }
.s-quote p { font-size: 19px; color: var(--s-ink); }
.s-quote footer { font-size: 15px; color: var(--s-muted); }
.s-quote cite { font-style: normal; font-weight: 600; color: var(--s-ink); }

/* faq */
.s-faq { border-top: 1px solid var(--s-line); }
.s-faq details { border-bottom: 1px solid var(--s-line); }
.s-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  font-weight: 600;
  font-size: 18px;
  color: var(--s-ink);
}
.s-faq summary::-webkit-details-marker { display: none; }
.s-faq summary::after {
  content: "+";
  position: absolute; right: 4px; top: 16px;
  font-family: var(--s-mono); font-size: 24px; color: var(--s-green-text);
}
.s-faq details[open] summary::after { content: "\2212"; }
.s-faq details > div { padding: 0 0 20px; color: var(--s-muted); }

/* cta */
.s-cta { padding: var(--s-section) 0; background: var(--s-navy-dark); color: var(--s-on-dark-muted); }
.s-cta h2 { color: #fff; max-width: 22ch; }
.s-cta .s-eyebrow { color: var(--s-green); }
.s-cta a:not(.s-btn) { color: var(--s-green); }
.s-cta a:not(.s-btn):hover { color: #fff; }
.s-cta__inner { display: flex; flex-wrap: wrap; gap: 24px 48px; align-items: end; justify-content: space-between; }
.s-cta .s-btn { color: var(--s-ink); background: var(--s-green); border-color: var(--s-green); }
.s-cta .s-btn:hover { background: #fff; border-color: #fff; }

/* stari cta */
.perfect-start-aera { background: var(--s-bg-soft); }
.perfect-start-aera .perfect-start-inner p { font-family: var(--s-font); font-weight: 600; letter-spacing: -0.01em; color: var(--s-ink); }

.s-figure { margin: 0; }
.s-figure img { display: block; width: 100%; border: 1px solid var(--s-line); border-radius: var(--s-radius); background: #fff; }
.s-figure figcaption { font-size: 14px; color: var(--s-muted); margin-top: 10px; }

/* radovi */
.s-case__img { display: block; border: 1px solid var(--s-line); border-radius: var(--s-radius); overflow: hidden; background: #fff; }
.s-case__img img { display: block; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; transition: transform .3s ease; }
.s-case__img:hover img { transform: scale(1.02); }
.s-case__meta { font-family: var(--s-mono); font-size: 13px; color: var(--s-muted); margin: 16px 0 6px; }
.s-case__title { font-size: 20px; margin: 0; }
.s-case__title a { color: var(--s-ink); text-decoration: none; }
.s-case__title a:hover { color: var(--s-green-text); }

/* breadcrumb */
.s-crumbs { font-family: var(--s-mono); font-size: 13px; color: var(--s-muted); margin-bottom: 20px; }
.s-crumbs ol { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.s-crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--s-line); }
.s-crumbs a { color: var(--s-muted); text-decoration: none; }
.s-crumbs a:hover { color: var(--s-green-text); }

/* ---------- forms ---------- */
.s-form { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 24px; }
.s-form .s-full { grid-column: 1 / -1; }
@media only screen and (max-width: 767px) { .s-form { grid-template-columns: 1fr; } }

.s-field label,
.s-field legend {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--s-ink);
  margin-bottom: 6px;
}
.s-field .s-hint { font-weight: 400; color: var(--s-muted); }
.s-field input[type="text"],
.s-field input[type="email"],
.s-field input[type="tel"],
.s-field input[type="url"],
.s-field textarea,
.contact-form-warp input,
.contact-form-warp textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  font-family: var(--s-font);
  font-size: 16px;            /* iOS zoom */
  color: var(--s-ink);
  background: #fff;
  border: 1px solid #aeb8c2;
  border-radius: var(--s-radius);
}
.s-field textarea, .contact-form-warp textarea { min-height: 140px; resize: vertical; }
.s-field input:focus, .s-field textarea:focus,
.contact-form-warp input:focus, .contact-form-warp textarea:focus { border-color: var(--s-green-text); }

.s-field fieldset { border: 0; margin: 0; padding: 0; }
.s-checks { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.s-check { display: inline-flex; align-items: center; gap: 8px; font-weight: 400; font-size: 16px; cursor: pointer; }
.s-check input { width: 20px; height: 20px; accent-color: var(--s-green-text); }

/* honeypot */
.s-hp { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }

.s-notice { display: none; margin: 0 0 24px; padding: 14px 16px; border-left: 3px solid var(--s-green); background: var(--s-green-soft); color: var(--s-ink); }
.s-notice:target { display: block; }
.s-notice p { margin: 0 !important; }
.s-notice--err { border-left-color: #b42318; background: #fdecea; }
.s-form-note { font-size: 14px; color: var(--s-muted); }

/* kontakt */
.s-contact { list-style: none; margin: 0; padding: 0; }
.s-contact li { padding: 16px 0; border-top: 1px solid var(--s-line); max-width: none; }
.s-contact li:last-child { border-bottom: 1px solid var(--s-line); }
.s-contact .s-contact__label { display: block; font-family: var(--s-mono); font-size: 13px; color: var(--s-navy); margin-bottom: 4px; }
.s-contact a { font-size: 19px; font-weight: 600; color: var(--s-ink); text-decoration: none; }
.s-contact a:hover { color: var(--s-green-text); }
.s-dl { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); margin: 0; border-top: 1px solid var(--s-line); }
.s-dl dt, .s-dl dd { margin: 0; padding: 12px 16px 12px 0; border-bottom: 1px solid var(--s-line); }
.s-dl dt { font-weight: 400; color: var(--s-muted); }
.s-dl dd { color: var(--s-ink); }
@media only screen and (max-width: 575px) { .s-dl { grid-template-columns: 1fr; } .s-dl dt { border-bottom: 0; padding-bottom: 0; } }
.s-check--block { display: flex; align-items: flex-start; }
.s-field .s-check { font-weight: 400; }
.s-check--block input { flex: 0 0 auto; margin-top: 3px; }

/* pravni tekst */
.s-prose h2 { font-size: 24px; margin: 40px 0 12px !important; scroll-margin-top: 90px; }
.s-prose h2:first-child { margin-top: 0 !important; }
.s-prose ul { list-style: disc; padding-left: 20px; margin-bottom: 16px !important; }
.s-prose li { margin-bottom: 6px !important; }
.s-prose ol { padding-left: 22px; margin-bottom: 16px; }
.s-prose ol ul { margin-top: 8px; }
.s-prose .s-dl { margin: 8px 0 16px; }
.s-toc-list { list-style: none; margin: 0; padding: 0; counter-reset: s-toc; }
.s-toc-list li { counter-increment: s-toc; padding: 6px 0; border-bottom: 1px solid var(--s-line); }
.s-toc-list li::before { content: counter(s-toc) ". "; font-family: var(--s-mono); color: var(--s-muted); }
.s-toc-list a { color: var(--s-ink); text-decoration: none; }
.s-toc-list a:hover { color: var(--s-green-text); }

/* kviz */
.s-hero--compact { padding-bottom: 40px; }
.s-hero--compact .s-lead { margin-bottom: 0; }
.s-pt-sm { padding-top: 40px !important; }
.kz { max-width: 760px; }
.kz .prog-bg { height: 4px; background: var(--s-line); margin-bottom: 28px; }
.kz .prog-fill { height: 4px; background: var(--s-green-text); transition: width .3s ease; }
.kz .qnum { font-family: var(--s-mono); font-size: 13px; color: var(--s-muted); margin-bottom: 6px; }
.kz .cat-badge { display: inline-block; font-family: var(--s-mono); font-size: 12px; text-transform: uppercase; letter-spacing: .04em; padding: 3px 8px; margin-bottom: 10px; }
.kz .qtext { font-size: 21px; font-weight: 600; color: var(--s-ink); line-height: 1.4; margin-bottom: 20px; }
.kz .opts { display: flex; flex-direction: column; gap: 10px; }
.kz .opt { display: flex; align-items: flex-start; gap: 12px; width: 100%; padding: 14px 16px; text-align: left; font: inherit; font-size: 16px; color: var(--s-ink); background: #fff; border: 1px solid #aeb8c2; border-radius: var(--s-radius); cursor: pointer; }
.kz .opt:hover { border-color: var(--s-navy); }
.kz .opt.sel { border: 2px solid var(--s-green-text); background: var(--s-green-soft); padding: 13px 15px; }
.kz .opt-lbl { flex: 0 0 26px; height: 26px; display: inline-flex; align-items: center; justify-content: center; font-family: var(--s-mono); font-size: 13px; border: 1px solid #aeb8c2; border-radius: 50%; }
.kz .opt.sel .opt-lbl { background: var(--s-green-text); border-color: var(--s-green-text); color: #fff; }
.kz-nav { display: flex; gap: 12px; align-items: center; margin-top: 24px; }
.kz .s-btn:disabled { background: #aeb8c2; border-color: #aeb8c2; cursor: default; }
.kz .res-top { display: flex; gap: 24px; align-items: center; padding-bottom: 24px; border-bottom: 1px solid var(--s-line); }
@media only screen and (max-width: 575px) { .kz .res-top { flex-direction: column; align-items: flex-start; } }
.kz .res-tag { font-family: var(--s-mono); font-size: 13px; text-transform: uppercase; margin-bottom: 6px; }
.kz .res-title { font-size: 22px; font-weight: 600; color: var(--s-ink); margin-bottom: 8px; }
.kz .res-sub { color: var(--s-muted); }
.kz .alarm { margin-top: 20px; padding: 14px 16px; border-left: 3px solid #b42318; background: #fdecea; color: var(--s-ink); }
.kz .sec-label { font-family: var(--s-mono); font-size: 13px; text-transform: uppercase; color: var(--s-navy); margin: 28px 0 12px; }
.kz .risk-list { border-top: 1px solid var(--s-line); }
.kz .rcard { padding: 14px 0; border-bottom: 1px solid var(--s-line); }
.kz .rname { display: flex; justify-content: space-between; gap: 12px; font-weight: 600; color: var(--s-ink); margin-bottom: 4px; }
.kz .rpct { font-family: var(--s-mono); font-size: 13px; font-weight: 400; white-space: nowrap; }
.kz .rdesc { font-size: 15px; color: var(--s-muted); margin-bottom: 8px; }
.kz .rbar { height: 4px; background: var(--s-line); }
.kz .rbar-f { height: 4px; transition: width .6s ease; }
.kz .cta-box { margin-top: 28px; padding: 20px 24px; border-left: 3px solid var(--s-green); background: var(--s-bg-soft); }
.kz .cta-title { font-size: 19px; font-weight: 600; color: var(--s-ink); margin-bottom: 6px; }
.kz .cta-desc { color: var(--s-muted); margin-bottom: 16px; }
.kz .cta-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- footer ---------- */
.footer-area { background: var(--s-bg-soft); border-top: 1px solid var(--s-line); }
.footer-area .footer-top-inner,
.footer-area .footer-bottom .footer-bottom-inner { border-top: 0; }
.footer-area .footer-bottom .footer-bottom-inner { padding: 0; }
.footer-area .footer-bottom .footer-bottom-inner p { color: var(--s-muted); font-family: var(--s-font); }
.footer-area .footer-top-inner .footer-title h3,
.footer-title h3,
.footer-title .footer-heading {
  font-family: var(--s-mono);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--s-navy);
}
.footer-area .footer-info img { margin-left: 0; margin-right: 0; }
.footer-area .footer-certifikat img { width: 125px; height: auto; }
.footer-list li a { color: var(--s-ink); text-decoration: none; }
.footer-list li a:hover { color: var(--s-green-text); }
.footer-bottom { border-top: 1px solid var(--s-line); padding: 18px 0; }
.footer-bottom-inner p { font-size: 14px; color: var(--s-muted); max-width: none; }
.footer-bottom-inner a { color: var(--s-muted); }

/* ---------- utils ---------- */
.s-mono { font-family: var(--s-mono); }
.s-muted { color: var(--s-muted); }
.s-green { color: var(--s-green-text); }
.s-measure { max-width: var(--s-measure); }
.s-mt-0 { margin-top: 0 !important; }
.s-mb-0 { margin-bottom: 0 !important; }
.s-rule { border: 0; border-top: 1px solid var(--s-line); margin: 48px 0; }
.visually-hidden {
  position: absolute !important; width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important; overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important;
}
