/* ═══════════════════════════════════════════════════════════════
   AutoProvjera — dizajn sistem
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #06080d;
  --bg-2: #0a0e17;
  --card: rgba(255, 255, 255, 0.035);
  --card-strong: rgba(13, 18, 28, 0.72);
  --stroke: rgba(255, 255, 255, 0.09);
  --stroke-soft: rgba(255, 255, 255, 0.06);
  --text: #eef2f7;
  --muted: #9aa4b8;
  --faint: #6b7488;

  --volt: #c8f542;
  --volt-soft: rgba(200, 245, 66, 0.14);
  --teal: #2ee6a8;
  --blue: #4d8dff;
  --red: #ff5d6c;
  --red-soft: rgba(255, 93, 108, 0.12);
  --amber: #ffb547;
  --amber-soft: rgba(255, 181, 71, 0.12);
  --green: #3ddc97;
  --green-soft: rgba(61, 220, 151, 0.14);

  --grad: linear-gradient(120deg, #c8f542 0%, #2ee6a8 100%);
  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", system-ui, sans-serif;

  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 12px;
  --shadow-card: 0 24px 60px -24px rgba(0, 0, 0, 0.65);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* mreža u pozadini */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  pointer-events: none;
  z-index: 0;
}

::selection { background: rgba(200, 245, 66, 0.28); color: #fff; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1d2533; border-radius: 8px; border: 3px solid var(--bg); }
::-webkit-scrollbar-thumb:hover { background: #2a3447; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { display: block; max-width: 100%; }
main { position: relative; z-index: 2; }

.container { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.container-narrow { width: min(820px, calc(100% - 48px)); }
.section { padding: clamp(72px, 10vw, 130px) 0; position: relative; }
.muted { color: var(--muted); font-weight: 400; }

/* ── šum i aurora ── */
.noise {
  position: fixed; inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.05;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 90;
}

.aurora { position: fixed; inset: 0; z-index: 0; overflow: hidden; filter: blur(85px) saturate(130%); }
.blob { position: absolute; border-radius: 50%; will-change: transform; }
.b1 { width: 52vw; height: 52vw; left: -14vw; top: -18vw; background: radial-gradient(circle, rgba(200, 245, 66, 0.16), transparent 65%); }
.b2 { width: 46vw; height: 46vw; right: -12vw; top: -6vw; background: radial-gradient(circle, rgba(46, 230, 168, 0.13), transparent 65%); }
.b3 { width: 56vw; height: 56vw; left: 28vw; top: 34vh; background: radial-gradient(circle, rgba(77, 141, 255, 0.10), transparent 65%); }

/* ── tipografija ── */
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.6vw, 52px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  text-align: center;
  margin-bottom: 14px;
}
.section-sub { text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 44px; font-size: 16px; }

/* ── staklo ── */
.glass {
  background: var(--card-strong);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-card);
  position: relative;
}
.glass::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  border-radius: inherit;
  pointer-events: none;
}

/* ── dugmad ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 15px;
  border-radius: 99px; border: 1px solid transparent;
  padding: 13px 26px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s, background 0.25s, border-color 0.25s;
  position: relative; overflow: hidden;
  white-space: nowrap;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary {
  background: var(--grad);
  color: #0a0f06;
  box-shadow: 0 12px 36px -10px rgba(200, 245, 66, 0.45);
}
.btn-primary::after {
  content: "";
  position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease-out);
}
.btn-primary:hover::after { left: 130%; }
.btn-primary:hover { box-shadow: 0 16px 48px -10px rgba(200, 245, 66, 0.6); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--stroke);
  color: var(--text);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.18); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-big { width: 100%; justify-content: center; padding: 17px 32px; font-size: 16px; margin-top: 18px; }
.btn:disabled { opacity: 0.55; pointer-events: none; }

/* ── navigacija ── */
.nav {
  position: fixed; top: 14px; left: 50%; transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 10px 12px 10px 18px;
  border-radius: 99px;
  background: rgba(8, 11, 18, 0.55);
  border: 1px solid var(--stroke-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 50;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.nav.scrolled { background: rgba(8, 11, 18, 0.85); border-color: var(--stroke); box-shadow: 0 14px 40px -18px rgba(0, 0, 0, 0.7); }

.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 700; font-size: 19px; letter-spacing: -0.01em; }
.brand em { font-style: normal; color: var(--volt); }
.brand-mark { width: 34px; height: 34px; border-radius: 10px; }

.nav-links { display: flex; gap: 6px; }
.nav-links a {
  padding: 8px 16px; border-radius: 99px;
  color: var(--muted); font-size: 14.5px; font-weight: 500;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }

/* ── hero ── */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  position: relative;
  padding: 150px 0 90px;
  overflow: hidden;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: clamp(30px, 5vw, 70px);
}
.hero-copy { text-align: left; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 18px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--stroke);
  color: var(--muted);
  font-size: 13.5px; font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--volt); box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.6); animation: pulse 2.2s infinite; }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 245, 66, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(200, 245, 66, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 245, 66, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 74px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-title .line { display: block; }

.hero-sub {
  max-width: 540px; margin: 0 0 34px;
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 18px);
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 34px; }

