/* ╔══════════════════════════════════════════════════════════════════╗
   ║  MT-FIDES  |  style-wow.css  |  Premium WOW Edition             ║
   ╚══════════════════════════════════════════════════════════════════╝ */

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

:root {
  --black:    #05060d;
  --navy:     #080c1a;
  --blue:     #1469FF;
  --blue-lt:  #5A9EFF;
  --gold:     #F0B429;
  --gold-lt:  #FFD97D;
  --purple:   #8B5CF6;
  --white:    #ffffff;
  --w90:      rgba(255,255,255,0.90);
  --w70:      rgba(255,255,255,0.70);
  --w40:      rgba(255,255,255,0.40);
  --w15:      rgba(255,255,255,0.15);
  --w08:      rgba(255,255,255,0.08);
  --w04:      rgba(255,255,255,0.04);
  --border:   rgba(255,255,255,0.10);
  --blur-sm:  12px;
  --blur-md:  28px;
  --blur-lg:  52px;
  --r-sm:     12px;
  --r-md:     20px;
  --r-lg:     32px;
  --r-pill:   999px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
}

/* ══════════════════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════════════════ */
#cursor-dot {
  position: fixed; z-index: 9999; pointer-events: none;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--blue);
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
#cursor-ring {
  position: fixed; z-index: 9998; pointer-events: none;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid rgba(20,105,255,0.55);
  transform: translate(-50%,-50%);
  transition: all .12s ease;
  backdrop-filter: invert(10%);
}
body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot { width: 14px; height: 14px; background: var(--gold); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width: 56px; height: 56px; border-color: rgba(240,180,41,0.50); }

/* ══════════════════════════════════════════════════════════
   NOISE GRAIN OVERLAY
══════════════════════════════════════════════════════════ */
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px 180px;
}

/* ══════════════════════════════════════════════════════════
   ANIMATED MESH BACKGROUND
══════════════════════════════════════════════════════════ */
.bg-wrap {
  position: fixed; inset: 0; z-index: 0; overflow: hidden;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, #0d1740 0%, var(--black) 70%);
}
.mesh-orb {
  position: absolute; border-radius: 50%; filter: blur(100px);
  animation: orbDrift linear infinite;
}
.mesh-orb:nth-child(1){
  width:700px;height:700px; top:-200px; left:-200px;
  background:radial-gradient(circle,rgba(20,105,255,0.22),transparent 65%);
  animation-duration:26s; animation-delay:0s;
}
.mesh-orb:nth-child(2){
  width:550px;height:550px; top:20%;right:-150px;
  background:radial-gradient(circle,rgba(139,92,246,0.20),transparent 65%);
  animation-duration:20s;animation-delay:-7s;
}
.mesh-orb:nth-child(3){
  width:480px;height:480px;bottom:0;left:25%;
  background:radial-gradient(circle,rgba(240,180,41,0.12),transparent 65%);
  animation-duration:22s;animation-delay:-14s;
}
.mesh-orb:nth-child(4){
  width:320px;height:320px;bottom:20%;right:20%;
  background:radial-gradient(circle,rgba(20,105,255,0.14),transparent 65%);
  animation-duration:18s;animation-delay:-3s;
}
@keyframes orbDrift{
  0%,100%{transform:translate(0,0) scale(1);}
  25%{transform:translate(40px,-60px) scale(1.06);}
  50%{transform:translate(-30px,40px) scale(0.94);}
  75%{transform:translate(50px,30px) scale(1.03);}
}

/* Fine dot grid */
.bg-wrap::after{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* ══════════════════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  z-index: 1000; width: min(780px, calc(100% - 32px));
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 18px;
  background: rgba(8,12,26,0.60);
  backdrop-filter: blur(48px) saturate(180%);
  -webkit-backdrop-filter: blur(48px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: var(--r-pill);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 24px 64px rgba(0,0,0,0.50),
    0 1px 0 rgba(255,255,255,0.12) inset;
}

.nav-brand { display:flex; align-items:center; gap:12px; text-decoration:none; }
.nav-icon {
  width:38px; height:38px; border-radius:11px;
  background: linear-gradient(135deg, #1469FF 0%, #8B5CF6 100%);
  display:flex; align-items:center; justify-content:center;
  font-size:14px; font-weight:900; color:#fff; letter-spacing:-0.5px;
  box-shadow: 0 4px 18px rgba(20,105,255,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
  position:relative; overflow:hidden;
}
.nav-icon::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.20),transparent 60%);
}
.nav-name { font-size:15px; font-weight:700; letter-spacing:0.2px; }
.nav-sub  { font-size:10px; color:var(--w40); letter-spacing:1px; text-transform:uppercase; margin-top:-2px; }

