/* ============================================================================
   VEZINEX — Design system 2.0  (moderno, temno, "liquid gradient")
   ----------------------------------------------------------------------------
   KAZALO
     1. Spremenljivke / barve      (TUKAJ urejaš barve)
     2. Reset in osnove
     3. Tipografija
     4. Postavitev / vsebniki
     5. Gumbi
     6. Navigacija (plavajoča pill)
     7. Tekoče ozadje (liquid blobs) + zrno
     8. Hero
     9. Trak zmožnosti (marquee)
    10. Bento mreža storitev
    11. Proces
    12. Prednosti / zakaj
    13. FAQ
    14. CTA
    15. Noga
    16. Obrazec
    17. Animacije ob drsenju
    18. Pripomočki (progress, na vrh)
    19. Odzivnost
    20. Dostopnost
   ============================================================================ */

/* ============================================================================
   1. SPREMENLJIVKE / BARVE  — glavno mesto za urejanje
   ============================================================================ */
:root {
  /* ---- Ozadja ---- */
  --bg:          #060609;   /* skoraj črno */
  --bg-soft:     #0a0a10;
  --surface:     rgba(255, 255, 255, 0.035);
  --surface-2:   rgba(255, 255, 255, 0.06);

  /* ---- Barve NAŠEGA LOGOTIPA (izmerjene iz znaka) ----
     Vozlišča v logotipu: vijolična (levo), modra (sredina), turkizna (desno).
     Te tri barve so temelj celotne strani. */
  --logo-purple: #7a5cc4;
  --logo-blue:   #3a5bbf;
  --logo-teal:   #23a39e;

  /* Svetlejše različice za besedilo, ikone in poudarke */
  --purple:      #9070d8;
  --blue:        #5b7be0;
  --teal:        #2bbdb6;

  /* Globoka vijolično-modra za senco/globino ozadja */
  --indigo:      #2a2f7a;

  /* ---- Besedilo ---- */
  --heading:     #ffffff;
  --text:        #b9bdcc;
  --muted:       #7b8095;

  /* ---- Obrobe ---- */
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  /* ---- Prelivi ---- */
  --grad:      linear-gradient(100deg, var(--purple), var(--blue) 45%, var(--teal));
  /* Preliv po vrstnem redu vozlišč v logotipu: vijolična → modra → turkizna */
  --grad-warm: linear-gradient(100deg, var(--purple), var(--blue) 50%, var(--teal));

  /* ---- Tipografija ---- */
  --font-display: "Space Grotesk", system-ui, sans-serif;
  --font-body:    "Inter", system-ui, -apple-system, sans-serif;

  /* ---- Oblike in razmiki ---- */
  --container: 1240px;
  --gutter:    clamp(20px, 5vw, 48px);
  --r-sm: 14px;
  --r:    22px;
  --r-lg: 34px;

  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ============================================================================
   2. RESET IN OSNOVE
   ============================================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Fino zrno čez celotno stran — doda "filmski" občutek */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
::selection { background: rgba(91,123,224,.35); color: #fff; }

/* ============================================================================
   3. TIPOGRAFIJA
   ============================================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  margin: 0 0 .5em;
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

/* Ogromen naslov v hero */
.display {
  font-size: clamp(3.1rem, 10.5vw, 8.6rem);
  font-weight: 300;
  line-height: .93;
  letter-spacing: -0.045em;
}

h2 { font-size: clamp(2rem, 4.6vw, 3.4rem); font-weight: 300; }
h3 { font-size: 1.25rem; font-weight: 500; letter-spacing: -0.02em; }

p { margin: 0 0 1rem; }

/* Besedilo z barvnim prelivom */
.grad-text {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Majhna oznaka nad naslovom */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 22px;
}
/* Namesto navadne črtice: vozlišče s povezavo — motiv iz logotipa */
.eyebrow::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(91,123,224,.12), 14px 0 0 -2.5px var(--line-strong);
  margin-right: 12px;
}

.lead { font-size: 1.1rem; color: var(--muted); }

/* ============================================================================
   4. POSTAVITEV / VSEBNIKI
   ============================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(80px, 11vw, 150px); position: relative; }

.sec-head { max-width: 760px; margin-bottom: clamp(44px, 6vw, 72px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }

/* ============================================================================
   5. GUMBI
   ============================================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1;
  padding: 15px 28px;
  border-radius: 999px;              /* pill */
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  transition: transform .35s var(--ease), background .3s ease, border-color .3s ease, color .3s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Svetel gumb (glavni) */
.btn--light { background: #fff; color: #08080c; }
.btn--light:hover { background: #ece9ff; }

/* Barvni gumb */
.btn--grad { background: var(--grad); color: #fff; }
.btn--grad:hover { filter: brightness(1.1); }

/* Stekleni gumb */
.btn--glass {
  background: rgba(255,255,255,.05);
  border-color: var(--line-strong);
  color: var(--heading);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.btn--glass:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); }

.btn--sm { padding: 11px 20px; font-size: .88rem; }

/* Povezava s puščico */
.arrow-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 500;
  color: var(--heading);
  transition: gap .3s var(--ease);
}
.arrow-link:hover { gap: 16px; }

/* ============================================================================
   6. NAVIGACIJA (plavajoča pill)
   ============================================================================ */
.site-header {
  position: fixed;
  top: 22px; left: 0; right: 0;
  z-index: 200;
  transition: top .4s var(--ease);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav__logo img { height: 34px; width: auto; }

/* Sredinska plavajoča pill s povezavami */
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 7px;
  border-radius: 999px;
  background: rgba(14, 14, 22, .6);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}
.nav__links a {
  display: block;
  padding: 9px 18px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 500;
  color: var(--muted);
  transition: color .25s ease, background .25s ease;
}
.nav__links a:hover { color: var(--heading); }
.nav__links a.active { color: var(--heading); background: rgba(255,255,255,.08); }

/* Desna stran: jezik + CTA */
.nav__right { display: flex; align-items: center; gap: 10px; }

.lang-switch {
  display: inline-flex;
  padding: 5px;
  border-radius: 999px;
  background: rgba(14, 14, 22, .6);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.lang-switch button {
  font-family: var(--font-display);
  font-size: .74rem; font-weight: 600; letter-spacing: .04em;
  color: var(--muted);
  background: none; border: none;
  padding: 7px 10px; border-radius: 999px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.lang-switch button:hover { color: var(--heading); }
.lang-switch button.active { color: #08080c; background: #fff; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 46px; height: 46px;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  border-radius: 999px;
  background: rgba(14,14,22,.6);
  border: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  cursor: pointer;
}
.nav__toggle span { width: 18px; height: 1.5px; background: #fff; transition: transform .3s var(--ease), opacity .3s ease; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ============================================================================
   7. TEKOČE OZADJE (liquid blobs)
   ============================================================================ */
.fluid {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.fluid__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  mix-blend-mode: screen;
  will-change: transform;
  opacity: .85;
}
/* Posamezni madeži — barve in položaji */
.blob--1 { width: 46vw; height: 46vw; left: 8%;  top: 6%;   background: radial-gradient(circle at 35% 35%, var(--logo-purple), rgba(122,92,196,0) 68%); }
.blob--2 { width: 52vw; height: 52vw; left: 30%; top: -8%;  background: radial-gradient(circle at 50% 50%, var(--purple), rgba(144,112,216,0) 66%); }
.blob--3 { width: 42vw; height: 42vw; right: 4%; top: 18%;  background: radial-gradient(circle at 50% 50%, var(--blue), rgba(91,123,224,0) 66%); }
.blob--4 { width: 38vw; height: 38vw; left: 22%; bottom: -6%; background: radial-gradient(circle at 50% 50%, var(--teal), rgba(43,189,182,0) 66%); }
.blob--5 { width: 30vw; height: 30vw; right: 22%; bottom: 2%; background: radial-gradient(circle at 50% 50%, var(--indigo), rgba(42,47,122,0) 68%); }

/* Počasno organsko premikanje */
@keyframes drift1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(6%, -8%) scale(1.12); } 66% { transform: translate(-5%, 6%) scale(.94); } }
@keyframes drift2 { 0%,100% { transform: translate(0,0) scale(1); } 30% { transform: translate(-8%, 7%) scale(1.08); } 70% { transform: translate(7%, -5%) scale(.92); } }
@keyframes drift3 { 0%,100% { transform: translate(0,0) scale(1); } 40% { transform: translate(-6%, -6%) scale(1.15); } 75% { transform: translate(5%, 8%) scale(.9); } }
.blob--1 { animation: drift1 22s ease-in-out infinite; }
.blob--2 { animation: drift2 27s ease-in-out infinite; }
.blob--3 { animation: drift3 24s ease-in-out infinite; }
.blob--4 { animation: drift1 30s ease-in-out infinite reverse; }
.blob--5 { animation: drift2 26s ease-in-out infinite reverse; }

/* --- ŽIVA MREŽA VOZLIŠČ (podpisni element, izpeljan iz logotipa) ---
   Platno riše JS: drobna vozlišča, ki se povezujejo v mrežo, v sredini pa
   je razporeditev X iz našega znaka. */
.node-net {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Zatemnitev robov, da besedilo ostane berljivo */
.fluid::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, transparent 30%, rgba(6,6,9,.55) 75%),
    linear-gradient(to bottom, rgba(6,6,9,.5), transparent 25%, transparent 60%, var(--bg));
}

/* ============================================================================
   8. HERO
   ============================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: 150px 90px;
  overflow: hidden;
  isolation: isolate;
}
.hero > .container { position: relative; z-index: 2; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: .82rem;
  color: var(--text);
  margin-bottom: 30px;
}
.hero__badge .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }

.hero h1 { margin-bottom: 34px; max-width: 15ch; }

/* Spodnja vrstica hero: opis levo, gumbi desno */
.hero__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-top: 8px;
}
.hero__sub { font-size: 1.08rem; color: var(--text); max-width: 46ch; margin: 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Plavajoče oznake (namesto izmišljenih številk — iskrana dejstva) */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 46px;
}
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: .84rem;
  color: var(--text);
}
.hero__tag i {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--grad);
  display: inline-block;
}