.hero-stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  color: var(--faint); font-size: 13.5px; font-weight: 500;
  letter-spacing: 0.02em;
}
.hero-stats i { width: 4px; height: 4px; border-radius: 50%; background: var(--faint); }

.hero-disclaimer {
  margin-top: 22px;
  font-size: 12.5px; color: var(--faint);
  max-width: 460px;
  line-height: 1.5;
}

/* ── hero vizual: animirani pregled izvještaja ── */
.hero-visual { position: relative; perspective: 1200px; }
.preview-card {
  position: relative;
  padding: 24px 24px 22px;
  border-radius: var(--r-lg);
  transform-style: preserve-3d;
  will-change: transform;
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.8);
}
.preview-card::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  background: radial-gradient(120% 90% at 80% 0%, rgba(200, 245, 66, 0.08), transparent 55%);
}

.pv-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.pv-thumb {
  width: 58px; height: 58px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--volt-soft); color: var(--volt);
}
.pv-thumb svg { width: 34px; height: 20px; }
.pv-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pv-kicker { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.pv-title { font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.pv-sub { font-size: 12.5px; color: var(--muted); }

.pv-score-row { display: flex; align-items: center; gap: 18px; margin-bottom: 20px; }
.pv-ring { position: relative; width: 92px; height: 92px; flex: none; }
.pv-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.pv-ring-bg { fill: none; stroke: rgba(255, 255, 255, 0.08); stroke-width: 9; }
.pv-ring-val {
  fill: none; stroke: url(#pvRingGrad); stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 326.7; stroke-dashoffset: 326.7;
  filter: drop-shadow(0 0 8px rgba(200, 245, 66, 0.4));
}
.pv-ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.pv-score-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; line-height: 1; }
.pv-score-label { font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 3px; }
.pv-verdict { min-width: 0; }
.pv-verdict .pill { display: inline-flex; margin-bottom: 8px; }
.pv-verdict p { font-size: 13px; color: var(--muted); line-height: 1.45; }

.pv-bar-wrap { margin-bottom: 18px; }
.pv-bar {
  position: relative; height: 9px; border-radius: 6px;
  background: linear-gradient(90deg, #3ddc97 0%, #c8f542 45%, #ffb547 78%, #ff5d6c 100%);
  opacity: 0.92;
}
.pv-bar-marker {
  position: absolute; top: 50%; left: 8%; transform: translate(-50%, -50%);
  width: 16px; height: 16px; border-radius: 50%;
  background: #fff; border: 4px solid var(--card-strong);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7), 0 4px 12px rgba(0, 0, 0, 0.5);
}
.pv-bar-labels { display: flex; justify-content: space-between; margin-top: 11px; font-size: 11px; color: var(--faint); font-weight: 500; }
.pv-bar-labels span:nth-child(2) { color: var(--muted); }

.pv-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pv-list li { display: flex; align-items: center; gap: 11px; font-size: 13px; color: var(--text); }
.pv-ic { flex: none; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; font-weight: 700; font-size: 13px; }
.pv-ic.ok { background: var(--green-soft); color: var(--green); }
.pv-ic.warn { background: var(--amber-soft); color: var(--amber); }

/* plutajući čipovi oko preview kartice */
.float-chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 15px;
  border-radius: 13px;
  background: rgba(13, 18, 28, 0.82);
  border: 1px solid var(--stroke);
  backdrop-filter: blur(14px);
  font-size: 12.5px; font-weight: 600;
  font-family: var(--font-display);
  box-shadow: 0 18px 44px -16px rgba(0, 0, 0, 0.7);
  z-index: 3; white-space: nowrap;
  will-change: transform;
}
.fc-green { left: -34px; top: 30%; color: var(--green); }
.fc-flag { right: -26px; bottom: 16%; color: #ffb3bb; }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-green { background: var(--green); box-shadow: 0 0 12px rgba(61, 220, 151, 0.8); }

.scroll-hint {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  z-index: 2;
}
.scroll-hint span {
  position: absolute; top: 7px; left: 50%;
  width: 4px; height: 8px; margin-left: -2px;
  background: var(--volt); border-radius: 3px;
  animation: scrollhint 1.8s var(--ease-out) infinite;
}
@keyframes scrollhint { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ── analizator ── */
.panel { padding: clamp(22px, 4vw, 40px); max-width: 860px; margin: 0 auto; }

.tabs {
  position: relative;
  display: flex; gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke-soft);
  border-radius: 99px;
  padding: 5px;
  width: max-content;
  margin: 0 auto 30px;
}
.tab {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 24px;
  border-radius: 99px;
  border: none; background: transparent;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 14.5px; font-weight: 600;
  position: relative; z-index: 2;
  transition: color 0.3s;
}
.tab svg { width: 17px; height: 17px; }
.tab.active { color: #0a0f06; }
.tab-indicator {
  position: absolute; top: 5px; left: 5px;
  height: calc(100% - 10px);
  background: var(--grad);
  border-radius: 99px;
  z-index: 1;
  box-shadow: 0 6px 22px -6px rgba(200, 245, 66, 0.5);
}

.panes { position: relative; }
.tabpane { display: none; }
.tabpane.active { display: block; }

.field-label { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; letter-spacing: 0.03em; }
.field-label b { color: var(--volt); }

input, select, textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--stroke);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
input::placeholder, textarea::placeholder { color: var(--faint); }
input:focus, select:focus, textarea:focus {
  border-color: rgba(200, 245, 66, 0.55);
  box-shadow: 0 0 0 4px rgba(200, 245, 66, 0.12);
  background: rgba(255, 255, 255, 0.06);
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239aa4b8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
select option { background: var(--bg-2); color: var(--text); }
textarea { resize: vertical; min-height: 100px; }

.url-row { display: flex; gap: 10px; }
.url-input-wrap { position: relative; flex: 1; }
.url-input-wrap svg {
  position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
  width: 18px; height: 18px; color: var(--faint);
  pointer-events: none;
}
.url-input-wrap input { padding-left: 46px; font-size: 15.5px; }
.btn-paste { border-radius: var(--r-sm); padding: 0 22px; flex: none; }
.hint { margin-top: 14px; font-size: 13px; color: var(--faint); text-align: center; }

.form-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }
.field { margin-bottom: 16px; }
.form-grid .field { margin-bottom: 0; }

.dropzone {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 28px 20px;
  border: 1.5px dashed rgba(255, 255, 255, 0.16);
  border-radius: var(--r-md);
  color: var(--muted);
  text-align: center;
  font-size: 14px;
  transition: border-color 0.25s, background 0.25s;
  cursor: pointer;
}
.dropzone:hover, .dropzone.drag { border-color: rgba(200, 245, 66, 0.5); background: rgba(200, 245, 66, 0.04); }
.dropzone svg { width: 30px; height: 30px; color: var(--faint); }
.dropzone strong { color: var(--text); }

.thumbs { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.thumb { position: relative; width: 76px; height: 76px; border-radius: 10px; overflow: hidden; border: 1px solid var(--stroke); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb button {
  position: absolute; top: 4px; right: 4px;
  width: 20px; height: 20px;
  display: grid; place-items: center;
  border: none; border-radius: 6px;
  background: rgba(0, 0, 0, 0.65);
  color: #fff; font-size: 11px; line-height: 1;
}

/* ── loader ── */
.loader { display: flex; flex-direction: column; align-items: center; padding: 28px 0 14px; }
.scanner { position: relative; width: 150px; height: 150px; margin-bottom: 26px; }
.scanner-sweep {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(200, 245, 66, 0.32) 55deg, transparent 60deg);
  animation: sweep 1.6s linear infinite;
}
@keyframes sweep { to { transform: rotate(360deg); } }
.scanner-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(200, 245, 66, 0.25); }
.scanner-ring.r1 { inset: 0; }
.scanner-ring.r2 { inset: 22px; border-color: rgba(255, 255, 255, 0.1); }
.scanner-car {
  position: absolute; inset: 0; margin: auto;
  width: 64px; height: 32px;
  color: var(--volt);
  filter: drop-shadow(0 0 14px rgba(200, 245, 66, 0.45));
}
.loader-status { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-bottom: 18px; min-height: 26px; }
.loader-bar { width: min(380px, 86%); height: 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.loader-bar i { display: block; width: 0%; height: 100%; border-radius: 6px; background: var(--grad); box-shadow: 0 0 16px rgba(200, 245, 66, 0.5); }
.loader-tip { margin-top: 18px; font-size: 13px; color: var(--faint); text-align: center; max-width: 420px; }

.form-error {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--r-sm);
  background: var(--red-soft);
  border: 1px solid rgba(255, 93, 108, 0.3);
  color: #ffc2c9;
  font-size: 14.5px;
  text-align: center;
}
.quota { margin-top: 14px; text-align: center; font-size: 12.5px; color: var(--faint); }

/* ── rezultati ── */
.results { padding-top: 30px; }

.demo-banner {
  margin-bottom: 22px;
  padding: 13px 20px;
  border-radius: var(--r-md);
  background: var(--amber-soft);
  border: 1px solid rgba(255, 181, 71, 0.3);
  color: #ffd9a0;
  font-size: 14px;
}
.demo-banner code { background: rgba(0, 0, 0, 0.3); padding: 2px 7px; border-radius: 6px; font-size: 12.5px; }

.res-head {
  display: grid;
  grid-template-columns: 290px 1fr auto;
  gap: 28px;
  padding: 26px;
  align-items: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.res-img {
  width: 100%; aspect-ratio: 4 / 3;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04) center/cover no-repeat;
  border: 1px solid var(--stroke);
  position: relative;
  overflow: hidden;
}
.res-img.placeholder { display: grid; place-items: center; }
.res-img.placeholder svg { width: 84px; color: rgba(255, 255, 255, 0.18); }

.res-kicker { font-size: 12.5px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--volt); margin-bottom: 10px; }
.res-info h3 { font-family: var(--font-display); font-size: clamp(21px, 2.6vw, 30px); font-weight: 700; letter-spacing: -0.015em; line-height: 1.15; margin-bottom: 14px; }

.res-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.res-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--stroke-soft);
  font-size: 13px; font-weight: 500;
  color: var(--muted);
}
.res-chip b { color: var(--text); font-weight: 600; }

