/*
 * metalni-ormani.com - stilski sistem "Blueprint / HUD"
 * @autor    Claude (AI asistent), 12.08.2026.
 * @za       Daniel Stefanović / Office Plus Home doo
 */

/* ============================================================
   1. VARIJABLE
   ============================================================ */
:root {
  --c-bg:        #0a0e14;
  --c-bg-2:      #0c1119;
  --c-bg-panel:  rgba(13, 20, 33, 0.72);
  --c-bg-panel2: rgba(16, 25, 40, 0.85);

  --c-cyan:      #00d9ff;
  --c-blue:      #3b9dff;
  --c-cyan-dim:  rgba(0, 217, 255, 0.55);

  --c-grid:      rgba(0, 217, 255, 0.055);
  --c-grid-2:    rgba(0, 217, 255, 0.11);
  --c-line:      rgba(90, 170, 220, 0.22);

  --c-text:      #cdd9e6;
  --c-head:      #eaf4ff;
  --c-dim:       #7f92a8;
  --c-dim-2:     #5c6b7e;

  --c-ok:        #38e0b0;

  --f-head: 'Rajdhani', 'Segoe UI', sans-serif;
  --f-body: 'Inter', 'Segoe UI', system-ui, sans-serif;

  --maxw: 1180px;
  --gap: clamp(1rem, 3vw, 2.4rem);
  --radius: 4px;

  --glow: 0 0 18px rgba(0, 217, 255, 0.28);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ============================================================
   2. RESET / BAZA
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.65;
  font-size: 16.5px;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

a { color: var(--c-cyan); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--c-head); }

img, svg { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: var(--f-head);
  color: var(--c-head);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: .01em;
}

::selection { background: var(--c-cyan); color: #04121a; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gap); }

.eyebrow {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--c-cyan);
  display: inline-flex;
  align-items: center;
  gap: .7rem;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-cyan));
}

/* ============================================================
   3. BLUEPRINT POZADINA (fiksna)
   ============================================================ */
.bp-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 620px at 78% -8%, rgba(0, 120, 200, 0.16), transparent 60%),
    radial-gradient(900px 700px at 8% 108%, rgba(20, 60, 130, 0.14), transparent 62%),
    linear-gradient(180deg, var(--c-bg-2), var(--c-bg));
}
.bp-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--c-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-grid) 1px, transparent 1px),
    linear-gradient(var(--c-grid-2) 1px, transparent 1px),
    linear-gradient(90deg, var(--c-grid-2) 1px, transparent 1px);
  background-size: 26px 26px, 26px 26px, 130px 130px, 130px 130px;
  mask-image: radial-gradient(ellipse 130% 120% at 50% 0%, #000 55%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 130% 120% at 50% 0%, #000 55%, transparent 100%);
}
/* Veliki tehnicki crtez orman koji lagano lebdi iza svega */
.bp-ghost {
  position: fixed;
  z-index: -1;
  right: -60px;
  top: 92px;
  width: min(46vw, 560px);
  opacity: .5;
  pointer-events: none;
  animation: ghostDrift 22s ease-in-out infinite alternate;
}
@keyframes ghostDrift {
  from { transform: translateY(0) rotate(0deg); }
  to   { transform: translateY(26px) rotate(.6deg); }
}

/* ============================================================
   4. HEADER / NAV
   ============================================================ */
.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: linear-gradient(180deg, rgba(8,12,19,.92), rgba(8,12,19,.62));
  border-bottom: 1px solid var(--c-line);
}
.site-head .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 66px;
}
.brand { display: flex; align-items: center; gap: .7rem; line-height: 1; }
.brand svg { width: 30px; height: 30px; flex: none; filter: drop-shadow(var(--glow)); }
.brand b {
  font-family: var(--f-head);
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: .04em;
  color: var(--c-head);
  text-transform: uppercase;
}
.brand span { display: block; font-size: .64rem; letter-spacing: .28em; color: var(--c-dim); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: .2rem; }
.nav a {
  font-family: var(--f-head);
  font-weight: 500;
  font-size: .93rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--c-text);
  padding: .5rem .66rem;
  border-radius: var(--radius);
  position: relative;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: .72rem; right: .72rem; bottom: .28rem;
  height: 1px;
  background: var(--c-cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--c-head); }

