/* Webnite shared CSS — izvozen iz main index.html za uporabo na blog straneh */

/* ===========================================================
   Webnite — static site styles
   Fonts: Plus Jakarta Sans (headings) + Inter (body)
   =========================================================== */

:root {
  --accent: #7c3aed;
  --accent-dark: #6d28d9;
  --violet: #7c3aed;
  --ink: #1A1A1F;
  --ink-soft: #6B6B72;
  --ink-faint: #9aa0ad;
  --navy: #1c2334;
  --navy-2: #232c41;
  --bg: #FAFAF8;
  --bg-soft: #F0EBE3;
  --border: #E7E3DA;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow: 0 12px 40px rgba(20, 28, 60, .08);
  --shadow-lg: 0 24px 60px rgba(20, 28, 60, .14);
  --maxw: 1180px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, .font-display {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.accent { color: var(--accent); }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 9999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 22px rgba(124, 58, 237, .32);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124, 58, 237, .4); }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); background: #000; }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.25);
}
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: transparent;
  padding: 14px 18px 0;
}
.site-header .header-inner {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  height: 58px;
  padding: 0 10px 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: rgba(255,255,255,.72);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 9999px;
  box-shadow: 0 10px 34px rgba(16,24,40,.13), 0 2px 8px rgba(16,24,40,.05);
}
.brand { display: flex; align-items: center; }
.brand img { height: 30px; width: auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.nav a.nav-link, .nav .dropdown > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: color .15s, background .15s;
}
.nav a.nav-link:hover, .nav .dropdown:hover > span { color: var(--accent); }
.nav a.nav-link.active { color: var(--accent); }

