/* ═══════════════════════════════════════════════════════
   Blizu mene — landing.css
   ═══════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: #111009; color: #f0ece8;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ── VARIJABLE ─────────────────────────────────────────── */
:root {
  --accent:   #e85d2f;
  --accentH:  #f07040;
  --accentD:  #c03e14;
  --bg:       #111009;
  --bg2:      #1c1a16;
  --bg3:      #242018;
  --border:   #343028;
  --borderA:  rgba(232,93,47,.2);
  --text:     #f0ece8;
  --text2:    #b0a89f;
  --muted:    #706860;
  --fd: 'Sora', 'Segoe UI', Arial, sans-serif;
  --fb: 'Inter', 'Segoe UI', Arial, sans-serif;
}

/* ── TIPOGRAFIJA ───────────────────────────────────────── */
h1, h2, h3, .logo-text, .plan-price, .step-num { font-family: var(--fd); }

/* ── DUGMAD ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 10px;
  font-family: var(--fb); font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all .18s; text-decoration: none; border: none;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accentH); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text2); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--text); border-color: var(--text2); }
.btn-lg { padding: 15px 36px; border-radius: 50px; font-size: 15px; font-weight: 700; }
.btn-lg.btn-primary { box-shadow: 0 6px 28px rgba(232,93,47,.35); }
.btn-lg.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 40px rgba(232,93,47,.5); }

/* ── NAV ───────────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: 62px;
  background: rgba(17,16,9,.9); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent; transition: border-color .3s;
}
#nav.scrolled { border-bottom-color: var(--border); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 28px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--fd); font-size: 1.4rem; font-weight: 800;
  letter-spacing: -.04em; color: var(--text); display: flex; align-items: center;
}
.nav-logo .dot { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: 10px; }

@media (max-width: 560px) {
  .nav-right .btn-ghost { display: none; }
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 110px 24px 80px;
  position: relative; overflow: hidden;
}
.hero-glow {
  position: absolute; top: 42%; left: 50%; transform: translate(-50%,-50%);
  width: min(760px,110vw); height: min(760px,110vw);
  background: radial-gradient(circle, rgba(232,93,47,.10) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,93,47,.1); border: 1px solid rgba(232,93,47,.28);
  border-radius: 100px; padding: 8px 20px; margin-bottom: 34px;
  font-size: 12px; font-weight: 700; color: var(--accent);
  letter-spacing: .1em; text-transform: uppercase;
  animation: fadeUp .5s ease both;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.35;transform:scale(.75)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:none} }

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.2rem); font-weight: 800;
  letter-spacing: -.04em; line-height: 1.05; margin-bottom: 24px;
  animation: fadeUp .6s .1s ease both;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: clamp(.95rem, 2.2vw, 1.12rem); color: var(--text2);
  max-width: 520px; line-height: 1.8; margin-bottom: 44px;
  animation: fadeUp .6s .18s ease both;
}
.hero-cta {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  animation: fadeUp .6s .26s ease both;
}
.trust-row {
  display: flex; flex-wrap: wrap; gap: 18px; justify-content: center;
  margin-top: 52px; animation: fadeUp .6s .34s ease both;
}
.trust-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: var(--muted); }
.trust-item strong { color: var(--text2); }

/* ── KATEGORIJE ────────────────────────────────────────── */
.cats-section { padding: 60px 0 48px; }
.cats-label {
  text-align: center; font-family: var(--fd); font-size: .82rem; font-weight: 700;
  color: var(--muted); margin-bottom: 26px; letter-spacing: .08em; text-transform: uppercase;
}
.cats-scroll { overflow-x: auto; scrollbar-width: none; padding: 0 24px; }
.cats-scroll::-webkit-scrollbar { display: none; }
.cats-track { display: flex; gap: 9px; width: max-content; margin: 0 auto; padding-bottom: 6px; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 9px 16px;
  font-size: 13px; font-weight: 500; color: var(--text2); white-space: nowrap;
  transition: all .2s;
}
.cat-pill:hover { border-color: var(--accent); color: var(--accent); background: rgba(232,93,47,.06); }
.ci { font-size: 15px; }

/* ── SEKCIJA LAYOUT ─────────────────────────────────────── */
.section-wrap { max-width: 980px; margin: 0 auto; padding: 80px 24px; }
.section-wrap-sm { max-width: 740px; margin: 0 auto; padding: 80px 24px; }
.section-label {
  font-size: 11px; font-weight: 700; color: var(--accent);
  letter-spacing: .2em; text-transform: uppercase;
  text-align: center; margin-bottom: 10px;
}
.section-title {
  font-family: var(--fd); font-size: clamp(1.75rem, 3.8vw, 2.6rem);
  font-weight: 800; text-align: center; margin-bottom: 52px;
  letter-spacing: -.03em; line-height: 1.2;
}

