/* ═══════════════════════════════════════════════
   TCevents — style.css
   ═══════════════════════════════════════════════ */

:root {
  --bg: #080c10;
  --surface: #0d1318;
  --card: #111820;
  --accent: #00e5ff;
  --accent2: #7c4dff;
  --accent3: #ff6d00;
  --text: #e8edf2;
  --muted: #6a7a8a;
  --border: rgba(0,229,255,0.12);
  --glow: 0 0 40px rgba(0,229,255,0.15);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Bricolage Grotesque', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ─────────────────────────────────── */
.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: screen;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(0,229,255,0.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transition: transform 0.15s ease, width 0.2s, height 0.2s;
}

/* ── GRID BG ────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,229,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* ── NAV ────────────────────────────────────── */
nav {
  position: fixed; top: 0; width: 100%;
  padding: 20px 5%;
  display: flex; justify-content: space-between; align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(8,12,16,0.95), transparent);
  backdrop-filter: blur(8px);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.6rem;
  color: var(--text); text-decoration: none;
  letter-spacing: -0.02em;
}
.logo span { color: var(--accent); }
.nav-center { display: flex; gap: 2.5rem; list-style: none; }
.nav-center a {
  font-family: 'DM Mono', monospace;
  font-size: 0.78rem; color: var(--muted);
  text-decoration: none; letter-spacing: 0.08em;
  text-transform: uppercase; transition: color 0.2s;
}
.nav-center a:hover { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ── LANG SWITCHER ──────────────────────────── */
.lang-switcher { display: flex; border: 1px solid var(--border); overflow: hidden; }
.lang-btn {
  background: transparent; border: none;
  color: var(--muted); padding: 8px 14px;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: none;
  transition: background 0.2s, color 0.2s;
}
.lang-btn + .lang-btn { border-left: 1px solid var(--border); }
.lang-btn.active { background: var(--accent); color: var(--bg); font-weight: 500; }
.lang-btn:not(.active):hover { color: var(--accent); }

.nav-cta {
  background: transparent; border: 1px solid var(--accent);
  color: var(--accent); padding: 10px 22px;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: none;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--accent); color: var(--bg); }

/* ── HAMBURGER ──────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: none; padding: 4px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--muted); transition: all 0.25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: var(--accent); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: var(--accent); }

/* ── MOBILE MENU ────────────────────────────── */
.mobile-menu {
  display: none; position: fixed; inset: 0;
  background: rgba(8,12,16,0.98);
  z-index: 90;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 2.5rem; backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none; transition: opacity 0.25s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 2rem; color: var(--text);
  text-decoration: none; letter-spacing: -0.02em; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mobile-lang { border: 1px solid var(--border); margin-top: 1rem; }
.mobile-menu .mobile-lang .lang-btn { padding: 10px 22px; font-size: 0.8rem; }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-start;
  padding: 120px 8% 80px;
  position: relative; z-index: 1;
}
.hero-tag {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--accent); letter-spacing: 0.2em; text-transform: uppercase;
  margin-bottom: 2rem; opacity: 0; animation: fadeUp 0.6s ease 0.2s forwards;
}
.hero-tag::before { content: '// '; opacity: 0.5; }
h1 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(3.2rem, 8vw, 7.5rem);
  line-height: 0.92; letter-spacing: -0.04em; max-width: 900px;
  opacity: 0; animation: fadeUp 0.8s ease 0.4s forwards;
}
h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--accent); }
h1 .highlight { position: relative; display: inline-block; }
h1 .highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px; background: var(--accent3);
}
.hero-sub {
  margin-top: 2.5rem; font-size: 1.15rem; color: var(--muted);
  max-width: 520px; line-height: 1.7; font-weight: 300;
  opacity: 0; animation: fadeUp 0.8s ease 0.6s forwards;
}
.hero-actions {
  margin-top: 3rem; display: flex; gap: 1rem; align-items: center;
  opacity: 0; animation: fadeUp 0.8s ease 0.8s forwards;
}
.btn-primary {
  background: var(--accent); color: var(--bg);
  padding: 16px 36px; font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  text-decoration: none; display: inline-block; cursor: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,229,255,0.4); }
.btn-ghost {
  color: var(--text); padding: 16px 28px;
  font-family: 'DM Mono', monospace; font-size: 0.78rem;
  letter-spacing: 0.08em; text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--accent); }
.btn-ghost::after { content: '→'; transition: transform 0.2s; }
.btn-ghost:hover::after { transform: translateX(4px); }

