/* ═══════════════════════════════════════════════════
   AirLink Telekom — main.css
   Light tema (single theme)
   ═══════════════════════════════════════════════════ */

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ══════════════════════════════════════════════════
   LIGHT THEME — sve CSS varijable
══════════════════════════════════════════════════ */
:root {
  --red:   #e8181c;
  --red2:  #c01215;
  --font:  'Plus Jakarta Sans', sans-serif;
  --head:  'Outfit', sans-serif;

  --bg:          #f4f4f6;
  --bg2:         #ffffff;
  --bg3:         #eaeaee;
  --bg4:         #dfdfe5;
  --card:        #ffffff;

  --border:      rgba(0,0,0,0.08);
  --border2:     rgba(0,0,0,0.14);
  --border3:     rgba(0,0,0,0.24);

  --text:        #111114;
  --text2:       #333340;
  --muted:       #5f5f6e;

  --red-a06:     rgba(204,18,24,0.05);
  --red-a10:     rgba(204,18,24,0.08);
  --red-a15:     rgba(204,18,24,0.12);
  --red-a20:     rgba(204,18,24,0.17);

  --nav-bg:      rgba(255,255,255,0.96);
  --footer-bg:   #1a1a1e;
  --input-bg:    rgba(0,0,0,0.03);
  --input-bd:    rgba(0,0,0,0.14);
  --shadow:      0 4px 24px rgba(0,0,0,0.09);

  /* Logo: originalna boja za bijelu pozadinu */
  --logo-filter:        none;
  --logo-footer-filter: brightness(0) invert(1) opacity(0.65);
  --footer-text:        rgba(255,255,255,0.4);
  --footer-link:        rgba(255,255,255,0.45);
  --footer-col-h:       rgba(255,255,255,0.28);
  --footer-copy:        rgba(255,255,255,0.2);
}

/* ── Smooth colour transitions (samo na boje, ne layout) ─ */
body, nav, footer,
.hero, .hero-card, .stats-strip, .why-section, .why-item,
.plans-section, .plan-card, .plan-top, .plan-body,
.coverage-bottom, .coverage-cta-box, .map-section, .map-top-bar, .map-bottom-bar,
.contact-section, .form-box, .contact-pkg-link,
.town-tag, .page-hero,
.form-group input, .form-group select, .form-group textarea {
  transition: background-color 0.3s ease, border-color 0.3s ease, color 0.2s ease;
}

/* ── Base ──────────────────────────────────────────── */
html  { scroll-behavior: smooth; }
body  { font-family: var(--font); background: var(--bg); color: var(--text); overflow-x: hidden; }
a     { text-decoration: none; color: inherit; }
img   { max-width: 100%; display: block; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
nav {
  position: sticky; top: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo a { display: flex; align-items: center; gap: 0; }

/* Logo — jedan fajl, filter mijenja izgled */
.site-logo {
  height: 38px; object-fit: contain;
  filter: var(--logo-filter);
  transition: filter 0.3s ease;
}
/* Fallback tekst ako logo.png ne postoji */
.nav-logo-fb {
  font-family: var(--head); font-size: 20px; font-weight: 900;
  color: var(--text); display: none; align-items: center;
}
.nav-logo-fb span { color: var(--red); }

.nav-menu { display: flex; align-items: center; }
.nav-menu > a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 0 1.1rem; height: 72px;
  display: flex; align-items: center; position: relative;
}
.nav-menu > a::after {
  content: ''; position: absolute; bottom: 0;
  left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-menu > a:hover { color: var(--text); }
.nav-menu > a.active { color: var(--text); }
.nav-menu > a.active::after { transform: scaleX(1); }

.nav-right { display: flex; align-items: center; gap: 6px; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text);
  transition: background 0.3s;
}

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  background: var(--red); color: #fff;
  border: none; padding: 13px 26px; border-radius: 8px; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--red2); transform: translateY(-1px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font); font-size: 14px; font-weight: 600;
  background: var(--input-bg); color: var(--text);
  border: 1px solid var(--border2);
  padding: 13px 26px; border-radius: 8px; cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn-ghost:hover { background: var(--bg3); border-color: var(--border3); }

