/* ============================================================
   ARDEA ELECTRONIC — LED ekrani od 1995.
   Dizajn: tamna industrijska estetika s LED dot-matrix motivima
   ============================================================ */

:root {
  /* Boje */
  --bg:        #070708;
  --bg-soft:   #0c0c0f;
  --bg-panel:  #101014;
  --line:      #1e1e24;
  --line-hot:  #20294a;
  --text:      #f0efed;
  --muted:     #93929b;
  --dim:       #5d5c66;

  --led:       #4756ff;   /* primarna LED plava       */
  --led-soft:  #3d9eff;
  --amber:     #38d2ff;   /* sekundarni naglasak — cijan */
  --led-glow:  rgba(20, 106, 255, 0.45);

  /* Tipografija */
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body:    "Archivo", "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", "Consolas", monospace;

  --header-h: 72px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 56px); }

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

::selection { background: var(--led); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* Suptilna LED mreža preko cijele pozadine */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
  z-index: 0;
}

main { position: relative; z-index: 1; }

/* ---------- Pomoćne klase ---------- */

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.mono { font-family: var(--font-mono); }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .015em;
  line-height: 1.04;
}

/* Numerirani naslov sekcije — industrijski stil */
.sec-head { display: flex; align-items: baseline; gap: 18px; margin-bottom: 14px; }
.sec-head .num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--led);
  letter-spacing: .1em;
  white-space: nowrap;
}
.sec-head .num::after { content: " /"; color: var(--dim); }
.sec-head h2 { font-size: clamp(30px, 4.5vw, 52px); }
.sec-lead { color: var(--muted); max-width: 640px; margin-bottom: 48px; font-size: 17px; }

section { padding: 96px 0; position: relative; }
section.tight { padding: 64px 0; }

.divider { border: 0; border-top: 1px solid var(--line); }

/* ---------- Gumbi ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid var(--led);
  color: var(--text);
  background: transparent;
  cursor: pointer;
  transition: background .2s, box-shadow .25s, color .2s;
  position: relative;
}
.btn .arrow { color: var(--led); transition: transform .2s; }
.btn:hover { background: var(--led); color: #fff; box-shadow: 0 0 32px var(--led-glow); }
.btn:hover .arrow { color: #fff; transform: translateX(5px); }

.btn.solid { background: var(--led); color: #fff; }
.btn.solid:hover { background: var(--led-soft); border-color: var(--led-soft); }

.btn.ghost { border-color: var(--line); }
.btn.ghost:hover { border-color: var(--led); background: transparent; color: var(--text); box-shadow: none; }
.btn.ghost:hover .arrow { color: var(--led); }

/* ============================================================
   HEADER + NAVIGACIJA
   ============================================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 100;
  background: rgba(7,7,8,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 10px rgba(71, 86, 255, .35));
}
.logo-text { font-family: var(--font-display); font-size: 19px; text-transform: uppercase; letter-spacing: .06em; line-height: 1; }
.logo-text small { display: block; font-family: var(--font-mono); font-size: 9px; color: var(--led); letter-spacing: .42em; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 10px 14px;
  transition: color .2s;
}
.main-nav a:hover { color: var(--text); }
.main-nav a.active { color: var(--led); }
.main-nav a.nav-cta {
  border: 1px solid var(--led);
  color: var(--text);
  margin-left: 10px;
  transition: background .2s, color .2s;
}
.main-nav a.nav-cta:hover { background: var(--led); color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--text); transition: transform .25s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* LED traka — pokretni tekst ispod headera */
.ticker {
  position: fixed;
  top: var(--header-h); left: 0; right: 0;
  z-index: 99;
  background: #000;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  height: 34px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--led);
  text-shadow: 0 0 12px var(--led-glow);
  padding-right: 64px;
}
.ticker-track span::after { content: "●"; color: var(--dim); margin-left: 64px; font-size: 8px; vertical-align: 2px; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 90px) 0 80px;
  position: relative;
  overflow: hidden;
}