/* ── HERO VISUAL ────────────────────────────── */
.hero-visual {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 400px; height: 400px;
  opacity: 0; animation: fadeIn 1.2s ease 1s forwards;
  z-index: 0;
}
.hero > *:not(.hero-visual) { position: relative; z-index: 1; }
.network-nodes { position: relative; width: 100%; height: 100%; }
.node {
  position: absolute; background: var(--card); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  animation: pulse 3s ease-in-out infinite;
}
.node-center {
  width: 90px; height: 90px; top: 50%; left: 50%; transform: translate(-50%, -50%);
  border-color: var(--accent); box-shadow: 0 0 30px rgba(0,229,255,0.3);
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 0.75rem; color: var(--accent);
}
.node-sm { width: 52px; height: 52px; font-size: 1.4rem; }
.node-sm:nth-child(2) { top: 5%; left: 42%; animation-delay: 0.4s; }
.node-sm:nth-child(3) { top: 28%; right: 5%; animation-delay: 0.8s; }
.node-sm:nth-child(4) { bottom: 28%; right: 5%; animation-delay: 1.2s; }
.node-sm:nth-child(5) { bottom: 5%; left: 42%; animation-delay: 1.6s; }
.node-sm:nth-child(6) { bottom: 28%; left: 5%; animation-delay: 2s; }
.node-sm:nth-child(7) { top: 28%; left: 5%; animation-delay: 2.4s; }
.network-lines { position: absolute; inset: 0; pointer-events: none; }

/* ── STATS ──────────────────────────────────── */
.stats-bar {
  position: relative; z-index: 1;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 28px 8%; display: flex; justify-content: space-around;
  background: rgba(13,19,24,0.6); backdrop-filter: blur(10px);
}
.stat { text-align: center; opacity: 0; animation: fadeUp 0.6s ease forwards; }
.stat:nth-child(1){animation-delay:1.2s} .stat:nth-child(2){animation-delay:1.4s}
.stat:nth-child(3){animation-delay:1.6s} .stat:nth-child(4){animation-delay:1.8s}
.stat-num {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 2.2rem; color: var(--accent); letter-spacing: -0.03em;
}
.stat-label {
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 4px;
}

/* ── SECTIONS COMMON ────────────────────────── */
section { position: relative; z-index: 1; }
.section-tag {
  font-family: 'DM Mono', monospace; font-size: 0.7rem; color: var(--accent);
  letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 12px;
}
.section-tag::before { content: ''; display: inline-block; width: 30px; height: 1px; background: var(--accent); }
h2 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.05;
}

/* ── SERVICES ───────────────────────────────── */
#usluge { padding: 120px 8%; }
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 70px; flex-wrap: wrap; gap: 2rem;
}
.services-desc { max-width: 380px; color: var(--muted); font-size: 1rem; line-height: 1.7; font-weight: 300; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.service-card {
  background: var(--card); padding: 50px 44px;
  border: 1px solid transparent; transition: border-color 0.3s;
  position: relative; overflow: hidden; cursor: none;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,229,255,0.04), transparent);
  opacity: 0; transition: opacity 0.3s;
}
.service-card:hover { border-color: var(--border); }
.service-card:hover::before { opacity: 1; }
.service-card:nth-child(1),.service-card:nth-child(2),.service-card:nth-child(3) { border-bottom-color: var(--border); }
.service-card:nth-child(1),.service-card:nth-child(2),.service-card:nth-child(4),.service-card:nth-child(5) { border-right-color: var(--border); }

/* Icon watermark */
.service-icon { display: none; }
.service-icon-bg {
  position: absolute; right: -10px; bottom: -10px;
  font-size: 7rem; opacity: 0.06; pointer-events: none;
  line-height: 1; transition: opacity 0.3s, transform 0.3s; z-index: 0;
}
.service-card:hover .service-icon-bg { opacity: 0.1; transform: scale(1.05) rotate(-5deg); }
.service-card > *:not(.service-icon-bg) { position: relative; z-index: 1; }

