/* GigCal — prezentacioni sajt. Zajednički stil za landing, kontakt i pravne stranice.
   Tokeni prate aplikaciju (apps/mobile/lib/theme.ts): svetla i tamna tema. */

:root {
  --bg: #F4F6FB;
  --surface: #FFFFFF;
  --surface-high: #F1F3F8;
  --text: #151827;
  --text-soft: #3A3F52;
  --muted: #747A8E;
  --faint: #A8ADBB;
  --border: #E7E9F1;
  --border-soft: #EFF1F7;
  --brand: #645CFF;
  --brand-2: #7770FF;
  --brand-pressed: #534BE8;
  --brand-soft: #EFEFFF;
  --brand-border: #C7C4FF;
  --on-brand: #FFFFFF;
  --success: #16A46B;
  --success-soft: #E9F8F1;
  --warning: #F59E0B;
  --warning-soft: #FFF7E7;
  --danger: #EF5350;
  --danger-soft: #FFF0EF;
  --shadow-card: 0 8px 28px rgba(24, 29, 52, .07);
  --shadow-lift: 0 18px 60px rgba(24, 29, 52, .08);
  --shadow-brand: 0 10px 26px rgba(100, 92, 255, .23);
  --header-bg: rgba(244, 246, 251, .86);
  --r: 22px;
  --r-sm: 13px;
  --ease: cubic-bezier(.2, .8, .2, 1);
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0B0B0D;
    --surface: #141417;
    --surface-high: #1C1C21;
    --text: #F7F7FA;
    --text-soft: #D6D6DE;
    --muted: #9A9CAB;
    --faint: #6E7080;
    --border: rgba(255, 255, 255, .12);
    --border-soft: rgba(255, 255, 255, .07);
    --brand: #8A83FF;
    --brand-2: #9A94FF;
    --brand-pressed: #645CFF;
    --brand-soft: rgba(138, 131, 255, .16);
    --brand-border: rgba(138, 131, 255, .42);
    --on-brand: #0B0B0D;
    --success: #3DD9A0;
    --success-soft: rgba(61, 217, 160, .16);
    --warning: #FFA36B;
    --warning-soft: rgba(255, 163, 107, .16);
    --danger: #FF7A70;
    --danger-soft: rgba(255, 122, 112, .16);
    --shadow-card: 0 3px 10px rgba(0, 0, 0, .4);
    --shadow-lift: 0 8px 18px rgba(0, 0, 0, .55);
    --shadow-brand: 0 10px 26px rgba(100, 92, 255, .28);
    --header-bg: rgba(11, 11, 13, .82);
  }
}