.nav-links { display:flex; align-items:center; gap:2px; }
.nav-links a {
  padding:8px 16px; border-radius:var(--r-pill);
  font-size:13.5px; font-weight:500; color:var(--w70);
  text-decoration:none; border:1px solid transparent;
  transition: all .22s ease;
}
.nav-links a:hover { color:#fff; background:var(--w08); border-color:var(--border); }
.nav-btn {
  margin-left:6px; padding:9px 22px !important;
  background: linear-gradient(135deg,#1469FF,#8B5CF6) !important;
  color:#fff !important; font-weight:600 !important;
  border-color:transparent !important;
  box-shadow: 0 4px 20px rgba(20,105,255,0.40), inset 0 1px 0 rgba(255,255,255,0.20);
  position:relative; overflow:hidden;
}
.nav-btn::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.15),transparent 55%);
}
.nav-btn:hover { box-shadow:0 6px 28px rgba(20,105,255,0.60) !important; transform:translateY(-1px); }

/* ══════════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════════ */
#pocetna {
  position:relative; z-index:2;
  min-height:100vh; display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  padding: 130px 24px 60px;
  text-align:center;
}

.hero-eyebrow {
  display:inline-flex; align-items:center; gap:10px;
  padding:7px 20px; border-radius:var(--r-pill); margin-bottom:36px;
  background:rgba(20,105,255,0.12);
  border:1px solid rgba(20,105,255,0.35);
  font-size:12px; font-weight:600; letter-spacing:1.8px;
  text-transform:uppercase; color:var(--blue-lt);
  backdrop-filter:blur(12px); -webkit-backdrop-filter:blur(12px);
  box-shadow:0 0 28px rgba(20,105,255,0.15), inset 0 1px 0 rgba(255,255,255,0.12);
  animation:fadeUp .8s ease both;
}
.hero-eyebrow .live-dot {
  width:6px; height:6px; border-radius:50%; background:#34C759;
  box-shadow:0 0 10px #34C759; animation:pulse 2s infinite;
}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(0.85);}}