.dropdown { position: relative; }
/* invisible hover bridge so the menu doesn't close in the gap */
.dropdown::after { content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 16px; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .18s ease, transform .18s ease;
}
.dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown-menu a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--ink-soft);
  transition: background .15s, color .15s;
}
.dropdown-menu a:hover { background: var(--bg-soft); color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.header-actions .btn { padding: 10px 20px; font-size: 14px; }
.lang {
  display: inline-flex;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 3px;
}
.lang a, .lang button {
  border: none;
  background: transparent;
  font-family: inherit;
  font-weight: 700;
  font-size: 12.5px;
  color: var(--ink-faint);
  padding: 5px 12px;
  border-radius: 9999px;
  cursor: pointer;
  line-height: 1;
}
.lang a:hover, .lang button:hover { color: var(--ink); }
.lang a.active, .lang button.active { background: var(--accent); color: #fff; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.hamburger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .25s; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  background: #0c0e14;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image: none;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(8,10,16,.92) 0%, rgba(8,10,16,.78) 38%, rgba(8,10,16,.35) 70%, rgba(8,10,16,.15) 100%);
  z-index: 1;
}
.hero .container { position: relative; z-index: 2; }
.hero-content { max-width: 620px; padding: 90px 0; }
.hero h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
}
.hero h1 .accent { color: #a78bfa; }
.hero p {
  color: rgba(255,255,255,.8);
  font-size: clamp(16px, 2vw, 19px);
  margin: 22px 0 34px;
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(28px, 4vw, 42px); }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead { color: var(--ink-soft); font-size: 18px; margin-top: 16px; }

/* ---------- Service cards (home) ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.scard {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: column;
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.scard-img { aspect-ratio: 3/2; overflow: hidden; background: #0c0e14; }
.scard-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.scard:hover .scard-img img { transform: scale(1.05); }
.scard-body { padding: 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.scard-body h3 { font-size: 21px; }
.scard-body p { color: var(--ink-soft); font-size: 15px; flex: 1; }
.link-arrow {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--accent); font-weight: 700; font-size: 14.5px;
  font-family: "Plus Jakarta Sans", sans-serif;
}
.link-arrow svg { width: 15px; height: 15px; transition: transform .2s; }
.link-arrow:hover svg { transform: translateX(4px); }

/* Whole service card clickable -> jumps to that services category.
   Stretched-link overlay; the inquiry CTA sits above it and stays clickable. */
.scard-link { display: block; }
.scard-link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.scard-body { position: relative; }
.scard .link-arrow { position: relative; z-index: 2; }

/* ---------- Agency / process ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.split h2 { font-size: clamp(28px, 4vw, 44px); }
.split .lead { margin-top: 22px; max-width: 460px; }
.steps { display: flex; flex-direction: column; gap: 30px; }
.step { display: grid; grid-template-columns: 48px 1fr; gap: 18px; }
.step-num { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 18px; color: var(--ink-faint); padding-top: 2px; }
.step h4 { font-size: 18px; margin-bottom: 5px; }
.step p { color: var(--ink-soft); font-size: 15px; }

/* ---------- Dark feature band ---------- */
.band-dark { background: var(--navy); color: #fff; padding: 80px 0; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.fcard {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.fcard .ficon {
  width: 42px; height: 42px; display: flex; align-items: center; justify-content: center;
  color: #a78bfa; margin-bottom: 18px;
}
.fcard .ficon svg { width: 26px; height: 26px; }
.fcard h4 { color: #fff; font-size: 17px; margin-bottom: 9px; }
.fcard p { color: rgba(255,255,255,.62); font-size: 14px; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; background: var(--bg-soft); border-radius: 24px; padding: 22px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; }
.faq-item:last-child { margin-bottom: 0; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .chev { flex: none; transition: transform .25s ease; color: var(--ink-faint); }
.faq-item[open] summary .chev { transform: rotate(180deg); color: var(--accent); }
.faq-item .faq-a { padding: 0 24px 22px; color: var(--ink-soft); font-size: 15px; }

/* ---------- CTA ---------- */
.cta { text-align: left; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.cta h2 { font-size: clamp(28px, 4vw, 42px); max-width: 560px; }
.cta p { color: var(--ink-soft); font-size: 17px; margin-top: 16px; max-width: 520px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Services page ---------- */
.page-hero { padding: 90px 0 40px; }
.page-hero h1 { font-size: clamp(34px, 5.5vw, 56px); }
.page-hero .lead { max-width: 600px; }

.srow { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; padding: 48px 0; scroll-margin-top: 96px; }
.srow.reverse .srow-media { order: 2; }
.srow-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/2; background:#0c0e14; }
.srow-media img { width: 100%; height: 100%; object-fit: cover; }
.srow-text h3 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 16px; }
.srow-text p { color: var(--ink-soft); font-size: 16px; margin-bottom: 22px; }
.check-list { list-style: none; display: grid; gap: 12px; margin-bottom: 28px; }
.check-list li { display: flex; align-items: center; gap: 11px; font-weight: 500; font-size: 15.5px; }
.check-list svg { flex: none; width: 20px; height: 20px; color: var(--accent); }

/* ---------- Service detail pages ---------- */
.svc-hero { padding: 36px 0 56px; }
.svc-hero .back-link { margin-bottom: 24px; }
.svc-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.svc-hero-text h1 { font-size: clamp(32px, 4.6vw, 50px); margin: 4px 0 18px; }
.svc-hero-text .lead { max-width: 540px; margin-bottom: 26px; }
.svc-hero-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; background: #0c0e14; }
.svc-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.svc-hl { list-style: none; display: grid; gap: 18px; margin-top: 30px; }
.svc-hl li { display: flex; gap: 14px; align-items: center; }
.svc-hl .ic { flex: none; width: 42px; height: 42px; border-radius: 12px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; }
.svc-hl .ic svg { width: 21px; height: 21px; color: var(--accent); }
.svc-hl strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: 15.5px; margin-bottom: 2px; }
.svc-hl span { color: var(--ink-soft); font-size: 14px; }

.svc-h2 { font-size: clamp(26px, 3.6vw, 38px); text-align: center; margin-bottom: 14px; }
.svc-sub { text-align: center; color: var(--ink-soft); font-size: 17px; max-width: 620px; margin: 0 auto 46px; }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.svc-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px 18px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.svc-card .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; color: var(--accent); margin-bottom: 14px; }
.svc-card .ic svg { width: 20px; height: 20px; }
.svc-card h4 { font-size: 16px; margin-bottom: 6px; }
.svc-card p { color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; flex: 1; }
.svc-card .num { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 15px; color: #cdd2de; margin-top: 14px; }

/* 2-column: content on the left, inquiry form on the right */
.svc-main { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; align-items: start; }
.svc-main h2 { font-size: clamp(24px, 3vw, 32px); margin-bottom: 24px; }
.svc-form .form-card { position: sticky; top: 92px; }
.svc-form .form-card .form-sub { margin-bottom: 22px; }
.svc-form-center { max-width: 600px; margin: 0 auto; }

.svc-benefits-box { margin-top: 24px; border: 1px solid var(--border); border-radius: 16px; padding: 26px; background: #fff; box-shadow: var(--shadow-sm); }
.svc-benefits-box .bh { display: flex; align-items: center; gap: 12px; }
.svc-benefits-box .bh .ic { flex: none; width: 40px; height: 40px; border-radius: 50%; background: rgba(124,58,237,.1); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.svc-benefits-box .bh .ic svg { width: 20px; height: 20px; }
.svc-benefits-box h3 { font-size: 18px; }
.svc-benefits-box > p { color: var(--ink-soft); font-size: 14.5px; margin: 10px 0 0; }
.svc-benefits-box .check-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 20px; }
.svc-benefits-box .check-list li { font-size: 14px; }

/* pricing packages */
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.price-card.featured { border: 1.5px solid var(--accent); box-shadow: 0 16px 44px rgba(124,58,237,.16); }
.price-name { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 16px; color: var(--ink-soft); }
.price-amount { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 800; font-size: 25px; color: var(--ink); margin: 6px 0 18px; letter-spacing: -0.02em; }
.price-card .check-list { margin: 0; gap: 11px; }
.price-card .check-list li { font-size: 14px; align-items: flex-start; font-weight: 500; }
.price-card .check-list svg { margin-top: 3px; }
.price-tag { position: absolute; top: -11px; right: 20px; background: var(--accent); color: #fff; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 11.5px; letter-spacing: .04em; padding: 5px 12px; border-radius: 9999px; }
.price-note { text-align: center; color: var(--ink-faint); font-size: 13.5px; margin-top: 24px; }

/* platform brand logos — small, discreet list (advertising page) */
.plat-list { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 18px 36px; max-width: 920px; margin: 0 auto; }
.plat-row { display: flex; gap: 14px; align-items: flex-start; }
.plat-ic { flex: none; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.plat-ic svg { width: 24px; height: 24px; }
.plat-row strong { display: block; font-family: "Plus Jakarta Sans", sans-serif; font-size: 15px; margin-bottom: 2px; }
.plat-row > div > span { color: var(--ink-soft); font-size: 13.5px; line-height: 1.5; }

/* clickable pricing packages */
.price-card[data-pkg] { cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.price-card[data-pkg]:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.price-pick { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--border); display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-weight: 700; font-size: 14px; font-family: "Plus Jakarta Sans", sans-serif; }
.price-card.featured .price-pick { }
.form-flash { animation: formflash 1.2s ease; }
@keyframes formflash { 0%,100% { box-shadow: var(--shadow); } 30% { box-shadow: 0 0 0 3px rgba(124,58,237,.5), var(--shadow-lg); } }

@media (max-width: 980px) {
  .svc-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .svc-hero-media { order: -1; }
  .svc-main { grid-template-columns: 1fr; gap: 30px; }
  .svc-form .form-card { position: static; }
}
@media (max-width: 560px) {
  .svc-grid { grid-template-columns: 1fr; }
  .svc-benefits-box .check-list { grid-template-columns: 1fr; }
}

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.info-list { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.info-card {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.info-card .ic {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  background: rgba(124,58,237,.1); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.info-card .ic svg { width: 22px; height: 22px; }
.info-card .label { font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.info-card .val { font-weight: 700; font-family: "Plus Jakarta Sans", sans-serif; }
.status-card {
  display: flex; align-items: center; gap: 14px;
  background: #ecfdf3; border: 1px solid #abefc6; border-radius: 16px; padding: 18px 20px;
}
.status-dot { width: 11px; height: 11px; border-radius: 50%; background: #17b26a; flex: none; box-shadow: 0 0 0 4px rgba(23,178,106,.18); }
.status-card .label { font-weight: 700; color: #067647; font-family: "Plus Jakarta Sans", sans-serif; }
.status-card .sub { font-size: 13.5px; color: #4a8f6e; }

.form-card { background: #fff; border: 1px solid var(--border); border-radius: 22px; padding: 34px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 22px; margin-bottom: 6px; }
.form-card .form-sub { color: var(--ink-faint); font-size: 14px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13.5px; font-weight: 600; color: var(--ink-soft); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--border); border-radius: 12px;
  background: var(--bg-soft); transition: border .15s, background .15s;
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235b6170' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--accent); background-color: #fff; }
.field textarea { resize: vertical; min-height: 120px; }
.form-card .btn-primary { width: 100%; justify-content: center; margin-top: 6px; }
.form-msg { margin-top: 16px; padding: 13px 16px; border-radius: 12px; font-size: 14.5px; font-weight: 600; display: none; }
.form-msg.ok { display: block; background: #ecfdf3; border: 1px solid #abefc6; color: #067647; }
.form-msg.err { display: block; background: #fef3f2; border: 1px solid #fecdca; color: #b42318; }

/* ---------- Legal / cookies page ---------- */
.back-link { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-soft); font-weight: 600; font-size: 14.5px; margin-bottom: 28px; }
.back-link:hover { color: var(--accent); }
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 10px; }
.legal .updated { color: var(--ink-faint); font-size: 14.5px; margin-bottom: 40px; }
.legal h2 { font-size: 24px; margin: 38px 0 14px; }
.legal h3 { font-size: 17px; margin: 22px 0 6px; }
.legal p { color: var(--ink-soft); margin-bottom: 14px; }
.legal .data-box { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 16px; padding: 24px 26px; margin-top: 14px; }
.legal .data-box p { margin-bottom: 4px; color: var(--ink); }

/* ---------- Footer ---------- */
.site-footer { position: relative; background: linear-gradient(180deg,#232b3e 0%,#1a2130 100%); color: #fff; padding: 72px 0 30px; overflow: hidden; }
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(80% 90% at 50% 0%, rgba(255,255,255,.045), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.site-footer .container { position: relative; z-index: 1; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-brand img { height: 30px; margin-bottom: 18px; }
.footer-brand p { color: rgba(255,255,255,.6); font-size: 14.5px; max-width: 320px; }
.footer-col h5 { font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); margin-bottom: 18px; font-family: "Plus Jakarta Sans", sans-serif; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { color: rgba(255,255,255,.78); font-size: 14.5px; }
.footer-col a:hover { color: #fff; }
.footer-col .muted { color: rgba(255,255,255,.55); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 26px; flex-wrap: wrap; }
.footer-bottom p { color: rgba(255,255,255,.5); font-size: 13.5px; }
.footer-bottom a { color: rgba(255,255,255,.7); font-size: 13.5px; }
.footer-bottom a:hover { color: #fff; }
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-brand .f-tag { display: inline-flex; align-items: center; gap: 9px; font-family: "Space Mono", monospace; font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-top: 6px; }
.footer-brand .f-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; box-shadow: 0 0 0 4px rgba(52,211,153,.16); flex: none; }
.footer-contact .f-email { font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 16px; color: #fff !important; }
.footer-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: "Plus Jakarta Sans", sans-serif; font-weight: 700; font-size: 14px; color: #fff !important; background: rgba(124,58,237,.92); padding: 11px 20px; border-radius: 9999px; transition: background .18s ease, transform .18s ease, box-shadow .18s ease; box-shadow: 0 8px 22px rgba(124,58,237,.3); }
.footer-cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(124,58,237,.4); }
.footer-cta svg { width: 15px; height: 15px; }
/* footer spans the full page width (same as home) — not the narrow article container */
.site-footer .container { max-width: 2440px; padding: 0 clamp(24px, 5.5vw, 150px); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Mobile nav panel ---------- */
.mobile-panel { display: none; }

/* ===========================================================
   Responsive
   =========================================================== */
@media (max-width: 980px) {
  .cards-3 { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .srow, .srow.reverse { grid-template-columns: 1fr; gap: 28px; }
  .srow.reverse .srow-media { order: 0; }
}

@media (max-width: 760px) {
  .nav, .header-actions .btn { display: none; }
  .header-actions .lang { display: inline-flex; }
  .hamburger { display: flex; }
  .header-actions { gap: 8px; }
  .section { padding: 64px 0; }
  .band-dark { padding: 56px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 64px 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; }

  /* mobile slide-down panel */
  .mobile-panel {
    display: block;
    position: fixed;
    top: 78px; left: 14px; right: 14px;
    background: rgba(255,255,255,.95);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: 0 18px 50px rgba(16,24,40,.18);
    padding: 14px 18px 18px;
    transform: translateY(-130%);
    transition: transform .3s ease, opacity .3s ease;
    z-index: 199;
  }
  .mobile-panel.open { transform: translateY(0); }
  .mobile-panel a { display: block; padding: 13px 4px; font-weight: 600; color: var(--ink); border-bottom: 1px solid var(--border); }
  .mobile-panel a:last-of-type { border-bottom: none; }
  .mobile-panel .btn-primary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    padding: 15px 20px;
    color: #fff;
    border-bottom: none;
  }
}

@media (max-width: 460px) {
  .footer-top { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
}

/* Clickable logo (header brand already <a>, footer wrapped in .brand-footer) */
.logo-mark { cursor: pointer; }
.brand, .brand-footer { display: inline-block; text-decoration: none; line-height: 0; }
.brand:focus-visible, .brand-footer:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }

/* Privacy notice under contact form */
.form-consent { margin-top: 14px; margin-bottom: 0; font-size: 12.5px; line-height: 1.5; color: var(--ink-faint); text-align: center; }
.form-consent a { color: var(--ink-soft); text-decoration: underline; }

/* ===========================================================
   Cookie consent banner (Consent Mode v2, granular)
   =========================================================== */
.cookie-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3000;
  padding: 16px;
  transform: translateY(140%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.cookie-bar.show { transform: translateY(0); pointer-events: auto; }
.cookie-inner {
  max-width: 720px;
  margin: 0 auto;
  background: var(--navy);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 20px 55px rgba(0,0,0,.32);
  padding: 24px 26px;
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}
.cookie-main, .cookie-settings { display: block; }
.cookie-text {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.cookie-text a { color: #fff; text-decoration: underline; }
/* Equal-size primary & secondary buttons (GDPR: reject must be as visible as accept) */
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.btn-cookie {
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  cursor: pointer;
  flex: 1 1 160px;
  min-height: 44px;
  transition: background .15s, border-color .15s, opacity .15s;
}
.btn-cookie-primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn-cookie-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
.btn-cookie-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-cookie-secondary:hover { border-color: rgba(255,255,255,.85); }
/* Settings link (subtle, below primary actions) */
.cookie-settings-link {
  display: inline-block;
  margin-top: 14px;
  background: none; border: 0; padding: 0;
  color: rgba(255,255,255,.75);
  font-family: inherit;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}
.cookie-settings-link:hover { color: #fff; }
/* Settings panel */
.cookie-settings h4 {
  font-size: 17px;
  margin: 0 0 14px;
  color: #fff;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
}
.cookie-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cookie-row > div { flex: 1; min-width: 0; }
.cookie-row strong {
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  margin-bottom: 3px;
}
.cookie-small {
  margin: 0;
  font-size: 12.5px;
  line-height: 1.5;
  color: rgba(255,255,255,.65);
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}
.cookie-toggle input { opacity: 0; width: 0; height: 0; }
.cookie-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,.2);
  transition: background .2s;
  border-radius: 34px;
}
.cookie-slider::before {
  content: "";
  position: absolute;
  height: 18px; width: 18px;
  left: 3px; top: 3px;
  background: #fff;
  transition: transform .2s;
  border-radius: 50%;
}
.cookie-toggle input:checked + .cookie-slider { background: var(--accent); }
.cookie-toggle input:checked + .cookie-slider::before { transform: translateX(20px); }
.cookie-toggle input:disabled + .cookie-slider { opacity: .7; cursor: not-allowed; }
.cookie-save { width: 100%; margin-top: 16px; flex: none; }
@media (max-width: 620px) {
  .cookie-inner { padding: 20px 18px; }
  .cookie-actions { width: 100%; }
  .btn-cookie { flex: 1 1 100%; padding: 13px 16px; }
}

/* ---- single-file additions ---- */
[hidden]{display:none !important;}
.logo-mark{display:inline-block;width:150px;height:30px;vertical-align:middle;background:none left center/contain no-repeat;}
.footer-brand .logo-mark{background:none left center/contain no-repeat;margin-bottom:18px;}
.scard-img,.srow-media,.svc-hero-media{background-size:cover;background-position:center;background-repeat:no-repeat;}
.media-web{background-image:none;}
.media-logo{background-image:none;}
.media-video{background:linear-gradient(135deg,#1c2334 0%,#6d28d9 60%,#7c3aed 100%);position:relative;}
.media-video::before{content:'';position:absolute;left:50%;top:50%;width:64px;height:64px;transform:translate(-50%,-50%);background:rgba(255,255,255,.15);border-radius:50%;}
.media-video::after{content:'';position:absolute;left:50%;top:50%;transform:translate(-30%,-50%);border:14px solid transparent;border-left:22px solid #fff;}
.media-ads{background-image:none;}


/* ===========================================================
   Article readability + signature blocks (centralized)
   Used by clanki/*.html + en/tips/*.html
   =========================================================== */
.article-body { max-width: 72ch; margin-inline: auto; }

/* Pull-quote — clean neutral left rule, larger italic, no chevron */
.pull-quote {
  position: relative;
  margin: 44px 0;
  padding: 4px 0 4px 32px;
  border-left: 2px solid var(--border);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 28px);
  line-height: 1.38;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.pull-quote cite { display: block; margin-top: 12px; font-style: normal; font-weight: 600; font-size: 14px; color: var(--ink-soft); }

/* Key takeaways block ("Ključno" / "Key takeaways") */
.key-takeaways {
  margin: 40px 0 8px;
  padding: 26px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.key-takeaways h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800; font-size: 13px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-soft); margin-bottom: 16px;
}
.key-takeaways ul { list-style: none; margin: 0; display: grid; gap: 11px; }
.key-takeaways li { position: relative; padding-left: 22px; font-size: 15.5px; line-height: 1.55; color: var(--ink); }
.key-takeaways li::before {
  content: ""; position: absolute; left: 0; top: 8px;
  width: 7px; height: 7px; border-radius: 2px;
  background: var(--ink); transform: rotate(45deg);
}

/* ===========================================================
   Reading-progress indicator — clean neutral hairline
   Centralized — used by clanki/*.html + en/tips/*.html
   Markup hook:  <div class="wprogress" id="progress" ...>
   JS sets  --wp  (0..1)  on the host; we drive a scaleX fill only.
   No chevron / glyph — a quiet hairline progress bar, mostly neutral
   with at most a faint violet edge.
   =========================================================== */
.wprogress {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  height: 2px;             /* slim hairline rail only */
  z-index: 99;
  pointer-events: none;
  --wp: 0;                 /* scroll progress 0..1, set by JS */
}
/* slim quiet rail */
.wprogress .wp-rail {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--border);
  opacity: .7;
}
/* fill — compositor-friendly scaleX, never animating width.
   Near-neutral ink with only a faint violet edge, not a violet bar. */
.wprogress .wp-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform-origin: left center;
  transform: scaleX(var(--wp));
  background: linear-gradient(90deg, var(--ink-soft) 0%, var(--ink-soft) 85%, var(--accent) 100%);
  will-change: transform;
}
/* chevron playhead removed entirely (signature W kept to the logo only) */
.wprogress .wp-head { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  .wprogress .wp-fill { transform: scaleX(var(--wp)); transition: none; }
  .wprogress .wp-rail { opacity: .7; }
}

/* === Logo overrides za blog (reference file path, ne base64) === */
.logo-mark {
  display: inline-block;
  width: 150px;
  height: 30px;
  vertical-align: middle;
  background: url("./logo.png") left center / contain no-repeat;
  cursor: pointer;
}
.footer-brand .logo-mark {
  background: url("./logo-footer.png") left center / contain no-repeat;
  margin-bottom: 18px;
}


/* Footer social icons (added) */
.footer-social{display:flex;gap:10px;margin-top:18px;}
.footer-social a{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:10px;color:#fff;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.14);transition:background .15s ease,border-color .15s ease,transform .15s ease;}
.footer-social a:hover{background:var(--accent);border-color:var(--accent);transform:translateY(-2px);}
.footer-social svg{display:block;}