/* ---------- osnova ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before, body::after {
  content: "";
  position: fixed;
  z-index: -1;
  border-radius: 999px;
  pointer-events: none;
}
body::before { width: 560px; height: 560px; right: -220px; top: -240px; background: radial-gradient(circle, rgba(100, 92, 255, .13), transparent 66%); }
body::after { width: 480px; height: 480px; left: 20%; bottom: -360px; background: radial-gradient(circle, rgba(36, 169, 216, .08), transparent 68%); }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p a, li a, .legal a { color: var(--brand); text-decoration: underline; text-underline-offset: 2px; }
button { font: inherit; color: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0; line-height: 1.12; letter-spacing: -.02em; font-weight: 800; }
p { margin: 0; }
::selection { background: #DCD9FF; color: #262255; }
:focus-visible { outline: 3px solid var(--brand-border); outline-offset: 2px; border-radius: 6px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--surface); padding: 10px 14px; border-radius: 10px; box-shadow: var(--shadow-card); }
.skip-link:focus { top: 12px; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.eyebrow.brand { color: var(--brand); }
.muted { color: var(--muted); }
.lead { font-size: 18px; color: var(--muted); line-height: 1.6; }

/* ---------- dugmad ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: var(--r-sm);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn.primary { color: #FFFFFF; background: linear-gradient(135deg, #645CFF, #7770FF); box-shadow: var(--shadow-brand); }
.btn.primary:hover { box-shadow: 0 14px 30px rgba(100, 92, 255, .32); }
.btn.white { background: var(--surface); border: 1px solid var(--border); box-shadow: 0 6px 18px rgba(34, 39, 62, .04); }
.btn.ghost { background: var(--surface-high); color: var(--text-soft); }
.btn.small { min-height: 38px; padding: 0 14px; font-size: 13px; border-radius: 11px; }
.btn.lg { min-height: 52px; padding: 0 26px; font-size: 15px; }
.btn.disabled, .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; transform: none !important; box-shadow: none; }
.btn svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- brend znak ---------- */
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.04em; font-size: 19px; }
.brandmark, .brand__mark {
  width: 36px; height: 36px; flex: 0 0 36px;
  border-radius: 12px;
  display: grid; place-items: center;
  color: #FFFFFF; font-weight: 900; font-size: 18px; letter-spacing: -1px;
  background: linear-gradient(135deg, #645CFF, #8B83FF 56%, #A4A0FF);
  box-shadow: 0 8px 22px rgba(100, 92, 255, .28);
  position: relative; overflow: hidden;
}
.brandmark::after, .brand__mark::after { content: ""; position: absolute; width: 23px; height: 23px; border: 2px solid rgba(255, 255, 255, .3); border-radius: 50%; right: -8px; bottom: -10px; }

/* ---------- zaglavlje ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--header-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s;
}
.site-header.scrolled { border-bottom-color: var(--border); }
.site-header .container { display: flex; align-items: center; gap: 14px; min-height: 68px; }
.site-nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.site-nav a { padding: 9px 12px; border-radius: 10px; font-size: 14px; font-weight: 600; color: var(--text-soft); transition: background .2s, color .2s; }
.site-nav a:hover { background: var(--surface); color: var(--text); }
.site-nav a.lang, .site-nav a.lang-switch { color: var(--muted); font-weight: 700; font-size: 12px; letter-spacing: .06em; margin: 0; }
.header-cta { margin-left: 6px; }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface);
  place-items: center;
}
.nav-toggle svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.nav-toggle .x { display: none; }
.site-header.open .nav-toggle .x { display: block; }
.site-header.open .nav-toggle .bars { display: none; }

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .header-cta { display: none; }
  /* Stranice bez dugmeta za meni (pravni dokumenti): linkovi ostaju u redu i prelamaju se. */
  .site-nav { flex-wrap: wrap; justify-content: flex-end; gap: 0; }
  .site-nav a { padding: 8px 9px; font-size: 13px; }
  .site-header:has(.nav-toggle) .site-nav {
    display: none;
    position: absolute; left: 12px; right: 12px; top: calc(100% + 6px);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 10px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow-lift);
  }
  .site-header:has(.nav-toggle) .site-nav a { padding: 12px 14px; font-size: 15px; }
  .site-nav .btn { margin-top: 6px; }
  .site-header.open .site-nav { display: flex; }
}
@media (min-width: 861px) { .site-nav .btn { display: none; } }