/* animirani LED zid u pozadini hero sekcije */
.led-wall {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  grid-auto-rows: 1fr;
  gap: 2px;
  opacity: .5;
  mask-image: linear-gradient(105deg, transparent 38%, #000 78%);
  -webkit-mask-image: linear-gradient(105deg, transparent 38%, #000 78%);
}
.led-wall i { background: #0d0d10; }
.led-wall i.lit { animation: pixel-flicker ease-in-out infinite; }
@keyframes pixel-flicker {
  0%, 100% { background: #0d0d10; box-shadow: none; }
  50%      { background: var(--px, #4756ff); box-shadow: 0 0 14px var(--px, #4756ff); }
}

.hero .container { position: relative; z-index: 2; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--line);
  background: rgba(0,0,0,.5);
  padding: 9px 16px;
  margin-bottom: 32px;
}
.hero-kicker .dot {
  width: 7px; height: 7px;
  background: var(--led);
  border-radius: 50%;
  animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 50% { opacity: .25; } }

.hero h1 {
  font-size: clamp(52px, 9vw, 124px);
  max-width: 11ch;
}
.hero h1 .accent { color: var(--led); text-shadow: 0 0 38px var(--led-glow); }

.hero-sub {
  margin-top: 28px;
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
}
.hero-sub strong { color: var(--text); font-weight: 600; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 44px; }

/* statistika na dnu heroja */
.hero-stats {
  margin-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(7,7,8,.7);
  backdrop-filter: blur(6px);
}
.hero-stats > div { padding: 22px 26px; border-right: 1px solid var(--line); }
.hero-stats > div:last-child { border-right: 0; }
.hero-stats .val {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 40px);
  color: var(--text);
  line-height: 1;
}
.hero-stats .val em { font-style: normal; color: var(--led); }
.hero-stats .lab {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dim);
  margin-top: 10px;
}

/* ============================================================
   DJELATNOSTI — dvije velike kartice
   ============================================================ */

.act-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.act-card {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 44px 40px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  display: flex;
  flex-direction: column;
  min-height: 340px;
}
.act-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--led), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}
.act-card:hover { border-color: var(--line-hot); transform: translateY(-4px); }
.act-card:hover::after { transform: scaleX(1); }

.act-card .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--led);
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.act-card h3 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 16px; }
.act-card p { color: var(--muted); max-width: 42ch; }
.act-card .link {
  margin-top: auto;
  padding-top: 30px;
  font-family: var(--font-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text);
}
.act-card .link span { color: var(--led); margin-left: 8px; transition: margin-left .2s; }
.act-card:hover .link span { margin-left: 14px; }

/* ============================================================
   MAPA BALKANA — LED dot-matrix
   ============================================================ */

.map-section { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.led-map-frame {
  border: 1px solid var(--line);
  background: #000;
  padding: 26px;
  position: relative;
  box-shadow: 0 0 80px rgba(71,86,255,.08), inset 0 0 60px rgba(0,0,0,.8);
}
.led-map-frame::before {
  content: "ARDEA · MREŽA PROJEKATA";
  position: absolute;
  top: -1px; left: 24px;
  transform: translateY(-50%);
  background: var(--bg-soft);
  padding: 0 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--dim);
}

.led-map { position: relative; width: 100%; }
.led-map svg { display: block; width: 100%; height: auto; }

.city-marker { position: absolute; transform: translate(-50%, -50%); z-index: 3; }
.city-marker .pulse {
  width: 10px; height: 10px;
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--amber);
  position: relative;
  cursor: pointer;
}
.city-marker .pulse::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid var(--amber);
  border-radius: 50%;
  animation: pulse-ring 2.4s ease-out infinite;
  animation-delay: inherit;
}
@keyframes pulse-ring {
  0%   { transform: scale(.4); opacity: .9; }
  100% { transform: scale(1.7); opacity: 0; }
}
.city-marker .label {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .08em;
  white-space: nowrap;
  color: var(--text);
  background: rgba(0,0,0,.75);
  border: 1px solid var(--line);
  padding: 3px 8px;
  pointer-events: none;
}
.city-marker.flip .label { left: auto; right: 14px; }