.nav-cta {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .9rem;
  padding: .52rem .95rem !important;
  border: 1px solid var(--c-cyan-dim);
  color: var(--c-cyan) !important;
  border-radius: var(--radius);
  display: inline-flex; align-items: center; gap: .45rem;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: rgba(0,217,255,.1); box-shadow: var(--glow); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  width: 44px; height: 40px;
  cursor: pointer;
  color: var(--c-cyan);
}
.nav-toggle svg { width: 22px; height: 22px; margin: auto; }

/* ============================================================
   5. HERO
   ============================================================ */
.hero { position: relative; padding: clamp(2.6rem, 7vw, 5.4rem) 0 clamp(2rem, 5vw, 3.6rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(1.6rem, 4vw, 3.4rem);
  align-items: center;
}
.hero h1 {
  font-size: clamp(2.1rem, 5.4vw, 3.55rem);
  margin: 1rem 0 1.1rem;
  text-wrap: balance;
}
.hero h1 .accent { color: var(--c-cyan); text-shadow: 0 0 22px rgba(0,217,255,.35); }
.hero p { color: var(--c-text); max-width: 44ch; margin-bottom: 1rem; }
.hero p.lead { font-size: 1.08rem; color: #d7e4f1; }

.cta-row { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 1.7rem; }

.btn {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .96rem;
  padding: .82rem 1.4rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .22s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(135deg, var(--c-cyan), var(--c-blue));
  color: #04121a;
  box-shadow: 0 0 0 rgba(0,217,255,0);
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(0,217,255,.35); transform: translateY(-2px); color: #04121a; }
.btn-ghost {
  border-color: var(--c-line);
  color: var(--c-head);
  background: var(--c-bg-panel);
}
.btn-ghost:hover { border-color: var(--c-cyan-dim); box-shadow: var(--glow); color: var(--c-head); }

/* blueprint crtez u hero-u */
.hero-figure {
  position: relative;
  padding: 1rem;
}
.hero-figure .frame-label {
  position: absolute;
  top: -.2rem; left: 1rem;
  font-family: var(--f-head);
  font-size: .68rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--c-dim);
}
.hero-figure .frame-code {
  position: absolute;
  bottom: .1rem; right: 1rem;
  font-family: var(--f-head);
  font-size: .68rem;
  letter-spacing: .18em;
  color: var(--c-cyan-dim);
}
.hero-figure svg { width: 100%; height: auto; overflow: visible; }

/* ============================================================
   6. SVG BLUEPRINT (linije koje se iscrtavaju)
   ============================================================ */
/* Dash duzine postavlja JS (getTotalLength) radi tacnog iscrtavanja na svim
   velicinama ekrana; --len je samo fallback ako JS ne radi. */
.bp .draw {
  stroke-dasharray: var(--len, 1200);
  stroke-dashoffset: var(--len, 1200);
  animation: draw 2.6s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.bp .dim { stroke: var(--c-cyan-dim); stroke-width: 1; }
.bp .dim-txt { fill: var(--c-cyan); font-family: var(--f-head); font-size: 15px; letter-spacing: .06em; }
.bp .steel { stroke: var(--c-blue); stroke-width: 1.6; fill: none; }
.bp .steel-2 { stroke: var(--c-line); stroke-width: 1.2; fill: none; }
.bp .fillp { fill: rgba(0,120,200,.05); }
.bp .lock { fill: var(--c-cyan); opacity: .9; }
.bp .vent { stroke: var(--c-cyan-dim); stroke-width: 1.4; }
.bp .tick { stroke: var(--c-cyan-dim); stroke-width: 1; }

.bp .pulse { animation: pulse 3s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity:.45; } 50% { opacity:1; } }

/* ============================================================
   7. SEKCIJE
   ============================================================ */
section { position: relative; }
.section-pad { padding: clamp(2.6rem, 6vw, 4.6rem) 0; }

.sec-head { max-width: 640px; margin-bottom: 2.2rem; }
.sec-head h2 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  margin: .8rem 0 .6rem;
}
.sec-head p { color: var(--c-dim); }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-line) 20%, var(--c-line) 80%, transparent);
}