/* ══════════════════════════════════════════════════
   SECTION HELPERS
══════════════════════════════════════════════════ */
.s-inner { max-width: 1200px; margin: 0 auto; }
.s-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--red); margin-bottom: 1rem;
}
.s-eyebrow::before { content: ''; width: 18px; height: 2px; background: var(--red); border-radius: 2px; }
.s-title {
  font-family: var(--head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900; letter-spacing: -0.5px; line-height: 1.1;
  color: var(--text); margin-bottom: 1rem;
}
.s-sub { font-size: 16px; color: var(--muted); line-height: 1.75; max-width: 480px; }

/* ══════════════════════════════════════════════════
   PAGE HERO (shared — compact)
══════════════════════════════════════════════════ */
.page-hero {
  background: var(--bg2);
  padding: 3.5rem 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-glow {
  position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, var(--red-a10) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; }

/* ══════════════════════════════════════════════════
   HOME HERO
══════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg2);
  padding: 0 4rem;
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
}
.hero-glow {
  position: absolute; top: -20%; right: -5%;
  width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, var(--red-a10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow2 {
  position: absolute; bottom: -30%; left: -10%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, var(--red-a06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red-a10); border: 1px solid var(--red-a20);
  border-radius: 100px; padding: 6px 16px 6px 8px;
  font-size: 12px; font-weight: 600; color: var(--red);
  margin-bottom: 2rem;
}
.hero-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.4;transform:scale(.8);} }
.hero h1 {
  font-family: var(--head); font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.08; letter-spacing: -1px;
  color: var(--text); margin-bottom: 1.5rem;
}
.hero h1 .red { color: var(--red); }
.hero-sub { font-size: 17px; color: var(--muted); line-height: 1.75; max-width: 440px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.hero-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.25rem 1.5rem;
  display: flex; align-items: center; gap: 1rem;
}
.hero-card:hover { background: var(--bg4); border-color: var(--border2); }
.hci { width: 42px; height: 42px; border-radius: 10px; background: var(--red-a10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hci svg { width: 20px; height: 20px; fill: var(--red); }
.hct { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.hcs { font-size: 13px; color: var(--muted); }

/* ══════════════════════════════════════════════════
   STATS
══════════════════════════════════════════════════ */
.stats-strip { background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 4rem; }
.stats-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.stat-item { text-align: center; }
.stat-num { font-family: var(--head); font-size: 52px; font-weight: 900; color: var(--text); line-height: 1; letter-spacing: -1px; display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.stat-num .unit { font-size: 28px; color: var(--red); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .8px; font-weight: 500; }

/* ══════════════════════════════════════════════════
   WHY
══════════════════════════════════════════════════ */
.why-section { background: var(--bg2); padding: 7rem 4rem; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 4rem; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.why-item { padding: 2.5rem 2rem; border-right: 1px solid var(--border); position: relative; overflow: hidden; background: var(--bg2); }
.why-item:last-child { border-right: none; }
.why-item:hover { background: var(--bg3); }
.why-num { font-family: var(--head); font-size: 72px; font-weight: 900; color: var(--border2); line-height: 1; position: absolute; top: 1rem; right: 1.5rem; letter-spacing: -1px; }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--red-a10); display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; }
.why-icon svg { width: 22px; height: 22px; fill: var(--red); }
.why-title { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.why-desc { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   PLANS
══════════════════════════════════════════════════ */
.plans-section { background: var(--bg); padding: 5rem 4rem; }
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 880px; margin: 4rem auto 0; }
.plan-card { background: var(--card); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); position: relative; transition: border-color 0.25s, transform 0.2s; }
.plan-card:hover { border-color: var(--border2); transform: translateY(-3px); }
.plan-card.featured { border-color: var(--red-a20); }
.plan-card.featured:hover { border-color: rgba(232,24,28,.6); }
.plan-featured-glow { position: absolute; top: 0; left: 0; right: 0; height: 200px; background: linear-gradient(180deg, var(--red-a10) 0%, transparent 100%); pointer-events: none; }
.plan-top { padding: 2.5rem 2rem 2rem; position: relative; background: var(--bg3); }
.plan-card.featured .plan-top { background: var(--bg2); }
.plan-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; background: var(--red); color: #fff; padding: 4px 12px; border-radius: 100px; margin-bottom: 1.5rem; }
.plan-name { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.plan-speed-row { display: flex; align-items: baseline; gap: 4px; }
.plan-speed { font-family: var(--head); font-size: 64px; font-weight: 900; letter-spacing: -1px; color: var(--text); line-height: 1; }
.plan-mbps { font-size: 20px; font-weight: 500; color: var(--muted); }
.plan-ul { font-size: 13px; color: var(--muted); margin-top: 6px; }
.plan-ul span { color: var(--red); font-weight: 600; }
.plan-body { padding: 1.5rem 2rem 2rem; border-top: 1px solid var(--border); background: var(--card); }
.plan-price-row { display: flex; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.plan-price { font-family: var(--head); font-size: 40px; font-weight: 900; letter-spacing: -.5px; color: var(--text); }
.plan-per { font-size: 15px; color: var(--muted); }
.plan-unlimited { display: inline-flex; align-items: center; gap: 6px; background: var(--red-a10); border: 1px solid var(--red-a20); color: var(--red); font-size: 12px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; margin: 1rem 0 1.25rem; }
.plan-feats { list-style: none; margin-bottom: 1.75rem; }
.plan-feats li { font-size: 14px; color: var(--muted); padding: 9px 0; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 10px; }
.plan-feats li:last-child { border-bottom: none; }
.chk { width: 18px; height: 18px; border-radius: 50%; background: var(--red-a15); border: 1px solid var(--red-a20); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.chk::after { content: ''; width: 5px; height: 4px; border-left: 1.5px solid var(--red); border-bottom: 1.5px solid var(--red); transform: rotate(-45deg) translateY(-1px); display: block; }
.plan-btn { display: block; width: 100%; text-align: center; font-family: var(--font); font-size: 14px; font-weight: 700; padding: 13px; border-radius: 10px; cursor: pointer; transition: all 0.2s; }
.plan-btn-out { background: transparent; color: var(--text); border: 1px solid var(--border2); }
.plan-btn-out:hover { background: var(--bg3); border-color: var(--border3); }
.plan-btn-solid { background: var(--red); color: #fff; border: none; }
.plan-btn-solid:hover { background: var(--red2); }
.plans-note { text-align: center; font-size: 13px; color: var(--muted); margin: 2rem auto 0; padding: 1.25rem; background: var(--bg3); border: 1px solid var(--border); border-radius: 10px; max-width: 880px; }

/* ══════════════════════════════════════════════════
   COVERAGE
══════════════════════════════════════════════════ */
.map-section { background: var(--bg); }
.map-top-bar { display: flex; align-items: center; justify-content: space-between; padding: .85rem 4rem; background: var(--bg3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.map-top-label { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); }
.map-top-hint { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.map-wrap-full { width: 100%; position: relative; z-index: 1; }
.map-wrap-full #coverageMap { width: 100%; height: 520px; display: block; }
.map-bottom-bar { display: flex; align-items: center; justify-content: space-between; padding: .6rem 4rem; background: var(--bg3); border-top: 1px solid var(--border); }
.map-legend { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--muted); flex-wrap: wrap; }
.map-legend-dot { display: inline-block; width: 12px; height: 12px; border-radius: 50%; background: var(--red); border: 2px solid rgba(255,255,255,.8); flex-shrink: 0; }
.map-legend-dot.main { width: 16px; height: 16px; box-shadow: 0 0 0 3px var(--red-a20); }
.map-credit { font-size: 11px; color: var(--muted); opacity: .5; }
.leaflet-top, .leaflet-bottom { z-index: 500 !important; }
.leaflet-pane                  { z-index: 400 !important; }
.leaflet-overlay-pane          { z-index: 420 !important; }
.leaflet-marker-pane           { z-index: 430 !important; }
.leaflet-popup-pane            { z-index: 440 !important; }
.coverage-bottom { background: var(--bg); padding: 5rem 4rem; }
.coverage-bottom-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.towns-title { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.towns-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.town-tag { font-size: 13px; font-weight: 600; background: var(--bg3); border: 1px solid var(--border2); color: var(--text); padding: 7px 16px; border-radius: 100px; cursor: default; }
.town-tag:hover, .town-tag.main { background: var(--red-a10); border-color: var(--red-a20); color: var(--red); }
.coverage-cta-box { display: flex; gap: 1.25rem; align-items: flex-start; background: var(--red-a06); border: 1px solid var(--red-a20); border-radius: 16px; padding: 2rem; }
.cta-box-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--red-a15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cta-box-icon svg { width: 20px; height: 20px; fill: var(--red); }
.coverage-cta-box h3 { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.coverage-cta-box p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════ */
.contact-section { padding: 4rem 4rem 5rem; background: var(--bg); }
.contact-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.contact-info-col { display: flex; flex-direction: column; }
.c-info-title { font-family: var(--head); font-size: 26px; font-weight: 900; letter-spacing: -.3px; color: var(--text); margin-bottom: .4rem; }
.c-info-sub { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 1.5rem; }
.c-items { display: flex; flex-direction: column; }
.c-item { display: flex; align-items: flex-start; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); }
.c-item:first-child { border-top: 1px solid var(--border); }
.c-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--red-a10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.c-icon svg { width: 17px; height: 17px; fill: var(--red); }
.c-label { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.c-value { font-size: 14px; font-weight: 500; color: var(--text); }
.contact-packages { margin-top: 1.75rem; }
.contact-packages .c-label { margin-bottom: .6rem; }
.contact-pkg-link { display: flex; align-items: center; justify-content: space-between; padding: .85rem 1rem; margin-bottom: 8px; background: var(--bg3); border: 1px solid var(--border2); border-radius: 10px; }
.contact-pkg-link:hover { background: var(--bg4); border-color: var(--border3); }
.contact-pkg-link.featured { border-color: var(--red-a20); background: var(--red-a06); }
.contact-pkg-link.featured:hover { background: var(--red-a10); }
.pkg-name { display: block; font-size: 13px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.pkg-speed { display: block; font-size: 12px; color: var(--muted); }
.pkg-price { font-family: var(--head); font-size: 19px; font-weight: 900; color: var(--red); white-space: nowrap; }
.pkg-price small { font-size: 11px; font-weight: 400; color: var(--muted); }

/* ══════════════════════════════════════════════════
   FORM
══════════════════════════════════════════════════ */
.form-box { background: var(--card); border: 1px solid var(--border); border-radius: 20px; padding: 2.25rem; box-shadow: var(--shadow); }
.form-title { font-family: var(--head); font-size: 22px; font-weight: 900; letter-spacing: -.3px; color: var(--text); margin-bottom: .4rem; }
.form-sub { font-size: 13px; color: var(--muted); margin-bottom: 1.75rem; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.form-group { margin-bottom: 12px; }
.form-group label { display: block; font-size: 11px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--input-bg); border: 1px solid var(--input-bd);
  border-radius: 8px; color: var(--text); font-family: var(--font); font-size: 14px;
  padding: 10px 13px; outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted); opacity: .5; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); background: var(--red-a06); }
.form-group select { color: var(--text); }
.form-group select option { background: var(--bg3); color: var(--text); }
.form-group textarea { resize: vertical; min-height: 85px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 1.25rem; }
.form-check input[type=checkbox] { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; accent-color: var(--red); }
.form-check label { font-size: 12px; color: var(--muted); line-height: 1.6; cursor: pointer; }
.form-check label a { color: var(--red); }
.form-alert { display: none; padding: 11px 14px; border-radius: 8px; font-size: 13px; font-weight: 500; margin-bottom: 1rem; }
.form-alert.err { background: var(--red-a10); border: 1px solid var(--red-a20); color: #e05555; }
.form-alert.ok  { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #4ade80; }
.btn-submit { width: 100%; font-family: var(--font); font-size: 14px; font-weight: 700; background: var(--red); color: #fff; border: none; border-radius: 10px; padding: 13px; cursor: pointer; transition: background 0.2s, transform 0.15s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-submit:hover { background: var(--red2); transform: translateY(-1px); }
.btn-submit svg { width: 17px; height: 17px; fill: #fff; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

/* ══════════════════════════════════════════════════
   FOOTER — uvijek tamni bez obzira na temu
══════════════════════════════════════════════════ */
footer { background: var(--footer-bg); border-top: 1px solid rgba(255,255,255,.06); padding: 4rem 4rem 2.5rem; margin-top: auto; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,.06); flex-wrap: wrap; }
.footer-logo-link { display: inline-block; margin-bottom: 1rem; }
.footer-logo-img { height: 32px; filter: var(--logo-footer-filter); transition: filter 0.3s ease; }
.footer-logo-fb { font-family: var(--head); font-size: 18px; font-weight: 900; color: #fff; display: none; align-items: center; }
.footer-logo-fb span { color: var(--red); }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 220px; margin-top: 4px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.28); margin-bottom: 1.25rem; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,.45); margin-bottom: .6rem; transition: color 0.15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 2rem; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,.2); }
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px);} to{opacity:1;transform:translateY(0);} }
@keyframes spin   { from{transform:rotate(0deg);} to{transform:rotate(360deg);} }
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav, .hero, .why-section, .plans-section,
  .coverage-bottom, .contact-section, footer, .stats-strip,
  .page-hero, .map-top-bar, .map-bottom-bar { padding-left: 2rem; padding-right: 2rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero { min-height: auto; padding-top: 4rem; padding-bottom: 4rem; }
  .hero-right { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-item:nth-child(2) { border-right: none; }
  .why-item:nth-child(1), .why-item:nth-child(2) { border-bottom: 1px solid var(--border); }
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; }
  .coverage-bottom-inner { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-top { gap: 2rem; }
}
@media (max-width: 700px) {
  nav { padding: 0 1.25rem; }
  .nav-menu {
    display: none; position: fixed; top: 72px; left: 0; right: 0;
    background: var(--nav-bg); flex-direction: column;
    padding: .5rem 0; z-index: 999; border-bottom: 1px solid var(--border);
  }
  .nav-menu.open { display: flex; }
  .nav-menu > a { height: auto; padding: 1rem 2rem; border-bottom: 1px solid var(--border); }
  .nav-menu > a::after { display: none; }
  .hamburger { display: flex; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; border-radius: 12px; }
  .why-item { border-right: none; border-bottom: 1px solid var(--border); }
  .why-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
  .map-wrap-full #coverageMap { height: 360px; }
  .coverage-cta-box { flex-direction: column; gap: .75rem; }
}

/* ══════════════════════════════════════════════════
   CONTACT — forma gore, info strip ispod
══════════════════════════════════════════════════ */

/* ══════════════════════════════════════════════════
   CONTACT — forma gore, 4 kartice ispod
══════════════════════════════════════════════════ */
.contact-layout-stacked {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

/* 4 info kartice u redu */
.cinfo-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cinfo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
a.cinfo-card:hover {
  border-color: var(--red-a20);
  background: var(--bg3);
  transform: translateY(-2px);
}
.cinfo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.cinfo-icon svg { width: 18px; height: 18px; fill: var(--red); }
.cinfo-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted);
}
.cinfo-value {
  font-size: 14px; font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

@media (max-width: 860px) {
  .cinfo-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .cinfo-cards { grid-template-columns: 1fr 1fr; }
  .cinfo-card  { padding: 1.25rem 1rem; }
}

/* ══════════════════════════════════════════════════
   KONTAKT PAGE
══════════════════════════════════════════════════ */
.contact-page-section { padding: 5rem 4rem; background: var(--bg); }
.contact-page-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start;
}

/* Veliki kontakt blokovi */
.contact-main-col { display: flex; flex-direction: column; gap: 14px; }

.contact-big-card {
  display: flex; align-items: center; gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  color: var(--text); text-decoration: none;
  transition: border-color .2s, background .2s, transform .15s;
}
.contact-big-card:hover { border-color: var(--red-a20); background: var(--bg3); transform: translateY(-2px); }
.cbc-icon {
  width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
}
.cbc-icon svg { width: 22px; height: 22px; fill: var(--red); }
.cbc-body { flex: 1; }
.cbc-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--muted); margin-bottom: 3px; }
.cbc-value { font-size: 18px; font-weight: 700; color: var(--text); }
.cbc-hint  { font-size: 12px; color: var(--muted); margin-top: 2px; }
.cbc-arrow { width: 20px; height: 20px; color: var(--muted); flex-shrink: 0; fill: var(--muted); }

/* CTA banner */
.contact-cta-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.75rem 2rem;
  background: var(--red-a06); border: 1px solid var(--red-a20); border-radius: 16px;
  margin-top: 6px;
}
.contact-cta-text { flex: 1; }
.contact-cta-title { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.contact-cta-sub   { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* Sidebar kartice */
.contact-side-col  { display: flex; flex-direction: column; gap: 14px; }
.contact-side-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem;
}
.csc-title {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1rem;
}
.csc-hours { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.csc-hour-row { display: flex; justify-content: space-between; align-items: center; }
.csc-day  { font-size: 14px; color: var(--text2); }
.csc-time { font-size: 14px; font-weight: 600; color: var(--text); }
.csc-open-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; padding: 5px 12px; border-radius: 100px;
}
.csc-open-badge.open   { background: rgba(34,197,94,.1); color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.csc-open-badge.closed { background: rgba(232,24,28,.08); color: var(--muted); border: 1px solid var(--border2); }
.open-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.csc-open-badge.open   .open-dot { background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.25); }
.csc-open-badge.closed .open-dot { background: var(--muted); }
.csc-address { font-size: 15px; font-weight: 500; color: var(--text); }
.csc-towns { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 1rem; }
.csc-town { font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 100px; background: var(--bg3); border: 1px solid var(--border2); color: var(--text); }
.csc-town.main { background: var(--red-a10); border-color: var(--red-a20); color: var(--red); }
.csc-link { font-size: 13px; font-weight: 600; color: var(--red); display: inline-block; }
.csc-link:hover { opacity: .8; }

/* ══════════════════════════════════════════════════
   PRIJAVA PAGE
══════════════════════════════════════════════════ */
.prijava-section { padding: 5rem 4rem; background: var(--bg); }
.prijava-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 3rem; align-items: start;
}
.prijava-form { } /* inherits form-box styles */

.prijava-side { display: flex; flex-direction: column; gap: 14px; }
.prijava-side-title {
  font-family: var(--head); font-size: 13px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
  margin-bottom: 2px;
}

/* Paket kartice u sidebaru */
.prijava-pkg-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 1.25rem 1.5rem; position: relative; overflow: hidden;
}
.prijava-pkg-card.featured { border-color: var(--red-a20); background: linear-gradient(135deg, var(--red-a06) 0%, var(--card) 60%); }
.prijava-pkg-badge {
  display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase;
  background: var(--red); color: #fff; padding: 3px 10px; border-radius: 100px;
  margin-bottom: .75rem;
}
.prijava-pkg-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: .75rem; }
.prijava-pkg-name  { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); }
.prijava-pkg-speed { font-size: 13px; color: var(--muted); margin-top: 1px; }
.prijava-pkg-price { font-family: var(--head); font-size: 26px; font-weight: 900; color: var(--red); line-height: 1; }
.prijava-pkg-price span { font-size: 12px; font-weight: 400; color: var(--muted); }
.prijava-pkg-feats { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.prijava-pkg-feats li { font-size: 13px; color: var(--muted); display: flex; align-items: center; gap: 7px; }
.pf-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Kontakt info ispod paketa */
.prijava-contact-info {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 12px;
  padding: 1.1rem 1.25rem; display: flex; flex-direction: column; gap: 8px;
}
.pci-row { display: flex; align-items: center; gap: 8px; font-size: 14px; }
.pci-row a { color: var(--text); font-weight: 500; }
.pci-row a:hover { color: var(--red); }

/* Responsive */
@media (max-width: 900px) {
  .contact-page-section, .prijava-section { padding: 4rem 2rem; }
  .contact-page-inner, .prijava-inner { grid-template-columns: 1fr; }
  .contact-cta-banner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .cbc-value { font-size: 15px; }
}

/* ══════════════════════════════════════════════════
   TRUST BADGES (index.php)
══════════════════════════════════════════════════ */
.trust-section { background: var(--bg2); padding: 5rem 4rem; border-top: 1px solid var(--border); }
.trust-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.trust-item { text-align: center; }
.trust-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--red-a10); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.trust-icon svg { width: 24px; height: 24px; fill: var(--red); }
.trust-title { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.trust-desc { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* CTA STRIP */
.cta-strip { background: var(--red); padding: 3.5rem 4rem; }
.cta-strip-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-strip-title { font-family: var(--head); font-size: 24px; font-weight: 800; color: #fff; margin-bottom: .3rem; }
.cta-strip-sub { font-size: 15px; color: rgba(255,255,255,.75); }
.cta-strip-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-strip .btn-primary { background: #fff; color: var(--red); }
.cta-strip .btn-primary:hover { background: rgba(255,255,255,.9); transform: translateY(-1px); }
.cta-strip .btn-ghost { border-color: rgba(255,255,255,.4); color: #fff; background: rgba(255,255,255,.1); }
.cta-strip .btn-ghost:hover { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.7); }

/* ══════════════════════════════════════════════════
   COMPARISON TABLE (paketi.php)
══════════════════════════════════════════════════ */
.compare-section { background: var(--bg2); padding: 5rem 4rem; border-top: 1px solid var(--border); }
.compare-inner { max-width: 860px; margin: 0 auto; }
.compare-table-wrap { overflow-x: auto; border-radius: 16px; border: 1px solid var(--border); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table th, .compare-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); text-align: left; }
.compare-table thead th { background: var(--bg3); font-family: var(--head); font-size: 15px; font-weight: 700; }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table tbody tr:hover td { background: var(--bg3); }
.ct-feature { color: var(--muted); min-width: 200px; }
.ct-basic { text-align: center; }
.ct-plus { text-align: center; background: var(--red-a06); }
.ct-rec { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: .5px; background: var(--red); color: #fff; padding: 2px 8px; border-radius: 100px; margin-left: 6px; vertical-align: middle; text-transform: uppercase; }
.ct-yes { color: #4ade80; font-weight: 600; }
.compare-note { font-size: 12px; color: var(--muted); margin-top: 1.25rem; line-height: 1.6; }

/* ══════════════════════════════════════════════════
   FAQ (paketi.php)
══════════════════════════════════════════════════ */
.faq-section { background: var(--bg); padding: 5rem 4rem; }
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.5rem; background: var(--card); border: none; cursor: pointer;
  font-family: var(--font); font-size: 15px; font-weight: 600; color: var(--text); text-align: left;
  transition: background .2s;
}
.faq-q:hover { background: var(--bg3); }
.faq-arrow { width: 20px; height: 20px; flex-shrink: 0; fill: var(--muted); transition: transform .25s; }
.faq-q[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }
.faq-q[aria-expanded="true"] { color: var(--red); background: var(--red-a06); }
.faq-a { display: none; padding: 0 1.5rem 1.25rem; font-size: 14px; color: var(--muted); line-height: 1.75; background: var(--red-a06); }
.faq-a.open { display: block; }

/* ══════════════════════════════════════════════════
   O NAMA PAGE
══════════════════════════════════════════════════ */
.about-story-section { padding: 6rem 4rem; background: var(--bg); }
.about-story-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.about-story-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }

.about-story-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about-stat-card { background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 2rem 1.5rem; text-align: center; }
.about-stat-card.red { background: var(--red); border-color: var(--red); }
.about-stat-card.red .asc-num,
.about-stat-card.red .asc-label { color: #fff; }
.asc-year { font-family: var(--head); font-size: 42px; font-weight: 900; color: var(--text); line-height: 1; }
.asc-num  { font-family: var(--head); font-size: 42px; font-weight: 900; color: var(--red); line-height: 1; }
.about-stat-card.red .asc-num { color: #fff; }
.asc-label { font-size: 13px; color: var(--muted); margin-top: 6px; text-transform: uppercase; letter-spacing: .5px; }

/* Vrijednosti */
.about-values-section { background: var(--bg2); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.values-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.value-card { padding: 2.5rem 2rem; border-right: 1px solid var(--border); position: relative; background: var(--bg2); transition: background .2s; }
.value-card:last-child { border-right: none; }
.value-card:hover { background: var(--bg3); }
.value-num { font-family: var(--head); font-size: 64px; font-weight: 900; color: var(--border2); line-height: 1; position: absolute; top: 1rem; right: 1.25rem; letter-spacing: -2px; }
.value-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--red-a10); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.value-icon svg { width: 22px; height: 22px; fill: var(--red); }
.value-card h3 { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.value-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Tim */
.about-team-section { background: var(--bg); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.team-grid { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-photo { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; margin: 0 auto 1rem; border: 3px solid var(--border2); background: var(--bg3); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-photo-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.team-photo-placeholder svg { width: 48px; height: 48px; fill: var(--muted); opacity: .4; }
.team-name { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.team-role { font-size: 13px; color: var(--muted); line-height: 1.5; }
.team-note { text-align: center; font-size: 13px; color: var(--muted); margin-top: 2rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
.team-note code { background: var(--bg3); padding: 2px 7px; border-radius: 4px; font-size: 12px; }

/* Timeline */
.about-timeline-section { background: var(--bg2); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.timeline { max-width: 600px; margin: 0 auto; position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 8px; bottom: 8px; width: 2px; background: var(--border2); border-radius: 2px; }
.tl-item { position: relative; display: grid; grid-template-columns: 60px 1fr; gap: 1rem; margin-bottom: 2.5rem; align-items: start; }
.tl-item:last-child { margin-bottom: 0; }
.tl-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--bg3); border: 2px solid var(--border2); position: absolute; left: -2.45rem; top: 4px; }
.tl-item.active .tl-dot { background: var(--red); border-color: var(--red); box-shadow: 0 0 0 4px var(--red-a20); }
.tl-year { font-family: var(--head); font-size: 18px; font-weight: 800; color: var(--muted); }
.tl-item.active .tl-year { color: var(--red); }
.tl-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.tl-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Responsive */
@media (max-width: 1024px) {
  .trust-section, .compare-section, .faq-section,
  .about-story-section, .about-values-section, .about-team-section,
  .about-timeline-section, .cta-strip { padding-left: 2rem; padding-right: 2rem; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .value-card:nth-child(2) { border-right: none; }
  .value-card:nth-child(1), .value-card:nth-child(2) { border-bottom: 1px solid var(--border); }
  .about-story-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 700px) {
  .trust-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .value-card { border-right: none; border-bottom: 1px solid var(--border); }
  .value-card:last-child { border-bottom: none; }
  .about-story-stats { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════════════
   NAV DROPDOWN — Usluge
══════════════════════════════════════════════════ */
.nav-dropdown {
  position: relative;
  height: 72px;
  display: flex;
  align-items: center;
}
.nav-dropdown-trigger {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font); font-size: 14px; font-weight: 500;
  color: var(--muted); background: none; border: none;
  padding: 0 1.1rem; height: 72px; cursor: pointer; position: relative;
}
.nav-dropdown-trigger::after {
  content: ''; position: absolute; bottom: 0;
  left: 1.1rem; right: 1.1rem;
  height: 2px; background: var(--red);
  transform: scaleX(0); transition: transform 0.2s;
}
.nav-dropdown.active .nav-dropdown-trigger { color: var(--text); }
.nav-dropdown.active .nav-dropdown-trigger::after { transform: scaleX(1); }
.nav-dropdown-trigger:hover { color: var(--text); }
.dd-arrow { width: 14px; height: 14px; transition: transform 0.2s; opacity: .7; }
.nav-dropdown:hover .dd-arrow,
.nav-dropdown.open .dd-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 320px;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 14px;
  padding: 8px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1001;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dd-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px; border-radius: 10px;
  text-decoration: none; transition: background 0.15s;
}
.dd-item:hover { background: var(--bg3); }
.dd-item.active { background: var(--red-a06); }
.dd-icon {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dd-icon svg { width: 18px; height: 18px; fill: var(--red); }
.dd-title { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 2px; }
.dd-desc  { font-size: 12px; color: var(--muted); line-height: 1.4; }

/* Mobilni dropdown — flatten na mobile */
@media (max-width: 700px) {
  .nav-dropdown { display: block; height: auto; width: 100%; padding: 0; }
  .nav-dropdown-trigger {
    width: 100%; height: auto; padding: 1rem 2rem;
    border-bottom: 1px solid var(--border);
    justify-content: space-between;
  }
  .nav-dropdown-trigger::after { display: none; }
  .nav-dropdown-menu {
    position: static; transform: none; min-width: auto;
    background: var(--bg3); border: none; border-radius: 0;
    padding: 0; box-shadow: none;
    opacity: 1; visibility: visible;
    display: none;
  }
  .nav-dropdown.open .nav-dropdown-menu { display: block; }
  .dd-item {
    border-radius: 0; padding: 0.85rem 2.5rem;
    border-bottom: 1px solid var(--border);
  }
  .dd-item:last-child { border-bottom: none; }
}

/* ══════════════════════════════════════════════════
   SERVICES GRID (videonadzor + pametne-kuce)
══════════════════════════════════════════════════ */
.services-section { padding: 5rem 4rem; background: var(--bg); }
.services-inner { max-width: 1100px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
}
.service-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 2rem 1.75rem;
  transition: border-color 0.2s, transform 0.15s, background 0.2s;
}
.service-card:hover {
  border-color: var(--red-a20);
  background: var(--bg3);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 22px; height: 22px; fill: var(--red); }
.service-card h3 { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.service-card p  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════ */
.process-section { padding: 5rem 4rem; background: var(--bg2); border-top: 1px solid var(--border); }
.process-steps {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.process-step { position: relative; padding-left: 0; }
.ps-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--red); color: #fff;
  font-family: var(--head); font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 0 0 5px var(--red-a10);
}
.ps-title { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.ps-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   BENEFITS SECTION (pametne-kuce)
══════════════════════════════════════════════════ */
.benefits-section { padding: 6rem 4rem; background: var(--bg2); border-top: 1px solid var(--border); }
.benefits-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center;
}
.benefits-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.benefits-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.benefits-list li { font-size: 14px; color: var(--text2); line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.benefits-list li strong { color: var(--text); }
.bl-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 6px;
  box-shadow: 0 0 0 3px var(--red-a20);
}
.benefits-visual {
  display: flex; align-items: center; justify-content: center;
}
.bv-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.bv-card-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.bv-card-icon svg { width: 32px; height: 32px; }
.bv-card-title { font-family: var(--head); font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.bv-card-desc  { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* Responsive */
@media (max-width: 1024px) {
  .services-section, .process-section, .benefits-section { padding-left: 2rem; padding-right: 2rem; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2.5rem 2rem; }
  .benefits-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════
   ZAJEDNIČKI HELPERI
══════════════════════════════════════════════════ */
.text-center { text-align: center; margin-bottom: 3rem; }
.text-center .s-sub { margin: 0 auto; }

/* ══════════════════════════════════════════════════
   VIDEONADZOR — HERO
══════════════════════════════════════════════════ */
.vn-hero {
  background: var(--bg2);
  padding: 5rem 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.vn-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}

/* Animirana kamera */
.vn-camera-frame {
  width: 100%; max-width: 420px; aspect-ratio: 4/3;
  margin: 0 auto;
  background: #000;
  border: 2px solid var(--border3);
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232,24,28,.15);
}
.vn-rec-dot {
  position: absolute; top: 14px; left: 14px;
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--red);
  animation: vnRecBlink 1.2s ease-in-out infinite;
  z-index: 5;
}
@keyframes vnRecBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(232,24,28,.5); }
  50%      { opacity: .4; box-shadow: 0 0 0 6px rgba(232,24,28,0); }
}
.vn-rec-text {
  position: absolute; top: 11px; left: 30px;
  font-family: monospace; font-size: 11px; font-weight: 700;
  color: var(--red); letter-spacing: 1.5px;
  z-index: 5;
}
.vn-camera-grid {
  position: absolute; inset: 30px 14px 50px 14px;
  display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(3, 1fr);
  border: 1px dashed rgba(232,24,28,.2);
}
.vn-camera-grid div {
  border-right: 1px dashed rgba(232,24,28,.12);
  border-bottom: 1px dashed rgba(232,24,28,.12);
}
.vn-camera-grid div:nth-child(3n) { border-right: none; }
.vn-camera-grid div:nth-last-child(-n+3) { border-bottom: none; }
.vn-camera-target {
  position: absolute; top: 50%; left: 50%;
  width: 100px; height: 100px;
  transform: translate(-50%, -50%);
  animation: vnTargetMove 6s ease-in-out infinite;
}
.vn-camera-target svg { width: 100%; height: 100%; animation: vnTargetSpin 8s linear infinite; }
@keyframes vnTargetMove {
  0%, 100% { transform: translate(-50%, -50%); }
  25%      { transform: translate(-30%, -65%); }
  50%      { transform: translate(-70%, -45%); }
  75%      { transform: translate(-40%, -35%); }
}
@keyframes vnTargetSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.vn-scan-line {
  position: absolute; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, rgba(232,24,28,.6), transparent);
  animation: vnScan 3s ease-in-out infinite;
  top: 0;
}
@keyframes vnScan {
  0%, 100% { top: 0%; opacity: 0; }
  50%      { top: 100%; opacity: 1; }
}
.vn-camera-stats {
  position: absolute; bottom: 12px; left: 14px; right: 14px;
  display: flex; gap: 6px; flex-wrap: wrap;
  z-index: 5;
}
.vn-stat-pill {
  font-family: monospace; font-size: 10px; font-weight: 700;
  background: rgba(0,0,0,.7);
  border: 1px solid rgba(232,24,28,.4);
  color: #fff;
  padding: 4px 10px; border-radius: 100px;
  display: inline-flex; align-items: center; gap: 5px;
  letter-spacing: .5px;
}
.vn-stat-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); }
.vn-stat-pill .dot.live { animation: vnRecBlink 1.2s ease-in-out infinite; }

/* ══════════════════════════════════════════════════
   VIDEONADZOR — STATS BAR
══════════════════════════════════════════════════ */
.vn-stats-bar { background: var(--bg3); padding: 3rem 4rem; border-bottom: 1px solid var(--border); }
.vn-stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.vn-stat { text-align: center; }
.vn-stat-num {
  font-family: var(--head); font-size: 44px; font-weight: 900;
  color: var(--text); line-height: 1; letter-spacing: -1px;
}
.vn-stat-label { font-size: 12px; color: var(--muted); margin-top: 8px; text-transform: uppercase; letter-spacing: .8px; font-weight: 500; }

/* ══════════════════════════════════════════════════
   VIDEONADZOR — SERVICES (asymmetric grid)
══════════════════════════════════════════════════ */
.vn-services-section { padding: 6rem 4rem; background: var(--bg); }
.vn-services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.vn-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
}
.vn-card.large { grid-column: span 2; }
.vn-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.vn-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-a20);
  background: var(--bg3);
}
.vn-card:hover::before { transform: scaleX(1); }

.vn-card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.vn-card-icon.big { width: 56px; height: 56px; border-radius: 14px; }
.vn-card-icon svg { width: 22px; height: 22px; fill: var(--red); transition: transform 0.3s; }
.vn-card-icon.big svg { width: 28px; height: 28px; }
.vn-card:hover .vn-card-icon { transform: rotate(-5deg) scale(1.05); }
.vn-card h3 { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.vn-card.large h3 { font-size: 21px; }
.vn-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.vn-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.vn-card-tags span {
  font-size: 11px; font-weight: 600;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text2); padding: 4px 10px; border-radius: 100px;
}

/* ══════════════════════════════════════════════════
   VIDEONADZOR — USE CASES
══════════════════════════════════════════════════ */
.vn-usecases { background: var(--bg2); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.vn-usecases-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem; align-items: center;
}
.vn-uc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.vn-uc-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem;
  transition: all 0.25s ease;
}
.vn-uc-card:hover { transform: translateY(-2px); border-color: var(--red-a20); }
.vn-uc-card:nth-child(odd) { transform: translateY(0); }
.vn-uc-card:nth-child(even):not(:hover) { transform: translateY(20px); }
.vn-uc-card:nth-child(even):hover { transform: translateY(18px); border-color: var(--red-a20); }
.vn-uc-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--red-a10); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.vn-uc-icon svg { width: 20px; height: 20px; }
.vn-uc-name { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.vn-uc-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ══════════════════════════════════════════════════
   VIDEONADZOR — PROCESS (4 koraka u redu)
══════════════════════════════════════════════════ */
.vn-process-section { background: var(--bg); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.vn-process-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.vn-step {
  padding: 0 1.25rem;
  position: relative;
  text-align: center;
}
.vn-step-line {
  display: none;
}
.vn-step-num {
  font-family: var(--head); font-size: 56px; font-weight: 900;
  color: var(--border2);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s, transform 0.3s;
}
.vn-step:hover .vn-step-num { color: var(--red); transform: scale(1.05); }
.vn-step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.vn-step-icon svg { width: 22px; height: 22px; fill: var(--red); }
.vn-step-title { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.vn-step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   PAMETNE KUĆE — HERO + animirana kuća
══════════════════════════════════════════════════ */
.pk-hero {
  background: var(--bg2);
  padding: 5rem 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.pk-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}
.pk-hero-visual { display: flex; justify-content: center; }
.pk-house {
  position: relative;
  width: 100%; max-width: 380px; aspect-ratio: 1;
}
.pk-house-svg { width: 100%; height: 100%; color: var(--text); }
.pk-window {
  transition: opacity 0.3s ease;
}
.pkw-1 { animation: pkWindowGlow 3s ease-in-out infinite; }
.pkw-2 { animation: pkWindowGlow 3s ease-in-out infinite 0.5s; }
.pkw-3 { animation: pkWindowGlow 3s ease-in-out infinite 1s; }
.pkw-4 { animation: pkWindowGlow 3s ease-in-out infinite 1.5s; }
@keyframes pkWindowGlow {
  0%, 100% { opacity: 0.15; fill: var(--red); }
  50%      { opacity: 0.7;  fill: var(--red); }
}
.pk-signal circle { animation: pkSignalPulse 2s ease-in-out infinite; }
.pk-signal path:first-of-type  { animation: pkSignalArc 2s ease-in-out infinite; }
.pk-signal path:nth-of-type(2) { animation: pkSignalArc 2s ease-in-out infinite 0.3s; }
@keyframes pkSignalPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.3); }
}
@keyframes pkSignalArc {
  0%, 100% { opacity: 0.3; }
  50%      { opacity: 1; }
}

/* Floating tags around the house */
.pk-tag {
  position: absolute;
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--card);
  border: 1px solid var(--border2);
  color: var(--text);
  padding: 7px 12px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  box-shadow: var(--shadow);
}
.pk-tag svg { color: var(--red); }
.pk-tag-1 { top: 10%; left: -8%;  animation: pkFloat 4s ease-in-out infinite; }
.pk-tag-2 { top: 35%; right: -8%; animation: pkFloat 4s ease-in-out infinite 1s; }
.pk-tag-3 { bottom: 25%; left: -10%; animation: pkFloat 4s ease-in-out infinite 2s; }
.pk-tag-4 { bottom: 5%; right: -5%;  animation: pkFloat 4s ease-in-out infinite 3s; }
@keyframes pkFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

/* ══════════════════════════════════════════════════
   PAMETNE KUĆE — BENTO GRID
══════════════════════════════════════════════════ */
.pk-bento { padding: 6rem 4rem; background: var(--bg); }
.pk-bento-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
}
.pk-bento-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.2s, background 0.2s;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.pk-bento-card.pk-big  { grid-column: span 2; grid-row: span 2; }
.pk-bento-card.pk-wide { grid-column: span 2; }
.pk-bento-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-a20);
  background: var(--bg3);
}
.pk-card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s;
}
.pk-bento-card:hover .pk-card-icon { transform: rotate(-5deg) scale(1.1); }
.pk-card-icon svg { width: 22px; height: 22px; fill: var(--red); }
.pk-bento-card.pk-big .pk-card-icon { width: 56px; height: 56px; }
.pk-bento-card.pk-big .pk-card-icon svg { width: 28px; height: 28px; }
.pk-bento-card h3 { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.pk-bento-card.pk-big h3 { font-size: 22px; }
.pk-bento-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }
.pk-card-feats { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.pk-feat {
  font-size: 11px; font-weight: 600;
  color: var(--red);
  background: var(--red-a06); border: 1px solid var(--red-a20);
  padding: 4px 10px; border-radius: 100px;
}

/* ══════════════════════════════════════════════════
   PAMETNE KUĆE — BENEFITS SPLIT
══════════════════════════════════════════════════ */
.pk-benefits { background: var(--bg2); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.pk-benefits-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem; align-items: center;
}
.pk-savings-card {
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  color: #fff;
  box-shadow: 0 20px 60px rgba(232,24,28,.25);
  position: relative; overflow: hidden;
}
.pk-savings-card::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}
.pk-savings-percent {
  font-family: var(--head); font-size: 96px; font-weight: 900;
  line-height: 1; color: #fff;
  margin-bottom: .5rem;
  position: relative;
}
.pk-savings-label {
  font-size: 16px; font-weight: 600;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
  position: relative;
}
.pk-savings-bar {
  height: 8px; background: rgba(255,255,255,.2); border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.pk-savings-fill {
  height: 100%; width: 0%;
  background: #fff;
  border-radius: 100px;
  animation: pkBarFill 2s ease-out forwards 0.5s;
}
@keyframes pkBarFill {
  to { width: 30%; }
}
.pk-savings-note {
  font-size: 13px; color: rgba(255,255,255,.85);
  margin-top: 1rem; line-height: 1.6;
  position: relative;
}
.pk-benefits-list { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-top: 1.5rem; }
.pk-benefits-list li { font-size: 14px; color: var(--text2); line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.pk-benefits-list li strong { color: var(--text); }

/* ══════════════════════════════════════════════════
   PAMETNE KUĆE — TIMELINE
══════════════════════════════════════════════════ */
.pk-process { background: var(--bg); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.pk-timeline {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  position: relative;
}
.pk-tl-line {
  position: absolute;
  top: 26px; left: 8%; right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--border2) 0%, var(--red) 50%, var(--border2) 100%);
  z-index: 1;
}
.pk-tl-step {
  text-align: center;
  position: relative;
  z-index: 2;
}
.pk-tl-dot {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--red-a20);
  margin: 0 auto 1.25rem;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--head); font-size: 20px; font-weight: 800;
  color: var(--red);
  transition: all 0.3s ease;
}
.pk-tl-step:hover .pk-tl-dot {
  background: var(--red); color: #fff; border-color: var(--red);
  transform: scale(1.1);
  box-shadow: 0 0 0 8px var(--red-a10);
}
.pk-tl-content h4 { font-family: var(--head); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.pk-tl-content p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .vn-hero, .vn-stats-bar, .vn-services-section, .vn-usecases, .vn-process-section,
  .pk-hero, .pk-bento, .pk-benefits, .pk-process { padding-left: 2rem; padding-right: 2rem; }
  .vn-hero-inner, .pk-hero-inner, .vn-usecases-inner, .pk-benefits-inner { grid-template-columns: 1fr; gap: 3rem; }
  .vn-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .vn-services-grid { grid-template-columns: 1fr 1fr; }
  .vn-card.large { grid-column: span 2; }
  .vn-process-grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .pk-bento-grid { grid-template-columns: repeat(2, 1fr); }
  .pk-bento-card.pk-big { grid-column: span 2; grid-row: span 2; }
  .pk-bento-card.pk-wide { grid-column: span 2; }
  .pk-timeline { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pk-tl-line { display: none; }
}
@media (max-width: 600px) {
  .vn-services-grid { grid-template-columns: 1fr; }
  .vn-card.large { grid-column: span 1; }
  .vn-uc-cards { grid-template-columns: 1fr; }
  .vn-uc-card:nth-child(even):not(:hover) { transform: translateY(0); }
  .vn-uc-card:nth-child(even):hover { transform: translateY(-2px); }
  .vn-process-grid { grid-template-columns: 1fr; }
  .pk-bento-grid { grid-template-columns: 1fr; }
  .pk-bento-card.pk-big, .pk-bento-card.pk-wide { grid-column: span 1; grid-row: auto; }
  .pk-timeline { grid-template-columns: 1fr; }
  .pk-tag-1, .pk-tag-3 { left: 0; }
  .pk-tag-2, .pk-tag-4 { right: 0; }
  .pk-savings-percent { font-size: 64px; }
}

/* ══════════════════════════════════════════════════
   OSTALE USLUGE PAGE
══════════════════════════════════════════════════ */
.ou-main-services { padding: 5rem 4rem; background: var(--bg); }
.ou-main-services .services-inner { max-width: 1100px; margin: 0 auto; }

.ou-feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0;
  border-bottom: 1px solid var(--border);
}
.ou-feature-row:last-child { border-bottom: none; }
.ou-feature-row.reverse .ou-feature-text  { order: 2; }
.ou-feature-row.reverse .ou-feature-visual { order: 1; }