.map-aside h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.map-aside p { color: var(--muted); margin-bottom: 32px; }

.city-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); }
.city-list li {
  background: var(--bg-panel);
  padding: 13px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color .2s, background .2s;
}
.city-list li::before { content: "▸"; color: var(--led); font-size: 10px; }
.city-list li:hover { color: var(--text); background: #16161b; }

/* ============================================================
   GALERIJA — placeholderi za fotografije
   ============================================================ */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid .ph:nth-child(1),
.gallery-grid .ph:nth-child(6) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

.ph {
  aspect-ratio: 4 / 3;
  border: 1px dashed #2c2c34;
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.018) 14px 28px),
    var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  transition: border-color .25s;
}
.ph:hover { border-color: var(--led); }
.ph { overflow: hidden; }
.ph.has-img { border: 1px solid var(--line); }
.ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ph.has-img:hover img { transform: scale(1.04); }
.ph.has-img .ph-city { background: rgba(0,0,0,.75); border: 1px solid var(--line); padding: 3px 8px; }
.ph .ph-ico { width: 34px; height: 34px; opacity: .4; }
.ph .ph-note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dim);
}
.ph .ph-city {
  position: absolute;
  left: 12px; bottom: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: var(--muted);
}
.ph .ph-city::before { content: "● "; color: var(--led); font-size: 8px; vertical-align: 2px; }

/* ============================================================
   KVALITETA — spec ploča
   ============================================================ */

.quality-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 64px;
  align-items: start;
}
.quality-copy h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 20px; }
.quality-copy p { color: var(--muted); margin-bottom: 18px; }
.quality-copy p strong { color: var(--text); }

.spec-panel { border: 1px solid var(--line); background: #000; }
.spec-panel .spec-title {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--led);
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 15px 20px;
  border-bottom: 1px solid #131318;
  font-family: var(--font-mono);
  font-size: 13.5px;
}
.spec-row:last-child { border-bottom: 0; }
.spec-row .k { color: var(--dim); letter-spacing: .04em; }
.spec-row .v { color: var(--text); text-align: right; }
.spec-row .v em { font-style: normal; color: var(--amber); }

/* ============================================================
   USE CASES
   ============================================================ */

.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.uc {
  background: var(--bg);
  padding: 36px 30px;
  position: relative;
  transition: background .25s;
}
.uc:hover { background: var(--bg-panel); }
.uc .uc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--dim);
  letter-spacing: .2em;
}
.uc svg { width: 38px; height: 38px; margin: 22px 0 18px; color: var(--led); }
.uc h3 { font-size: 22px; margin-bottom: 10px; }
.uc p { color: var(--muted); font-size: 14.5px; }

/* ============================================================
   PODSTRANICE — hero podstranice
   ============================================================ */

.page-hero {
  padding: calc(var(--header-h) + 130px) 0 72px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero .crumb {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dim);
  margin-bottom: 22px;
}
.page-hero .crumb b { color: var(--led); font-weight: 400; }
.page-hero h1 { font-size: clamp(42px, 7vw, 96px); max-width: 14ch; }
.page-hero .lead { margin-top: 24px; max-width: 560px; color: var(--muted); font-size: 18px; }

/* dijagonalni LED snop u pozadini */
.page-hero::after {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 55%; height: 180%;
  background: radial-gradient(ellipse at center, rgba(61,158,255,.07), transparent 65%);
  pointer-events: none;
}

/* ---------- Tipovi ekrana (vanjski / unutarnji) ---------- */

.type-block { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.type-block.rev .type-visual { order: 2; }

.type-visual {
  border: 1px solid var(--line);
  background: #000;
  aspect-ratio: 16 / 11;
  position: relative;
  overflow: hidden;
}
.type-visual .grid-fx {
  position: absolute; inset: 18px;
  display: grid;
  grid-template-columns: repeat(16, 1fr);
  grid-auto-rows: 1fr;
  gap: 3px;
}
.type-visual .grid-fx i { background: #0e0e11; }
.type-visual .grid-fx i.lit { animation: pixel-flicker ease-in-out infinite; }
.type-visual .vis-tag {
  position: absolute;
  left: 18px; bottom: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--text);
  background: rgba(0,0,0,.8);
  border: 1px solid var(--line);
  padding: 6px 12px;
}

.type-copy .tag {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--amber);
  letter-spacing: .24em;
  text-transform: uppercase;
}
.type-copy h2 { font-size: clamp(30px, 4vw, 50px); margin: 14px 0 18px; }
.type-copy > p { color: var(--muted); margin-bottom: 26px; }