.service-num {
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  color: var(--muted); letter-spacing: 0.15em; margin-bottom: 2rem;
}
.service-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.5rem; letter-spacing: -0.02em; margin-bottom: 1rem;
}
.service-desc { color: var(--muted); font-size: 0.95rem; line-height: 1.75; font-weight: 300; }
.service-features { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-feature {
  font-family: 'DM Mono', monospace; font-size: 0.72rem;
  color: var(--muted); display: flex; align-items: center; gap: 10px; letter-spacing: 0.04em;
}
.service-feature::before {
  content: ''; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.service-arrow {
  position: absolute; right: 44px; bottom: 44px; font-size: 1.4rem;
  color: var(--accent); opacity: 0; transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }

/* ── PROCESS ────────────────────────────────── */
#kako-radimo {
  padding: 120px 8%; background: var(--surface);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.process-steps { margin-top: 70px; display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.process-steps::after {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), var(--accent3), transparent);
  opacity: 0.4;
}
.step { padding: 0 24px; text-align: center; position: relative; }
.step-num {
  width: 72px; height: 72px; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 2rem; position: relative; z-index: 1;
  background: var(--surface); font-family: 'DM Mono', monospace;
  font-size: 0.8rem; color: var(--accent); letter-spacing: 0.1em;
}
.step-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.1rem; margin-bottom: 0.8rem; }
.step-desc { color: var(--muted); font-size: 0.88rem; line-height: 1.7; font-weight: 300; }

/* ── CASHLESS ───────────────────────────────── */
#cashless { padding: 120px 8%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.cashless-content h2 { margin-bottom: 1.5rem; }
.cashless-desc { color: var(--muted); line-height: 1.8; font-weight: 300; font-size: 1rem; margin-bottom: 2.5rem; }
.cashless-features-list { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 3rem; }
.cashless-feat {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 20px; background: var(--card); border: 1px solid var(--border);
  transition: border-color 0.2s; position: relative; overflow: hidden;
}
.cashless-feat:hover { border-color: rgba(0,229,255,0.3); }
.cashless-feat-icon {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  font-size: 4rem; opacity: 0.07; pointer-events: none; z-index: 0; transition: opacity 0.3s;
}
.cashless-feat:hover .cashless-feat-icon { opacity: 0.13; }
.cashless-feat > *:not(.cashless-feat-icon) { position: relative; z-index: 1; }
.cashless-feat-inner { display: flex; flex-direction: column; }
.cashless-feat-title { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.cashless-feat-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

.cashless-visual { position: relative; }
.phone-mockup {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 32px; padding: 20px; max-width: 300px; margin: 0 auto;
  box-shadow: var(--glow), 0 40px 80px rgba(0,0,0,0.4); position: relative;
}
.phone-mockup::before {
  content: ''; position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; background: var(--border); border-radius: 2px;
}
.phone-screen { background: var(--bg); border-radius: 24px; padding: 30px 20px; margin-top: 16px; }
.phone-header { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.balance-display { text-align: center; padding: 24px 0; border-bottom: 1px solid var(--border); margin-bottom: 20px; }
.balance-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.12em; margin-bottom: 8px; }
.balance-amount { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 2.4rem; color: var(--accent); }
.balance-currency { font-size: 1rem; color: var(--muted); margin-left: 4px; }
.txn-list { display: flex; flex-direction: column; gap: 10px; }
.txn { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; }
.txn-name { color: var(--text); }
.txn-amount { font-family: 'DM Mono', monospace; color: var(--muted); }
.txn-amount.neg { color: #ff6b6b; }
.floating-badge {
  position: absolute; color: white; padding: 10px 18px; border-radius: 4px;
  font-family: 'DM Mono', monospace; font-size: 0.7rem; letter-spacing: 0.08em;
  animation: float 3s ease-in-out infinite;
}
.badge-1 { right: -20px; top: 60px; background: var(--accent); color: var(--bg); }
.badge-2 { left: -30px; bottom: 80px; background: var(--accent3); animation-delay: 1.5s; }

/* ── ABOUT ──────────────────────────────────── */
#o-nama { padding: 120px 8%; background: var(--surface); border-top: 1px solid var(--border); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-top: 60px; }
.about-left h2 { margin-bottom: 1.5rem; }
.about-left p { color: var(--muted); line-height: 1.85; font-weight: 300; font-size: 1rem; margin-bottom: 1.2rem; }
.tech-stack { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2rem; }
.tech-tag { font-family: 'DM Mono', monospace; font-size: 0.68rem; padding: 6px 14px; border: 1px solid var(--border); color: var(--muted); letter-spacing: 0.08em; }
.tech-tag.active { border-color: var(--accent); color: var(--accent); }
.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card {
  background: var(--card); border: 1px solid var(--border); padding: 32px 24px;
  transition: border-color 0.2s; position: relative; overflow: hidden;
}
.about-card:hover { border-color: rgba(0,229,255,0.3); }
.about-card:first-child { grid-column: span 2; border-color: rgba(0,229,255,0.2); }
.about-card-icon {
  position: absolute; right: -8px; bottom: -8px;
  font-size: 5rem; opacity: 0.07; pointer-events: none; line-height: 1;
  transition: opacity 0.3s; z-index: 0;
}
.about-card:hover .about-card-icon { opacity: 0.13; }
.about-card > *:not(.about-card-icon) { position: relative; z-index: 1; }
.about-card-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.6rem; }
.about-card-desc { color: var(--muted); font-size: 0.82rem; line-height: 1.6; }

/* ── CONTACT ────────────────────────────────── */
#kontakt { padding: 120px 8%; border-top: 1px solid var(--border); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 60px; }
.contact-info h3 { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 1.4rem; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); line-height: 1.8; font-size: 0.95rem; margin-bottom: 2.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1rem; }
.contact-item { display: flex; align-items: center; gap: 16px; padding: 18px 20px; border: 1px solid var(--border); background: var(--card); }
.contact-item-icon { font-size: 1.3rem; }
.contact-item-label { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.contact-item-value { font-size: 0.9rem; color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea {
  background: var(--card); border: 1px solid var(--border); color: var(--text);
  padding: 14px 16px; font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.9rem; outline: none; transition: border-color 0.2s; cursor: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--accent); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--card); }