.ou-feature-tag {
  display: inline-block;
  font-family: var(--head); font-size: 12px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--red);
  background: var(--red-a10);
  border: 1px solid var(--red-a20);
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 1.25rem;
}
.ou-feature-text h2 {
  font-family: var(--head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 1rem;
}
.ou-feature-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.ou-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ou-feature-list li {
  font-size: 14px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Visual card */
.ou-feature-visual { display: flex; justify-content: center; }
.ou-visual-card {
  width: 100%; max-width: 360px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border: 1px solid var(--border2);
  border-radius: 24px;
  padding: 2rem;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  transition: transform 0.3s ease, border-color 0.2s;
}
.ou-feature-row:hover .ou-visual-card {
  transform: translateY(-4px);
  border-color: var(--red-a20);
}
.ou-visual-svg { width: 100%; height: 100%; max-width: 280px; max-height: 280px; }

/* Animacije za vizuale */
.ou-pulse   { animation: ouPulse 2s ease-out infinite; transform-origin: center; }
.ou-pulse-2 { animation: ouPulse 2s ease-out infinite 0.5s; transform-origin: center; }
@keyframes ouPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.8); }
}
.ou-blink {
  animation: ouBlink 1.5s ease-in-out infinite;
}
@keyframes ouBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
.ou-glow { animation: ouGlow 3s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ouGlow {
  0%, 100% { opacity: 0.08; }
  50%      { opacity: 0.2; }
}

/* Vrata - klizna animacija */
.ou-gate { animation: ouGate 4s ease-in-out infinite; transform-origin: left; }
@keyframes ouGate {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-15px); }
}
.ou-arrow-move { animation: ouArrowMove 2s ease-in-out infinite; }
@keyframes ouArrowMove {
  0%, 100% { opacity: 0; transform: translateX(-10px); }
  50%      { opacity: 1; transform: translateX(0); }
}