/* ── KAKO RADI ─────────────────────────────────────────── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; }
.step {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px 22px; transition: all .2s;
}
.step:hover { border-color: var(--borderA); transform: translateY(-2px); }
.step-num { font-size: 2.8rem; font-weight: 800; color: rgba(232,93,47,.12); line-height: 1; margin-bottom: 12px; }
.step-icon { font-size: 28px; margin-bottom: 10px; }
.step h3 { font-family: var(--fd); font-size: .95rem; font-weight: 700; margin-bottom: 7px; }
.step p { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ── FEATURES ──────────────────────────────────────────── */
.features-bg { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 12px; }
.feature {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 20px; transition: all .2s;
}
.feature:hover { border-color: var(--borderA); transform: translateY(-2px); }
.feature .fi { font-size: 24px; margin-bottom: 10px; }
.feature h3 { font-family: var(--fd); font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 13px; color: var(--text2); line-height: 1.7; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; padding: 18px 0; text-align: left; background: none; border: none;
  font-family: var(--fd); font-size: 1rem; font-weight: 700; color: var(--text);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
  transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-arrow { font-size: 20px; transition: transform .25s; color: var(--muted); flex-shrink: 0; }
.faq-q.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a { display: none; padding: 0 0 18px; font-size: 14px; color: var(--text2); line-height: 1.8; }
.faq-a.open { display: block; }
.faq-a strong { color: var(--text); }

/* ── PLANOVI ───────────────────────────────────────────── */
.plans-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .plans-grid { grid-template-columns: 1fr; } }
.plan {
  background: var(--bg2); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 28px 24px;
}
.plan.featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 16px 48px rgba(232,93,47,.12);
}
.plan-tag {
  display: inline-block; background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 20px;
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px;
}
.plan-name { font-family: var(--fd); font-size: 1.3rem; font-weight: 800; margin-bottom: 4px; }
.plan-price { font-family: var(--fd); font-size: 2.2rem; font-weight: 800; color: var(--accent); margin-bottom: 22px; }
.plan-price span { font-size: .95rem; font-weight: 400; color: var(--muted); }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.plan li { font-size: 13px; color: var(--text2); display: flex; gap: 9px; align-items: flex-start; }
.ck { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.cx { color: var(--muted); flex-shrink: 0; }

/* ── CTA BOTTOM ─────────────────────────────────────────── */
.cta-section { padding: 100px 24px; text-align: center; }
.cta-section h2 {
  font-family: var(--fd); font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; letter-spacing: -.04em; line-height: 1.1; margin-bottom: 18px;
}
.cta-section h2 em { font-style: italic; color: var(--accent); }
.cta-section p { font-size: 16px; color: var(--text2); max-width: 420px; margin: 0 auto 38px; line-height: 1.7; }

/* ── SHARE SEKCIJA ─────────────────────────────────────── */
.share-section {
  padding: 56px 24px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.share-title {
  font-family: var(--fd); font-size: 1.05rem; font-weight: 700;
  color: var(--text2); margin-bottom: 22px;
}
.share-btns {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  max-width: 780px; margin: 0 auto;
}
.share-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px; border-radius: 10px;
  font-family: var(--fb); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .18s; text-decoration: none;
  border: 1px solid var(--border); background: var(--bg2); color: var(--text2);
}
.share-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.3); }
.share-btn svg { flex-shrink: 0; }

.share-fb     { color: #5b7fcc; border-color: rgba(91,127,204,.25); }
.share-fb:hover { background: rgba(91,127,204,.1); border-color: rgba(91,127,204,.5); }
.share-x      { color: #e0e0e0; border-color: rgba(255,255,255,.15); }
.share-x:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.3); }
.share-li     { color: #5090cc; border-color: rgba(80,144,204,.25); }
.share-li:hover { background: rgba(80,144,204,.1); border-color: rgba(80,144,204,.5); }
.share-reddit { color: #ff6840; border-color: rgba(255,104,64,.25); }
.share-reddit:hover { background: rgba(255,104,64,.1); border-color: rgba(255,104,64,.5); }
.share-viber  { color: #9b8ef7; border-color: rgba(155,142,247,.25); }
.share-viber:hover { background: rgba(155,142,247,.1); border-color: rgba(155,142,247,.5); }
.share-wa     { color: #3dd677; border-color: rgba(61,214,119,.25); }
.share-wa:hover { background: rgba(61,214,119,.1); border-color: rgba(61,214,119,.5); }
.share-email  { color: var(--text2); border-color: var(--border); }
.share-email:hover { background: var(--bg3); color: var(--text); }
.share-copy   { color: var(--accent); border-color: rgba(232,93,47,.3); background: none; font-family: inherit; }
.share-copy:hover { background: rgba(232,93,47,.08); border-color: rgba(232,93,47,.6); }

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 24px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-wrap: wrap; gap: 16px;
  align-items: center; justify-content: space-between;
}
.footer-logo { font-family: var(--fd); font-size: 1.1rem; font-weight: 800; }
.footer-logo .dot { color: var(--accent); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: var(--muted); transition: color .15s; }
.footer-links a:hover { color: var(--text); }
.footer-copy { font-size: 12px; color: var(--muted); }

@media (max-width: 600px) {
  .footer-inner { flex-direction: column; text-align: center; }
  .share-btns { gap: 8px; }
  .share-btn { padding: 9px 14px; font-size: 12px; }
  .trust-row { gap: 12px; }
}