.feat-list li {
  display: flex;
  gap: 14px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 15px;
  color: var(--muted);
}
.feat-list li:last-child { border-bottom: 1px solid var(--line); }
.feat-list b { color: var(--text); font-weight: 600; }
.feat-list .fi { color: var(--led); font-family: var(--font-mono); font-size: 13px; padding-top: 2px; }

/* ---------- Proces ---------- */

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step {
  border: 1px solid var(--line);
  background: var(--bg-soft);
  padding: 28px 24px 26px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  font-size: 54px;
  color: transparent;
  -webkit-text-stroke: 1px #33323c;
  line-height: 1;
  display: block;
  margin-bottom: 18px;
}
.step:hover::before { -webkit-text-stroke-color: var(--led); }
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 14px; }

/* ---------- Usporedna tablica ---------- */

.cmp-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); font-family: var(--font-mono); font-size: 13.5px; }
.cmp-table th, .cmp-table td { padding: 15px 18px; border: 1px solid var(--line); text-align: left; }
.cmp-table thead th { background: #000; color: var(--led); text-transform: uppercase; letter-spacing: .12em; font-weight: 500; font-size: 12px; }
.cmp-table tbody th { color: var(--dim); font-weight: 400; width: 30%; background: var(--bg-soft); }
.cmp-table td { color: var(--text); }

/* ============================================================
   NAŠI EKRANI — lokacije, cjenik, popusti
   ============================================================ */

.loc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.loc-card { border: 1px solid var(--line); background: var(--bg-soft); display: flex; flex-direction: column; transition: border-color .25s, transform .25s; }
.loc-card:hover { border-color: var(--line-hot); transform: translateY(-4px); }

.loc-ph {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  background:
    repeating-linear-gradient(135deg, transparent 0 14px, rgba(255,255,255,.018) 14px 28px),
    #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.loc-ph .ph-note { font-family: var(--font-mono); font-size: 10px; letter-spacing: .22em; color: var(--dim); text-transform: uppercase; }
.loc-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.loc-card:hover .loc-ph img { transform: scale(1.04); }
.loc-ph .live {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  color: var(--led);
  display: flex;
  align-items: center;
  gap: 7px;
}
.loc-ph .live::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--led); animation: blink 1.4s infinite; }

.loc-body { padding: 24px 24px 22px; display: flex; flex-direction: column; gap: 0; flex: 1; }
.loc-body h3 { font-size: 24px; }
.loc-body .addr { font-family: var(--font-mono); font-size: 12.5px; color: var(--amber); letter-spacing: .04em; margin: 6px 0 18px; }
.loc-specs { margin-top: auto; border-top: 1px solid var(--line); }
.loc-specs div { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid #15151a; font-family: var(--font-mono); font-size: 12.5px; }
.loc-specs div:last-child { border-bottom: 0; }
.loc-specs .k { color: var(--dim); }
.loc-specs .v { color: var(--text); }

.views-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .1em;
  color: #000;
  background: var(--amber);
  padding: 3px 9px;
  margin-bottom: 14px;
  font-weight: 600;
}

/* ---------- Cjenik ---------- */

.price-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); }
.price-table th, .price-table td { padding: 18px 20px; text-align: center; border: 1px solid var(--line); }
.price-table thead th {
  background: var(--led);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 600;
}
.price-table tbody th {
  background: var(--bg-soft);
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 400;
  letter-spacing: .06em;
  text-align: left;
}
.price-table td { font-family: var(--font-display); font-size: 27px; letter-spacing: .02em; background: var(--bg-soft); }
.price-table td small { display: block; font-family: var(--font-mono); font-size: 11px; color: var(--dim); letter-spacing: .1em; margin-top: 5px; }
.price-note { font-family: var(--font-mono); font-size: 12px; color: var(--dim); margin-top: 14px; text-align: right; }

