/* ═══════════════════════════════════════════════════════════════════
   Outreach / Skidanje podataka — Landing
   Isti dizajn sistem kao ostale app iz flote (Konkurs Monitor):
   Inter + Space Grotesk, aurora pozadina, glass nav, app mockup,
   scroll-reveal animacije.

   VAZNO: .reveal je vidljiv po defaultu; tek landing.js dodaje klasu
   .js na <html> i tek tada se sakriva pre animacije. Bez JS-a (ili ako
   JS pukne) cela stranica ostaje vidljiva — nema praznih sekcija.
   ═══════════════════════════════════════════════════════════════════ */
:root {
  --ink: #0a1128;
  --ink-soft: #46536d;
  --ink-mute: #8a94ab;
  --brand: #2563eb;
  --brand-2: #1d4ed8;
  --brand-3: #3b82f6;
  --brand-ink: #172554;
  --accent: #06b6d4;
  --violet: #7c3aed;
  --bg: #ffffff;
  --bg-soft: #f4f7fc;
  --bg-tint: #eaf1fe;
  --line: #e4e9f3;
  --line-strong: #d1dae9;
  --ok: #16a34a;
  --danger: #e11d48;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(13, 24, 48, .05);
  --shadow: 0 8px 24px -10px rgba(37, 99, 235, .25);
  --shadow-xl: 0 24px 60px -20px rgba(13, 24, 48, .32);
  --grad-brand: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  --grad-logo: linear-gradient(135deg, #2563eb 0%, #06b6d4 100%);
  --grad-text: linear-gradient(100deg, #2563eb 10%, #06b6d4 90%);
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Space Grotesk", "Inter", -apple-system, sans-serif;
  --maxw: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg { max-width: 100%; }
a { color: var(--brand-2); text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.025em; margin: 0; font-family: var(--font-display); }
p { margin: 0; }
::selection { background: rgba(37, 99, 235, .18); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ── Scroll-reveal (JS dodaje .in; bez JS-a sve je vidljivo) ── */
.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .65s cubic-bezier(.2,.65,.3,1), transform .65s cubic-bezier(.2,.65,.3,1); }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal.d1 { transition-delay: .08s; }
.js .reveal.d2 { transition-delay: .16s; }
.js .reveal.d3 { transition-delay: .24s; }
.js .reveal.d4 { transition-delay: .32s; }
.js .reveal.d5 { transition-delay: .4s; }

/* ── Logo ── */
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18.5px; color: var(--ink); letter-spacing: -0.02em; font-family: var(--font-display); }
.logo:hover { text-decoration: none; }
.logo-mark { width: 36px; height: 36px; border-radius: 11px; background: var(--grad-logo);
  display: grid; place-items: center; box-shadow: 0 5px 14px -3px rgba(37, 99, 235, .55); flex: none; }
.logo-mark svg { width: 21px; height: 21px; }

/* ── Nav ── */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .72); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .25s, box-shadow .25s, background .25s; }
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 6px 24px -18px rgba(13, 24, 48, .3); background: rgba(255, 255, 255, .86); }
.nav-in { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a { color: var(--ink-soft); font-weight: 550; font-size: 15px; position: relative; transition: color .15s; }
.nav-menu a:hover { color: var(--ink); text-decoration: none; }
.nav-menu a:not(.menu-only)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 2px; border-radius: 99px; background: var(--grad-text); transition: right .22s ease; }
.nav-menu a:not(.menu-only):hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: 11px; width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; }