/* Satelit */
.ou-satellite { animation: ouSatellite 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes ouSatellite {
  0%, 100% { transform: translate(40px, 35px) rotate(-5deg); }
  50%      { transform: translate(40px, 35px) rotate(5deg); }
}
.ou-signal-line {
  stroke-dasharray: 6, 6;
  animation: ouSignalDash 1s linear infinite;
}
@keyframes ouSignalDash {
  to { stroke-dashoffset: -12; }
}

/* WiFi mrežne instalacije */
.ou-wifi-1 { animation: ouWifiPulse 3s ease-out infinite; transform-origin: 120px 100px; }
.ou-wifi-2 { animation: ouWifiPulse 3s ease-out infinite 0.6s; transform-origin: 120px 100px; }
.ou-wifi-3 { animation: ouWifiPulse 3s ease-out infinite 1.2s; transform-origin: 120px 100px; }
@keyframes ouWifiPulse {
  0%   { opacity: 0; transform: scale(0.5); }
  50%  { opacity: 0.5; }
  100% { opacity: 0; transform: scale(1.2); }
}

/* Kombinacije sekcija */
.ou-combos { background: var(--bg2); padding: 5rem 4rem; border-top: 1px solid var(--border); }
.ou-combos-inner { max-width: 1100px; margin: 0 auto; }
.ou-combos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.ou-combo-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: center;
  transition: all 0.25s;
}
.ou-combo-card:hover {
  transform: translateY(-3px);
  border-color: var(--red-a20);
  background: var(--bg3);
}
.ou-combo-icons {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.ou-combo-icons span {
  width: 42px; height: 42px; border-radius: 11px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.ou-combo-icons span:not(.plus) svg { width: 22px; height: 22px; }
.ou-combo-icons .plus {
  width: auto; height: auto;
  background: transparent;
  font-family: var(--head);
  font-size: 22px; font-weight: 800;
  color: var(--muted);
}
.ou-combo-card h4 {
  font-family: var(--head); font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: .5rem;
}
.ou-combo-card p {
  font-size: 13px; color: var(--muted); line-height: 1.65;
}

/* Dropdown divider */
.dd-divider {
  height: 1px;
  background: var(--border);
  margin: 6px 8px;
}

/* Responsive */
@media (max-width: 900px) {
  .ou-main-services, .ou-combos { padding-left: 2rem; padding-right: 2rem; }
  .ou-feature-row { grid-template-columns: 1fr; gap: 2.5rem; padding: 3rem 0; }
  .ou-feature-row.reverse .ou-feature-text  { order: 1; }
  .ou-feature-row.reverse .ou-feature-visual { order: 2; }
  .ou-combos-grid { grid-template-columns: 1fr; }
  .ou-visual-card { max-width: 300px; }
}

/* ══════════════════════════════════════════════════
   KONTAKT PAGE (nova s formom)
══════════════════════════════════════════════════ */
.kp-section { padding: 5rem 4rem; background: var(--bg); }
.kp-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr;
  gap: 3rem; align-items: start;
}

/* FORMA */
.kp-form-wrap .form-box { padding: 2.5rem; }

/* SIDEBAR */
.kp-sidebar { display: flex; flex-direction: column; gap: 16px; }

/* Direct contact card */
.kp-direct-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
}
.kp-direct-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem;
}
.kp-direct-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  transition: padding 0.2s;
}
.kp-direct-row:last-child { border-bottom: none; padding-bottom: 0; }
a.kp-direct-row:hover { padding-left: 6px; }
.kp-dr-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kp-dr-icon svg { width: 17px; height: 17px; fill: var(--red); }
.kp-dr-label { font-size: 11px; font-weight: 600; color: var(--muted); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 2px; }
.kp-dr-value { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* Hours card */
.kp-hours-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
}
.kp-hours-title {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem;
}
.kp-status {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  text-transform: none; letter-spacing: 0;
}
.kp-status.open { background: rgba(34,197,94,.12); color: #4ade80; border: 1px solid rgba(34,197,94,.25); }
.kp-status.closed { background: var(--red-a10); color: var(--muted); border: 1px solid var(--border2); }
.kp-status-dot { width: 6px; height: 6px; border-radius: 50%; }
.kp-status.open .kp-status-dot { background: #4ade80; box-shadow: 0 0 0 3px rgba(74,222,128,.25); }
.kp-status.closed .kp-status-dot { background: var(--muted); }
.kp-hours-rows { display: flex; flex-direction: column; gap: 8px; }
.kp-hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px;
}
.kp-hours-row span { color: var(--muted); }
.kp-hours-row strong { color: var(--text); font-weight: 600; }

/* Legal card */
.kp-legal-card {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.5rem;
}
.kp-legal-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: .75rem;
}
.kp-legal-name {
  font-family: var(--head); font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: .75rem;
}
.kp-legal-info { display: flex; flex-direction: column; gap: 5px; font-size: 13px; color: var(--text2); }
.kp-legal-info span { color: var(--muted); font-weight: 600; display: inline-block; min-width: 60px; }