.res-seller { font-size: 13.5px; color: var(--faint); margin-bottom: 14px; }
.res-seller b { color: var(--muted); }
#res-link { display: inline-flex; align-items: center; gap: 7px; color: var(--volt); font-weight: 600; font-size: 14.5px; }
#res-link svg { width: 15px; height: 15px; transition: transform 0.25s var(--ease-out); }
#res-link:hover svg { transform: translate(2px, -2px); }

.score-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.score-ring { position: relative; width: 150px; height: 150px; }
.score-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.ring-bg { fill: none; stroke: rgba(255, 255, 255, 0.07); stroke-width: 9; }
.ring-val {
  fill: none; stroke: url(#ringGrad); stroke-width: 9; stroke-linecap: round;
  stroke-dasharray: 326.7; stroke-dashoffset: 326.7;
  filter: drop-shadow(0 0 10px rgba(200, 245, 66, 0.4));
}
.score-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.score-num { font-family: var(--font-display); font-size: 44px; font-weight: 700; line-height: 1; letter-spacing: -0.02em; }
.score-label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint); margin-top: 5px; }
.score-verdict { font-family: var(--font-display); font-weight: 600; font-size: 14.5px; text-align: center; max-width: 190px; color: var(--muted); line-height: 1.4; }

.res-summary { padding: 22px 28px; font-size: 16px; color: var(--text); margin-bottom: 18px; border-left: 3px solid var(--volt); }

