/* Geist (OFL), lokalno — bez Google Fonts */
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 400 700; font-display: swap; src: url(/static/fonts/geist-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Geist'; font-style: normal; font-weight: 400 700; font-display: swap; src: url(/static/fonts/geist-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }
@font-face { font-family: 'Geist Mono'; font-style: normal; font-weight: 400 500; font-display: swap; src: url(/static/fonts/geist-mono-latin-ext.woff2) format('woff2'); unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF; }
@font-face { font-family: 'Geist Mono'; font-style: normal; font-weight: 400 500; font-display: swap; src: url(/static/fonts/geist-mono-latin.woff2) format('woff2'); unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD; }

:root {
  --ink: #0b0e1a; --ink-soft: #374151; --muted: #6b7280; --line: rgba(0,0,0,.08); --line-strong: rgba(0,0,0,.14);
  --brand: #5b5fef; --brand-ink: #3f43d6; --brand-soft: #eef0ff; --canvas: #fff; --canvas-soft: #fafafa; --night: #0b0e1a;
  --ok: #0f9d58; --ok-soft: #e7f6ee; --warn: #b45309; --warn-soft: #fff7e6; --bad: #c62828; --bad-soft: #fdecec;
  --r-sm: 10px; --r: 16px; --r-lg: 24px;
  --shadow: 0 1px 2px rgba(0,0,0,.04), 0 8px 24px rgba(0,0,0,.06);
  --font: "Geist", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SF Mono", Menlo, monospace;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; font-family: var(--font); color: var(--ink); background: var(--canvas); line-height: 1.55; font-size: 16px; }
a { color: var(--brand-ink); }
img { max-width: 100%; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.narrow { max-width: 760px; }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 700; letter-spacing: -.035em; }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.2rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1em; }
.muted { color: var(--muted); }
.small { font-size: .875rem; }
.mono { font-family: var(--mono); font-size: .85em; }
code { font-family: var(--mono); font-size: .85em; background: var(--canvas-soft); border: 1px solid var(--line); padding: 1px 6px; border-radius: 6px; word-break: break-all; }
pre { font-family: var(--mono); font-size: .8rem; background: var(--night); color: #e5e7eb; padding: 14px 16px; border-radius: var(--r-sm); overflow-x: auto; white-space: pre-wrap; word-break: break-all; }

/* header */
.top { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.85); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--line); }
.top .wrap { display: flex; align-items: center; justify-content: space-between; height: 60px; gap: 12px; }
.logo { font-weight: 700; color: var(--ink); text-decoration: none; letter-spacing: -.02em; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.logo .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--brand); display: inline-block; }
.logo span.sub { color: var(--muted); font-weight: 500; }
.top nav { display: flex; gap: 18px; align-items: center; }
.top nav a { color: var(--ink-soft); text-decoration: none; font-size: .95rem; }
@media (max-width: 640px) { .top nav a.hide-m { display: none; } }

/* buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent;
  background: var(--brand); color: #fff; font: 600 .98rem var(--font); text-decoration: none; cursor: pointer; transition: transform .15s, background .15s; white-space: nowrap; }
.btn:hover { background: var(--brand-ink); }
.btn:active { transform: translateY(1px); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn.ghost:hover { background: var(--canvas-soft); }
.btn.dark { background: var(--ink); }
.btn.small { padding: 7px 14px; font-size: .88rem; }
.btn.danger { background: var(--bad); }
.btn[disabled] { opacity: .5; cursor: not-allowed; }
.top .btn, .top nav a.btn { padding: 8px 16px; font-size: .9rem; color: #fff; }
.top nav a.btn:hover { color: #fff; }

/* hero */
.hero { padding: 72px 0 56px; background: radial-gradient(1200px 400px at 50% -80px, var(--brand-soft), transparent 70%); }
.hero p.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--ink-soft); max-width: 680px; }
.chip { display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px; border-radius: 999px; background: #fff; border: 1px solid var(--line-strong); font-size: .85rem; font-weight: 500; color: var(--ink-soft); margin-bottom: 18px; }
.chip b { color: var(--bad); }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }

section { padding: 64px 0; }
section.soft { background: var(--canvas-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; font-weight: 600; color: var(--brand-ink); margin-bottom: 10px; }

.grid { display: grid; gap: 16px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 860px) { .g3, .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 600px) { .g2, .g3, .g4 { grid-template-columns: minmax(0, 1fr); } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 22px; box-shadow: var(--shadow); min-width: 0; }
.card.flat { box-shadow: none; }
.card h3 { margin-bottom: .35em; }
.step-n { width: 30px; height: 30px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-ink); display: inline-flex; align-items: center; justify-content: center; font-weight: 700; font-size: .9rem; margin-bottom: 12px; }
.check { list-style: none; padding: 0; margin: 0; }
.check li { padding: 7px 0 7px 30px; position: relative; }
.check li::before { content: ""; position: absolute; left: 0; top: 10px; width: 18px; height: 18px; border-radius: 50%; background: var(--ok-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230f9d58'%3E%3Cpath d='M8.1 13.6 4.5 10l-1.1 1.1 4.7 4.7 9.4-9.4-1.1-1.1z'/%3E%3C/svg%3E") center/13px no-repeat; }

.price-card { position: relative; display: flex; flex-direction: column; }
.price-card.featured { border: 2px solid var(--brand); }
.price-card .badge { position: absolute; top: -12px; left: 22px; background: var(--brand); color: #fff; font-size: .75rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.price { font-size: 2.6rem; font-weight: 700; letter-spacing: -.03em; }
.price small { font-size: 1rem; font-weight: 500; color: var(--muted); }
.price-card .btn { margin-top: auto; }

details.faq { border-bottom: 1px solid var(--line); padding: 16px 0; }
details.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
details.faq summary::after { content: "+"; color: var(--muted); font-weight: 400; font-size: 1.3rem; line-height: 1; }
details.faq[open] summary::after { content: "–"; }
details.faq p { margin: 10px 0 0; color: var(--ink-soft); }

footer { padding: 36px 0 48px; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
footer a { color: var(--muted); }

/* forms */
.form-shell { padding: 40px 0 80px; background: var(--canvas-soft); min-height: calc(100vh - 60px); }
.steps { display: flex; gap: 6px; margin: 0 0 22px; }
.steps span { flex: 1; height: 4px; border-radius: 4px; background: var(--line-strong); }
.steps span.on { background: var(--brand); }
fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
fieldset.step > legend { font-size: 1.45rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 4px; padding: 0; }
.step-intro { color: var(--muted); margin-bottom: 22px; }
.js-ready fieldset.step { display: none; }
.js-ready fieldset.step.active { display: block; }
.field { margin-bottom: 16px; min-width: 0; }
.field > label, .label { display: block; font-weight: 600; font-size: .92rem; margin-bottom: 6px; }
.field .hint { font-size: .82rem; color: var(--muted); margin-top: 5px; }
.req { color: var(--bad); }
input[type=text], input[type=email], input[type=tel], input[type=url], input[type=number], input[type=date], input[type=datetime-local], input[type=password], select, textarea {
  width: 100%; padding: 11px 13px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); font: inherit; font-size: 1rem; background: #fff; color: var(--ink); }
input:focus, select:focus, textarea:focus { outline: 2px solid var(--brand); outline-offset: -1px; border-color: transparent; }
textarea { min-height: 96px; resize: vertical; }
.row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.row3 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 14px; }
@media (max-width: 600px) { .row, .row3 { grid-template-columns: minmax(0, 1fr); } }
.choice { display: grid; gap: 10px; }
.choice.inline { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
.opt { display: flex; gap: 10px; align-items: flex-start; padding: 13px 14px; border: 1px solid var(--line-strong); border-radius: var(--r-sm); background: #fff; cursor: pointer; }
.opt:has(input:checked) { border-color: var(--brand); background: var(--brand-soft); }
.opt input { margin-top: 4px; accent-color: var(--brand); }
.opt b { display: block; }
.opt .muted { font-size: .85rem; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; margin-bottom: 12px; }
.consent input { margin-top: 4px; accent-color: var(--brand); width: 18px; height: 18px; flex: none; }
.nav-btns { display: flex; justify-content: space-between; gap: 12px; margin-top: 26px; }
.error-box { background: var(--bad-soft); color: var(--bad); border-radius: var(--r-sm); padding: 12px 14px; margin-bottom: 16px; font-size: .92rem; }
.info-box { background: var(--brand-soft); color: var(--ink); border-radius: var(--r-sm); padding: 12px 14px; margin: 12px 0; font-size: .92rem; }
.warn-box { background: var(--warn-soft); color: #7c3d05; border-radius: var(--r-sm); padding: 12px 14px; margin: 12px 0; font-size: .92rem; }
.ok-box { background: var(--ok-soft); color: #0b5d36; border-radius: var(--r-sm); padding: 12px 14px; margin: 12px 0; font-size: .92rem; }
input.invalid, select.invalid, textarea.invalid { border-color: var(--bad); background: var(--bad-soft); }
.hp { position: absolute; left: -9999px; }

/* editable item table */
.items-editor { display: grid; gap: 10px; }
.item-row { background: #fff; border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 12px; display: grid; gap: 10px;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 1fr) auto; align-items: end; }
.item-row .f label { display: block; font-size: .74rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.item-row input, .item-row select { padding: 9px 10px; font-size: .95rem; }
.item-row .extra { grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; font-size: .86rem; }
.item-row .extra label { display: inline-flex; gap: 6px; align-items: center; }
.item-row .extra input[type=text], .item-row .extra input[type=date] { width: auto; min-width: 140px; padding: 7px 9px; font-size: .9rem; }
.item-row .rm { background: none; border: 1px solid var(--line-strong); color: var(--muted); border-radius: 8px; width: 38px; height: 38px; cursor: pointer; font-size: 1.1rem; }
.item-row .rm:hover { color: var(--bad); border-color: var(--bad); }
@media (max-width: 720px) { .item-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } .item-row .f.name { grid-column: 1 / -1; } }
.loc-row { background: #fff; border: 1px solid var(--line-strong); border-radius: var(--r-sm); padding: 12px; display: grid; gap: 10px;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 2fr) minmax(0, .8fr) auto; align-items: end; margin-bottom: 10px; }
@media (max-width: 720px) { .loc-row { grid-template-columns: minmax(0, 1fr); } }
.loc-row label { display: block; font-size: .74rem; font-weight: 600; color: var(--muted); margin-bottom: 4px; }
.summary { background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: 18px; }
.summary .line { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; }
.summary .total { border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; font-weight: 700; }

/* tables */
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r-sm); background: #fff; }
table { width: 100%; border-collapse: collapse; font-size: .93rem; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
th { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); font-weight: 600; background: var(--canvas-soft); white-space: nowrap; }
tr:last-child td { border-bottom: 0; }
td.num, th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.pill { display: inline-block; padding: 2px 9px; border-radius: 999px; font-size: .76rem; font-weight: 600; background: var(--canvas-soft); border: 1px solid var(--line); white-space: nowrap; }
.pill.aktivan, .pill.aktivna, .pill.izdano { background: var(--ok-soft); color: var(--ok); border-color: transparent; }
.pill.ceka_placanje, .pill.ceka, .pill.nova, .pill.ceka_dns { background: var(--warn-soft); color: var(--warn); border-color: transparent; }
.pill.otkazan, .pill.kasni, .pill.greska { background: var(--bad-soft); color: var(--bad); border-color: transparent; }
.pill.ponuda { background: var(--brand-soft); color: var(--brand-ink); border-color: transparent; }
.promo { color: var(--bad); font-weight: 600; font-size: .8rem; }

.page { padding: 36px 0 72px; }
.kv { display: grid; grid-template-columns: 180px minmax(0, 1fr); gap: 6px 16px; font-size: .93rem; }
.kv dt { color: var(--muted); }
.kv dd { margin: 0; word-break: break-word; }
@media (max-width: 600px) { .kv { grid-template-columns: minmax(0, 1fr); } .kv dd { margin-bottom: 8px; } }
.stack > * + * { margin-top: 16px; }
.flex { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.between { justify-content: space-between; }
hr { border: 0; border-top: 1px solid var(--line); margin: 28px 0; }
.legal h2 { font-size: 1.25rem; margin-top: 1.6em; }
.legal li { margin-bottom: .4em; }

/* trust / counter */
.trust { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 26px; font-size: .88rem; color: var(--ink-soft); }
.trust span { display: inline-flex; align-items: center; gap: 8px; }
.trust span::before { content: ""; width: 16px; height: 16px; border-radius: 50%; flex: none; background: var(--ok-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%230f9d58'%3E%3Cpath d='M8.1 13.6 4.5 10l-1.1 1.1 4.7 4.7 9.4-9.4-1.1-1.1z'/%3E%3C/svg%3E") center/12px no-repeat; }
.trust a { color: inherit; }
.counter { margin: 18px 0 0; font-size: 1rem; }
.counter b { font-size: 1.3rem; color: var(--brand-ink); }
.pay-note { text-align: right; margin-top: 12px; }
@media (max-width: 600px) { .pay-note { text-align: left; } }

/* prije / poslije */
.tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 18px; }
.tab { font: 600 .9rem var(--font); padding: 8px 14px; border-radius: 999px; border: 1px solid var(--line-strong); background: #fff; color: var(--ink); cursor: pointer; }
.tab[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.tab-real { font-size: .7rem; font-weight: 600; background: var(--ok-soft); color: var(--ok); padding: 1px 7px; border-radius: 999px; margin-left: 4px; }
.tab[aria-selected="true"] .tab-real { background: rgba(255,255,255,.18); color: #fff; }
.js-ready .ba-panel { display: none; }
.js-ready .ba-panel.active { display: block; }
.ba-panel + .ba-panel { margin-top: 28px; }
.js-ready .ba-panel + .ba-panel { margin-top: 0; }
.ba-caption { font-size: .9rem; color: var(--ink-soft); margin-bottom: 14px; }
.ba-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; align-items: start; }
@media (max-width: 760px) { .ba-grid { grid-template-columns: minmax(0, 1fr); } }
.ba-col { min-width: 0; }
.ba-label { display: inline-block; font-weight: 700; font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-bottom: 10px; }
.ba-label.before { background: var(--bad-soft); color: var(--bad); }
.ba-label.after { background: var(--ok-soft); color: var(--ok); }
.mock { background: #fff; border: 1px solid var(--line-strong); border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.mock-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; background: #f5f5f7; border-bottom: 1px solid var(--line); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: #ff5f57; flex: none; }
.mock-bar i:nth-child(2) { background: #febc2e; }
.mock-bar i:nth-child(3) { background: #28c840; }
.mock-url { margin-left: 8px; flex: 1; min-width: 0; background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 2px 10px; font: 12px var(--mono); color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-body { padding: 16px; }
.mock-title { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; }
.mock-tbl { font-size: .86rem; }
.mock-tbl th, .mock-tbl td { padding: 7px 6px; }
.mock-tbl th { background: transparent; font-size: .68rem; }
.mock-tbl th span { text-transform: none; font-weight: 500; letter-spacing: 0; }
.mock-tbl td.diff { color: var(--brand-ink); font-weight: 700; background: var(--brand-soft); border-radius: 6px; }
.mock-file { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-top: 12px; font-size: .72rem; color: var(--muted); word-break: break-all; }
.mock-chip { font: 700 .66rem var(--mono); background: var(--ink); color: #fff; padding: 2px 6px; border-radius: 4px; }
.mock-csv { margin: 10px 0 0; font-size: .68rem; padding: 10px 12px; }
.ba-notes { list-style: none; padding: 0; margin: 12px 0 0; font-size: .88rem; }
.ba-notes li { padding: 4px 0 4px 26px; position: relative; }
.ba-notes li::before { position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .72rem; font-weight: 700; }
.ba-notes.bad li::before { content: "✕"; background: var(--bad-soft); color: var(--bad); }
.ba-notes.good li::before { content: "✓"; background: var(--ok-soft); color: var(--ok); }

/* recenzije */
.stars { color: #f5a524; letter-spacing: 1px; }
.stars .off { color: #e5e7eb; }
.review { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.review blockquote { margin: 0; color: var(--ink-soft); }
.review figcaption { margin-top: auto; font-size: .92rem; }

/* cijene: 3 stupca; na srednjim širinama webshop kartica ide preko cijele širine (simetrično) */
.pricing { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.price-card.wide { background: var(--canvas-soft); }
.price-card.wide .btn { margin-top: auto; }
.pricing-note { margin-top: 18px; text-align: center; }
@media (max-width: 960px) {
  .pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .price-card.wide { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 28px; }
  .price-card.wide .wide-text { flex: 1; min-width: 0; }
  .price-card.wide .wide-text p { margin-bottom: 0; }
  .price-card.wide .btn { margin-top: 0; flex: none; }
}
@media (max-width: 600px) {
  .pricing { grid-template-columns: minmax(0, 1fr); }
  .price-card.wide { flex-direction: column; align-items: stretch; gap: 0; }
  .price-card.wide .wide-text p { margin-bottom: 1em; }
}

.field-invalid .opt, .consent.field-invalid { outline: 2px solid var(--bad); outline-offset: 2px; border-radius: var(--r-sm); }
.mock-note { font-size: .68rem; color: var(--muted); margin-top: 4px; font-style: italic; }

/* =====================================================================
   LANDING (body.lp) — sve je ograničeno na .lp, ostale stranice ne diramo
   ===================================================================== */
.lp {
  --bg: #fff; --bg-soft: #fafafa; --ink: #0b0e1a; --ink-2: #1f2433; --text: #4b5563; --muted: #6b7280;
  --brand: #5b5fef; --brand-600: #4f53e6; --brand-ink: #3f43d6; --violet: #6366f1; --cyan: #6aa7ff; --brand-soft: #eef0ff; --brand-50: #f5f6ff;
  --ok: #0b7a43; --ok-soft: #e7f6ee; --bad: #c62828; --bad-soft: #fdecec; --amber-ink: #92400e; --amber-soft: #fff4e0;
  --night: #0b0e1a; --night-2: #121629; --night-line: rgba(255,255,255,.08); --night-text: #e5e7eb; --night-muted: #a1a8b8;
  --line: rgba(11,14,26,.08); --line-2: rgba(11,14,26,.14);
  --r-sm: 12px; --r: 16px; --r-md: 20px; --r-lg: 28px;
  --sh-1: 0 1px 2px rgba(11,14,26,.05); --sh-2: 0 1px 2px rgba(11,14,26,.04), 0 8px 24px -8px rgba(11,14,26,.10);
  --sh-3: 0 2px 4px rgba(11,14,26,.04), 0 24px 48px -16px rgba(11,14,26,.18), 0 48px 120px -48px rgba(91,95,239,.40);
  --sh-float: 0 1px 2px rgba(11,14,26,.06), 0 12px 32px -8px rgba(11,14,26,.18); --glow: 0 24px 70px -24px rgba(91,95,239,.55);
  --grad-brand: linear-gradient(135deg,#5b5fef 0%,#6366f1 40%,#6aa7ff 100%);
  --grad-text: linear-gradient(92deg,#4b4fe6 0%,#5b5fef 45%,#2f6fd6 100%);
  --ease: cubic-bezier(.2,.7,.2,1);
  color: var(--text); background: #fff;
}
@media (prefers-reduced-motion: no-preference) { html:has(body.lp) { scroll-behavior: smooth; } }
.lp section { padding: 0; scroll-margin-top: 84px; }
.lp h1, .lp h2, .lp h3 { color: var(--ink); text-wrap: balance; overflow-wrap: break-word; }
.lp a { color: var(--brand-ink); }
.lp .mono { font-family: var(--mono); }
.lp-wrap { max-width: 1160px; margin-inline: auto; padding-inline: 20px; }
@media (min-width: 1024px) { .lp-wrap { padding-inline: 32px; } }
@media (max-width: 400px) { .lp-wrap { padding-inline: 16px; } }
.lp-sr { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.lp-skip { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--ink); color: #fff !important; padding: 10px 14px; border-radius: 10px; text-decoration: none; }
.lp-skip:focus { top: 12px; }
.lp :focus-visible { outline: 3px solid #3f43d6; outline-offset: 3px; border-radius: 6px; }
.lp-night :focus-visible { outline-color: #6aa7ff; }
.lp-ic { width: 18px; height: 18px; flex: none; vertical-align: -3px; }
.lp-ic-xs { width: 13px; height: 13px; vertical-align: -1px; }
.lp-ic-ok { color: var(--ok); }
.lp-center { text-align: center; }
.lp-small { font-size: 14px; color: var(--text); }
.lp-foot { font-size: 12.5px; color: var(--muted); margin: 12px 0 0; }

/* sekcije i naslovi */
.lp-sec { padding-block: clamp(72px, 9vw, 128px) !important; }
.lp-soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.lp-head { text-align: center; max-width: 720px; margin: 0 auto clamp(40px, 5vw, 64px); }
.lp-head-left { text-align: left; margin-inline: 0; }
.lp-eyebrow { font: 500 12px/1 var(--mono); text-transform: uppercase; letter-spacing: .12em; color: var(--brand-ink); margin-bottom: 16px; }
.lp-eyebrow span { color: var(--muted); }
.lp h2 { font-size: clamp(2rem, 1.2rem + 3vw, 3.25rem); line-height: 1.08; font-weight: 700; letter-spacing: -.035em; margin: 0; }
.lp h3 { font-size: 1.125rem; line-height: 1.3; font-weight: 600; letter-spacing: -.015em; margin: 0 0 6px; }
.lp-lead { font-size: clamp(1.0625rem, 1rem + .4vw, 1.25rem); line-height: 1.6; color: var(--text); max-width: 62ch; margin: 16px auto 0; text-wrap: pretty; }
.lp-head-left .lp-lead { margin-left: 0; }

/* gumbi */
.lp-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; height: 48px; padding: 0 22px; border-radius: 999px; font: 600 15px var(--font); text-decoration: none; border: 1px solid transparent; cursor: pointer; white-space: nowrap; transition: transform .15s var(--ease), box-shadow .15s, background .15s; }
.lp-btn .lp-ic { width: 16px; height: 16px; transition: transform .15s var(--ease); }
.lp-btn:hover .lp-ic { transform: translateX(3px); }
.lp-btn-primary { color: #fff !important; background: linear-gradient(180deg,#6569f3,#5256ea); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 1px 2px rgba(11,14,26,.2), 0 10px 24px -10px rgba(91,95,239,.7); }
.lp-btn-primary:hover { background: var(--brand-600); transform: translateY(-1px); box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 2px 4px rgba(11,14,26,.2), 0 14px 30px -10px rgba(91,95,239,.8); }
.lp-btn-secondary { color: var(--ink) !important; background: #fff; border-color: var(--line-2); box-shadow: var(--sh-1); }
.lp-btn-secondary:hover { background: #fafafa; }
.lp-btn-white { color: var(--ink) !important; background: #fff; box-shadow: 0 12px 30px -10px rgba(106,167,255,.6); }
.lp-btn-white:hover { transform: translateY(-1px); }
.lp-btn-lg { height: 54px; padding: 0 26px; font-size: 16px; }
.lp-btn-sm { height: 40px; padding: 0 16px; font-size: 14px; }
.lp-btn-block { width: 100%; }
.lp-btn:active { transform: translateY(0); }

/* pilule, čipovi */
.lp-pill { display: inline-flex; align-items: center; height: 24px; padding: 0 9px; border-radius: 999px; font: 600 12px var(--font); white-space: nowrap; background: #f3f4f6; color: var(--ink-2); }
.lp-pill-ok { background: var(--ok-soft); color: var(--ok); }
.lp-pill-bad { background: var(--bad-soft); color: var(--bad); }
.lp-pill-brand { background: var(--brand-soft); color: var(--brand-ink); }
.lp-pill-amber { background: var(--amber-soft); color: var(--amber-ink); }
.lp-pill-cyan { background: rgba(106,167,255,.14); color: #6aa7ff; }
.lp-chip { font: 600 10px var(--mono); background: var(--ink); color: #fff; padding: 2px 6px; border-radius: 4px; }
.lp-diff { display: inline-block; background: var(--brand-soft); color: var(--brand-ink); font-weight: 600; padding: 2px 8px; border-radius: 6px; }
.lp-diff.flash { animation: lp-flash .7s var(--ease); }
@keyframes lp-flash { from { background: #c7caff; } to { background: var(--brand-soft); } }
.lp-mono-label { font: 500 12px var(--mono); text-transform: uppercase; letter-spacing: .12em; color: var(--muted); margin-bottom: 12px; }
.lp-ping-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: var(--ok); display: inline-block; flex: none; }
.lp-ping-dot.red { background: #ff5f57; }
.lp-ping-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: lp-ping 1.8s ease-out infinite; }
@keyframes lp-ping { from { transform: scale(1); opacity: .5; } to { transform: scale(2.4); opacity: 0; } }

/* header */
.lp-top { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.72); -webkit-backdrop-filter: saturate(180%) blur(14px); backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s; }
.lp-top.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(11,14,26,.02); }
.lp-top-in { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.lp-logo { display: inline-flex; align-items: center; gap: 9px; text-decoration: none; color: var(--ink) !important; font-size: 15px; white-space: nowrap; }
.lp-logo b { font-weight: 600; letter-spacing: -.02em; }
.lp-logo-sub { color: var(--muted); font-weight: 500; }
.lp-mark { width: 26px; height: 26px; border-radius: 8px; background: var(--grad-brand); display: inline-flex; align-items: center; justify-content: center; }
.lp-mark svg { width: 18px; height: 18px; }
.lp-nav { display: none; gap: 4px; margin-left: auto; }
.lp-nav a { height: 36px; padding: 0 12px; display: inline-flex; align-items: center; border-radius: 999px; font: 500 14px var(--font); color: #374151; text-decoration: none; position: relative; }
.lp-nav a:hover { color: var(--ink); background: rgba(11,14,26,.04); }
.lp-nav a[aria-current="true"] { color: var(--ink); }
.lp-nav a[aria-current="true"]::after { content: ""; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px; border-radius: 2px; background: var(--brand); }
@media (min-width: 900px) { .lp-nav { display: flex; } }
.lp-cta-short { display: none; }
@media (max-width: 420px) { .lp-cta-long { display: none; } .lp-cta-short { display: inline; } }

/* hero */
.lp-hero { position: relative; isolation: isolate; overflow: hidden; overflow-x: clip; }
.lp-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background-image: linear-gradient(rgba(11,14,26,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(11,14,26,.06) 1px, transparent 1px); background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 35%, transparent 100%); mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, #000 35%, transparent 100%); }
.lp-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(620px 320px at 50% 12%, rgba(91,95,239,.20), transparent 70%), radial-gradient(480px 260px at 82% 38%, rgba(106,167,255,.18), transparent 70%), radial-gradient(420px 240px at 14% 44%, rgba(99,102,241,.12), transparent 70%); }
@media (max-width: 640px) { .lp-hero::before { background-size: 40px 40px; } }
.lp-hero-in { text-align: center; padding-top: clamp(56px, 9vw, 104px); padding-bottom: clamp(56px, 7vw, 96px); }
.lp-chip-top { display: inline-flex; align-items: center; gap: 8px; min-height: 32px; padding: 4px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line-2); box-shadow: var(--sh-1); font: 500 13px var(--font); color: var(--ink-2) !important; text-decoration: none; flex-wrap: wrap; justify-content: center; max-width: 100%; }
.lp-chip-top b { color: var(--ink); font-weight: 600; }
.lp-chip-top:hover { border-color: var(--brand); }
.lp h1 { font-size: clamp(2.5rem, 1.2rem + 5.2vw, 4.75rem); line-height: 1.02; font-weight: 700; letter-spacing: -.045em; margin: 24px auto 0; max-width: 880px; }
.lp-grad { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
@supports not ((-webkit-background-clip: text) or (background-clip: text)) { .lp-grad { color: var(--brand-ink); } }
.lp-hero-lead { margin-top: 20px; }
.lp-cta-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }
@media (max-width: 480px) { .lp-cta-row .lp-btn { width: 100%; } }
.lp-micro { font-size: 13px; color: var(--muted); margin: 14px 0 0; }
.lp-trust { list-style: none; padding: 0; margin: 20px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; font-size: 13px; color: var(--text); }
.lp-trust li { display: inline-flex; align-items: center; gap: 6px; }
.lp-trust .lp-ic { color: var(--brand-ink); width: 16px; height: 16px; }
.lp-counter { margin: 18px 0 0; }
.lp-counter b { color: var(--brand-ink); font-size: 1.2rem; }
.lp-switch-wrap { margin-top: 56px; overflow-x: auto; scrollbar-width: none; -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); }
.lp-switch-wrap::-webkit-scrollbar { display: none; }
.lp-switch { display: inline-flex; align-items: center; gap: 8px; padding: 2px 16px; white-space: nowrap; }
.lp-switch-label { font-size: 13px; color: var(--muted); }
.lp-sw { height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line-2); background: #fff; font: 600 13px var(--font); color: var(--ink-2); cursor: pointer; }
.lp-sw[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); box-shadow: var(--sh-1); }
.lp-caption { font-size: 13px; color: var(--muted); margin: 20px auto 0; display: inline-flex; gap: 6px; align-items: center; max-width: 640px; }
.lp-caption .lp-ic { width: 15px; height: 15px; }

/* prozor (macOS) */
.lp-win { background: #fff; border: 1px solid rgba(11,14,26,.10); border-radius: 20px; overflow: hidden; text-align: left; }
.lp-win-sm { border-radius: 14px; }
.lp-win-bar { display: flex; align-items: center; gap: 7px; height: 44px; padding: 0 14px; background: #f7f7f8; border-bottom: 1px solid var(--line); }
.lp-win-sm .lp-win-bar { height: 36px; }
.lp-win-bar > i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; flex: none; }
.lp-win-bar > i:nth-child(2) { background: #febc2e; }
.lp-win-bar > i:nth-child(3) { background: #28c840; }
.lp-url { flex: 1; min-width: 0; margin: 0 8px; height: 26px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; background: #fff; border: 1px solid var(--line); border-radius: 8px; font: 12px var(--mono); color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; padding: 0 10px; }
.lp-url .lp-ic { width: 12px; height: 12px; }
.lp-hero-visual { position: relative; max-width: 1040px; margin: 18px auto 0; perspective: 1800px; }
.lp-glow { position: absolute; inset: 8% 6% -6%; background: var(--grad-brand); filter: blur(64px); opacity: .28; z-index: -1; border-radius: 40px; }
.lp-hero-win { box-shadow: var(--sh-3); animation: lp-tilt-in 1.1s .25s var(--ease) both; }
@keyframes lp-tilt-in { from { opacity: 0; transform: translateY(40px) rotateX(14deg) scale(.98); } to { opacity: 1; transform: none; } }
.lp-hero-grid { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(0, 1fr); }
.lp-page { padding: 28px; }
.lp-site { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.lp-site-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--grad-brand); flex: none; }
.lp-site b { font-size: 14px; color: var(--ink); margin-right: auto; }
.lp-skel { width: 36px; height: 8px; border-radius: 4px; background: #eef0f3; }
.lp-page-title { font-size: 18px; font-weight: 700; color: var(--ink); }
.lp-page-meta { font-size: 12px; color: var(--muted); margin: 2px 0 12px; }
.lp-tbl { width: 100%; border-collapse: collapse; font-size: 14px; }
.lp-tbl th, .lp-tbl td { padding: 9px 6px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; background: transparent; }
.lp-tbl tr:last-child td { border-bottom: 0; }
.lp-tbl th { font: 600 11px var(--font); text-transform: uppercase; letter-spacing: .06em; color: var(--muted); white-space: normal; }
.lp-tbl th span { display: block; text-transform: none; font-weight: 500; letter-spacing: 0; }
.lp-tbl td { color: var(--ink-2); }
.lp-tbl .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.lp-tbl td.num b { color: var(--ink); font-weight: 700; }
.lp-embed-foot { font-size: 11.5px; color: var(--muted); margin-top: 12px; }
.lp-link { color: var(--brand-ink); text-decoration: underline; }
.lp-files { background: #fafafa; border-left: 1px solid var(--line); padding: 24px; display: flex; flex-direction: column; gap: 10px; }
.lp-files-title { font-weight: 600; font-size: 13px; color: var(--ink); }
.lp-domain { display: flex; align-items: center; gap: 8px; background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 6px 8px 6px 12px; font-size: 12.5px; color: var(--ink-2); min-width: 0; }
.lp-domain .mono { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-file { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.lp-file.old { opacity: .75; }
.lp-file-chips { display: flex; gap: 6px; align-items: center; }
.lp-file-chips .lp-pill { margin-left: auto; }
.lp-fname { font-size: 11px; color: var(--text); word-break: break-all; }
.lp-files-foot { font-size: 12px; color: var(--muted); display: flex; gap: 6px; align-items: center; margin-top: auto; }
.lp-files-foot .lp-ic { width: 14px; height: 14px; }
.lp-float { position: absolute; display: none; z-index: 2; }
.lp-float-in { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,.86); -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-float); padding: 12px 14px; font-size: 13px; text-align: left; animation: lp-float 7s ease-in-out infinite alternate; }
.lp-float-in b { display: block; color: var(--ink); font-weight: 600; }
.lp-float-in span { color: var(--text); }
.lp-f2 .lp-float-in { animation-delay: 1.5s; } .lp-f3 .lp-float-in { animation-delay: 3s; }
.lp-float-dark .lp-float-in { background: rgba(11,14,26,.92); color: #e5e7eb; flex-direction: column; align-items: flex-start; gap: 4px; font-size: 12px; }
.lp-float-dark .lp-float-in span { color: #e5e7eb; }
.lp-float-dark em { color: var(--cyan); font-style: normal; font-weight: 600; }
.lp-ok-txt { color: #86efac !important; }
.lp-ftile { width: 32px; height: 32px; border-radius: 10px; background: var(--brand-soft); color: var(--brand-ink); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.lp-ftile-ok { background: var(--ok-soft); color: var(--ok); }
@keyframes lp-float { from { translate: 0 0; } to { translate: 0 -6px; } }
@media (min-width: 1024px) {
  .lp-float { display: block; animation: lp-rise .6s var(--ease) both; }
  .lp-f1 { left: -44px; bottom: -28px; animation-delay: .9s; } .lp-f2 { right: -44px; bottom: -24px; animation-delay: 1.05s; } .lp-f3 { right: -40px; top: -26px; animation-delay: 1.2s; }
}
@media (min-width: 1024px) and (max-width: 1199px) { .lp-f1 { left: -8px; } .lp-f2, .lp-f3 { right: -8px; } }
@media (min-width: 768px) and (max-width: 1023px) { .lp-f1 { display: block; position: static; margin: -24px 0 0 16px; } .lp-f1 .lp-float-in { display: inline-flex; } }
@media (max-width: 767px) {
  .lp-hero-grid { grid-template-columns: minmax(0, 1fr); }
  .lp-page { padding: 18px; }
  .lp-files { border-left: 0; border-top: 1px solid var(--line); padding: 16px; }
  .lp-file.old:last-of-type { display: none; }
  .lp-tbl { font-size: 13px; }
  .lp-skel { display: none; }
}
@keyframes lp-rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.lp-hero-in > .lp-chip-top, .lp-hero-in > h1, .lp-hero-in > .lp-hero-lead, .lp-hero-in > .lp-cta-row, .lp-hero-in > .lp-micro, .lp-hero-in > .lp-trust { animation: lp-rise .7s var(--ease) both; }
.lp-hero-in > h1 { animation-delay: .08s; } .lp-hero-in > .lp-hero-lead { animation-delay: .16s; } .lp-hero-in > .lp-cta-row { animation-delay: .24s; } .lp-hero-in > .lp-micro, .lp-hero-in > .lp-trust { animation-delay: .32s; }

/* proof */
.lp-proof { padding-block: 48px !important; border-block: 1px solid transparent; border-image: linear-gradient(90deg, transparent, rgba(11,14,26,.12), transparent) 1; }
.lp-proof-top { text-align: center; font-size: 14px; color: var(--text); max-width: 720px; margin: 0 auto 28px; }
.lp-proof-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 40px; align-items: center; }
.lp-ref { display: flex; gap: 16px; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--sh-1); padding: 14px; text-decoration: none; color: inherit !important; transition: transform .25s var(--ease), box-shadow .25s; min-width: 0; }
@media (hover: hover) { .lp-ref:hover { transform: translateY(-2px); box-shadow: var(--sh-2); } }
.lp-ref-mini { width: 120px; height: 84px; flex: none; border: 1px solid var(--line); border-radius: 10px; background: #fafafa; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.lp-ref-dots { display: flex; gap: 4px; } .lp-ref-dots i { width: 6px; height: 6px; border-radius: 50%; background: #ff5f57; } .lp-ref-dots i:nth-child(2) { background: #febc2e; } .lp-ref-dots i:nth-child(3) { background: #28c840; }
.lp-ref-bar { height: 6px; border-radius: 3px; background: #e5e7eb; } .lp-ref-bar-b { background: var(--brand-soft); width: 70%; }
.lp-ref-txt { display: flex; flex-direction: column; gap: 4px; font-size: 13.5px; min-width: 0; }
.lp-ref-txt .lp-pill { align-self: flex-start; }
.lp-ref-txt b { font-size: 15px; color: var(--ink); }
.lp-ref-link { color: var(--brand-ink); font-weight: 600; }
.lp-wordmarks { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 12px 32px; }
.lp-wordmarks li { font: 600 1.05rem var(--font); letter-spacing: -.02em; color: var(--muted); }
.lp-works-note { font-size: 14px; color: var(--text); margin: 16px 0 0; }
.lp-works-micro { font-size: 12px; color: var(--muted); margin: 6px 0 0; }
@media (max-width: 760px) { .lp-proof-grid { grid-template-columns: minmax(0, 1fr); gap: 28px; } .lp-ref-mini { width: 96px; height: 68px; } .lp-wordmarks { gap: 10px 22px; } }

/* kartice */
.lp-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-1); padding: 24px; min-width: 0; position: relative; transition: transform .25s var(--ease), box-shadow .25s, border-color .25s; }
@media (min-width: 1024px) { .lp-card { padding: 28px; } }
@media (hover: hover) { .lp-card:hover { transform: translateY(-2px); box-shadow: var(--sh-2); border-color: var(--line-2); } }
.lp-card p { font-size: 15px; line-height: 1.6; margin: 0; }

/* zahtjevi (bento) */
.lp-sources { text-align: center; font-size: 14px; margin: -36px 0 0; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; align-items: center; }
.lp-src { display: inline-flex; align-items: center; gap: 6px; font: 12.5px var(--mono); padding: 4px 10px; border: 1px dashed rgba(63,67,214,.35); border-radius: 8px; text-decoration: none; }
.lp-src:hover { border-style: solid; background: var(--brand-50); }
.lp-bento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.lp-t { display: flex; flex-direction: column; gap: 10px; }
.lp-t1, .lp-t2 { grid-column: span 3; } .lp-t3 { grid-column: span 6; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.5fr); gap: 28px; align-items: center; } .lp-t4, .lp-t5, .lp-t6 { grid-column: span 2; }
.lp-num { position: absolute; top: 8px; right: 14px; font: 12px var(--mono); color: var(--muted); }
.lp-tag { margin-top: auto; padding-top: 10px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--ok); }
.lp-tag .lp-ic { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: var(--ok-soft); }
.lp-vis { height: 148px; border-radius: 14px; border: 1px solid var(--line); background: #fafafa radial-gradient(rgba(11,14,26,.06) 1px, transparent 1px) 0 0 / 16px 16px; overflow: hidden; position: relative; margin-bottom: 6px; }
.lp-vis-center { display: flex; align-items: center; justify-content: center; }
.lp-docs { position: absolute; left: 50%; top: 14px; width: 170px; height: 104px; transform: translateX(-50%); }
.lp-doc { position: absolute; width: 86px; height: 104px; background: #fff; border-radius: 10px; box-shadow: var(--sh-2); padding: 12px 10px; display: flex; flex-direction: column; gap: 7px; }
.lp-doc .lp-chip { align-self: flex-start; } .lp-doc i { height: 6px; border-radius: 3px; background: #e5e7eb; } .lp-doc i:last-child { width: 60%; }
.lp-doc.r1 { left: 0; transform: rotate(-6deg); } .lp-doc.r2 { right: 0; transform: rotate(4deg); }
.lp-vis-code { position: absolute; left: 12px; right: 12px; bottom: 10px; font: 11px var(--mono) !important; color: var(--text); background: none !important; border: 0 !important; padding: 0 !important; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-rowcard { position: relative; background: #fff; border-radius: 12px; box-shadow: var(--sh-2); padding: 14px 16px; display: grid; grid-template-columns: 1fr auto; gap: 6px 14px; align-items: center; min-width: 0; max-width: 90%; }
.lp-rowcard b { font-size: 14px; color: var(--ink); font-weight: 500; }
.lp-rowcard-p { font-weight: 600; color: var(--ink); }
.lp-rowcard .lp-pill-brand { grid-column: 2; justify-self: end; }
.lp-rowcard .lp-pill-amber { position: absolute; top: -10px; left: 12px; height: 20px; font-size: 11px; }
.lp-t3-text { display: flex; flex-direction: column; gap: 8px; }
.lp-anatomy { position: relative; background: var(--night); border-radius: 14px; padding: 36px 20px 22px; min-width: 0; }
.lp-anat-pill { position: absolute; top: 12px; right: 12px; }
.lp-anat-dots { position: absolute; top: 14px; left: 16px; display: flex; gap: 5px; } .lp-anat-dots i { width: 8px; height: 8px; border-radius: 50%; background: #ff5f57; } .lp-anat-dots i:nth-child(2) { background: #febc2e; } .lp-anat-dots i:nth-child(3) { background: #28c840; }
.lp-anat-row { display: flex; flex-wrap: wrap; align-items: flex-start; row-gap: 12px; }
.lp-fseg { display: inline-flex; flex-direction: column; gap: 6px; }
.lp-fseg .mono { font-size: 15px; color: #e5e7eb; padding-bottom: 5px; border-bottom: 3px solid; word-break: break-all; }
.lp-fseg small { font-size: 11.5px; color: #a1a8b8; white-space: nowrap; }
.lp-fseg.s1 .mono { border-color: #a5b4fc; } .lp-fseg.s2 .mono { border-color: #6aa7ff; } .lp-fseg.s3 .mono { border-color: #5ee08a; } .lp-fseg.s4 .mono { border-color: #febc2e; } .lp-fseg.s5 .mono { border-color: #ff8a84; } .lp-fseg.s6 .mono { border-color: #d8b4fe; }
.lp-us { font: 15px var(--mono); color: #a1a8b8; padding: 0 1px; }
.lp-clock { width: 80%; max-width: 240px; display: flex; flex-direction: column; gap: 10px; align-items: stretch; }
.lp-clock-big { font: 500 44px/1 var(--mono); text-align: center; background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-track { height: 4px; border-radius: 4px; background: #e5e7eb; overflow: hidden; }
.lp-track i { display: block; height: 100%; width: 100%; background: var(--grad-brand); transform: scaleX(.33); transform-origin: left; transition: transform .6s var(--ease); }
@media (hover: hover) { .lp-t4:hover .lp-track i { transform: scaleX(1); } }
.lp-ticks { display: flex; justify-content: space-between; font: 11px var(--mono); color: var(--muted); }
.lp-stack { position: relative; width: 170px; height: 104px; }
.lp-stack-c { position: absolute; left: 0; right: 0; height: 56px; background: #fff; border-radius: 10px; border: 1px solid var(--line); box-shadow: var(--sh-1); display: flex; align-items: center; justify-content: space-between; padding: 0 12px; }
.lp-stack-c b { font-size: 14px; color: var(--ink); }
.lp-stack-c.c3 { top: 0; z-index: 3; } .lp-stack-c.c2 { top: 14px; transform: scale(.94); z-index: 2; opacity: .7; } .lp-stack-c.c1 { top: 28px; transform: scale(.88); z-index: 1; opacity: .45; }
.lp-stack-c.c2 b, .lp-stack-c.c1 b { align-self: flex-end; padding-bottom: 6px; }
.lp-stack-badge { position: absolute; right: -8px; bottom: 0; font-size: 11px; background: var(--ink); color: #fff; padding: 3px 8px; border-radius: 999px; z-index: 4; }
.lp-term { width: 88%; background: var(--night); color: #e5e7eb; border-radius: 12px; padding: 14px; font: 12px/1.6 var(--mono); display: flex; flex-direction: column; min-width: 0; }
.lp-term span { overflow-wrap: anywhere; }
.lp-term-dots { display: flex; gap: 5px; margin-bottom: 8px; } .lp-term-dots i { width: 8px; height: 8px; border-radius: 50%; background: #ff5f57; } .lp-term-dots i:nth-child(2) { background: #febc2e; } .lp-term-dots i:nth-child(3) { background: #28c840; }
.lp-term-p { color: var(--cyan); } .lp-term-ok { color: #86efac; }
@media (max-width: 1023px) { .lp-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); } .lp-t1, .lp-t2, .lp-t4, .lp-t5 { grid-column: span 1; } .lp-t3, .lp-t6 { grid-column: span 2; } .lp-t3 { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 599px) { .lp-bento { grid-template-columns: minmax(0, 1fr); } .lp-t1, .lp-t2, .lp-t3, .lp-t4, .lp-t5, .lp-t6 { grid-column: span 1; } .lp-vis { height: 132px; } .lp-fseg .mono, .lp-us { font-size: 13px; } .lp-sources { margin-top: -24px; } }

/* prije / poslije */
.lp .lp-seg-wrap { overflow-x: auto; scrollbar-width: none; margin: 32px auto 24px; text-align: center; -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent); }
.lp .lp-seg-wrap::-webkit-scrollbar { display: none; }
.lp .tabs.lp-seg { display: inline-flex; flex-direction: row; flex-wrap: nowrap; gap: 2px; padding: 4px; margin: 0 16px; border-radius: 999px; background: #f3f4f6; border: 1px solid var(--line); scroll-snap-type: x mandatory; }
.lp .lp-seg .tab { height: 40px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent; font: 500 14px var(--font); color: var(--text); white-space: nowrap; scroll-snap-align: start; cursor: pointer; }
.lp .lp-seg .tab[aria-selected="true"] { background: #fff; color: var(--ink); font-weight: 600; box-shadow: var(--sh-1); }
.lp .lp-seg .tab-real, .lp .lp-seg .tab[aria-selected="true"] .tab-real { background: var(--ok-soft); color: var(--ok); }
@media (pointer: coarse) { .lp .lp-seg .tab { height: 44px; } }
.ba-frame { border-radius: var(--r-lg); padding: 24px; background: linear-gradient(180deg, #fafafa, #fff); border: 1px solid var(--line); box-shadow: var(--sh-1); }
@media (min-width: 1024px) { .ba-frame { padding: 32px; } }
.lp .ba-panel.active { animation: lp-panel .25s var(--ease); }
@keyframes lp-panel { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.lp .ba-caption { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; font-size: 14px; color: var(--text); margin-bottom: 20px; }
.lp .ba-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: start; }
.lp .ba-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; min-width: 0; }
.lp .ba-col .lp-win { width: 100%; }
.ba-arrow { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 44px; height: 44px; border-radius: 50%; background: #fff; border: 1px solid var(--line-2); box-shadow: var(--sh-2); display: inline-flex; align-items: center; justify-content: center; color: var(--brand-ink); z-index: 2; }
.ba-before { filter: saturate(.6); opacity: .92; box-shadow: var(--sh-1); }
.ba-after { border: 1px solid transparent !important; background: linear-gradient(#fff, #fff) padding-box, var(--grad-brand) border-box; box-shadow: var(--glow); }
.ba-body { padding: 16px; }
.ba-title { font-weight: 700; font-size: 1.05rem; color: var(--ink); margin-bottom: 6px; }
.ba-file { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; margin-top: 12px; }
.ba-note { font-size: 11.5px; color: var(--muted); font-style: italic; margin-top: 4px; }
.lp-code { background: #070914; border: 1px solid rgba(255,255,255,.08); border-radius: 12px; color: #e5e7eb; font: 12.5px/1.7 var(--mono); padding: 12px 14px; margin: 10px 0 0; white-space: pre-wrap; word-break: break-all; }
.lp-code .t { color: #6aa7ff; } .lp-code .a { color: #a5b4fc; } .lp-code .s { color: #86efac; }
.ba-csv { font-size: 11px; }
.lp .ba-notes { list-style: none; padding: 0; margin: 0; font-size: 14px; display: flex; flex-direction: column; gap: 6px; }
.lp .ba-notes li { display: flex; gap: 8px; align-items: center; padding: 0; }
.lp .ba-notes li::before { content: none; }
.lp .ba-notes .lp-ic { width: 20px; height: 20px; padding: 4px; border-radius: 50%; }
.lp .ba-notes.bad .lp-ic { background: var(--bad-soft); color: var(--bad); }
.lp .ba-notes.good .lp-ic { background: var(--ok-soft); color: var(--ok); }
.lp-center-cta { text-align: center; margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 12px; }
@media (max-width: 760px) { .lp .ba-grid { grid-template-columns: minmax(0, 1fr); gap: 16px; } .ba-arrow { position: static; transform: rotate(90deg); margin: 0 auto; } }

/* noćni blokovi */
.lp-night { position: relative; isolation: isolate; overflow: hidden; background: var(--night); color: var(--night-text); margin-inline: clamp(8px, 2vw, 24px); border-radius: clamp(24px, 3vw, 36px); padding-block: clamp(72px, 9vw, 120px) !important; }
.lp-night::before { content: ""; position: absolute; inset: 0; z-index: -1; 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: 56px 56px; -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000, transparent); mask-image: radial-gradient(ellipse 60% 50% at 50% 0%, #000, transparent); }
.lp-night::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(700px 360px at 50% -8%, rgba(91,95,239,.38), transparent 70%); pointer-events: none; }
.lp-night h2, .lp-night h3 { color: #fff; }
.lp-night .lp-eyebrow { color: var(--cyan); } .lp-night .lp-eyebrow span { color: var(--night-muted); }
.lp-night .lp-lead { color: var(--night-muted); }
.lp-night a { color: #c7c9fb; }
.lp-dbento { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; margin-top: 48px; }
.lp-dt { position: relative; overflow: hidden; background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015)); border: 1px solid var(--night-line); border-radius: 24px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); padding: 24px; display: flex; flex-direction: column; gap: 10px; min-width: 0; }
.lp-dt::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 0%), rgba(106,167,255,.14), transparent 60%); opacity: 0; transition: opacity .3s; pointer-events: none; }
@media (hover: hover) and (pointer: fine) { .lp-dt:hover::before { opacity: 1; } }
.lp-dt h3 { font-size: 1.25rem; }
.lp-dt p { color: var(--night-muted); font-size: 15px; line-height: 1.6; margin: 0; }
.lp-dt1 { grid-column: span 4; } .lp-dt2 { grid-column: span 2; } .lp-dt3, .lp-dt4 { grid-column: span 3; }
.lp-dvis { position: relative; min-height: 160px; display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.lp-durl { display: flex; align-items: center; gap: 8px; height: 40px; padding: 0 12px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--night-line); font-size: 13px; color: #e5e7eb; min-width: 0; }
.lp-durl .mono { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-durl .lp-ic { color: #5ee08a; width: 14px; height: 14px; }
.lp-paths > div { display: flex; align-items: center; gap: 10px; padding: 7px 2px; border-bottom: 1px solid var(--night-line); font-size: 12.5px; color: #e5e7eb; min-width: 0; }
.lp-paths i { width: 7px; height: 7px; border-radius: 50%; background: #28c840; flex: none; }
.lp-paths span { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; }
.lp-paths b { color: #86efac; font-weight: 500; }
.lp-dns { font-size: 11.5px; color: var(--night-muted); display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.lp-mini-site { background: #fff; color: var(--ink-2); border-radius: 10px; padding: 8px 12px; font-size: 13px; transform: scale(.96); transform-origin: left top; }
.lp-mini-site > div { display: grid; grid-template-columns: 1fr auto auto; gap: 10px; align-items: center; padding: 5px 0; }
.lp-mini-site > div + div { border-top: 1px solid var(--line); }
.lp-mini-site b { color: var(--ink); }
.lp-portal { background: rgba(255,255,255,.04); border: 1px solid var(--night-line); border-radius: 14px; padding: 14px; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.lp-portal-l { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--night-muted); }
.lp-portal > b { color: #fff; font-size: 14px; font-weight: 500; }
.lp-portal-p { color: #fff; } .lp-portal-p s { color: var(--night-muted); } .lp-portal-p b { font-weight: 600; }
.lp-portal-date { font-size: 12px; border: 1px solid var(--night-line); border-radius: 8px; padding: 4px 8px; color: #e5e7eb; }
.lp-illus { position: absolute; right: 0; bottom: -2px; font-size: 12px; color: var(--night-muted); }
.lp-tl { list-style: none; margin: 0; padding: 0 0 0 18px; position: relative; display: flex; flex-direction: column; gap: 14px; }
.lp-tl::before { content: ""; position: absolute; left: 4px; top: 6px; bottom: 6px; border-left: 1px dashed rgba(255,255,255,.15); }
.lp-tl li { position: relative; display: flex; gap: 10px; align-items: center; flex-wrap: wrap; font-size: 13px; color: var(--night-muted); }
.lp-tl li i { position: absolute; left: -18px; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.3); }
.lp-tl li.cur i { background: var(--cyan); }
.lp-tl li.cur i::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: inherit; animation: lp-ping 1.8s ease-out infinite; }
.lp-tl b { color: #fff; font-weight: 500; }
.lp-strip { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 28px; color: #e5e7eb; font-size: 15px; }
.lp-strip li { display: inline-flex; gap: 8px; align-items: center; }
.lp-strip .lp-ic { color: var(--cyan); }
@media (max-width: 1023px) { .lp-dbento { grid-template-columns: repeat(2, minmax(0, 1fr)); } .lp-dt1, .lp-dt2 { grid-column: span 2; } .lp-dt3, .lp-dt4 { grid-column: span 1; } }
@media (max-width: 640px) { .lp-dbento { grid-template-columns: minmax(0, 1fr); } .lp-dt1, .lp-dt2, .lp-dt3, .lp-dt4 { grid-column: span 1; } .lp-dvis { min-height: 140px; } .lp-strip { flex-direction: column; align-items: flex-start; } }

/* kako radi */
.lp-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; position: relative; }
.lp-steps::before { content: ""; position: absolute; top: 20px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, rgba(91,95,239,0), rgba(91,95,239,.35) 15%, rgba(106,167,255,.35) 85%, rgba(106,167,255,0)); }
.lp-steps li { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.lp-steps p { font-size: 15px; margin: 0; }
.lp-badge { width: 40px; height: 40px; border-radius: 50%; border: 1px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--grad-brand) border-box; font: 500 14px var(--mono); color: var(--brand-ink); display: inline-flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px #fff; position: relative; z-index: 1; }
.lp-steps .lp-pill { margin-top: 6px; }
.lp-how-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 20px; margin-top: 48px; }
.lp-timeline { border: 1px solid var(--line); border-radius: 20px; padding: 22px 24px; background: linear-gradient(180deg, #f5f6ff, #fff); }
.lp-tnodes { list-style: none; padding: 0; margin: 8px 0 0; display: grid; gap: 10px; position: relative; }
.lp-tnodes.n3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } .lp-tnodes.n2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.lp-tnodes::before { content: ""; position: absolute; top: 5px; left: 6px; right: 6px; height: 2px; background: linear-gradient(90deg, #5b5fef, #6aa7ff, #ff5f57); border-radius: 2px; }
.lp-tnodes li { position: relative; padding-top: 22px; display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; }
.lp-tnodes i { position: absolute; top: 0; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--brand); }
.lp-tnodes .n1 i { box-shadow: 0 0 0 4px rgba(91,95,239,.2); } .lp-tnodes .n2 i { background: #ff5f57; }
.lp-tnodes b { font-size: 13px; color: var(--ink); font-weight: 600; }
.lp-split { display: grid; gap: 0; padding: 0 !important; }
.lp-split > div { padding: 22px 24px; } .lp-split > div + div { border-top: 1px solid var(--line); }
.lp-brand-label { color: var(--brand-ink); }
.lp-yours { margin: 0; padding: 0; list-style: none; counter-reset: y; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; }
.lp-yours li { counter-increment: y; display: flex; gap: 10px; }
.lp-yours li::before { content: counter(y); width: 20px; height: 20px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); font: 600 11px/18px var(--mono); text-align: center; color: var(--muted); }
.lp-ours { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-size: 14.5px; color: var(--ink-2); }
.lp-ours li { display: flex; gap: 10px; } .lp-ours .lp-ic { color: var(--brand-ink); margin-top: 2px; }
@media (max-width: 899px) { .lp-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } .lp-steps::before { display: none; } .lp-how-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 599px) {
  .lp-steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .lp-steps li { padding: 0 0 28px 56px; }
  .lp-steps li::before { content: ""; position: absolute; left: 19px; top: 40px; bottom: 0; width: 1px; background: rgba(91,95,239,.25); }
  .lp-steps li:last-child::before { display: none; }
  .lp-badge { position: absolute; left: 0; top: 0; }
  .lp-tnodes.n3, .lp-tnodes.n2 { grid-template-columns: minmax(0, 1fr); gap: 14px; }
  .lp-tnodes::before { top: 6px; bottom: 6px; left: 5px; right: auto; width: 2px; height: auto; background: linear-gradient(180deg, #5b5fef, #6aa7ff, #ff5f57); }
  .lp-tnodes li { padding: 0 0 0 26px; }
  .lp-center-cta .lp-btn { width: 100%; }
}

/* tko stoji iza */
.lp-who { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 64px; align-items: center; }
.lp-who-text > p { font-size: 16px; line-height: 1.65; margin: 18px 0 0; }
.lp-who .lp-head { margin-bottom: 0; }
.lp-facts { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 14px; font-size: 15px; color: var(--ink-2); }
.lp-facts li { display: flex; gap: 12px; align-items: center; }
.lp-ftile2 { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--line); color: var(--brand-ink); display: inline-flex; align-items: center; justify-content: center; flex: none; }
.lp-strong-link { font-weight: 600; }
.lp-idcard { padding: 0 !important; overflow: hidden; justify-self: end; width: 100%; max-width: 520px; }
.lp-idcard dl { display: grid; grid-template-columns: 150px minmax(0, 1fr); gap: 10px 16px; padding: 20px 22px; margin: 0; font-size: 14.5px; }
.lp-idcard dt { font: 11.5px var(--mono); text-transform: uppercase; letter-spacing: .08em; color: var(--muted); padding-top: 3px; }
.lp-idcard dd { margin: 0; color: var(--ink); overflow-wrap: anywhere; }
.lp-honest { grid-column: 1 / -1; margin: 8px 0 0; padding-left: 20px; border-left: 2px solid; border-image: var(--grad-brand) 1; max-width: 70ch; }
.lp-honest blockquote { margin: 0; font-size: 1.1rem; line-height: 1.6; color: var(--ink-2); }
.lp-honest figcaption { font: 12px var(--mono); color: var(--muted); margin-top: 8px; }
@media (max-width: 860px) { .lp-who { grid-template-columns: minmax(0, 1fr); gap: 36px; } .lp-idcard { justify-self: stretch; max-width: none; } }
@media (max-width: 480px) { .lp-idcard dl { grid-template-columns: minmax(0, 1fr); gap: 2px; } .lp-idcard dd { margin-bottom: 10px; } }
.lp-reviews { padding-top: 0 !important; border-top: 0; }
.lp-rev-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lp-rev { margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lp-rev blockquote { margin: 0; font-size: 15px; line-height: 1.6; color: var(--ink-2); }
.lp-rev figcaption { margin-top: auto; font-size: 14px; display: flex; flex-direction: column; } .lp-rev figcaption span { color: var(--muted); }
.lp .stars { color: #b45309; }
@media (max-width: 860px) { .lp-rev-grid { grid-template-columns: minmax(0, 1fr); } }

/* kazne */
.lp-fines-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 24px; align-items: stretch; }
.lp-toggle { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 4px; margin: 0 0 22px; border-radius: 999px; background: #f3f4f6; border: 1px solid var(--line); }
.lp-toggle label { text-align: center; padding: 9px 12px; border-radius: 999px; font: 600 14px var(--font); color: var(--text); cursor: pointer; }
.lp-toggle input:checked + label { background: #fff; color: var(--ink); box-shadow: var(--sh-1); }
.lp-toggle input:focus-visible + label { outline: 3px solid #3f43d6; outline-offset: 2px; }
.lp-fines-p { display: none; flex-direction: column; gap: 16px; }
.lp-fines:has(#oblik-obrt:checked) .p-obrt, .lp-fines:has(#oblik-doo:checked) .p-doo { display: flex; }
@supports not selector(:has(*)) { .p-obrt { display: flex; } }
.lp-bar-l { display: flex; justify-content: space-between; gap: 12px; font-size: 14.5px; margin-bottom: 6px; }
.lp-bar-l b { font-size: 15px; color: var(--ink); white-space: nowrap; font-variant-numeric: tabular-nums; }
.lp-bar-t { display: block; height: 12px; border-radius: 999px; background: #f1f2f4; overflow: hidden; }
.lp-bar-t i { display: block; height: 100%; width: var(--w); min-width: 6px; border-radius: 999px; transform-origin: left; }
.lp-bar-t i.sub { background: var(--grad-brand); }
.lp-bar-t i.fine { background: linear-gradient(90deg, rgba(198,40,40,.55), #c62828); }
.lp-fines-res { font-size: 1.0625rem !important; color: var(--ink) !important; margin-top: 4px !important; }
.lp-fines-res b { color: var(--brand-ink); }
.lp-fact-stack { display: flex; flex-direction: column; gap: 12px; }
.lp-fact { padding: 20px !important; display: flex; flex-direction: column; gap: 6px; align-items: flex-start; }
.lp-fact h3 { font-size: 16px; margin: 4px 0 0; } .lp-fact p { font-size: 14.5px; }
@media (max-width: 860px) { .lp-fines-grid { grid-template-columns: minmax(0, 1fr); } }
@media (max-width: 480px) { .lp-toggle label { font-size: 13px; padding: 9px 6px; } }

/* cijena */
.lp-pricing { position: relative; isolation: isolate; }
.lp-pricing::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(600px 320px at 30% 45%, rgba(91,95,239,.10), transparent 70%); pointer-events: none; }
.lp-stepper-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-size: 15px; color: var(--ink-2); margin-top: -24px; }
.lp-stepper { display: inline-flex; align-items: center; border: 1px solid var(--line-2); border-radius: 999px; background: #fff; box-shadow: var(--sh-1); }
.lp-stepper button { width: 44px; height: 44px; border: 0; background: none; color: var(--ink); cursor: pointer; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; }
.lp-stepper button:disabled { opacity: .4; cursor: default; }
.lp-stepper output { min-width: 3ch; text-align: center; font: 700 16px var(--font); color: var(--ink); font-variant-numeric: tabular-nums; }
.lp-stepper-help { text-align: center; font-size: 13px; color: var(--muted); margin: 8px 0 32px; }
.lp-plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.lp-plan { position: relative; display: flex; flex-direction: column; gap: 12px; background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: 28px; box-shadow: var(--sh-1); min-width: 0; }
.lp-plan-feat { border: 1px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--grad-brand) border-box; box-shadow: var(--glow); padding: 32px; }
@media (min-width: 960px) { .lp-plan-feat { transform: translateY(-8px); } }
.lp-plan-badge { position: absolute; top: -12px; left: 28px; background: var(--brand-ink); color: #fff; font: 600 12px var(--font); padding: 4px 12px; border-radius: 999px; }
.lp-plan h3 { font-size: 1.1rem; margin: 0; }
.lp-price { font-size: 56px; line-height: 1; font-weight: 700; letter-spacing: -.04em; color: var(--ink); font-variant-numeric: tabular-nums; }
.lp-price small { font-size: 15px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.lp-price-sm { font-size: 1.8rem; letter-spacing: -.02em; }
.lp-price span.tint, .lp-paybox b.tint { color: var(--brand-ink); transition: color .3s; }
.lp-plan-desc { font-size: 14.5px; margin: 0; color: var(--text); }
.lp-paybox { border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; background: #fafafa; display: flex; flex-direction: column; gap: 6px; font-size: 13px; }
.lp-plan-feat .lp-paybox { background: var(--brand-soft); border-color: rgba(91,95,239,.15); }
.lp-paybox > div { display: flex; justify-content: space-between; gap: 10px; }
.lp-paybox b { color: var(--ink); font-weight: 600; font-size: 14px; }
.lp-paybox small { color: var(--text); font-size: 12px; }
.lp-checks { list-style: none; margin: 4px 0 8px; padding: 12px 0 0; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: var(--ink-2); }
.lp-checks li { display: flex; gap: 10px; align-items: flex-start; }
.lp-checks .lp-ic { width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: var(--brand-soft); color: var(--brand-ink); margin-top: 2px; }
.lp-plan .lp-btn { margin-top: auto; }
.lp-plan-fine { font-size: 12.5px; color: var(--muted); margin: 0; text-align: center; display: flex; gap: 6px; align-items: center; justify-content: center; }
.lp-plan-shop { background: #fff; border: 1px dashed var(--line-2); box-shadow: none; }
.lp-plan-shop-text { display: flex; flex-direction: column; gap: 10px; }
.lp-guar { list-style: none; padding: 0; margin: 28px 0 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 24px; font-size: 14px; color: var(--ink-2); }
.lp-guar li { display: inline-flex; gap: 10px; align-items: center; max-width: 360px; }
.lp-guar .lp-ftile2 { width: 32px; height: 32px; }
.lp-notes { text-align: center; font-size: 13px; color: var(--muted); max-width: 720px; margin: 16px auto 0; }
@media (max-width: 959px) {
  .lp-plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lp-plan-shop { grid-column: 1 / -1; flex-direction: row; align-items: center; gap: 28px; }
  .lp-plan-shop-text { flex: 1; min-width: 0; }
  .lp-plan-shop .lp-btn { margin-top: 0; flex: none; }
}
@media (max-width: 599px) {
  .lp-plans { grid-template-columns: minmax(0, 1fr); }
  .lp-plan-shop { flex-direction: column; align-items: stretch; gap: 12px; }
  .lp-price { font-size: 44px; }
  .lp-stepper-row { flex-direction: column; gap: 8px; }
}

/* pitanja */
.lp-faq { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 64px; align-items: start; }
.lp-faq-side { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 18px; }
.lp-faq-side > p { margin: 0; font-size: 15px; }
.lp-contact { display: flex; gap: 12px; align-items: center; border-radius: 20px; padding: 20px !important; }
.lp-contact > div { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; min-width: 0; }
.lp-contact b { color: var(--ink); }
.lp-contact .lp-btn { max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
.lp-faq-side > .lp-btn { align-self: flex-start; }
.lp-acc { background: #fff; border: 1px solid var(--line); border-radius: 20px; overflow: hidden; box-shadow: var(--sh-1); }
.lp-acc details { border-bottom: 1px solid var(--line); interpolate-size: allow-keywords; }
.lp-acc details:last-child { border-bottom: 0; }
.lp-acc summary { min-height: 60px; padding: 18px 24px; font: 600 16px var(--font); color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; cursor: pointer; list-style: none; }
.lp-acc summary::-webkit-details-marker { display: none; }
.lp-acc summary::after { content: none !important; }
.lp-acc summary:hover { background: #fafafa; }
.lp-acc summary:focus-visible { outline-offset: -3px; border-radius: 10px; }
.lp-acc-ic { width: 28px; height: 28px; flex: none; border-radius: 50%; border: 1px solid var(--line-2); display: inline-flex; align-items: center; justify-content: center; transition: transform .25s var(--ease), background .25s; }
.lp-acc-ic .lp-ic { width: 14px; height: 14px; }
.lp-acc details[open] .lp-acc-ic { transform: rotate(45deg); background: var(--brand-soft); color: var(--brand-ink); border-color: transparent; }
.lp-acc details p { padding: 0 24px 20px; margin: 0; font-size: 15px; line-height: 1.65; color: var(--text); max-width: 62ch; }
@media (prefers-reduced-motion: no-preference) {
  .lp-acc details::details-content { block-size: 0; overflow: hidden; transition: block-size .3s var(--ease), content-visibility .3s allow-discrete; }
  .lp-acc details[open]::details-content { block-size: auto; }
}
.lp-legal { font-size: 13px; color: var(--muted); margin: 24px 0 0; padding-top: 16px; border-top: 1px solid var(--line); }
@media (max-width: 860px) { .lp-faq { grid-template-columns: minmax(0, 1fr); gap: 28px; } .lp-faq-side { position: static; } .lp-contact, .lp-faq-side > .lp-btn { order: 3; } }

/* završni CTA */
.lp-final { margin-block: clamp(24px, 4vw, 48px); padding: clamp(64px, 9vw, 112px) 20px !important; text-align: center; box-shadow: inset 0 0 0 1px rgba(255,255,255,.06); }
.lp-final::before { -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 100%, #000, transparent); mask-image: radial-gradient(ellipse 60% 60% at 50% 100%, #000, transparent); }
.lp-final::after { inset: auto; left: 50%; top: 100%; width: 640px; height: 640px; transform: translate(-50%, -30%); border-radius: 50%; background: conic-gradient(from 90deg, #5b5fef, #6aa7ff, #6366f1, #5b5fef); filter: blur(90px); opacity: .45; }
.lp-final-in { position: relative; max-width: 760px; margin: 0 auto; }
.lp-final-in::before { content: ""; position: absolute; left: 10%; right: 10%; top: calc(-1 * clamp(64px, 9vw, 112px)); height: 1px; background: linear-gradient(90deg, transparent, #6aa7ff, transparent); }
.lp-eyebrow-night { display: inline-flex; gap: 10px; align-items: center; color: var(--cyan) !important; }
.lp-count { display: flex; justify-content: center; gap: 10px; margin: 24px auto 32px; }
.lp-count > div { width: min(96px, 26vw); padding: 14px 6px; border-radius: 16px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); box-shadow: inset 0 1px 0 rgba(255,255,255,.06); display: flex; flex-direction: column; gap: 4px; }
.lp-count b { font: 500 40px/1 var(--mono); color: #fff; font-variant-numeric: tabular-nums; }
.lp-count > div span { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--night-muted); }
.lp-grad-night { background: linear-gradient(92deg, #a5b4fc, #6aa7ff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.lp-final-sub { color: var(--night-muted); font-size: 1.0625rem; margin: 16px auto 0; max-width: 60ch; }
.lp-online-by { display: inline-flex; gap: 8px; align-items: center; margin: 20px 0 0; padding: 8px 14px; border-radius: 999px; background: rgba(106,167,255,.12); color: #c7d7ff; font-size: 14px; }
.lp-online-by .lp-ic { width: 16px; height: 16px; }
.lp-final-alt { color: #cbd5e1 !important; font-size: 14.5px; align-self: center; }
.lp-final-micro { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; margin: 22px 0 0; font-size: 13px; color: var(--night-muted); }
.lp-final-micro span { display: inline-flex; gap: 6px; align-items: center; }
.lp-final-micro .lp-ic { color: #86efac; width: 15px; height: 15px; }
@media (max-width: 600px) { .lp-final { margin-inline: 8px; border-radius: 24px; padding: 44px 20px !important; } .lp-final::after { width: 380px; height: 380px; } .lp-count b { font-size: 32px; } }

/* footer */
.lp footer.lp-footer { padding: 64px 0 40px; border-top: 1px solid var(--line); color: var(--text); font-size: 14px; background: #fff; }
.lp-foot-grid { display: grid; grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr)); gap: 32px; }
.lp-foot-grid p { margin: 12px 0 0; font-size: 14px; }
.lp-foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.lp-foot-grid a { color: var(--ink-2); text-decoration: none; }
.lp-foot-grid a:hover { color: var(--brand-ink); text-decoration: underline; text-underline-offset: 3px; }
.lp-foot-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; font-size: 13px; color: var(--muted); }
@media (max-width: 900px) { .lp-foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .lp-foot-grid { grid-template-columns: minmax(0, 1fr); } .lp footer.lp-footer { padding-bottom: 112px; } }

/* ljepljiva traka (mobitel) */
.lp-sticky { position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 60; height: 60px; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 0 8px 0 16px; border-radius: 999px; background: rgba(11,14,26,.88); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.10); box-shadow: 0 12px 32px -8px rgba(11,14,26,.4); color: #e5e7eb; font-size: 13px; transition: transform .3s var(--ease), opacity .3s; }
.lp-sticky > span { display: inline-flex; gap: 8px; align-items: center; min-width: 0; }
.lp-sticky .lp-btn { height: 44px; }
.lp-sticky.is-off { transform: translateY(120%); opacity: 0; pointer-events: none; visibility: hidden; transition: transform .3s var(--ease), opacity .3s, visibility 0s .3s; }
@media (max-width: 767px) { body.lp.has-sticky { padding-bottom: 88px; } }
@media (min-width: 768px) { .lp-sticky { display: none !important; } }

/* otkrivanje pri skrolanju */
.reveal-ready .lp [data-reveal]:not(.is-in) { opacity: 0; transform: translateY(16px); }
.lp [data-reveal] { transition: opacity .7s var(--ease), transform .7s var(--ease); transition-delay: calc(var(--d, 0) * 70ms); }

@media (prefers-reduced-motion: reduce) {
  .lp *, .lp *::before, .lp *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal-ready .lp [data-reveal] { opacity: 1 !important; transform: none !important; }
}

/* bez JavaScripta: interaktivne kontrole landinga se ne prikazuju (sadržaj ostaje) */
html:not(.js-ready) .lp .lp-seg-wrap, html:not(.js-ready) .lp .lp-switch-wrap, html:not(.js-ready) .lp .lp-stepper-row { display: none; }

/* ===== LANDING v2: jednostavnije ===== */
.lp-sec { padding-block: clamp(64px, 8vw, 112px) !important; }
.lp-head { margin-bottom: clamp(32px, 4vw, 48px); }
.lp-hero-in { padding-bottom: clamp(48px, 6vw, 80px); }
.lp-hero-lead { max-width: 560px; }
.lp-trust { margin-top: 22px; }
.lp-hero-visual { max-width: 920px; margin-top: 56px; }
@media (min-width: 768px) { .lp-hero-grid { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); } .lp-page { padding: 24px 26px; } }
.lp-page-title { margin-bottom: 10px; }
.lp-files { gap: 10px; padding: 22px; }
.lp-caption { display: block; margin-top: 14px; font-size: 12.5px; }
@media (min-width: 1024px) { .lp-f1 { left: -40px; bottom: 28px; } }

/* stvarni primjer u jednom redu */
.lp-proof { padding-block: 22px !important; }
.lp-proof-line { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px 14px; font-size: 14.5px; color: var(--text); text-align: center; }
.lp-proof-line a { font-weight: 600; text-decoration: none; }
.lp-proof-line a:hover { text-decoration: underline; }
.lp-dot-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }
@media (max-width: 600px) { .lp-dot-sep { display: none; } .lp-proof-line { flex-direction: column; gap: 6px; } }

/* pravila: kratki popis s ikonama */
.lp-reqs { list-style: none; margin: 0 auto; padding: 0; max-width: 1000px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.lp-reqs li { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: var(--sh-1); min-width: 0; }
.lp-reqs li b { display: block; color: var(--ink); font-size: 16px; font-weight: 600; letter-spacing: -.01em; }
.lp-reqs li span:not(.lp-req-ic) { display: block; font-size: 14.5px; color: var(--text); margin-top: 2px; }
.lp-req-ic { width: 40px; height: 40px; border-radius: 12px; flex: none; display: inline-flex; align-items: center; justify-content: center; background: var(--brand-soft); color: var(--brand-ink); }
.lp-req-foot { text-align: center; font-size: 14px; color: var(--text); margin: 28px 0 0; }
@media (max-width: 900px) { .lp-reqs { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .lp-reqs { grid-template-columns: minmax(0, 1fr); } }

/* prije/poslije: manje */
.lp .ba-caption { margin-bottom: 18px; }
.ba-frame { max-width: 1000px; margin-inline: auto; }

/* tri koraka */
.lp-steps3 { list-style: none; margin: 0 auto; padding: 0; max-width: 900px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; position: relative; text-align: center; }
.lp-steps3::before { content: ""; position: absolute; top: 20px; left: 16.6%; right: 16.6%; height: 1px; background: linear-gradient(90deg, rgba(91,95,239,.15), rgba(91,95,239,.4), rgba(106,167,255,.15)); }
.lp-steps3 li { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.lp-steps3 .lp-badge { margin-bottom: 8px; }
.lp-steps3 b { color: var(--ink); font-size: 18px; font-weight: 600; }
.lp-steps3 span:not(.lp-badge) { font-size: 15px; color: var(--text); }
.lp-steps-foot { text-align: center; font-size: 14.5px; color: var(--muted); margin: 32px 0 0; }
@media (max-width: 640px) { .lp-steps3 { grid-template-columns: minmax(0, 1fr); gap: 28px; } .lp-steps3::before { display: none; } }

/* cijena: dva paketa */
.lp-plans2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; max-width: 820px; margin: 0 auto; align-items: stretch; }
.lp-plans2 .lp-plan-feat { transform: none; }
.lp-plans2 .lp-checks { margin-bottom: 12px; }
.lp-price-foot { text-align: center; font-size: 14.5px; color: var(--ink-2); margin: 26px 0 0; }
.lp-notes { margin-top: 8px; }
@media (max-width: 680px) { .lp-plans2 { grid-template-columns: minmax(0, 1fr); } }

/* pitanja: jedan stupac */
.lp-faq-simple { max-width: 760px; }
.lp-faq-more { text-align: center; font-size: 14.5px; color: var(--text); margin: 22px 0 0; }

/* završni blok */
.lp-final .lp-count { margin: 0 auto 28px; }
.lp-final h2 { margin-bottom: 4px; }
.lp-final .lp-cta-row { margin-top: 28px; }
.lp-final-alt { display: inline-block; margin-top: 14px; }

/* footer u jednom redu */
.lp footer.lp-footer { padding: 36px 0 32px; }
.lp-foot-row { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.lp-foot-links { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14px; }
.lp-foot-links a { color: var(--ink-2); text-decoration: none; }
.lp-foot-links a:hover { color: var(--brand-ink); text-decoration: underline; }
.lp-foot-legal { font-size: 12.5px; color: var(--muted); margin: 18px 0 0; }
@media (max-width: 560px) { .lp footer.lp-footer { padding-bottom: 100px; } }