/* ZASTO - feature paneli */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.feat {
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease);
}
.feat::before {
  content: attr(data-idx);
  position: absolute;
  top: .6rem; right: .85rem;
  font-family: var(--f-head);
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--c-dim-2);
}
.feat:hover { border-color: var(--c-cyan-dim); transform: translateY(-3px); }
.feat .ico { width: 38px; height: 38px; color: var(--c-cyan); margin-bottom: .9rem; }
.feat .ico svg { width: 100%; height: 100%; }
.feat h3 { font-size: 1.24rem; margin-bottom: .4rem; color: var(--c-head); }
.feat p { font-size: .95rem; color: var(--c-dim); line-height: 1.55; }

/* TIPOVI - kartice modela */
.types-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}
.type-card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-panel);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.type-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(420px 180px at 100% 0%, rgba(0,217,255,.08), transparent 70%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.type-card:hover { border-color: var(--c-cyan-dim); transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.4); }
.type-card:hover::after { opacity: 1; }
.type-card .tc-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 1rem; }
.type-card .tc-ico { width: 46px; height: 46px; color: var(--c-cyan); }
.type-card .tc-ico svg { width: 100%; height: 100%; }
.type-card .tc-tag {
  font-family: var(--f-head);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--c-dim-2);
  border: 1px solid var(--c-line);
  padding: .18rem .5rem;
  border-radius: 2px;
}
.type-card h3 { font-size: 1.32rem; margin-bottom: .45rem; }
.type-card p { font-size: .94rem; color: var(--c-dim); flex: 1; margin-bottom: 1.1rem; }
.type-card .tc-link {
  font-family: var(--f-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .87rem;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--c-cyan);
}
.type-card .tc-link svg { width: 16px; height: 16px; transition: transform .2s var(--ease); }
.type-card:hover .tc-link svg { transform: translateX(4px); }

/* ============================================================
   8. CTA PANEL
   ============================================================ */
.cta-panel {
  position: relative;
  background: var(--c-bg-panel2);
  border: 1px solid var(--c-cyan-dim);
  border-radius: 6px;
  padding: clamp(1.8rem, 4vw, 3rem);
  overflow: hidden;
  text-align: center;
}
.cta-panel::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 200px at 50% -30%, rgba(0,217,255,.14), transparent 70%),
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(0,217,255,.03) 28px 29px);
  pointer-events: none;
}
.cta-panel h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: .7rem; position: relative; }
.cta-panel p { color: var(--c-dim); max-width: 52ch; margin: 0 auto 1.6rem; position: relative; }
.cta-panel .cta-row { justify-content: center; position: relative; }

/* ============================================================
   9. FOOTER
   ============================================================ */
.site-foot {
  border-top: 1px solid var(--c-line);
  margin-top: 2rem;
  padding: clamp(2.2rem, 5vw, 3.4rem) 0 5.5rem;
  background: linear-gradient(180deg, transparent, rgba(6,10,16,.6));
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.foot-grid h4 {
  font-family: var(--f-head);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .8rem;
  color: var(--c-dim);
  margin-bottom: 1rem;
}
.foot-brand .brand { margin-bottom: 1rem; }
.foot-brand p { font-size: .92rem; color: var(--c-dim); max-width: 38ch; }
.foot-list { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.foot-list a, .foot-list span { font-size: .95rem; color: var(--c-text); display: inline-flex; align-items: center; gap: .55rem; }
.foot-list svg { width: 16px; height: 16px; color: var(--c-cyan); flex: none; }
.foot-bottom {
  margin-top: 2.2rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--c-line);
  display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; justify-content: space-between;
  font-size: .82rem; color: var(--c-dim-2);
}

/* ============================================================
   10. STICKY MOBILNI POZIV
   ============================================================ */
.call-fab {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: .6rem;
  font-family: var(--f-head);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  background: linear-gradient(135deg, var(--c-cyan), var(--c-blue));
  color: #04121a;
  padding: .8rem 1.5rem;
  border-radius: 40px;
  box-shadow: 0 8px 28px rgba(0,0,0,.5), 0 0 0 1px rgba(0,217,255,.4);
}
.call-fab svg { width: 19px; height: 19px; }

/* ============================================================
   10b. STRANICE MODELA (podstranice)
   ============================================================ */
.page-hero { padding: clamp(2rem, 5.5vw, 3.6rem) 0 1.4rem; position: relative; }
.breadcrumb {
  font-family: var(--f-head);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-dim-2);
  display: flex; flex-wrap: wrap; gap: .5rem;
  margin-bottom: .5rem;
}
.breadcrumb a { color: var(--c-dim); }
.breadcrumb span { color: var(--c-dim-2); }
.page-hero h1 { font-size: clamp(1.9rem, 4.6vw, 3.05rem); margin: .7rem 0 1rem; text-wrap: balance; }
.page-hero .intro { max-width: 66ch; color: #d3e0ee; font-size: 1.05rem; }
.page-hero .intro + .intro { margin-top: .8rem; font-size: 1rem; color: var(--c-text); }

/* grid kartica modela */
.models {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(232px, 1fr));
  gap: 1.15rem;
}
.model-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-bg-panel);
  overflow: hidden;
  transition: border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.model-card:hover { border-color: var(--c-cyan-dim); transform: translateY(-3px); box-shadow: 0 14px 38px rgba(0,0,0,.4); }