.form-submit {
  background: var(--accent); color: var(--bg); border: none;
  padding: 18px 40px; font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 0.9rem; letter-spacing: 0.04em;
  cursor: none; transition: transform 0.15s, box-shadow 0.15s; align-self: flex-start;
}
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 40px rgba(0,229,255,0.4); }
.form-success {
  display: none; background: var(--card); border: 1px solid #00c853;
  padding: 20px 24px; text-align: center;
  font-family: 'DM Mono', monospace; font-size: 0.82rem; color: #00c853; letter-spacing: 0.08em;
}
.form-success.show { display: block; }

/* ── FOOTER ─────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 40px 8%; display: flex; justify-content: space-between; align-items: center; position: relative; z-index: 1; }
.footer-logo { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--text); }
.footer-logo span { color: var(--accent); }
.footer-copy { font-family: 'DM Mono', monospace; font-size: 0.65rem; color: var(--muted); letter-spacing: 0.08em; }
.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { font-family: 'DM Mono', monospace; font-size: 0.68rem; color: var(--muted); text-decoration: none; letter-spacing: 0.08em; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(24px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes pulse { 0%,100%{box-shadow:0 0 10px rgba(0,229,255,0.1)} 50%{box-shadow:0 0 25px rgba(0,229,255,0.3)} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.lang-fade { transition: opacity 0.18s ease; }
.lang-fade.out { opacity: 0; pointer-events: none; }

/* ── ACCREDITATION ──────────────────────────── */
#akreditacije {
  padding: 120px 8%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.accred-hero { max-width: 700px; margin-bottom: 80px; }
.accred-hero h2 { margin-top: 1rem; margin-bottom: 1.5rem; }
.accred-intro { color: var(--muted); font-size: 1.05rem; line-height: 1.8; font-weight: 300; }

/* Pillars */
.accred-pillars {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2px;
  margin-bottom: 80px;
}
.accred-pillar {
  background: var(--card); padding: 44px 36px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: border-color 0.3s;
}
.accred-pillar:hover { border-color: rgba(0,229,255,0.3); }
.accred-pillar--accent {
  border-color: rgba(0,229,255,0.25);
  background: linear-gradient(160deg, rgba(0,229,255,0.04) 0%, var(--card) 60%);
}
.accred-pillar-icon {
  font-size: 2.8rem; margin-bottom: 1.4rem; display: block;
}
.accred-pillar h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1.25rem; margin-bottom: 0.8rem; letter-spacing: -0.02em;
}
.accred-pillar p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; font-weight: 300; margin-bottom: 1.4rem; }
.accred-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.accred-list li {
  font-family: 'DM Mono', monospace; font-size: 0.7rem;
  color: var(--muted); letter-spacing: 0.04em;
  display: flex; align-items: center; gap: 10px;
}
.accred-list li::before {
  content: ''; width: 5px; height: 5px;
  background: var(--accent); border-radius: 50%; flex-shrink: 0;
}
.accred-pillar--accent .accred-list li::before { background: var(--accent); }

/* Badge types */
.accred-types-wrap { margin-bottom: 80px; }
.accred-types-header { margin-bottom: 40px; }
.accred-types-header h3 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 2rem); letter-spacing: -0.02em;
}
.accred-types-grid {
  display: flex; gap: 24px; flex-wrap: wrap;
}