/* kartice */
.card { padding: 26px; }
.card-head { display: flex; align-items: center; gap: 13px; margin-bottom: 20px; }
.card-head h4 { font-family: var(--font-display); font-size: 18px; font-weight: 700; letter-spacing: -0.01em; flex: 1; }
.card-ico {
  width: 40px; height: 40px; flex: none;
  display: grid; place-items: center;
  border-radius: 12px;
}
.card-ico svg { width: 20px; height: 20px; }
.ico-lime { background: var(--volt-soft); color: var(--volt); }
.ico-blue { background: rgba(77, 141, 255, 0.13); color: #8ab4ff; }
.ico-red { background: var(--red-soft); color: var(--red); }
.ico-amber { background: var(--amber-soft); color: var(--amber); }

.card-text { color: var(--muted); font-size: 14.5px; }

.pill {
  padding: 6px 14px;
  border-radius: 99px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.pill-green { background: var(--green-soft); color: var(--green); border: 1px solid rgba(61, 220, 151, 0.3); }
.pill-lime { background: var(--volt-soft); color: var(--volt); border: 1px solid rgba(200, 245, 66, 0.3); }
.pill-amber { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(255, 181, 71, 0.3); }
.pill-red { background: var(--red-soft); color: var(--red); border: 1px solid rgba(255, 93, 108, 0.3); }
.pill-gray { background: rgba(255, 255, 255, 0.06); color: var(--muted); border: 1px solid var(--stroke); }

.count-badge {
  display: grid; place-items: center;
  min-width: 28px; height: 28px;
  padding: 0 9px;
  border-radius: 9px;
  background: var(--red-soft);
  color: var(--red);
  font-family: var(--font-display);
  font-weight: 700; font-size: 14px;
}
.count-badge.amber { background: var(--amber-soft); color: var(--amber); }
.count-badge.zero { background: var(--green-soft); color: var(--green); }

/* cijena */
.price-card { margin-bottom: 18px; }
.price-grid { display: grid; grid-template-columns: 240px 1fr; gap: 34px; align-items: center; margin-bottom: 18px; }
.price-label { display: block; font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint); margin-bottom: 6px; }
.price-big { font-family: var(--font-display); font-size: clamp(32px, 4vw, 44px); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; display: block; }
.price-eur { display: block; color: var(--muted); font-size: 14.5px; margin-top: 4px; }
.price-range { display: inline-block; margin-top: 12px; font-size: 13px; color: var(--muted); background: rgba(255,255,255,.05); border: 1px solid var(--stroke-soft); padding: 6px 12px; border-radius: 99px; }
.price-range:empty { display: none; }

.market-bar-wrap { margin-bottom: 18px; }
.market-bar {
  position: relative;
  height: 10px;
  border-radius: 6px;
  background: linear-gradient(90deg, #3ddc97 0%, #c8f542 45%, #ffb547 75%, #ff5d6c 100%);
  opacity: 0.9;
}
.market-median-tick {
  position: absolute; top: -5px; bottom: -5px; left: 50%;
  width: 2px; background: rgba(255, 255, 255, 0.65);
  border-radius: 2px;
}
.market-median-tick::after {
  content: "medijan";
  position: absolute; top: -22px; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--faint); text-transform: uppercase;
  white-space: nowrap;
}
.market-marker { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.market-marker i {
  display: block;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--bg);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.7), 0 4px 14px rgba(0, 0, 0, 0.5);
}
.market-marker b {
  position: absolute; top: 24px; left: 50%; transform: translateX(-50%);
  font-size: 11px; font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  background: rgba(13, 18, 28, 0.9);
  border: 1px solid var(--stroke);
  padding: 3px 9px; border-radius: 7px;
}
.market-minmax { display: flex; justify-content: space-between; margin-top: 30px; font-size: 12.5px; color: var(--faint); font-weight: 500; }