/* CTA card */
.kp-cta-card {
  display: flex; align-items: center; gap: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  color: #fff;
  border-radius: 16px; padding: 1.25rem 1.5rem;
  text-decoration: none;
  transition: transform .2s;
}
.kp-cta-card:hover { transform: translateY(-2px); }
.kp-cta-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kp-cta-icon svg { width: 22px; height: 22px; color: #fff; }
.kp-cta-text { flex: 1; }
.kp-cta-title { font-family: var(--head); font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.kp-cta-sub { font-size: 12px; color: rgba(255,255,255,.85); }
.kp-cta-link { font-size: 24px; font-weight: 300; color: #fff; }

/* Honeypot trick — sigurnost: ne smije se vidjeti */
input[name="website"] { position: absolute !important; left: -9999px !important; }

/* ══════════════════════════════════════════════════
   POLITIKA PRIVATNOSTI PAGE
══════════════════════════════════════════════════ */
.pp-section { padding: 4rem 4rem 6rem; background: var(--bg); }
.pp-inner { max-width: 860px; margin: 0 auto; }

.pp-meta {
  background: var(--bg3); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 13px; color: var(--muted);
}
.pp-meta strong { color: var(--text); }

.pp-toc {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 14px; padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
}
.pp-toc-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem;
}
.pp-toc ol {
  list-style: none; counter-reset: toc;
  display: grid; grid-template-columns: 1fr 1fr; gap: 6px 1.5rem;
}
.pp-toc li {
  counter-increment: toc;
  font-size: 14px;
}
.pp-toc li::before {
  content: counter(toc) ". ";
  color: var(--red); font-weight: 700;
}
.pp-toc a { color: var(--text2); transition: color .15s; }
.pp-toc a:hover { color: var(--red); }

.pp-section-block {
  margin-bottom: 2.5rem;
  scroll-margin-top: 90px;
}
.pp-section-block h2 {
  font-family: var(--head); font-size: 22px; font-weight: 800;
  color: var(--text); margin-bottom: 1rem;
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--red);
  display: inline-block;
}
.pp-section-block h3 {
  font-family: var(--head); font-size: 16px; font-weight: 700;
  color: var(--text); margin: 1.25rem 0 .75rem;
}
.pp-section-block p {
  font-size: 14.5px; color: var(--text2);
  line-height: 1.8; margin-bottom: 1rem;
}
.pp-section-block ul {
  margin-bottom: 1rem; padding-left: 1.25rem;
}
.pp-section-block ul li {
  font-size: 14px; color: var(--text2);
  line-height: 1.75; margin-bottom: .5rem;
}
.pp-section-block ul li::marker { color: var(--red); }

.pp-table-wrap { overflow-x: auto; margin: 1rem 0 1.5rem; border-radius: 10px; border: 1px solid var(--border); }
.pp-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.pp-table th, .pp-table td { padding: 11px 14px; text-align: left; border-bottom: 1px solid var(--border); vertical-align: top; }
.pp-table thead th {
  background: var(--bg3);
  font-family: var(--head); font-weight: 700;
  color: var(--text); font-size: 12px;
  text-transform: uppercase; letter-spacing: .5px;
}
.pp-table tbody td:first-child { color: var(--text); font-weight: 600; }
.pp-table tbody td { color: var(--text2); }
.pp-table tbody tr:last-child td { border-bottom: none; }

.pp-divider {
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

.pp-footer-note {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .kp-section, .pp-section { padding-left: 2rem; padding-right: 2rem; }
  .kp-inner { grid-template-columns: 1fr; }
  .pp-toc ol { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .kp-form-wrap .form-box { padding: 1.5rem; }
  .pp-table { font-size: 12px; }
  .pp-table th, .pp-table td { padding: 8px 10px; }
}

/* ══════════════════════════════════════════════════
   BACK TO TOP gumb
══════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(232, 24, 28, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s;
  z-index: 999;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--red2);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 24, 28, 0.5);
}
.back-to-top:active {
  transform: translateY(0);
}
.back-to-top svg {
  width: 22px;
  height: 22px;
}
@media (max-width: 600px) {
  .back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; }
  .back-to-top svg { width: 19px; height: 19px; }
}

/* ══════════════════════════════════════════════════
   COOKIE BANNER
══════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  max-width: 760px;
  margin: 0 auto;
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.45);
  padding: 1.5rem 1.75rem;
  z-index: 9998;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.25, 1.5, 0.5, 1), opacity 0.3s;
}
.cookie-banner.visible { transform: translateY(0); opacity: 1; }
.cb-content { display: flex; align-items: center; gap: 1.5rem; }
.cb-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-a10); color: var(--red);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cb-icon svg { width: 26px; height: 26px; }
.cb-text { flex: 1; min-width: 0; }
.cb-text h3 { font-family: var(--head); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.cb-text p { font-size: 12.5px; color: var(--muted); line-height: 1.55; margin: 0; }
.cb-text a { color: var(--red); font-weight: 600; }
.cb-text a:hover { text-decoration: underline; }
.cb-actions { display: flex; gap: 8px; flex-shrink: 0; }
.cb-btn {
  padding: 10px 18px; border-radius: 10px;
  font-family: var(--font); font-size: 13px; font-weight: 700;
  cursor: pointer; border: 1px solid var(--border2);
  transition: all 0.2s; white-space: nowrap;
}
.cb-reject { background: transparent; color: var(--text2); }
.cb-reject:hover { background: var(--bg3); color: var(--text); }
.cb-accept { background: var(--red); color: #fff; border-color: var(--red); }
.cb-accept:hover { background: var(--red2); transform: translateY(-1px); }
@media (max-width: 700px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 1.25rem; border-radius: 14px; }
  .cb-content { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cb-icon { width: 40px; height: 40px; }
  .cb-icon svg { width: 22px; height: 22px; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; padding: 12px; }
}

/* ══════════════════════════════════════════════════
   TESTIMONIALS SECTION
══════════════════════════════════════════════════ */
.testimonials-section {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.testimonials-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.testimonial-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 2rem 1.75rem 1.5rem;
  position: relative;
  transition: transform 0.25s ease, border-color 0.2s, background 0.2s;
}
.testimonial-card:hover { transform: translateY(-4px); border-color: var(--red-a20); }
.t-quote-mark {
  position: absolute; top: 12px; right: 22px;
  font-family: var(--head); font-size: 80px; font-weight: 900;
  color: var(--red); opacity: 0.15; line-height: 1; pointer-events: none;
}
.t-stars { display: flex; gap: 2px; margin-bottom: 1rem; color: #fbbf24; }
.t-stars svg { width: 16px; height: 16px; }
.t-text { font-size: 14px; color: var(--text2); line-height: 1.7; margin-bottom: 1.5rem; position: relative; z-index: 1; }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 1rem; border-top: 1px solid var(--border); }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--head); font-size: 14px; font-weight: 800;
  flex-shrink: 0;
}
.t-name { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 1px; }
.t-loc { font-size: 12px; color: var(--muted); }

.t-summary {
  max-width: 800px; margin: 3rem auto 0;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.75rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}
.t-summary-rating { display: flex; align-items: center; gap: 1.25rem; }
.t-summary-num { font-family: var(--head); font-size: 56px; font-weight: 900; color: var(--red); line-height: 1; }
.t-summary-stars { display: flex; gap: 2px; color: #fbbf24; margin-bottom: 4px; }
.t-summary-stars svg { width: 18px; height: 18px; }
.t-summary-label { font-size: 13px; color: var(--muted); }
.t-summary-label strong { color: var(--text); }

@media (max-width: 1024px) {
  .testimonials-section { padding: 4rem 2rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .t-summary { flex-direction: column; text-align: center; }
}

/* ══════════════════════════════════════════════════
   WEB I APLIKACIJE PAGE
══════════════════════════════════════════════════ */
.wa-hero {
  background: var(--bg2);
  padding: 5rem 4rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.wa-hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}

/* Code window vizual */
.wa-code-window {
  background: #0a0a0a;
  border: 1px solid var(--border3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(232,24,28,.18);
  max-width: 420px;
  margin: 0 auto;
}
.wa-code-bar {
  background: #1a1a1a;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid #2a2a2a;
}
.wa-dot { width: 11px; height: 11px; border-radius: 50%; }
.wa-dot.red { background: #ff5f57; }
.wa-dot.yellow { background: #febc2e; }
.wa-dot.green { background: #28c840; }
.wa-code-title {
  font-family: 'Courier New', monospace;
  font-size: 11px; color: #888; margin-left: 12px;
}
.wa-code-body {
  padding: 18px 20px;
  font-family: 'Courier New', monospace;
  font-size: 13px; line-height: 1.85;
  color: #ddd;
}
.wa-line { white-space: nowrap; }
.wa-indent { padding-left: 1.5rem; }
.wa-indent2 { padding-left: 3rem; }
.wa-tag { color: #e8181c; }
.wa-attr { color: #fbbf24; }
.wa-str { color: #4ade80; }
.wa-text { color: #fff; }
.wa-comment { color: #555; font-style: italic; }
.wa-blink { animation: waCaret 1s steps(2) infinite; color: #e8181c; font-weight: 700; }
@keyframes waCaret {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* ══════════════════════════════════════════════════
   WEB SERVICES GRID
══════════════════════════════════════════════════ */
.wa-services { padding: 6rem 4rem; background: var(--bg); }
.wa-services-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.wa-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 18px; padding: 1.75rem;
  transition: transform 0.25s ease, border-color 0.2s, background 0.2s;
  position: relative; overflow: hidden;
}
.wa-card.large { grid-column: span 2; }
.wa-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--red);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.wa-card:hover {
  transform: translateY(-4px);
  border-color: var(--red-a20);
  background: var(--bg3);
}
.wa-card:hover::before { transform: scaleX(1); }
.wa-card-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease;
}
.wa-card-icon.big { width: 56px; height: 56px; border-radius: 14px; }
.wa-card-icon svg { width: 22px; height: 22px; fill: var(--red); }
.wa-card-icon.big svg { width: 28px; height: 28px; }
.wa-card:hover .wa-card-icon { transform: rotate(-5deg) scale(1.05); }
.wa-card h3 { font-family: var(--head); font-size: 17px; font-weight: 700; color: var(--text); margin-bottom: .6rem; }
.wa-card.large h3 { font-size: 21px; }
.wa-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }
.wa-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 1rem; }
.wa-card-tags span {
  font-size: 11px; font-weight: 600;
  background: var(--bg3); border: 1px solid var(--border2);
  color: var(--text2); padding: 4px 10px; border-radius: 100px;
}

/* ══════════════════════════════════════════════════
   TECH STACK GRID
══════════════════════════════════════════════════ */
.wa-tech { background: var(--bg2); padding: 5rem 4rem; border-top: 1px solid var(--border); }
.wa-tech-grid {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.wa-tech-item {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.25rem 1rem;
  text-align: center;
  transition: all 0.2s;
}
.wa-tech-item:hover {
  border-color: var(--red-a20);
  transform: translateY(-3px);
  background: var(--bg3);
}
.wa-tech-name {
  font-family: var(--head); font-size: 15px; font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.wa-tech-desc { font-size: 12px; color: var(--muted); }

/* ══════════════════════════════════════════════════
   WEB PROCESS
══════════════════════════════════════════════════ */
.wa-process { padding: 6rem 4rem; background: var(--bg); border-top: 1px solid var(--border); }
.wa-process-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
}
.wa-step { text-align: center; }
.wa-step-num {
  font-family: var(--head); font-size: 64px; font-weight: 900;
  color: var(--border2); line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s, transform 0.3s;
}
.wa-step:hover .wa-step-num { color: var(--red); transform: scale(1.05); }
.wa-step-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--red-a10);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.wa-step-icon svg { width: 22px; height: 22px; fill: var(--red); }
.wa-step-title { font-family: var(--head); font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: .5rem; }
.wa-step-desc { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ══════════════════════════════════════════════════
   WHY US (web page)
══════════════════════════════════════════════════ */
.wa-why { background: var(--bg2); padding: 6rem 4rem; border-top: 1px solid var(--border); }
.wa-why-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: center;
}
.wa-why-text p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 1.5rem; }
.wa-why-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.wa-why-list li { font-size: 14px; color: var(--text2); line-height: 1.6; display: flex; align-items: flex-start; gap: 10px; }
.wa-why-list li strong { color: var(--text); }

.wa-stats-card {
  background: linear-gradient(135deg, var(--red) 0%, var(--red2) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  color: #fff;
  box-shadow: 0 20px 60px rgba(232,24,28,.25);
  position: relative; overflow: hidden;
}
.wa-stats-card::before {
  content: ''; position: absolute; top: -50%; right: -30%;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  pointer-events: none;
}
.wa-stat-big {
  font-family: var(--head); font-size: 96px; font-weight: 900;
  line-height: 1; color: #fff;
  position: relative; margin-bottom: 4px;
}
.wa-stat-label { font-size: 15px; font-weight: 600; color: rgba(255,255,255,.9); position: relative; }
.wa-stat-divider {
  height: 1px; background: rgba(255,255,255,.2);
  margin: 1.5rem 0;
  position: relative;
}
.wa-stat-row { display: flex; justify-content: space-between; gap: 1.5rem; position: relative; }
.wa-stat-num { font-family: var(--head); font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
.wa-stat-sub { font-size: 12px; color: rgba(255,255,255,.8); margin-top: 4px; text-transform: uppercase; letter-spacing: .5px; }

/* Responsive */
@media (max-width: 1024px) {
  .wa-hero, .wa-services, .wa-tech, .wa-process, .wa-why { padding-left: 2rem; padding-right: 2rem; }
  .wa-hero-inner, .wa-why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .wa-services-grid { grid-template-columns: 1fr 1fr; }
  .wa-card.large { grid-column: span 2; }
  .wa-tech-grid { grid-template-columns: repeat(2, 1fr); }
  .wa-process-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 600px) {
  .wa-services-grid { grid-template-columns: 1fr; }
  .wa-card.large { grid-column: span 1; }
  .wa-process-grid { grid-template-columns: 1fr; }
  .wa-stat-big { font-size: 72px; }
}

/* ══════════════════════════════════════════════════
   PORTFOLIO — Naši projekti (web-aplikacije.php)
══════════════════════════════════════════════════ */
.wa-portfolio {
  padding: 6rem 4rem;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}
.wa-portfolio-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.wa-portfolio-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: border-color 0.25s, transform 0.25s;
}
.wa-portfolio-card:hover {
  transform: translateY(-3px);
  border-color: var(--red-a20);
}
.wa-portfolio-card.reverse .wa-portfolio-visual { order: 2; }
.wa-portfolio-card.reverse .wa-portfolio-text   { order: 1; }

/* Visual */
.wa-portfolio-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg3) 0%, var(--bg2) 100%);
  border-radius: 18px;
  padding: 2rem;
  aspect-ratio: 1;
  position: relative;
  overflow: hidden;
}
.wa-portfolio-visual.wine {
  background: linear-gradient(135deg, rgba(204,18,24,0.06) 0%, var(--bg2) 100%);
}
.wa-portfolio-visual.construction {
  background: linear-gradient(135deg, rgba(204,18,24,0.04) 0%, var(--bg2) 100%);
}
.wa-pf-svg {
  width: 100%;
  height: 100%;
  max-width: 280px;
  max-height: 280px;
}

/* Animacije za wine SVG */
.wa-bubble {
  animation: waBubble 3s ease-in-out infinite;
  transform-origin: center;
}
.wa-b1 { animation-delay: 0s; }
.wa-b2 { animation-delay: 0.7s; }
.wa-b3 { animation-delay: 1.4s; }
.wa-b4 { animation-delay: 2.1s; }
@keyframes waBubble {
  0%, 100% { transform: translateY(0); opacity: 0; }
  50%      { transform: translateY(-30px); opacity: 0.8; }
}

/* Animacija za construction SVG */
.wa-check {
  animation: waCheckFill 4s ease-in-out infinite;
}
@keyframes waCheckFill {
  0%, 50%, 100% { fill: transparent; }
  60%, 90%      { fill: var(--red); }
}
.wa-clock {
  animation: waClockSpin 8s linear infinite;
  transform-origin: 27px 157px;
  transform-box: fill-box;
}
@keyframes waClockSpin {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}

/* Text */
.wa-portfolio-tag {
  display: inline-block;
  font-family: var(--head);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-a10);
  border: 1px solid var(--red-a20);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.wa-portfolio-text h3 {
  font-family: var(--head);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
.wa-portfolio-text p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.wa-portfolio-feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 1.5rem;
}
.wa-portfolio-feats li {
  font-size: 13.5px;
  color: var(--text2);
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}
.wa-portfolio-tech {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.wa-portfolio-tech span {
  font-size: 11px;
  font-weight: 700;
  font-family: monospace;
  background: var(--bg3);
  border: 1px solid var(--border2);
  color: var(--text2);
  padding: 4px 10px;
  border-radius: 6px;
}

/* CTA na dnu portfolio */
.wa-portfolio-cta {
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--card);
  border: 1px dashed var(--red-a20);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.wa-pf-cta-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--red-a10);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-pf-cta-icon svg { width: 26px; height: 26px; }
.wa-pf-cta-text { flex: 1; }
.wa-pf-cta-text h3 {
  font-family: var(--head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.wa-pf-cta-text p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .wa-portfolio { padding: 4rem 2rem; }
  .wa-portfolio-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.75rem;
  }
  .wa-portfolio-card.reverse .wa-portfolio-visual { order: 1; }
  .wa-portfolio-card.reverse .wa-portfolio-text   { order: 2; }
  .wa-portfolio-visual { aspect-ratio: 16/10; max-width: 400px; margin: 0 auto; }
  .wa-portfolio-cta {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
}

/* ══════════════════════════════════════════════════
   MOBILE NAV FIX
══════════════════════════════════════════════════ */
@media (max-width: 700px) {

  .nav-menu {
    display: none;
    position: fixed !important;
    top: 72px;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: var(--nav-bg);
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 0;
    margin: 0;
    z-index: 999;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    max-height: calc(100vh - 72px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex !important; }

  .nav-menu > a {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    padding: 1rem 1.5rem !important;
    text-align: left !important;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 15px;
  }
  .nav-menu > a::after { display: none !important; }
  .nav-menu > a:hover,
  .nav-menu > a.active {
    background: var(--bg3);
    color: var(--red);
  }

  .nav-dropdown {
    display: block !important;
    position: static !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .nav-dropdown-trigger {
    display: flex !important;
    width: 100% !important;
    height: auto !important;
    padding: 1rem 1.5rem !important;
    align-items: center;
    justify-content: space-between !important;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    text-align: left !important;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
  }
  .nav-dropdown-trigger::after { display: none !important; }
  .nav-dropdown-trigger .dd-arrow {
    width: 16px; height: 16px;
    transition: transform 0.25s;
  }
  .nav-dropdown.open .dd-arrow,
  .nav-dropdown.active .dd-arrow { transform: rotate(180deg); }

  .nav-dropdown-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    min-width: auto !important;
    max-width: none !important;
    background: var(--bg3) !important;
    border: none !important;
    border-bottom: 1px solid var(--border) !important;
    border-radius: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .nav-dropdown:hover .nav-dropdown-menu { display: none !important; }
  .nav-dropdown.open .nav-dropdown-menu { display: block !important; }

  .dd-item {
    display: flex !important;
    align-items: center;
    gap: 14px;
    width: 100% !important;
    padding: 0.85rem 1.5rem 0.85rem 2.5rem !important;
    border-radius: 0 !important;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    background: transparent;
    color: var(--text);
  }
  .dd-item:last-child { border-bottom: none; }
  .dd-item:hover, .dd-item.active {
    background: var(--card);
    color: var(--red);
  }
  .dd-item .dd-icon { width: 32px; height: 32px; flex-shrink: 0; }
  .dd-item .dd-icon svg { width: 18px; height: 18px; }
  .dd-item .dd-title { font-size: 14px; font-weight: 700; }
  .dd-item .dd-desc {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
    line-height: 1.4;
  }

  .dd-divider {
    height: 1px;
    background: var(--border);
    margin: 0 1.5rem;
  }
}