/* ── Dugmad ── */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font);
  font-weight: 650; font-size: 15px; padding: 12px 22px; border-radius: 13px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .13s cubic-bezier(.2,.8,.3,1.2), box-shadow .18s ease, background .18s, filter .18s, border-color .18s; white-space: nowrap; }
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(.97); }
.btn-primary { background: var(--grad-brand); color: #fff; box-shadow: 0 10px 26px -10px rgba(37, 99, 235, .55), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-primary:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 16px 34px -12px rgba(37, 99, 235, .6), inset 0 1px 0 rgba(255,255,255,.18); }
.btn-outline { background: #fff; color: var(--brand-2); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--brand); background: var(--bg-tint); }
.btn-ghost { background: transparent; color: var(--ink-soft); }
.btn-ghost:hover { color: var(--ink); }
.btn-lg { padding: 15px 30px; font-size: 16.5px; border-radius: 15px; }
.btn-white { background: #fff; color: var(--brand-2); box-shadow: 0 14px 34px -14px rgba(0, 0, 0, .45); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 20px 44px -16px rgba(0, 0, 0, .5); }

.lang-btn { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 7px 12px; font-size: 13px; font-weight: 600; color: var(--ink-soft); cursor: pointer; font-family: var(--font); transition: border-color .15s, color .15s; }
.lang-btn:hover { border-color: var(--brand); color: var(--brand-2); }
/* Selektor jezika (select: prikazuje TRENUTNI jezik — EX-YU / English) */
.lang-select { background-color: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 7px 26px 7px 12px; font-size: 13px; font-weight: 600; color: var(--ink-soft); cursor: pointer; font-family: var(--font); appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 9 6 6 6-6' stroke='%238a94ab' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 8px center; transition: border-color .15s, color .15s; }
.lang-select:hover { border-color: var(--brand); color: var(--brand-2); }
.menu-only { display: none; }

/* ═══════════════════ HERO ═══════════════════ */
.hero { position: relative; overflow: hidden; padding: 92px 0 96px; background: var(--bg-soft); }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(1000px 520px at 78% -14%, rgba(6, 182, 212, .16), transparent 60%),
    radial-gradient(940px 520px at 8% -4%, rgba(37, 99, 235, .17), transparent 56%),
    radial-gradient(700px 460px at 55% 118%, rgba(124, 58, 237, .1), transparent 62%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .55;
  background-image:
    linear-gradient(rgba(37, 99, 235, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, .05) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(860px 620px at 50% 0%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(860px 620px at 50% 0%, #000 25%, transparent 78%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, .8); backdrop-filter: blur(6px); border: 1px solid var(--line);
  color: var(--brand-2); font-weight: 650; font-size: 13px; padding: 7px 15px; border-radius: 999px; box-shadow: var(--shadow-sm); }
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ok); animation: pulse-dot 2.2s ease-in-out infinite; }
@keyframes pulse-dot { 0%, 100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, .4); } 55% { box-shadow: 0 0 0 6px rgba(22, 163, 74, 0); } }
.hero h1 { font-size: clamp(37px, 5.2vw, 61px); font-weight: 700; margin: 22px 0 18px; color: var(--ink); letter-spacing: -0.035em; }
.hero h1 .hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-sub { font-size: 18.5px; color: var(--ink-soft); max-width: 540px; margin-bottom: 32px; line-height: 1.65; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-trust { display: flex; gap: 12px 22px; margin-top: 28px; flex-wrap: wrap; }
.hero-trust .t { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-mute); font-weight: 500; }
.hero-trust .t svg { color: var(--ok); flex: none; }

/* ── Hero: app mockup (mini dashboard) ── */
.hero-visual { position: relative; }
.hero-visual::before { content: ""; position: absolute; inset: -8% -6%; z-index: 0; pointer-events: none;
  background: radial-gradient(closest-side, rgba(37, 99, 235, .2), rgba(6, 182, 212, .1) 55%, transparent 75%); filter: blur(8px); }
.app-mock { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-xl); overflow: hidden;
  transform: perspective(1400px) rotateY(-5deg) rotateX(2deg); animation: mock-float 7s ease-in-out infinite; }
@keyframes mock-float { 0%, 100% { transform: perspective(1400px) rotateY(-5deg) rotateX(2deg) translateY(0); } 50% { transform: perspective(1400px) rotateY(-5deg) rotateX(2deg) translateY(-10px); } }
.am-chrome { display: flex; align-items: center; gap: 6px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.am-chrome i { width: 10px; height: 10px; border-radius: 50%; display: block; }
.am-chrome i:nth-child(1) { background: #fca5a5; }
.am-chrome i:nth-child(2) { background: #fcd34d; }
.am-chrome i:nth-child(3) { background: #86efac; }
.am-chrome .am-url { margin-left: 10px; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 8px; font-size: 11px; color: var(--ink-mute); padding: 4px 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.am-shell { display: flex; }
.am-side { flex: none; width: 58px; border-right: 1px solid var(--line); background: var(--bg-soft); padding: 14px 0; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.am-side .am-logo { width: 32px; height: 32px; border-radius: 10px; background: var(--grad-logo); display: grid; place-items: center; margin-bottom: 8px; }
.am-side .am-logo svg { width: 18px; height: 18px; }
.am-side .am-nav { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: var(--ink-mute); }
.am-side .am-nav.on { background: var(--bg-tint); color: var(--brand-2); }
.am-side .am-nav svg { width: 18px; height: 18px; }
.am-body { flex: 1; min-width: 0; padding: 16px 18px 18px; }
.am-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.am-head strong { font-family: var(--font-display); font-size: 15px; letter-spacing: -0.02em; }
.am-head .badge { background: var(--bg-tint); color: var(--brand-2); font-size: 10.5px; font-weight: 700; padding: 3px 10px; border-radius: 999px; border: 1px solid #d7e5fd; }
.am-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.am-stat { border: 1px solid var(--line); border-radius: 13px; padding: 10px 12px; background: #fff; box-shadow: var(--shadow-sm); }
.am-stat .ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; color: #fff; margin-bottom: 7px; }
.am-stat .ic svg { width: 14px; height: 14px; }
.am-stat.s1 .ic { background: linear-gradient(135deg, #2563eb, #06b6d4); }
.am-stat.s2 .ic { background: linear-gradient(135deg, #f43f5e, #fb923c); }
.am-stat .n { font-family: var(--font-display); font-weight: 700; font-size: 19px; line-height: 1; letter-spacing: -0.02em; }
.am-stat .l { font-size: 10.5px; color: var(--ink-mute); margin-top: 3px; }
.mock-card { position: relative; border: 1px solid var(--line); border-radius: 13px; padding: 11px 13px 11px 18px; margin-bottom: 9px; background: #fff; box-shadow: var(--shadow-sm); }
.mock-card:last-child { margin-bottom: 0; }
.mock-card::before { content: ""; position: absolute; left: 0; top: 10px; bottom: 10px; width: 3.5px; border-radius: 0 99px 99px 0; background: var(--grad-brand); }
.mock-card.urgent::before { background: linear-gradient(180deg, #f43f5e, #fb923c); }
.mock-card h4 { font-family: var(--font); font-size: 13.5px; font-weight: 700; margin-bottom: 3px; letter-spacing: -0.01em; }
.mock-card .m { font-size: 11.5px; color: var(--ink-mute); }
.mock-card .pill { display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: .04em; padding: 2px 7px; border-radius: 999px; background: #fdeef2; color: var(--danger); margin-left: 6px; vertical-align: 1px; }

.float-badge { position: absolute; z-index: 2; background: rgba(255, 255, 255, .92); backdrop-filter: blur(8px); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-xl); padding: 12px 16px; display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 13.5px; animation: badge-float 5.5s ease-in-out infinite; }
.float-badge.b1 { top: -20px; right: 12px; }
.float-badge.b2 { bottom: -18px; left: -14px; animation-delay: 1.2s; }
@keyframes badge-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
.float-badge .ico { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; color: #fff; flex: none; }

/* ── Stats traka ── */
.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; position: relative; }
.stats-in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 36px 0; text-align: center; }
.stat .num { font-family: var(--font-display); font-size: 34px; font-weight: 700; letter-spacing: -0.03em;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .lbl { font-size: 13.5px; color: var(--ink-mute); margin-top: 3px; }

/* ── Sekcije ── */
.section { padding: 96px 0; }
.section.tint { background: var(--bg-soft); }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto 56px; }
.sec-head .kicker { display: inline-flex; align-items: center; gap: 7px; color: var(--brand-2); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase;
  background: var(--bg-tint); border: 1px solid #d7e5fd; padding: 5px 14px; border-radius: 999px; }
.sec-head h2 { font-size: clamp(28px, 3.6vw, 42px); font-weight: 700; margin: 16px 0 14px; letter-spacing: -0.03em; }
.sec-head p { font-size: 17.5px; color: var(--ink-soft); }

/* ── Kako radi (koraci) ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; position: relative; transition: box-shadow .22s, transform .22s, border-color .22s; }
.step:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--line-strong); }
.step .n { width: 46px; height: 46px; border-radius: 14px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-weight: 700; font-size: 19px; margin-bottom: 18px; font-family: var(--font-display); box-shadow: 0 8px 18px -6px rgba(37, 99, 235, .5); }
.step h3 { font-size: 19px; margin-bottom: 9px; }
.step p { color: var(--ink-soft); font-size: 15px; }
.step::after { content: ""; position: absolute; top: 55px; left: 100%; width: 24px; height: 2px; background: linear-gradient(90deg, var(--line-strong), transparent); }
.step:last-child::after { display: none; }

/* ── Feature grid ── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 28px; transition: box-shadow .22s, transform .22s, border-color .22s; position: relative; overflow: hidden; }
.feat::after { content: ""; position: absolute; top: -50px; right: -50px; width: 130px; height: 130px; border-radius: 50%; background: var(--fc, var(--brand)); opacity: 0; transition: opacity .25s; pointer-events: none; }
.feat:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--line-strong); }
.feat:hover::after { opacity: .09; }
.feat .ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--fc, #2563eb), var(--fc2, #06b6d4)); box-shadow: 0 8px 20px -7px var(--fc, rgba(37,99,235,.6)); }
.feat h3 { font-size: 18px; margin-bottom: 8px; }
.feat p { color: var(--ink-soft); font-size: 14.5px; }
.feat.c1 { --fc: #2563eb; --fc2: #06b6d4; }
.feat.c2 { --fc: #7c3aed; --fc2: #c084fc; }
.feat.c3 { --fc: #0891b2; --fc2: #22d3ee; }
.feat.c4 { --fc: #f59e0b; --fc2: #fbbf24; }
.feat.c5 { --fc: #16a34a; --fc2: #4ade80; }
.feat.c6 { --fc: #e11d48; --fc2: #fb7185; }

/* ── Za koga je (profili korisnika) ── */
.audience { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.aud-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px; transition: box-shadow .22s, transform .22s, border-color .22s; }
.aud-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: var(--line-strong); }
.aud-card .aud-ico { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; color: #fff; margin-bottom: 18px;
  background: linear-gradient(135deg, var(--ac, #2563eb), var(--ac2, #06b6d4)); box-shadow: 0 10px 22px -8px var(--ac, rgba(37,99,235,.6)); }
.aud-card .aud-ico svg { width: 26px; height: 26px; }
.aud-card h3 { font-size: 19px; margin-bottom: 9px; }
.aud-card > p { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 16px; }
.aud-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.aud-card li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--ink-soft); }
.aud-card li svg { color: var(--ac, var(--brand)); flex: none; margin-top: 3px; }
.aud-card.a1 { --ac: #2563eb; --ac2: #06b6d4; }
.aud-card.a2 { --ac: #7c3aed; --ac2: #c084fc; }
.aud-card.a3 { --ac: #0891b2; --ac2: #22d3ee; }

/* ── Cenovnik ── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; display: flex; flex-direction: column; position: relative; transition: box-shadow .22s, transform .22s, border-color .22s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.plan.popular { border-color: transparent; box-shadow: var(--shadow-xl); background:
  linear-gradient(#fff, #fff) padding-box,
  linear-gradient(135deg, #3b82f6, #06b6d4) border-box; }
.plan.popular::before { content: ""; position: absolute; inset: -22px -18px auto -18px; height: 120px; border-radius: 30px; background: radial-gradient(closest-side, rgba(37, 99, 235, .14), transparent); pointer-events: none; }
.plan .tag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: #fff; font-size: 12px; font-weight: 700; padding: 5px 16px; border-radius: 999px; box-shadow: 0 8px 18px -6px rgba(37, 99, 235, .55); white-space: nowrap; }
.plan h3 { font-size: 20px; }
.plan .price { display: flex; align-items: baseline; gap: 5px; margin: 14px 0 4px; }
.plan .price .amt { font-family: var(--font-display); font-size: 46px; font-weight: 700; letter-spacing: -0.04em; }
.plan.popular .price .amt { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.plan .price .per { color: var(--ink-mute); font-size: 15px; }
.plan .desc { color: var(--ink-soft); font-size: 14.5px; margin-bottom: 22px; min-height: 42px; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 11px; }
.plan li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.plan li svg { color: var(--ok); flex: none; margin-top: 3px; }
.plan li.off { color: var(--ink-mute); }
.plan li.off svg { color: #cbd5e1; }
.plan .btn { margin-top: auto; width: 100%; }

/* ── FAQ ── */
.faq { max-width: 760px; margin: 0 auto; }
.qa { border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; background: #fff; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.qa:hover { border-color: var(--line-strong); }
.qa[open] { border-color: var(--brand); box-shadow: 0 10px 30px -18px rgba(37, 99, 235, .35); }
.qa summary { cursor: pointer; padding: 19px 22px; font-weight: 650; font-size: 16px; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.qa summary::-webkit-details-marker { display: none; }
.qa summary::after { content: "+"; color: var(--brand-2); font-size: 24px; font-weight: 300; line-height: 1; flex: none; transition: transform .2s; }
.qa[open] summary::after { transform: rotate(45deg); }
.qa p { padding: 0 22px 20px; color: var(--ink-soft); font-size: 15px; }

/* ── CTA banner ── */
.cta { position: relative; overflow: hidden; border-radius: 30px; padding: 68px 44px; text-align: center; color: #fff; box-shadow: var(--shadow-xl);
  background:
    radial-gradient(720px 420px at 82% -20%, rgba(34, 211, 238, .25), transparent 60%),
    radial-gradient(700px 460px at 8% 115%, rgba(124, 58, 237, .3), transparent 60%),
    linear-gradient(150deg, #0a1128 0%, #14245c 55%, #0a1128 100%); }
.cta::before { content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(600px 420px at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(600px 420px at 50% 30%, #000 30%, transparent 75%); }
.cta > * { position: relative; }
.cta h2 { font-size: clamp(27px, 3.6vw, 42px); font-weight: 700; margin-bottom: 14px; letter-spacing: -0.03em; }
.cta p { font-size: 18px; color: #aebadb; margin-bottom: 30px; }

/* ── Footer ── */
.footer { border-top: 1px solid var(--line); padding: 52px 0 32px; color: var(--ink-mute); font-size: 14px; background: var(--bg-soft); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 36px; }
.foot-brand p { margin-top: 14px; max-width: 320px; color: var(--ink-mute); font-size: 14px; line-height: 1.6; }
.foot-col h4 { font-family: var(--font); font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin-bottom: 14px; }
.foot-col a { display: block; color: var(--ink-mute); padding: 5px 0; font-size: 14.5px; transition: color .15s; }
.foot-col a:hover { color: var(--brand-2); text-decoration: none; }
.footer-in { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; border-top: 1px solid var(--line); padding-top: 26px; }
.footer-in a { color: var(--ink-soft); }

/* ═══════════════════ Responsive ═══════════════════ */
@media (max-width: 980px) {
  .hero-grid { gap: 40px; }
  .app-mock { transform: none; animation: none; }
}

@media (max-width: 900px) {
  .hero-grid, .steps, .features, .pricing, .audience { grid-template-columns: 1fr; }
  .step::after { display: none; }
  .stats-in { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .float-badge { display: none; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; position: absolute; top: 72px; left: 0; right: 0; flex-direction: column; align-items: stretch; background: #fff; border-bottom: 1px solid var(--line); padding: 18px 24px; gap: 14px; box-shadow: var(--shadow-xl); }
  .nav-menu.open a::after { display: none; }
  .nav-menu.open .menu-only { display: block; }
  .nav-menu.open .btn.menu-only { text-align: center; }
  .nav-menu.open .lang-btn.menu-only, .nav-menu.open .lang-select.menu-only { align-self: flex-start; padding: 6px 12px; font-size: 13px; }
  .nav-menu.open .lang-select.menu-only { padding-right: 26px; }
  .nav-toggle { display: inline-flex; }
  .section { padding: 64px 0; }
  /* U nav traci na mobilnom ostaje SAMO hamburger — dugmad idu u meni */
  .nav-cta .btn-ghost, .nav-cta .btn-primary, .nav-cta #langBtn { display: none; }
  .foot-grid { grid-template-columns: 1fr; gap: 26px; }
}

@media (max-width: 640px) {
  .wrap { padding: 0 18px; }
  .nav-in { height: 62px; }
  .logo { font-size: 17px; }
  .logo-mark { width: 31px; height: 31px; }
  .nav-menu.open { top: 62px; }

  /* Mockap se NE prikazuje na telefonu — zauzima previše ekrana */
  .hero-visual { display: none; }

  .hero { padding: 48px 0 52px; }
  .hero h1 { font-size: 33px; }
  .hero-sub { font-size: 16.5px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 10px 18px; }

  .stats-in { padding: 26px 0; gap: 20px; }
  .stat .num { font-size: 27px; }
  .stat .lbl { font-size: 12.5px; }

  .sec-head { margin-bottom: 36px; }
  .sec-head h2 { font-size: 26px; }
  .sec-head p { font-size: 16px; }

  .step, .feat { padding: 24px 20px; }

  .plan { padding: 28px 22px; }
  .plan .price .amt { font-size: 40px; }
  .plan .desc { min-height: 0; }

  .cta { padding: 44px 22px; border-radius: 24px; }
  .cta h2 { font-size: 25px; }
  .cta p { font-size: 16px; }

  .footer-in { flex-direction: column; text-align: center; gap: 12px; }
  .qa summary { font-size: 15px; padding: 16px 18px; }
  .qa p { padding: 0 18px 18px; }
}

@media (max-width: 400px) {
  .stats-in { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
}

/* ═══════════════════ Dodatno za ovu app ═══════════════════ */

/* Oznaka instance (outreach / skidanje-pod) */
.inst-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 650;
  color: var(--ink-mute); background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 4px 12px; }
.inst-badge b { color: var(--brand-2); font-weight: 700; }

/* Cipovi sa nazivima modula unutar kartica */
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 4px; }
.chip { font-size: 12.5px; font-weight: 600; color: var(--ink-soft); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 9px; padding: 5px 10px; white-space: nowrap; }

/* Tabela "sta radi koji korak" — kompaktan pregled toka */
.flow { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 34px; }
.flow-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 18px 16px; position: relative; }
.flow-item .k { font-family: var(--font-display); font-size: 12px; font-weight: 700; color: var(--brand-2);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.flow-item h4 { font-family: var(--font); font-size: 14.5px; font-weight: 700; margin-bottom: 6px; }
.flow-item p { font-size: 13px; color: var(--ink-mute); line-height: 1.5; }
.flow-item .out { display: inline-block; margin-top: 10px; font-size: 11.5px; font-weight: 650; color: var(--ok);
  background: #eafaf0; border: 1px solid #c9eed8; border-radius: 8px; padding: 3px 9px; }

@media (max-width: 900px) {
  .flow { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .flow { grid-template-columns: 1fr; }
}

/* Poštuj korisničku želju za manje animacija */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
}