.market-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.market-stats > div {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--stroke-soft);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  text-align: center;
}
.market-stats b { display: block; font-family: var(--font-display); font-size: 19px; font-weight: 700; letter-spacing: -0.01em; }
.market-stats span { font-size: 11.5px; color: var(--faint); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }

.price-market.empty { display: grid; place-items: center; color: var(--faint); font-size: 14px; border: 1.5px dashed rgba(255,255,255,.12); border-radius: var(--r-md); padding: 26px; }

/* mreža rezultata */
.res-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.q-list { list-style: none; counter-reset: q; }
.q-list li {
  counter-increment: q;
  display: flex; gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--stroke-soft);
  font-size: 14.5px;
  color: var(--text);
  align-items: baseline;
}
.q-list li:last-child { border-bottom: none; }
.q-list li::before {
  content: counter(q, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700; font-size: 13px;
  color: var(--volt);
  flex: none;
}

.copy-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 15px;
  border-radius: 99px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 12.5px; font-weight: 600;
  transition: all 0.25s;
}
.copy-btn svg { width: 14px; height: 14px; }
.copy-btn:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.25); }
.copy-btn.copied { color: var(--volt); border-color: rgba(200, 245, 66, 0.4); background: var(--volt-soft); }

.check-list { list-style: none; }
.check-list li { display: flex; gap: 13px; padding: 11px 0; border-bottom: 1px solid var(--stroke-soft); }
.check-list li:last-child { border-bottom: none; }
.check-list .ck {
  flex: none;
  width: 22px; height: 22px; margin-top: 2px;
  border-radius: 7px;
  display: grid; place-items: center;
  background: var(--volt-soft);
  color: var(--volt);
}
.check-list .ck svg { width: 13px; height: 13px; }
.check-list b { display: block; font-size: 14.5px; font-weight: 600; }
.check-list span { font-size: 13.5px; color: var(--muted); }