/* Namig za drsenje */
.scroll-hint {
  position: absolute;
  left: 50%; bottom: 30px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted);
}
.scroll-hint span {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--line-strong), transparent);
}

/* ============================================================================
   9. TRAK ZMOŽNOSTI (marquee)
   ============================================================================ */
.marquee {
  position: relative;
  overflow: hidden;
  padding-block: 26px;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.015);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: slide 38s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { to { transform: translateX(-50%); } }
.marquee__item {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 400;
  color: var(--muted);
  white-space: nowrap;
  transition: color .3s ease;
}
.marquee__item:hover { color: var(--heading); }
.marquee__item::before {
  content: "";
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--blue);
}

/* ============================================================================
   10. BENTO MREŽA STORITEV
   ============================================================================ */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.tile {
  position: relative;
  grid-column: span 2;
  padding: 34px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .4s ease, transform .4s var(--ease), background .4s ease;
}
/* Prva ploščica je široka (poudarjena) */
.tile--wide { grid-column: span 3; }
.tile--full { grid-column: span 6; }

.tile:hover { transform: translateY(-4px); border-color: var(--line-strong); background: var(--surface-2); }

/* Sij, ki sledi kazalcu */
.tile::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(320px circle at var(--mx, 50%) var(--my, 0%), rgba(255,255,255,.09), transparent 70%);
  opacity: 0;
  transition: opacity .4s ease;
}
.tile:hover::before { opacity: 1; }