.hero-headline {
  font-size: clamp(3.2rem, 8.5vw, 7.2rem);
  font-weight: 900; line-height: 1.0; letter-spacing: -3px;
  margin-bottom: 12px;
  animation: fadeUp .9s .08s ease both;
}
.hero-headline .line2 {
  display:block;
  background: linear-gradient(95deg, #1469FF 0%, #8B5CF6 40%, var(--gold) 80%);
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
  background-size: 200%; animation: gradShift 6s ease-in-out infinite, fadeUp .9s .08s ease both;
}
@keyframes gradShift{0%,100%{background-position:0%;}50%{background-position:100%;}}

.hero-headline .line3 { display:block; color:var(--w70); font-weight:300; font-size:0.75em; }

.hero-desc {
  max-width:560px; margin:28px auto 48px;
  font-size:1.1rem; color:var(--w70); line-height:1.75;
  animation:fadeUp .9s .18s ease both;
}

.hero-actions {
  display:flex; gap:16px; justify-content:center; flex-wrap:wrap;
  animation:fadeUp .9s .28s ease both;
}

.btn-cta {
  position:relative; overflow:hidden;
  padding:16px 40px; border-radius:var(--r-pill);
  background:linear-gradient(135deg,#1469FF,#8B5CF6);
  color:#fff; font-size:15px; font-weight:700; letter-spacing:0.2px;
  text-decoration:none; border:none; cursor:none;
  box-shadow:0 6px 32px rgba(20,105,255,0.50), inset 0 1px 0 rgba(255,255,255,0.25);
  transition:all .3s ease;
}
.btn-cta::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.18),transparent 55%);
}
.btn-cta::after{
  content:""; position:absolute; inset:-2px; border-radius:inherit; z-index:-1;
  background:linear-gradient(135deg,#1469FF,#8B5CF6,var(--gold));
  filter:blur(16px); opacity:0; transition:opacity .3s;
}
.btn-cta:hover { transform:translateY(-3px) scale(1.02); }
.btn-cta:hover::after { opacity:0.7; }

.btn-outline {
  padding:15px 40px; border-radius:var(--r-pill);
  background:rgba(255,255,255,0.05); color:var(--white);
  font-size:15px; font-weight:500; text-decoration:none;
  border:1px solid rgba(255,255,255,0.18);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
  transition:all .3s ease; cursor:none;
}
.btn-outline:hover {
  background:rgba(255,255,255,0.10); border-color:rgba(255,255,255,0.32);
  transform:translateY(-3px);
}

/* ── TICKER MARQUEE ── */
.ticker-wrap {
  position:relative; z-index:2;
  width:100%; overflow:hidden; padding:18px 0; margin-top:70px;
  border-top:1px solid var(--border); border-bottom:1px solid var(--border);
  background:rgba(255,255,255,0.025);
  backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  animation:fadeUp .9s .4s ease both;
}
.ticker-track {
  display:flex; gap:0; width:max-content;
  animation:ticker 28s linear infinite;
}
@keyframes ticker{from{transform:translateX(0);}to{transform:translateX(-50%);}}
.ticker-item {
  display:flex; align-items:center; gap:14px;
  padding:0 32px; font-size:13px; font-weight:500;
  color:var(--w40); white-space:nowrap; letter-spacing:0.5px;
}
.ticker-item span { color:var(--blue-lt); font-weight:600; }
.ticker-sep { color:rgba(255,255,255,0.15); font-size:20px; }

/* ── USLUGE KARTICE (3 u hero dnu) ── */
.hero-services {
  position:relative; z-index:2;
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
  max-width:940px; margin:60px auto 0; padding:0 24px;
  animation:fadeUp .9s .5s ease both;
}
.svc-card {
  padding:30px 26px; border-radius:var(--r-lg);
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.10);
  backdrop-filter:blur(24px) saturate(160%);
  -webkit-backdrop-filter:blur(24px) saturate(160%);
  box-shadow:0 8px 32px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.14);
  transition:all .35s ease; position:relative; overflow:hidden; cursor:none;
}
.svc-card::before{
  content:""; position:absolute; top:0; left:0; right:0; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.35),transparent);
}
.svc-card::after{
  content:""; position:absolute; inset:0; border-radius:var(--r-lg);
  background:radial-gradient(circle at 50% 0%, rgba(20,105,255,0.08), transparent 60%);
  opacity:0; transition:opacity .35s;
}
.svc-card:hover{
  transform:translateY(-8px);
  border-color:rgba(20,105,255,0.30);
  box-shadow:0 20px 56px rgba(0,0,0,0.45), 0 0 0 1px rgba(20,105,255,0.20);
}
.svc-card:hover::after{ opacity:1; }
.svc-ico {
  width:52px; height:52px; border-radius:16px; margin-bottom:18px;
  display:flex; align-items:center; justify-content:center; font-size:24px;
  position:relative; z-index:1;
}
.ico-blue   { background:rgba(20,105,255,0.18); box-shadow:0 0 24px rgba(20,105,255,0.25); }
.ico-purple { background:rgba(139,92,246,0.18); box-shadow:0 0 24px rgba(139,92,246,0.25); }
.ico-gold   { background:rgba(240,180,41,0.18); box-shadow:0 0 24px rgba(240,180,41,0.25); }
.svc-card h3 { font-size:16px; font-weight:700; margin-bottom:8px; position:relative; z-index:1; }
.svc-card p  { font-size:13.5px; color:var(--w70); line-height:1.6; position:relative; z-index:1; }

/* ══════════════════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════════════════ */
section { position:relative; z-index:2; }
.container { max-width:1100px; margin:0 auto; padding:0 24px; }

.tag {
  display:inline-flex; align-items:center; gap:8px;
  font-size:11px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:var(--blue-lt); margin-bottom:20px;
}
.tag::before{
  content:""; display:block; width:20px; height:1.5px;
  background:linear-gradient(90deg,var(--blue),var(--purple));
  border-radius:2px;
}

/* ══════════════════════════════════════════════════════════
   O NAMA
══════════════════════════════════════════════════════════ */
#onama { padding:140px 0; }

.onama-wrap {
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}