/* ---------- hero ---------- */
.hero { padding: 56px 0 40px; position: relative; }
.hero .container { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(34px, 6.2vw, 60px); letter-spacing: -.035em; line-height: 1.04; }
.hero h1 .grad { background: linear-gradient(135deg, #4D46D6, #675EFF 50%, #7C72FF); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-top: 18px; max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-note { margin-top: 16px; font-size: 13px; color: var(--muted); display: flex; flex-wrap: wrap; gap: 6px 18px; }
.hero-note span { display: inline-flex; align-items: center; gap: 6px; }
.hero-note svg { width: 16px; height: 16px; stroke: var(--success); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.hero-visual { display: flex; justify-content: center; }
@media (min-width: 900px) {
  .hero { padding: 80px 0 60px; }
  .hero .container { grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 48px; }
  .hero-visual { justify-content: flex-end; }
}

/* telefon — CSS maketa */
.phone {
  width: min(300px, 82vw);
  aspect-ratio: 300 / 580;
  border-radius: 44px;
  background: #151827;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(24, 29, 52, .22), inset 0 0 0 2px rgba(255, 255, 255, .08);
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  background: var(--bg);
  overflow: hidden;
  padding: 14px 12px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 10px;
}
.phone-notch { position: absolute; left: 50%; top: 18px; transform: translateX(-50%); width: 86px; height: 22px; border-radius: 12px; background: #151827; z-index: 3; }
.ps-top { display: flex; align-items: center; justify-content: space-between; margin-top: 24px; }
.ps-top .ps-title { font-weight: 800; font-size: 15px; letter-spacing: -.03em; }
.ps-top .ps-sub { color: var(--muted); font-size: 9px; }
.ps-avatar { width: 28px; height: 28px; border-radius: 9px; background: linear-gradient(135deg, #2F354A, #6F778E); color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 10px; }
.ps-gig {
  position: relative; overflow: hidden;
  border-radius: 18px; padding: 14px;
  color: #fff;
  background: linear-gradient(135deg, #4D46D6 0%, #675EFF 49%, #7C72FF 100%);
  box-shadow: 0 16px 36px rgba(80, 70, 215, .28);
}
.ps-gig::before { content: ""; position: absolute; right: -40px; top: -60px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .2), transparent 65%); }
.ps-gig::after { content: ""; position: absolute; left: 40%; bottom: -110px; width: 220px; height: 220px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 50%; box-shadow: 0 0 0 30px rgba(255, 255, 255, .03); }
.ps-gig > * { position: relative; z-index: 1; }
.ps-tags { display: flex; justify-content: space-between; }
.ps-tag { background: rgba(255, 255, 255, .15); border: 1px solid rgba(255, 255, 255, .22); border-radius: 8px; padding: 4px 7px; font-size: 7.5px; font-weight: 800; letter-spacing: .06em; }
.ps-main { display: flex; align-items: center; gap: 10px; margin-top: 14px; }
.ps-date { width: 44px; height: 48px; border-radius: 13px; background: rgba(255, 255, 255, .96); color: #5C54E8; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ps-date strong { font-size: 18px; line-height: 1; }
.ps-date span { font-size: 7px; font-weight: 850; margin-top: 3px; }
.ps-main h3 { font-size: 15px; color: #fff; margin-bottom: 3px; letter-spacing: -.03em; }
.ps-main p { font-size: 9px; color: rgba(255, 255, 255, .76); }
.ps-bottom { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 16px; }
.ps-mini { font-size: 7px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255, 255, 255, .6); font-weight: 850; margin-bottom: 5px; }
.ps-members { display: flex; align-items: center; }
.ps-members i { width: 20px; height: 20px; border-radius: 7px; border: 2px solid #6B63F1; margin-right: -6px; display: grid; place-items: center; font-style: normal; font-size: 7px; font-weight: 800; color: #fff; background: linear-gradient(135deg, #2F354A, #6F778E); }
.ps-members i:nth-child(2) { background: linear-gradient(135deg, #AB5F7A, #E8A0B8); }
.ps-members i:nth-child(3) { background: linear-gradient(135deg, #24677C, #6DB6BC); }
.ps-members i:nth-child(4) { background: linear-gradient(135deg, #684793, #AD83D6); }
.ps-members span { margin-left: 12px; font-size: 8px; font-weight: 700; }
.ps-btn { background: #fff; color: #4E47D6; border-radius: 9px; padding: 7px 9px; font-size: 8px; font-weight: 850; }
.ps-section { display: flex; justify-content: space-between; align-items: center; margin-top: 4px; }
.ps-section strong { font-size: 11px; letter-spacing: -.02em; }
.ps-section span { font-size: 8px; color: var(--brand); font-weight: 700; }
.ps-row { display: grid; grid-template-columns: 34px 1fr auto; gap: 9px; align-items: center; padding: 9px; border-radius: 13px; background: var(--surface); border: 1px solid var(--border-soft); box-shadow: var(--shadow-card); }
.ps-row .d { width: 34px; height: 34px; border-radius: 10px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; line-height: 1; }
.ps-row .d strong { font-size: 11px; }
.ps-row .d span { font-size: 6px; font-weight: 850; margin-top: -6px; }
.ps-row .d.green { background: var(--success-soft); color: var(--success); }
.ps-row .d.red { background: var(--danger-soft); color: var(--danger); }
.ps-row h4 { font-size: 9.5px; margin-bottom: 2px; font-weight: 700; }
.ps-row p { font-size: 7.5px; color: var(--muted); }
.ps-row .m { text-align: right; }
.ps-row .m strong { font-size: 9px; display: block; }
.ps-row .m span { font-size: 7px; color: var(--muted); }
.ps-tabbar { margin-top: auto; display: flex; justify-content: space-around; padding: 8px 4px 2px; border-top: 1px solid var(--border-soft); }
.ps-tabbar span { font-size: 7px; color: var(--faint); font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 3px; }
.ps-tabbar span::before { content: ""; width: 14px; height: 14px; border-radius: 5px; background: var(--surface-high); }
.ps-tabbar span.on { color: var(--brand); }
.ps-tabbar span.on::before { background: var(--brand-soft); }
.ps-toast {
  position: absolute; right: -18px; top: 42%;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 14px; padding: 9px 11px; box-shadow: var(--shadow-lift);
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700;
  animation: float 5s ease-in-out infinite;
}
.ps-toast i { width: 26px; height: 26px; border-radius: 9px; background: var(--warning-soft); color: var(--warning); display: grid; place-items: center; font-style: normal; font-weight: 900; }
.ps-toast small { display: block; font-weight: 500; color: var(--muted); font-size: 9px; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 380px) { .ps-toast { right: -4px; } }

/* ---------- sekcije ---------- */
.section { padding: 64px 0; }
.section.tight { padding: 40px 0; }
.section-head { max-width: 640px; margin-bottom: 32px; }
.section-head h2 { font-size: clamp(26px, 3.6vw, 38px); letter-spacing: -.03em; }
.section-head p { margin-top: 12px; color: var(--muted); font-size: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
@media (min-width: 900px) { .section { padding: 88px 0; } }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(31, 36, 63, .1); border-color: var(--brand-border); }
.grid { display: grid; gap: 16px; }
.grid.two { grid-template-columns: 1fr; }
.grid.three { grid-template-columns: 1fr; }
.grid.four { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid.two, .grid.three, .grid.four { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 960px) { .grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); } .grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* za koga */
.who .card { display: flex; flex-direction: column; gap: 14px; padding: 28px; }
.who h3 { font-size: 22px; letter-spacing: -.025em; }
.who ul { margin: 4px 0 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.who li { display: flex; gap: 10px; color: var(--text-soft); font-size: 15px; }
.who li::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; margin-top: 8px; border-radius: 3px; background: var(--brand); }
.who .card.alt li::before { background: var(--success); }
.who .icon-lg { width: 48px; height: 48px; border-radius: 15px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.who .card.alt .icon-lg { background: var(--success-soft); color: var(--success); }
.icon-lg svg, .feature .icon svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* šta radi */
.feature { display: flex; flex-direction: column; gap: 12px; }
.feature .icon { width: 42px; height: 42px; border-radius: 14px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.feature h3 { font-size: 17px; letter-spacing: -.02em; }
.feature p { color: var(--muted); font-size: 14px; line-height: 1.6; }
.feature .tag { margin-top: auto; align-self: flex-start; }
.tag { display: inline-flex; align-items: center; gap: 6px; min-height: 26px; padding: 0 9px; border-radius: 9px; background: var(--surface-high); color: var(--muted); font-size: 11px; font-weight: 700; }
.tag.brand { background: var(--brand-soft); color: var(--brand); }
.tag.success { background: var(--success-soft); color: var(--success); }
.tag.warning { background: var(--warning-soft); color: var(--warning); }

/* kako radi */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 28px; }
.step .num {
  width: 44px; height: 44px; border-radius: 14px;
  display: grid; place-items: center;
  font-weight: 800; font-size: 16px; color: #fff;
  background: linear-gradient(135deg, #645CFF, #7770FF);
  box-shadow: var(--shadow-brand);
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15px; }

/* cene */
.pricing .card { display: flex; flex-direction: column; gap: 14px; position: relative; }
.pricing .card.featured { border-color: var(--brand-border); background: linear-gradient(160deg, var(--surface), var(--brand-soft)); }
.pricing .card.featured .ribbon { position: absolute; top: 16px; right: 16px; }
.pricing h3 { font-size: 20px; }
.price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; }
.price .from { font-size: 12px; color: var(--muted); font-weight: 700; }
.price strong { font-size: 34px; letter-spacing: -.04em; font-weight: 800; }
.price span { color: var(--muted); font-size: 14px; }
.price-sub { color: var(--muted); font-size: 13px; }
.pricing ul { margin: 6px 0 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.pricing li { display: flex; gap: 10px; font-size: 14px; color: var(--text-soft); }
.pricing li svg { flex: 0 0 18px; width: 18px; height: 18px; margin-top: 2px; stroke: var(--success); fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.pricing .btn { margin-top: auto; }
.note { margin-top: 20px; font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 820px; }
.note strong { color: var(--text-soft); }

/* FAQ */
.faq { display: grid; gap: 10px; max-width: 820px; }
.faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-card); overflow: hidden; }
.faq summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; font-weight: 700; font-size: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: 0 0 28px; width: 28px; height: 28px; border-radius: 9px;
  background: var(--brand-soft);
  background-image: linear-gradient(var(--brand), var(--brand)), linear-gradient(var(--brand), var(--brand));
  background-size: 12px 2px, 2px 12px; background-position: center; background-repeat: no-repeat;
  transition: transform .25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 20px 20px; color: var(--text-soft); font-size: 15px; line-height: 1.65; }
.faq .answer p + p { margin-top: 10px; }

/* završni CTA */
.cta-box {
  position: relative; overflow: hidden;
  border-radius: 28px; padding: 48px 28px; text-align: center; color: #fff;
  background: linear-gradient(135deg, #4D46D6 0%, #675EFF 49%, #7C72FF 100%);
  box-shadow: 0 24px 60px rgba(80, 70, 215, .25);
}
.cta-box::before { content: ""; position: absolute; right: -60px; top: -80px; width: 280px; height: 280px; border-radius: 50%; background: radial-gradient(circle, rgba(255, 255, 255, .18), transparent 65%); }
.cta-box::after { content: ""; position: absolute; left: 45%; bottom: -140px; width: 350px; height: 350px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255, 255, 255, .025), 0 0 0 90px rgba(255, 255, 255, .018); }
.cta-box > * { position: relative; z-index: 1; }
.cta-box h2 { font-size: clamp(26px, 4vw, 40px); letter-spacing: -.03em; }
.cta-box p { margin: 12px auto 0; max-width: 560px; color: rgba(255, 255, 255, .8); font-size: 16px; }
.cta-box .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.cta-box .btn.white { color: #4E47D6; border-color: transparent; background: #fff; }
.cta-box .btn.outline { background: rgba(255, 255, 255, .14); border: 1px solid rgba(255, 255, 255, .3); color: #fff; backdrop-filter: blur(6px); }
.store-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 18px; }
.store-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 14px 8px 10px; border-radius: 12px;
  background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .22);
  color: #fff; font-size: 12px; line-height: 1.15; text-align: left; opacity: .9;
}
.store-badge svg { width: 22px; height: 22px; fill: currentColor; }
.store-badge small { display: block; font-size: 9px; opacity: .75; letter-spacing: .04em; text-transform: uppercase; }
.store-badge strong { font-size: 13px; }

/* ---------- podnožje ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 40px 0 32px; margin-top: 40px; font-size: 14px; color: var(--muted); }
.site-footer .container { display: grid; gap: 28px; }
.footer-top { display: grid; gap: 24px; }
.footer-brand p { margin-top: 10px; max-width: 320px; }
.footer-cols { display: grid; gap: 20px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.footer-col h4 { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--faint); font-weight: 800; margin-bottom: 10px; }
.footer-col ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; }
.footer-col a { color: var(--text-soft); }
.footer-col a:hover { color: var(--brand); }
.footer-bottom { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--border-soft); font-size: 13px; }
@media (min-width: 760px) {
  .footer-top { grid-template-columns: 1.2fr 2fr; }
  .footer-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- pravne stranice i kontakt ---------- */
.page-hero { padding: 48px 0 8px; }
.page-hero h1 { font-size: clamp(30px, 4.5vw, 44px); letter-spacing: -.03em; }
.page-hero p { margin-top: 10px; color: var(--muted); font-size: 16px; }

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 20px 80px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
}
.legal h1 { font-size: clamp(30px, 4.5vw, 42px); letter-spacing: -.03em; color: var(--text); margin-bottom: 10px; }
.legal h2 { font-size: 22px; letter-spacing: -.02em; color: var(--text); margin: 40px 0 12px; padding-top: 8px; scroll-margin-top: 90px; }
.legal h3 { font-size: 17px; color: var(--text); margin: 26px 0 8px; scroll-margin-top: 90px; }
.legal p { margin: 0 0 14px; }
.legal ul, .legal ol { margin: 0 0 14px; padding-left: 22px; }
.legal li { margin-bottom: 6px; }
.legal li::marker { color: var(--brand); font-weight: 700; }
.legal .updated { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 6px 12px; margin: 6px 0 24px; }
.legal .updated::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--success); }
.legal .toc { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow-card); padding: 18px 22px; margin: 0 0 32px; }
.legal .toc strong, .legal .toc h2 { display: block; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin: 0 0 10px; padding: 0; }
.legal .toc ol, .legal .toc ul { margin: 0; padding-left: 20px; columns: 1; }
.legal .toc li { margin-bottom: 5px; font-size: 14px; }
.legal .toc a { color: var(--text-soft); text-decoration: none; }
.legal .toc a:hover { color: var(--brand); text-decoration: underline; }
@media (min-width: 640px) { .legal .toc ol, .legal .toc ul { columns: 2; column-gap: 28px; } }
.legal table { width: 100%; border-collapse: collapse; font-size: 14px; margin: 0 0 18px; display: block; overflow-x: auto; }
.legal .table-wrap { overflow-x: auto; margin: 0 0 18px; border: 1px solid var(--border); border-radius: 14px; }
.legal .table-wrap table { display: table; margin: 0; min-width: 520px; }
.legal .table-wrap tr:last-child td { border-bottom: 0; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
.legal th { color: var(--text); font-weight: 700; background: var(--surface-high); }
.legal .callout, .legal .placeholder-note { background: var(--brand-soft); border: 1px solid var(--brand-border); border-radius: 14px; padding: 14px 16px; font-size: 14px; margin: 0 0 18px; }
.legal .callout.warn { background: var(--warning-soft); border-color: transparent; }
.legal .placeholder, .placeholder { background: var(--warning-soft); color: inherit; border-radius: 5px; padding: 0 4px; font-weight: 600; }
.legal .lang-switch { display: inline-block; font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.legal .back { display: inline-flex; gap: 6px; align-items: center; font-size: 14px; margin-top: 36px; }
.legal .meta { font-size: 13px; color: var(--muted); }
.legal dl { margin: 0 0 14px; }
.legal dt { font-weight: 700; color: var(--text); }
.legal dd { margin: 0 0 10px; }

/* adresa firme u pravnim dokumentima */
.legal .entity, .entity {
  font-style: normal;
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px;
  padding: 14px 18px; margin: 0 0 18px; line-height: 1.6; box-shadow: var(--shadow-card);
}
.legal .entity strong { color: var(--text); }
.legal section, .legal article { scroll-margin-top: 90px; }
.legal .lead { font-size: 17px; }
.legal > .eyebrow:first-child { margin-top: 8px; }

/* podnožje pravnih stranica (jednostavnija varijanta) */
.site-footer .site-footer__inner { display: grid; gap: 12px; text-align: center; justify-items: center; }
.site-footer__copy, .site-footer__contact { margin: 0; font-size: 13px; }
.site-footer__nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 18px; }
.site-footer__nav a { color: var(--text-soft); font-weight: 600; }
.site-footer__nav a:hover { color: var(--brand); }
.site-footer__contact a { color: var(--brand); }

/* kontakt */
.contact-grid { display: grid; gap: 16px; margin-top: 28px; }
@media (min-width: 800px) { .contact-grid { grid-template-columns: 1.1fr .9fr; } }
.contact-card h2 { font-size: 20px; margin-bottom: 14px; }
.contact-card dl { margin: 0; display: grid; grid-template-columns: 1fr; gap: 10px 16px; }
.contact-card dt { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; font-weight: 800; color: var(--faint); }
.contact-card dd { margin: 0 0 4px; color: var(--text-soft); }
.contact-card .big { font-size: 18px; font-weight: 700; color: var(--text); }
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); font-size: 15px; }
.contact-list .icon { flex: 0 0 36px; width: 36px; height: 36px; border-radius: 11px; background: var(--brand-soft); color: var(--brand); display: grid; place-items: center; }
.contact-list .icon svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

@media (prefers-color-scheme: dark) {
  .phone { background: #1E1E27; box-shadow: 0 30px 70px rgba(0, 0, 0, .6), inset 0 0 0 2px rgba(255, 255, 255, .14); }
  .phone-notch { background: #1E1E27; }
}
.btn.placeholder { background: linear-gradient(135deg, #645CFF, #7770FF); color: #FFFFFF; text-decoration: none; padding: 0 20px; }