/* Številka ploščice */
.tile__num {
  font-family: var(--font-display);
  font-size: .75rem; letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 26px;
  display: block;
}
.tile__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  margin-bottom: 22px;
  color: var(--heading);
}
.tile__icon svg { width: 23px; height: 23px; }
.tile h3 { margin-bottom: 12px; }
.tile p { color: var(--muted); font-size: .97rem; margin: 0; }

/* Seznam znotraj ploščice */
.tile__list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 11px; }
.tile__list li {
  display: flex; gap: 11px; align-items: flex-start;
  font-size: .93rem; color: var(--text);
}
.tile__list svg { flex: 0 0 17px; margin-top: 4px; color: var(--teal); }

/* Barvni rob ob hoverju */
.tile--accent { background: linear-gradient(160deg, rgba(255,138,76,.09), rgba(144,112,216,.05) 55%, transparent); }

/* ============================================================================
   11. PROCES
   ============================================================================ */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pstep { position: relative; padding-top: 30px; border-top: 1px solid var(--line); transition: border-color .4s ease; }
.pstep:hover { border-color: var(--blue); }

/* Vozlišče na začetku vsakega koraka — koraki so povezani kot mreža */
.pstep::before {
  content: "";
  position: absolute;
  top: -4.5px; left: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--bg);
  border: 1.5px solid var(--line-strong);
  transition: border-color .4s ease, background .4s ease, box-shadow .4s ease;
}
.pstep:hover::before {
  border-color: transparent;
  background: var(--grad);
  box-shadow: 0 0 14px rgba(91,123,224,.7);
}
.pstep__n {
  font-family: var(--font-display);
  font-size: 3.4rem; font-weight: 300;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--line-strong);
  margin-bottom: 18px;
  transition: -webkit-text-stroke-color .4s ease;
}
.pstep:hover .pstep__n { -webkit-text-stroke-color: var(--blue); }
.pstep h3 { font-size: 1.1rem; margin-bottom: 8px; }
.pstep p { color: var(--muted); font-size: .93rem; margin: 0; }