.onama-left h2 {
  font-size:clamp(2.2rem,4.5vw,3.6rem); font-weight:900;
  line-height:1.1; letter-spacing:-1.5px; margin-bottom:24px;
}
.onama-left h2 em {
  font-style:normal;
  background:linear-gradient(90deg,var(--blue-lt),var(--purple));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.onama-left p { font-size:1.05rem; color:var(--w70); line-height:1.8; margin-bottom:18px; }
.onama-left p strong { color:#fff; font-weight:600; }

.onama-divider {
  width:48px; height:3px; border-radius:4px; margin:32px 0;
  background:linear-gradient(90deg,var(--blue),var(--purple));
}

/* Stats grid */
.stats-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:40px;
}
.stat-box {
  padding:24px 20px; border-radius:var(--r-md);
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px);
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.10);
  text-align:center;
  transition:all .3s ease;
}
.stat-box:hover { background:rgba(20,105,255,0.08); border-color:rgba(20,105,255,0.25); transform:translateY(-4px); }
.stat-num {
  font-size:2.4rem; font-weight:900; letter-spacing:-2px; display:block;
  background:linear-gradient(135deg,var(--blue-lt),var(--purple));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.stat-lbl { font-size:12px; color:var(--w40); margin-top:4px; letter-spacing:0.5px; }

/* Right side – value cards */
.onama-right { display:flex; flex-direction:column; gap:16px; }
.val-card {
  display:flex; align-items:flex-start; gap:18px;
  padding:24px 22px; border-radius:var(--r-md);
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  backdrop-filter:blur(20px); -webkit-backdrop-filter:blur(20px);
  box-shadow:0 4px 20px rgba(0,0,0,0.20), inset 0 1px 0 rgba(255,255,255,0.10);
  transition:all .3s ease; position:relative; overflow:hidden;
}
.val-card::before{
  content:""; position:absolute; left:0; top:0; bottom:0; width:2px;
  border-radius:2px;
}
.val-card.c-blue::before   { background:linear-gradient(180deg,var(--blue),transparent); }
.val-card.c-purple::before { background:linear-gradient(180deg,var(--purple),transparent); }
.val-card.c-gold::before   { background:linear-gradient(180deg,var(--gold),transparent); }
.val-card.c-teal::before   { background:linear-gradient(180deg,#2DD4BF,transparent); }
.val-card:hover { background:rgba(255,255,255,0.08); transform:translateX(6px); }
.val-ico {
  width:44px; height:44px; border-radius:14px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.val-ico.blue   { background:rgba(20,105,255,0.18); }
.val-ico.purple { background:rgba(139,92,246,0.18); }
.val-ico.gold   { background:rgba(240,180,41,0.16); }
.val-ico.teal   { background:rgba(45,212,191,0.16); }
.val-text h4 { font-size:14.5px; font-weight:700; margin-bottom:4px; }
.val-text p  { font-size:13px; color:var(--w70); line-height:1.5; }

/* ══════════════════════════════════════════════════════════
   KONTAKT
══════════════════════════════════════════════════════════ */
#kontakt { padding:80px 0 120px; }

.kontakt-header { text-align:center; margin-bottom:70px; }
.kontakt-header h2 {
  font-size:clamp(2.2rem,4.5vw,3.6rem); font-weight:900;
  line-height:1.1; letter-spacing:-1.5px; margin-bottom:16px;
}
.kontakt-header h2 em {
  font-style:normal;
  background:linear-gradient(90deg,var(--gold),var(--gold-lt));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text;
}
.kontakt-header p { font-size:1.05rem; color:var(--w70); max-width:500px; margin:0 auto; }

.kontakt-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:28px; align-items:start; }

/* Info panel */
.k-info {
  padding:38px 32px; border-radius:var(--r-lg);
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);
  box-shadow:0 16px 56px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.12);
  position:relative; overflow:hidden;
}
.k-info::after{
  content:""; position:absolute; bottom:-60px; right:-60px;
  width:220px; height:220px; border-radius:50%;
  background:radial-gradient(circle,rgba(139,92,246,0.18),transparent 70%);
  pointer-events:none;
}
.k-info-title { font-size:1.2rem; font-weight:800; margin-bottom:26px; }
.k-item {
  display:flex; align-items:center; gap:14px;
  padding:14px 16px; border-radius:14px; margin-bottom:14px;
  background:rgba(255,255,255,0.05); border:1px solid var(--border);
  transition:all .25s; cursor:none;
}
.k-item:last-of-type { margin-bottom:0; }
.k-item:hover { background:rgba(255,255,255,0.10); transform:translateX(4px); }
.k-ico {
  width:40px; height:40px; border-radius:12px; flex-shrink:0;
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.k-ico.b { background:rgba(20,105,255,0.18); }
.k-ico.g { background:rgba(52,199,89,0.16); }
.k-ico.p { background:rgba(139,92,246,0.18); }
.k-ico.o { background:rgba(240,180,41,0.16); }
.k-item-text { font-size:14px; }
.k-item-text small { display:block; font-size:11px; color:var(--w40); text-transform:uppercase; letter-spacing:0.8px; margin-bottom:3px; }
.k-item-text a { color:var(--blue-lt); text-decoration:none; font-weight:500; }
.k-item-text a:hover { color:#fff; }

/* Form panel */
.k-form {
  padding:40px 38px; border-radius:var(--r-lg);
  background:rgba(255,255,255,0.05);
  border:1px solid var(--border);
  backdrop-filter:blur(28px) saturate(180%);
  -webkit-backdrop-filter:blur(28px) saturate(180%);
  box-shadow:0 16px 56px rgba(0,0,0,0.30), inset 0 1px 0 rgba(255,255,255,0.10);
}
.k-form-title { font-size:1.2rem; font-weight:800; margin-bottom:28px; }
.f-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:0; }
.f-grp { margin-bottom:18px; }
.f-grp label {
  display:block; font-size:11px; font-weight:700; color:var(--w40);
  text-transform:uppercase; letter-spacing:1px; margin-bottom:9px;
}
.f-grp input, .f-grp select, .f-grp textarea {
  width:100%; padding:13px 16px; border-radius:var(--r-sm);
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  color:#fff; font-size:14px; font-family:inherit;
  outline:none; transition:all .25s;
  box-shadow:inset 0 1px 0 rgba(255,255,255,0.06), inset 0 2px 6px rgba(0,0,0,0.15);
}
.f-grp input::placeholder, .f-grp textarea::placeholder { color:rgba(255,255,255,0.25); }
.f-grp input:focus, .f-grp select:focus, .f-grp textarea:focus {
  border-color:rgba(20,105,255,0.55);
  background:rgba(20,105,255,0.08);
  box-shadow:0 0 0 3px rgba(20,105,255,0.14), inset 0 1px 0 rgba(255,255,255,0.08);
}
.f-grp select option { background:#0d1b2e; color:#fff; }
.f-grp textarea { resize:vertical; min-height:100px; }

.f-submit {
  width:100%; padding:16px; border-radius:var(--r-pill);
  background:linear-gradient(135deg,#1469FF,#8B5CF6);
  color:#fff; font-size:15px; font-weight:700; letter-spacing:0.2px;
  border:none; cursor:none;
  box-shadow:0 6px 32px rgba(20,105,255,0.45), inset 0 1px 0 rgba(255,255,255,0.22);
  transition:all .3s ease; position:relative; overflow:hidden;
}
.f-submit::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,0.16),transparent 55%);
}
.f-submit::after{
  content:""; position:absolute; inset:-2px; border-radius:inherit; z-index:-1;
  background:linear-gradient(135deg,#1469FF,#8B5CF6,var(--gold));
  filter:blur(18px); opacity:0; transition:opacity .3s;
}
.f-submit:hover { transform:translateY(-2px); }
.f-submit:hover::after { opacity:0.65; }

/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
footer {
  position:relative; z-index:2;
  padding:28px 24px;
  border-top:1px solid var(--border);
}
.footer-inner {
  max-width:1100px; margin:0 auto;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;
}
.footer-logo { display:flex; align-items:center; gap:10px; text-decoration:none; }
.footer-logo-icon {
  width:30px; height:30px; border-radius:8px;
  background:linear-gradient(135deg,#1469FF,#8B5CF6);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:900; color:#fff;
}
.footer-logo span { font-size:13px; font-weight:700; color:var(--w70); }
.footer-copy { font-size:12px; color:var(--w40); }
.footer-links { display:flex; gap:20px; }
.footer-links a { font-size:12px; color:var(--w40); text-decoration:none; transition:color .2s; }
.footer-links a:hover { color:var(--blue-lt); }

/* ══════════════════════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════════════════════ */
.section-sep {
  max-width:1100px; margin:0 auto; height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,0.08),transparent);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(32px); }
  to   { opacity:1; transform:translateY(0); }
}
.reveal {
  opacity:0; transform:translateY(36px);
  transition:opacity .75s ease, transform .75s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay:.1s; }
.reveal-delay-2 { transition-delay:.2s; }
.reveal-delay-3 { transition-delay:.3s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════ */
@media(max-width:900px){
  .onama-wrap, .kontakt-grid { grid-template-columns:1fr; }
  .hero-services { grid-template-columns:1fr; max-width:420px; }
  .stats-grid { grid-template-columns:repeat(3,1fr); }
  nav { padding:10px 12px; }
  .nav-links a:not(.nav-btn) { display:none; }
}
@media(max-width:520px){
  .stats-grid { grid-template-columns:1fr 1fr; }
  .f-row { grid-template-columns:1fr; }
  .footer-inner { flex-direction:column; text-align:center; }
}