.flag-list, .dot-list, .recall-list { list-style: none; }
.flag-list li {
  display: flex; gap: 12px;
  padding: 11px 14px;
  margin-bottom: 9px;
  border-radius: var(--r-sm);
  background: var(--red-soft);
  border: 1px solid rgba(255, 93, 108, 0.22);
  font-size: 14px;
  color: #ffd4d9;
}
.flag-list li::before { content: "⚑"; color: var(--red); flex: none; }
.flag-list .none {
  background: var(--green-soft);
  border-color: rgba(61, 220, 151, 0.25);
  color: #c5f5e1;
}
.flag-list .none::before { content: "✓"; color: var(--green); }

.dot-list li {
  position: relative;
  padding: 10px 0 10px 22px;
  border-bottom: 1px solid var(--stroke-soft);
  font-size: 14.5px;
  color: var(--text);
}
.dot-list li:last-child { border-bottom: none; }
.dot-list li::before {
  content: "";
  position: absolute; left: 2px; top: 18px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.maint-meter { display: flex; gap: 7px; margin-bottom: 16px; }
.maint-meter i { height: 9px; flex: 1; border-radius: 6px; background: rgba(255, 255, 255, 0.07); transition: background 0.4s; }
.maint-meter.l1 i:nth-child(1) { background: var(--green); box-shadow: 0 0 12px rgba(61, 220, 151, 0.5); }
.maint-meter.l2 i:nth-child(-n + 2) { background: var(--amber); box-shadow: 0 0 12px rgba(255, 181, 71, 0.4); }
.maint-meter.l3 i { background: var(--red); box-shadow: 0 0 12px rgba(255, 93, 108, 0.4); }
.maint-estimate { margin-top: 14px; font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--volt); }
.maint-estimate:empty { display: none; }

.neg-offers { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.neg-offer {
  padding: 15px 18px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--stroke-soft);
}
.neg-offer span { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--faint); margin-bottom: 5px; }
.neg-offer b { font-family: var(--font-display); font-size: 21px; font-weight: 700; letter-spacing: -0.01em; }
.neg-target { background: var(--volt-soft); border-color: rgba(200, 245, 66, 0.3); }
.neg-target b { color: var(--volt); }

.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pros, .cons { list-style: none; }
.pros li, .cons li {
  position: relative;
  padding: 8px 0 8px 26px;
  font-size: 14px;
  color: var(--muted);
}
.pros li::before, .cons li::before {
  position: absolute; left: 0; top: 8px;
  font-weight: 700;
}
.pros li::before { content: "+"; color: var(--green); }
.cons li::before { content: "−"; color: var(--red); }

.recall-list li { padding: 10px 0; border-bottom: 1px solid var(--stroke-soft); font-size: 13.5px; color: var(--muted); }
.recall-list li:last-child { border-bottom: none; }
.recall-list b { display: block; color: var(--text); font-size: 13px; letter-spacing: 0.02em; }
.fine-print { margin-top: 14px; font-size: 11.5px; color: var(--faint); }

/* slični oglasi */
.similar { margin-bottom: 18px; }
.similar-row {
  display: flex; gap: 14px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.similar-row::-webkit-scrollbar { height: 8px; }
.sim-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  border-radius: var(--r-md);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.sim-card:hover { transform: translateY(-4px); border-color: rgba(200, 245, 66, 0.35); }
.sim-img { width: 100%; aspect-ratio: 4 / 3; background: rgba(255, 255, 255, 0.05) center/cover no-repeat; }
.sim-body { padding: 12px 14px; }
.sim-title { font-size: 13px; font-weight: 600; line-height: 1.35; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 35px; }
.sim-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 9px; }
.sim-price { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--volt); }
.sim-year { font-size: 12px; color: var(--faint); }

.res-foot { text-align: center; padding-top: 14px; }
.disclaimer { max-width: 560px; margin: 20px auto 0; font-size: 12.5px; color: var(--faint); }