/* ============================================================================
   12. PREDNOSTI / ZAKAJ
   ============================================================================ */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
}

.panel {
  padding: 36px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.05), rgba(255,255,255,.015));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.checks { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
.checks li { display: flex; gap: 13px; align-items: flex-start; color: var(--text); }
.checks li svg { flex: 0 0 20px; margin-top: 3px; color: var(--teal); }
.checks strong { color: var(--heading); font-weight: 500; }

/* Primerjava brez/z */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.compare__card { padding: 30px; border-radius: var(--r); border: 1px solid var(--line); background: var(--surface); }
.compare__card--good { border-color: rgba(43,189,182,.3); background: linear-gradient(160deg, rgba(43,189,182,.07), transparent); }
.compare__title { font-family: var(--font-display); font-size: 1.05rem; color: var(--heading); margin-bottom: 20px; }
.compare__card--bad .compare__title { color: var(--muted); }
.compare__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; font-size: .95rem; }
.compare__list li { display: flex; gap: 12px; align-items: flex-start; }
.compare__list svg { flex: 0 0 18px; margin-top: 3px; }
.compare__card--bad li { color: var(--muted); }
.compare__card--bad svg { color: #e05b7b; opacity: .75; }
.compare__card--good li { color: var(--text); }
.compare__card--good svg { color: var(--teal); }

/* ============================================================================
   13. FAQ
   ============================================================================ */
.faq { max-width: 840px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 26px 4px;
  background: none; border: none; cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.08rem; font-weight: 400;
  color: var(--heading);
  transition: color .25s ease;
}
.faq__q:hover { color: var(--blue); }
.faq__q .ic { position: relative; flex: 0 0 18px; height: 18px; }
.faq__q .ic::before, .faq__q .ic::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  background: currentColor; border-radius: 2px;
  transform: translate(-50%,-50%);
}
.faq__q .ic::before { width: 14px; height: 1.5px; }
.faq__q .ic::after  { width: 1.5px; height: 14px; transition: transform .35s var(--ease), opacity .3s ease; }
.faq__item.open .faq__q .ic::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq__item.open .faq__q { color: var(--blue); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq__a-inner { padding: 0 4px 28px; color: var(--muted); max-width: 68ch; }
.faq__item.open .faq__a { max-height: 340px; }

/* ============================================================================
   14. CTA
   ============================================================================ */
.cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  padding: clamp(48px, 8vw, 96px) clamp(24px, 5vw, 64px);
  text-align: center;
  background: var(--bg-soft);
}
.cta .fluid__blob { filter: blur(80px); opacity: .5; }
.cta h2 { margin-bottom: 18px; position: relative; z-index: 2; }
.cta p { color: var(--muted); max-width: 52ch; margin: 0 auto 34px; position: relative; z-index: 2; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; position: relative; z-index: 2; }

/* ============================================================================
   15. NOGA
   ============================================================================ */
.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 72px 34px;
  margin-top: 40px;
  background: var(--bg-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 56px;
}
.footer__brand img { height: 36px; margin-bottom: 20px; }
.footer__brand p { color: var(--muted); max-width: 34ch; font-size: .94rem; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 20px; font-weight: 500;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.footer__col a { color: var(--text); font-size: .94rem; transition: color .25s ease; }
.footer__col a:hover { color: var(--heading); }
.footer__bottom {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: space-between; align-items: center;
  padding-top: 30px; border-top: 1px solid var(--line);
  color: var(--muted); font-size: .86rem;
}
.footer__social { display: flex; gap: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--text);
  transition: border-color .25s ease, color .25s ease, background .25s ease;
}
.footer__social a:hover { border-color: var(--line-strong); color: var(--heading); background: rgba(255,255,255,.05); }

/* ============================================================================
   16. OBRAZEC
   ============================================================================ */