.model-img {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(158deg, #eef2f7, #d9e2ec);
  display: flex; align-items: center; justify-content: center;
}
.model-img img { width: 100%; height: 100%; object-fit: contain; padding: .7rem; }
.model-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 72%, rgba(4,10,18,.14));
  pointer-events: none;
}
.model-img .code-badge {
  position: absolute; top: .55rem; left: .55rem;
  font-family: var(--f-head);
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .1em;
  color: var(--c-cyan);
  background: rgba(4,16,24,.82);
  border: 1px solid var(--c-cyan-dim);
  padding: .16rem .5rem;
  border-radius: 2px;
  z-index: 1;
}
.model-body { padding: .95rem 1.05rem 1.15rem; display: flex; flex-direction: column; gap: .55rem; flex: 1; }
.model-body h3 { font-size: 1.12rem; }
.model-dims { display: flex; flex-wrap: wrap; gap: .35rem; }
.dim-chip {
  font-family: var(--f-head);
  font-size: .72rem;
  letter-spacing: .03em;
  color: var(--c-text);
  border: 1px solid var(--c-line);
  border-radius: 2px;
  padding: .15rem .45rem;
  background: rgba(0,217,255,.05);
  white-space: nowrap;
}
.model-body p { font-size: .88rem; color: var(--c-dim); line-height: 1.5; }

/* primene */
.use-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(212px, 1fr));
  gap: .85rem;
}
.use-item {
  display: flex; gap: .7rem; align-items: flex-start;
  padding: .95rem 1.05rem;
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: var(--c-bg-panel);
}
.use-item svg { width: 21px; height: 21px; color: var(--c-cyan); flex: none; margin-top: .1rem; }
.use-item span { font-size: .93rem; color: var(--c-text); }

/* zajednicke karakteristike / napomena */
.spec-note {
  border: 1px solid var(--c-line);
  border-left: 3px solid var(--c-cyan);
  background: var(--c-bg-panel);
  padding: 1.1rem 1.35rem;
  border-radius: var(--radius);
}
.spec-note h3 { font-size: 1.15rem; margin-bottom: .6rem; }
.spec-note ul { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .4rem 1.4rem; }
.spec-note li { position: relative; padding-left: 1.2rem; font-size: .93rem; color: var(--c-text); }
.spec-note li::before { content: ""; position: absolute; left: 0; top: .62em; width: 7px; height: 7px; border: 1px solid var(--c-cyan); transform: rotate(45deg); }

/* tehnicka spec tabela (label : value) */
.spec-table { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 0 2rem; margin: 0; }
.spec-line { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; padding: .62rem 0; border-bottom: 1px solid var(--c-line); }
.spec-line dt { color: var(--c-dim); font-size: .92rem; }
.spec-line dd { color: var(--c-head); font-family: var(--f-head); font-weight: 600; font-size: 1rem; text-align: right; letter-spacing: .01em; }