/* Badge card */
.badge-preview {
  width: 200px; border-radius: 10px; overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.badge-preview:hover { transform: translateY(-6px); box-shadow: 0 16px 60px rgba(0,0,0,0.5); }
.badge-stripe { height: 10px; }
.badge-body {
  background: #0f1822; padding: 16px 14px 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.badge-event {
  font-family: 'DM Mono', monospace; font-size: 0.58rem;
  color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase;
}
.badge-name {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: 1rem; letter-spacing: -0.02em; color: var(--text);
}
.badge-role {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
}
.badge-zones {
  display: flex; gap: 4px; flex-wrap: wrap; margin-top: 4px;
}
.badge-zones span {
  font-family: 'DM Mono', monospace; font-size: 0.55rem;
  padding: 2px 6px; border-radius: 3px;
  background: rgba(255,255,255,0.08); color: var(--muted);
  letter-spacing: 0.08em;
}
.badge-qr {
  margin-top: 8px; display: flex; justify-content: flex-end;
  opacity: 0.4;
}

/* Colour variants */
.badge-press  .badge-stripe { background: #00e5ff; }
.badge-press  .badge-role   { color: #00e5ff; }
.badge-press  .badge-zones span:last-child { background: rgba(0,229,255,0.2); color: #00e5ff; }

.badge-vip    .badge-stripe { background: #ffd700; }
.badge-vip    .badge-role   { color: #ffd700; }
.badge-vip    .badge-zones span:last-child { background: rgba(255,215,0,0.2); color: #ffd700; }

.badge-crew   .badge-stripe { background: #ff6d00; }
.badge-crew   .badge-role   { color: #ff6d00; }
.badge-crew   .badge-zones span:last-child { background: rgba(255,109,0,0.2); color: #ff6d00; }

.badge-artist .badge-stripe { background: #7c4dff; }
.badge-artist .badge-role   { color: #7c4dff; }
.badge-artist .badge-zones span { background: rgba(124,77,255,0.15); color: #b39dff; }

/* Flow */
.accred-flow { margin-bottom: 80px; }
.accred-flow-steps {
  display: flex; align-items: flex-start;
  gap: 0; margin-top: 40px;
  overflow-x: auto; padding-bottom: 8px;
}
.accred-flow-step {
  flex: 1; min-width: 140px; text-align: center;
  padding: 0 12px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.afs-icon {
  font-size: 2rem;
  width: 64px; height: 64px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px; transition: border-color 0.2s, box-shadow 0.2s;
}
.accred-flow-step:hover .afs-icon {
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0,229,255,0.2);
}
.afs-num {
  font-family: 'DM Mono', monospace; font-size: 0.62rem;
  color: var(--accent); letter-spacing: 0.12em;
}
.afs-title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 0.9rem; text-align: center;
}
.afs-desc {
  font-family: 'DM Mono', monospace; font-size: 0.68rem;
  color: var(--muted); text-align: center; line-height: 1.5;
}
.accred-flow-arrow {
  color: var(--accent); font-size: 1.4rem;
  flex-shrink: 0; padding-top: 22px; opacity: 0.4;
}

/* CTA strip */
.accred-cta-strip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 48px 56px; gap: 2rem;
  background: var(--card);
  border: 1px solid rgba(0,229,255,0.2);
  position: relative; overflow: hidden;
}
.accred-cta-strip::before {
  content: '🪪';
  position: absolute; right: -20px; bottom: -20px;
  font-size: 9rem; opacity: 0.04; pointer-events: none;
}
.accred-cta-text h3 {
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem); margin-bottom: 0.6rem;
}
.accred-cta-text p { color: var(--muted); font-size: 0.95rem; line-height: 1.6; font-weight: 300; }

/* Service card — wide variant (spans 3 cols) */
.service-card--wide { grid-column: 1 / -1; }
.service-card--wide .service-desc { max-width: 700px; }
.service-cta-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 1.8rem;
  font-family: 'DM Mono', monospace; font-size: 0.75rem;
  color: var(--accent); text-decoration: none; letter-spacing: 0.08em;
  transition: gap 0.2s;
}
.service-cta-link::after { content: '→'; }
.service-cta-link:hover { gap: 14px; }

/* ── TABLET (≤1024px) ───────────────────────── */
@media(max-width:1024px) {
  .accred-pillars { grid-template-columns: 1fr 1fr; }
  .accred-flow-steps { flex-wrap: wrap; justify-content: center; gap: 24px; }
  .accred-flow-arrow { display: none; }
  .accred-flow-step { min-width: 120px; flex: 0 0 calc(33% - 16px); }
  .accred-cta-strip { padding: 36px 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card:nth-child(1),.service-card:nth-child(2),.service-card:nth-child(3),
  .service-card:nth-child(4),.service-card:nth-child(5) { border-bottom-color: var(--border); }
  .service-card:nth-child(1),.service-card:nth-child(3),.service-card:nth-child(5) { border-right-color: var(--border); }
  .service-card:nth-child(2),.service-card:nth-child(4),.service-card:nth-child(6) { border-right-color: transparent; }
  .hero-visual { width: 280px; height: 280px; }
  h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
}

/* ── MOBILE (≤768px) ────────────────────────── */
@media(max-width:768px) {
  body { cursor: auto; }
  .cursor,.cursor-ring { display: none; }
  .form-input,.form-select,.form-textarea { cursor: auto; }
  .btn-primary,.btn-ghost,.nav-cta,.form-submit,.lang-btn,.hamburger { cursor: pointer; }

  .nav-center,.nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }
  nav { padding: 16px 5%; }

  .hero { padding: 100px 6% 60px; min-height: auto; }
  .hero-visual {
    position: absolute; right: -5%; top: 50%; transform: translateY(-50%);
    width: 240px; height: 240px;
    opacity: 0.15 !important; animation: fadeIn 1s ease 0.5s forwards !important;
  }
  h1 { font-size: clamp(2.4rem, 10vw, 3.4rem); max-width: 100%; }
  .hero-sub { font-size: 1rem; max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 0.8rem; }
  .btn-primary,.btn-ghost { padding: 14px 28px; font-size: 0.85rem; }

  .stats-bar { flex-wrap: wrap; padding: 0; }
  .stat { width: 50%; padding: 20px 10px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(3),.stat:nth-child(4) { border-bottom: none; }
  .stat-num { font-size: 1.8rem; }

  #usluge { padding: 70px 5%; }
  .services-header { flex-direction: column; margin-bottom: 40px; }
  .services-desc { max-width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 32px 28px; border-right-color: transparent !important; border-bottom-color: var(--border) !important; border-left: none; border-top: none; }
  .service-card:last-child { border-bottom-color: transparent !important; }
  .service-arrow { display: none; }
  h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  #kako-radimo { padding: 70px 5%; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; margin-top: 40px; }
  .process-steps::after { display: none; }
  .step { padding: 0 8px; }
  .step-num { width: 56px; height: 56px; font-size: 0.72rem; margin-bottom: 1rem; }
  .step-title { font-size: 1rem; }
  .step-desc { font-size: 0.82rem; }

  #cashless { grid-template-columns: 1fr; gap: 40px; padding: 70px 5%; }
  .cashless-visual { order: -1; }
  .phone-mockup { max-width: 260px; }
  .floating-badge { display: none; }

  #o-nama { padding: 70px 5%; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .about-right { grid-template-columns: 1fr; }
  .about-card:first-child { grid-column: span 1; }
  .about-card { padding: 24px 20px; }

  #kontakt { padding: 70px 5%; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .form-submit { width: 100%; text-align: center; padding: 16px; }

  /* Accreditation mobile */
  #akreditacije { padding: 70px 5%; }
  .accred-pillars { grid-template-columns: 1fr; }
  .accred-hero { margin-bottom: 40px; }
  .accred-types-grid { gap: 14px; }
  .badge-preview { width: 160px; }
  .badge-name { font-size: 0.85rem; }
  .accred-flow-step { flex: 0 0 calc(50% - 12px); }
  .accred-cta-strip { flex-direction: column; padding: 32px 24px; text-align: center; }
  .accred-cta-strip .btn-primary { width: 100%; text-align: center; }

  footer { flex-direction: column; gap: 1.2rem; text-align: center; padding: 32px 5%; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

/* ── SMALL MOBILE (≤480px) ──────────────────── */
@media(max-width:480px) {
  h1 { font-size: clamp(2rem, 11vw, 2.8rem); }
  .hero { padding: 90px 5% 50px; }
  .hero-visual { width: 180px; height: 180px; }
  .logo { font-size: 1.3rem; }
  .service-card { padding: 28px 20px; }
  .cashless-feat { padding: 14px 16px; }
  .process-steps { grid-template-columns: 1fr; }
}

/* ── SCROLLBAR ──────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); }