.contact-grid { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: start; }
.form { display: grid; gap: 20px; }
.form.panel { padding: clamp(26px, 4vw, 40px); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 9px; }
.field label { font-size: .86rem; color: var(--text); font-weight: 500; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 15px 17px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong);
  color: var(--heading);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted); }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(255,255,255,.06);
  box-shadow: 0 0 0 4px rgba(91,123,224,.15);
}
.field textarea { resize: vertical; min-height: 150px; }
.form__note { color: var(--muted); font-size: .82rem; }

.form-status { display: none; padding: 15px 18px; border-radius: var(--r-sm); font-size: .94rem; }
.form-status.show { display: block; }
.form-status__ok, .form-status__err { display: none; }
.form-status.show.is-ok .form-status__ok { display: block; }
.form-status.show.is-err .form-status__err { display: block; }
.form-status.is-ok { background: rgba(43,189,182,.12); border: 1px solid rgba(43,189,182,.4); color: #c9fff8; }
.form-status.is-err { background: rgba(224,91,123,.12); border: 1px solid rgba(224,91,123,.4); color: #ffd6df; }

/* Kontaktne kartice */
.contact-cards { display: grid; gap: 14px; }
.contact-card {
  display: flex; gap: 16px; align-items: center;
  padding: 22px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .3s ease, background .3s ease;
}
.contact-card:hover { border-color: var(--line-strong); background: var(--surface-2); }
.contact-card__ic {
  width: 44px; height: 44px; flex: 0 0 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--line);
  color: var(--teal);
}
.contact-card__ic svg { width: 20px; height: 20px; }
.contact-card strong { display: block; color: var(--heading); font-family: var(--font-display); font-weight: 500; font-size: .98rem; }
.contact-card span { color: var(--muted); font-size: .92rem; }
.contact-card a { color: var(--muted); transition: color .25s ease; }
.contact-card a:hover { color: var(--blue); }

/* ============================================================================
   17. ANIMACIJE OB DRSENJU
   ============================================================================ */
/* Elemente skrijemo SAMO, če JavaScript deluje (razred .js doda skripta v <head>).
   Brez JS je vsebina normalno vidna — stran nikoli ne ostane prazna. */
.js [data-animate] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  will-change: opacity, transform;
}
.js [data-animate].is-visible { opacity: 1; transform: none; }

/* ============================================================================
   18. PRIPOMOČKI
   ============================================================================ */
.scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--grad-warm);
  z-index: 300;
  transition: width .1s linear;
}
.to-top {
  position: fixed; right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(14,14,22,.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--heading);
  cursor: pointer;
  opacity: 0; transform: translateY(14px); pointer-events: none;
  transition: opacity .35s ease, transform .35s var(--ease), background .25s ease;
  z-index: 190;
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: rgba(255,255,255,.1); }

/* ============================================================================
   19. ODZIVNOST
   ============================================================================ */
@media (max-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .tile, .tile--wide { grid-column: span 2; }
  .tile--full { grid-column: span 4; }
  .process { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  body { font-size: 16px; }
  .split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  /* --- Mobilna navigacija --- */
  .nav__toggle { display: flex; }
  .nav__right .lang-switch { display: none; }
  .nav__right .btn { display: none; }
  .nav__links {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 4px;
    padding: 90px var(--gutter) 40px;
    border-radius: 0;
    border: none;
    background: rgba(6,6,9,.97);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0; visibility: hidden;
    transform: scale(1.04);
    transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
  }
  .nav__links.open { opacity: 1; visibility: visible; transform: none; }
  .nav__links a { font-size: 1.9rem; font-weight: 300; padding: 14px 0; color: var(--heading); border-radius: 0; }
  .nav__links a.active { background: none; color: var(--blue); }
  .nav__links .m-only { display: block; margin-top: 30px; }
  .nav__links .m-only .lang-switch { display: inline-flex; }
}

@media (min-width: 901px) { .nav__links .m-only { display: none; } }

@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .tile, .tile--wide, .tile--full { grid-column: span 1; }
  .process { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; }
  .hero__foot { flex-direction: column; align-items: flex-start; }
  .fluid__blob { filter: blur(48px); }
}

/* ============================================================================
   20. DOSTOPNOST — spoštuj "manj gibanja"
   ============================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  [data-animate] { opacity: 1; transform: none; }
}

:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; border-radius: 4px; }