/* ---------- Uvjeti + popusti ---------- */

.perks-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 20px; align-items: stretch; }

.perk-box { border: 1px solid var(--line); background: var(--bg-soft); padding: 36px; }
.perk-box h3 { font-size: 26px; margin-bottom: 22px; }
.perk-box .big-fact { display: flex; align-items: baseline; gap: 16px; padding: 18px 0; border-top: 1px solid var(--line); }
.perk-box .big-fact .n { font-family: var(--font-display); font-size: 44px; color: var(--led); line-height: 1; min-width: 130px; }
.perk-box .big-fact p { color: var(--muted); font-size: 14.5px; }
.perk-box .big-fact p b { color: var(--text); }

.disc-list { display: flex; flex-direction: column; }
.disc-list .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--muted);
}
.disc-list .row .pct {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--amber);
}
.disc-list .row.max { color: var(--text); }
.disc-list .row.max .pct { color: var(--led); text-shadow: 0 0 18px var(--led-glow); }

/* ============================================================
   CTA TRAKA + FOOTER
   ============================================================ */

.cta-band {
  border-top: 1px solid var(--line);
  background:
    radial-gradient(ellipse 60% 120% at 50% 100%, rgba(71,86,255,.14), transparent),
    #000;
  text-align: center;
  padding: 110px 0;
}
.cta-band h2 { font-size: clamp(36px, 6vw, 76px); margin-bottom: 18px; }
.cta-band h2 .accent { color: var(--led); }
.cta-band p { color: var(--muted); max-width: 52ch; margin: 0 auto 40px; }
.cta-band .hero-actions { justify-content: center; margin-top: 0; }

.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--led);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-about p { color: var(--muted); font-size: 14.5px; max-width: 38ch; margin-top: 18px; }
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul a { color: var(--muted); font-size: 14.5px; transition: color .2s; }
.footer-grid ul a:hover { color: var(--text); }

.contact-rows li { display: flex; gap: 12px; color: var(--muted); font-size: 14.5px; margin-bottom: 13px; }
.contact-rows .ci { color: var(--led); font-family: var(--font-mono); font-size: 12px; padding-top: 2px; white-space: nowrap; }
.contact-rows a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .08em;
  color: var(--dim);
  text-transform: uppercase;
}

/* ============================================================
   ANIMACIJE POJAVLJIVANJA
   ============================================================ */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
.reveal.d5 { transition-delay: .40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .ticker-track, .led-wall i, .city-marker .pulse::after { animation: none !important; }
}

/* ============================================================
   RESPONZIVNOST
   ============================================================ */

@media (max-width: 1024px) {
  .uc-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr 1fr; }
  .map-layout, .quality-layout { grid-template-columns: 1fr; gap: 44px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .ph:nth-child(1), .gallery-grid .ph:nth-child(6) { grid-column: auto; grid-row: auto; aspect-ratio: 4 / 3; }
}

@media (max-width: 820px) {
  section { padding: 72px 0; }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(7,7,8,.97);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 22px;
    transform: translateY(-130%);
    transition: transform .3s ease;
    z-index: -1;
  }
  .main-nav.open { transform: none; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .main-nav a.nav-cta { margin: 16px 0 0; text-align: center; border-bottom: 1px solid var(--led); }
  .nav-toggle { display: flex; }

  .hero { min-height: auto; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div:nth-child(2) { border-right: 0; }
  .hero-stats > div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .act-grid, .type-block, .perks-layout { grid-template-columns: 1fr; }
  .type-block.rev .type-visual { order: 0; }
  .type-block { gap: 30px; }

  .price-table { font-size: 13px; }
  .price-table th, .price-table td { padding: 13px 10px; }
  .price-table td { font-size: 21px; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .city-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .uc-grid, .process-grid, .loc-grid, .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .sec-head { flex-direction: column; gap: 8px; }
  .city-marker .label { display: none; }
}