/* dvokolonski blok: tekst + istaknuta slika/crtez */
.split {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: center;
}
.split .feature-img {
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  background: linear-gradient(158deg, #eef2f7, #d9e2ec);
  aspect-ratio: 1 / 1;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.split .feature-img img { width: 100%; height: 100%; object-fit: contain; padding: 1.2rem; }

/* ============================================================
   10c. KONTAKT (forma + info)
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: clamp(1.5rem, 4vw, 2.8rem);
  align-items: start;
}
.form-panel, .info-panel {
  border: 1px solid var(--c-line);
  background: var(--c-bg-panel);
  border-radius: 6px;
  padding: clamp(1.4rem, 3vw, 2rem);
}
.info-panel { position: relative; overflow: hidden; }
.info-panel::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(360px 160px at 100% 0%, rgba(0,217,255,.07), transparent 70%);
  pointer-events: none;
}
.field { margin-bottom: 1.05rem; }
.field label {
  display: block;
  font-family: var(--f-head);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-dim);
  margin-bottom: .4rem;
}
.field label .req { color: var(--c-cyan); }
.field input, .field textarea {
  width: 100%;
  background: rgba(4,10,18,.55);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  color: var(--c-head);
  font-family: var(--f-body);
  font-size: 1rem;
  padding: .72rem .85rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-dim-2); }
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--c-cyan);
  box-shadow: 0 0 0 3px rgba(0,217,255,.12);
}
.field textarea { min-height: 130px; resize: vertical; }
.hp { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-hint { font-size: .82rem; color: var(--c-dim-2); margin-top: .3rem; }
.form-msg { display: none; margin-bottom: 1rem; padding: .8rem 1rem; border-radius: var(--radius); font-size: .93rem; }
.form-msg.show.ok { display: block; border: 1px solid var(--c-ok); color: var(--c-ok); background: rgba(56,224,176,.08); }
.form-msg.show.err { display: block; border: 1px solid #ff6b6b; color: #ff8a8a; background: rgba(255,107,107,.08); }

.info-panel h3 { font-size: 1.2rem; margin-bottom: 1rem; position: relative; }
.info-line { display: flex; gap: .85rem; align-items: flex-start; padding: .85rem 0; border-bottom: 1px solid var(--c-line); position: relative; }
.info-line:last-child { border-bottom: none; }
.info-line > svg { color: var(--c-cyan); width: 22px; height: 22px; flex: none; margin-top: .15rem; }
.info-line .l { font-family: var(--f-head); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--c-dim); display: block; margin-bottom: .1rem; }
.info-line .v { color: var(--c-head); font-family: var(--f-head); font-weight: 600; font-size: 1.02rem; }
.info-line a.v { color: var(--c-cyan); }
.info-line a.v:hover { color: var(--c-head); }

/* prednosti (o nama) */
.perks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.perk {
  border: 1px solid var(--c-line);
  background: var(--c-bg-panel);
  border-radius: var(--radius);
  padding: 1.3rem 1.25rem;
}
.perk svg { width: 30px; height: 30px; color: var(--c-cyan); margin-bottom: .7rem; }
.perk h3 { font-size: 1.1rem; margin-bottom: .35rem; }
.perk p { font-size: .9rem; color: var(--c-dim); line-height: 1.5; }

/* ============================================================
   11. REVEAL NA SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   12. RESPONSIVE
   ============================================================ */
@media (max-width: 940px) {
  .nav { position: fixed; inset: 66px 0 auto 0; flex-direction: column; align-items: stretch;
    background: rgba(8,12,19,.98); border-bottom: 1px solid var(--c-line); padding: .6rem var(--gap) 1.2rem;
    gap: .1rem; transform: translateY(-120%); transition: transform .3s var(--ease); }
  .nav.open { transform: none; }
  .nav a { padding: .8rem .4rem; border-bottom: 1px solid rgba(255,255,255,.04); }
  .nav a::after { display: none; }
  .nav-cta { margin-top: .6rem; justify-content: center; }
  .nav-toggle { display: flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { order: -1; max-width: 460px; margin-inline: auto; }
  .split { grid-template-columns: 1fr; }
  .split .feature-img { order: -1; max-width: 400px; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
  .call-fab { display: inline-flex; }
  .bp-ghost { display: none; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   13. PRISTUPACNOST - smanjena animacija
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  /* Gasimo suptilne/kontinuirane animacije radi pristupacnosti, ALI blueprint
     iscrtavanje linija (.draw) i JS count-up dimenzija NAMERNO ostaju aktivni,
     jer su kljucni vizuelni koncept sajta (izricit zahtev). */
  html { scroll-behavior: auto !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition-duration: .001ms !important; }
  .bp-ghost { animation: none !important; }
  .bp .pulse { animation: none !important; }
}

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