/* ── kako radi ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
.step { padding: 32px 28px; position: relative; overflow: hidden; transition: transform 0.35s var(--ease-out), border-color 0.35s; }
.step:hover { transform: translateY(-6px); border-color: rgba(200, 245, 66, 0.3); }
.step-num {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-display);
  font-size: 52px; font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  letter-spacing: -0.04em;
}
.step-ico {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 15px;
  background: var(--volt-soft);
  color: var(--volt);
  margin-bottom: 22px;
}
.step-ico svg { width: 25px; height: 25px; }
.step h3 { font-family: var(--font-display); font-size: 19px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
.step p { color: var(--muted); font-size: 14.5px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 46px; }
.faq-item { border-radius: var(--r-md); overflow: hidden; }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 16px;
  cursor: pointer;
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--volt); }
.faq-item summary i {
  position: relative;
  width: 22px; height: 22px; flex: none;
}
.faq-item summary i::before, .faq-item summary i::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  width: 13px; height: 2px;
  background: var(--volt);
  transform: translate(-50%, -50%);
  transition: transform 0.35s var(--ease-out);
  border-radius: 2px;
}
.faq-item summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] summary i::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body { padding: 0 24px; overflow: hidden; }
.faq-body p { padding-bottom: 20px; color: var(--muted); font-size: 14.5px; max-width: 660px; }

/* ── footer ── */
.footer { border-top: 1px solid var(--stroke-soft); padding: 52px 0 40px; position: relative; z-index: 2; background: rgba(6, 8, 13, 0.6); }
.footer-inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer-top { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer-tag { color: var(--muted); font-size: 14px; max-width: 520px; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 6px; }
.footer-links a {
  padding: 7px 15px; border-radius: 99px;
  color: var(--muted); font-size: 13.5px; font-weight: 500;
  transition: color 0.25s, background 0.25s;
}
.footer-links a:hover { color: var(--text); background: rgba(255, 255, 255, 0.06); }
.footer-disclaimer {
  max-width: 720px; margin-top: 4px;
  color: var(--faint); font-size: 12px; line-height: 1.6;
  padding-top: 18px; border-top: 1px solid var(--stroke-soft);
}
.footer-disclaimer strong { color: var(--muted); }
.footer-legal { color: var(--faint); font-size: 12.5px; }

/* ── disclaimer ispod forme / na stranicama ── */
.site-disclaimer {
  max-width: 640px; margin: 26px auto 0;
  text-align: center; font-size: 12.5px; color: var(--faint); line-height: 1.6;
}
.site-disclaimer strong { color: var(--muted); }

/* ── toast ── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, 80px);
  padding: 13px 24px;
  border-radius: 99px;
  background: rgba(13, 18, 28, 0.92);
  border: 1px solid rgba(200, 245, 66, 0.35);
  color: var(--text);
  font-size: 14px; font-weight: 600;
  box-shadow: 0 18px 50px -12px rgba(0, 0, 0, 0.7);
  opacity: 0;
  z-index: 100;
  pointer-events: none;
  backdrop-filter: blur(12px);
}

/* ── otkrivanje pri skrolu (početno stanje postavlja JS) ── */

/* ── responsive ── */
@media (max-width: 1060px) {
  .hero { padding-top: 130px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; text-align: center; }
  .hero-copy { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta, .hero-stats { justify-content: center; }
  .hero-disclaimer { margin-left: auto; margin-right: auto; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .fc-green { left: -14px; } .fc-flag { right: -10px; }
  .res-head { grid-template-columns: 240px 1fr; }
  .score-wrap { grid-column: 1 / -1; flex-direction: row; justify-content: center; gap: 26px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .res-grid { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; gap: 26px; }
  .steps { grid-template-columns: 1fr; }
  .res-head { grid-template-columns: 1fr; }
  .res-img { max-width: 420px; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 32px); }
  .form-grid { grid-template-columns: 1fr; }
  .url-row { flex-direction: column; }
  .btn-paste { padding: 13px; }
  .hero { padding-top: 116px; }
  .hero-stats { flex-direction: column; gap: 8px; }
  .hero-stats i { display: none; }
  .float-chip { display: none; }
  .preview-card { padding: 20px 18px; }
  .pv-score-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .market-stats { grid-template-columns: 1fr; }
  .pros-cons { grid-template-columns: 1fr; }
  .neg-offers { grid-template-columns: 1fr; }
  .tabs { width: 100%; }
  .tab { flex: 1; justify-content: center; padding: 11px 10px; }
  .legal { padding: 26px 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   Polirana struktura kartica (izvještaj)
   ═══════════════════════════════════════════════════════════════ */
.results { max-width: 1080px; margin: 0 auto; }

.card {
  transition: transform 0.35s var(--ease-out), border-color 0.35s, box-shadow 0.35s;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 72px -30px rgba(0, 0, 0, 0.82);
}
.card .card-head {
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--stroke-soft);
}
.card-red { border-color: rgba(255, 93, 108, 0.22); }
.card-red:hover { border-color: rgba(255, 93, 108, 0.4); }
.price-card:hover, .res-summary:hover { transform: none; }

.res-grid { align-items: start; }

/* ═══════════════════════════════════════════════════════════════
   Stranica izvještaja (analiza.html)
   ═══════════════════════════════════════════════════════════════ */
.report-main { padding: 108px 0 70px; min-height: 100vh; position: relative; z-index: 2; }

.report-topbar {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
  max-width: 1080px; margin: 0 auto 24px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 99px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 14px; font-weight: 600;
  transition: color 0.25s, border-color 0.25s, background 0.25s, transform 0.25s var(--ease-out);
}
.back-link svg { width: 16px; height: 16px; }
.back-link:hover { color: var(--text); border-color: rgba(255, 255, 255, 0.2); background: rgba(255, 255, 255, 0.07); transform: translateX(-2px); }
.report-kicker { font-family: var(--font-display); font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); }

.report-state { min-height: 54vh; display: grid; place-items: center; }
.report-state .loader { padding: 20px 0; }

.empty-card {
  text-align: center;
  max-width: 520px;
  padding: 48px 38px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.empty-card h2 { font-family: var(--font-display); font-size: 26px; font-weight: 700; letter-spacing: -0.015em; }
.empty-card p { color: var(--muted); font-size: 15px; max-width: 380px; }
.empty-card .btn { margin-top: 8px; }

/* ═══════════════════════════════════════════════════════════════
   Statične stranice (o nama, uslovi, privatnost)
   ═══════════════════════════════════════════════════════════════ */
.legal-main { padding: 130px 0 84px; position: relative; z-index: 2; }
.legal-head { text-align: center; margin-bottom: 36px; }
.legal-kicker {
  display: inline-block; margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--volt);
}
.legal-head h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px); font-weight: 700;
  letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 14px;
}
.legal-lead { color: var(--muted); font-size: 16px; max-width: 620px; margin: 0 auto; }

.legal { padding: 40px 42px; }
.legal h2 {
  font-family: var(--font-display);
  font-size: 20px; font-weight: 700; letter-spacing: -0.01em;
  margin: 30px 0 10px;
}
.legal h2:first-child { margin-top: 0; }
.legal p { color: var(--muted); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
.legal p:last-child { margin-bottom: 0; }
.legal strong { color: var(--text); font-weight: 600; }
.legal a { color: var(--volt); font-weight: 600; }
.legal a:hover { text-decoration: underline; }
.legal ul { list-style: none; margin: 4px 0 16px; }
.legal li { position: relative; padding: 7px 0 7px 24px; color: var(--muted); font-size: 15px; line-height: 1.6; }
.legal li::before {
  content: ""; position: absolute; left: 4px; top: 15px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--volt);
}
.legal li strong { color: var(--text); }
.legal-note { color: var(--faint); font-size: 13.5px; margin-top: 10px; }

/* ── smanjeno kretanje ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

/* ════════════════════════════════════════════════════════════════
   REKLAMNI GATE (Adsterra) — popup tokom 30s generisanja
   ════════════════════════════════════════════════════════════════ */
body.ad-gate-open { overflow: hidden; }
.ad-gate {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center; padding: 20px;
  background: rgba(3, 5, 9, 0.86);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.ad-gate-card {
  width: min(560px, 100%);
  background: var(--bg-2);
  border: 1px solid var(--stroke);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 30px 28px;
  text-align: center;
}
.ad-gate-kicker {
  display: inline-block; margin-bottom: 12px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--volt);
}
.ad-gate-status {
  font-family: var(--font-display); font-size: 21px; font-weight: 700;
  color: var(--text); line-height: 1.25; margin-bottom: 8px; min-height: 27px;
}
.ad-gate-sub { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.ad-gate-sub b { color: var(--volt); font-variant-numeric: tabular-nums; }
.ad-gate-bar { height: 6px; border-radius: 6px; background: rgba(255, 255, 255, 0.08); overflow: hidden; }
.ad-gate-bar i { display: block; height: 100%; width: 0%; border-radius: 6px; background: var(--volt); transition: width 0.2s linear; }
.ad-gate-ad { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--stroke-soft); }
.ad-gate-label { display: block; margin-bottom: 12px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); }
.ad-gate-ad > div { min-height: 90px; display: flex; align-items: center; justify-content: center; }
.ad-gate-ad img, .ad-gate-ad iframe { max-width: 100%; }
