:root {
  /* — jadranska paleta — */
  --navy-900: #052733;
  --navy-800: #05414F;
  --navy-700: #05505A;
  --teal-700: #007786;
  --teal-600: #00606D;
  --teal-050: #E0F2F3;
  --turq-500: #00C2A8;
  --turq-200: #9BDCD2;
  --coral-500: #FF6B68;
  --coral-050: #FFEBEA;
  --sun-300: #FAD780;

  /* — podloge — */
  --sand: #FBF8F3;
  --canvas: #F2F7F9;
  --surface: #FFFFFF;
  --line: #DFE9EC;
  --line-soft: #EDF3F5;

  /* — tekst — */
  --ink: #16232B;
  --ink-2: #405A66;
  --ink-3: #7D96A1;
  --on-dark: #FFFFFF;
  --on-dark-2: rgba(255,255,255,.76);
  --on-dark-3: rgba(255,255,255,.55);

  --radius-s: 10px;
  --radius: 16px;
  --radius-l: 22px;
  --radius-xl: 30px;

  --shadow-s: 0 1px 2px rgba(5,39,51,.05), 0 2px 8px rgba(5,39,51,.05);
  --shadow-m: 0 2px 6px rgba(5,39,51,.05), 0 12px 30px rgba(5,39,51,.08);
  --shadow-l: 0 4px 12px rgba(5,39,51,.06), 0 30px 70px rgba(5,39,51,.16);

  --wrap: 1180px;
  --gutter: 24px;

  --sans: 'Manrope', 'Manrope Fallback', -apple-system, BlinkMacSystemFont,
          "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --header-h: 68px;
}

/* ---------------------------------------------------------------- baza */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* Sticky zaglavlje ne smije pokriti naslov sekcije na koju se skoči. */
  scroll-padding-top: calc(var(--header-h) + 18px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.62;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { max-width: 100%; display: block; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-700); }

h1, h2, h3, h4 { margin: 0; letter-spacing: -0.03em; line-height: 1.1; font-weight: 750; }
p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--turq-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.wrap-narrow { max-width: 820px; }
.wrap-wide { max-width: 1340px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ------------------------------------------------------------ tipografija */
.eyebrow {
  font-size: 12px; font-weight: 720; letter-spacing: .17em; text-transform: uppercase;
  color: var(--teal-700); margin-bottom: 14px;
}
.on-dark .eyebrow, .eyebrow.on-dark { color: var(--turq-500); }

.h-display { font-size: clamp(36px, 5.6vw, 64px); font-weight: 800; letter-spacing: -0.042em; line-height: 1.015; }
.h-section { font-size: clamp(29px, 3.7vw, 46px); font-weight: 780; letter-spacing: -0.038em; line-height: 1.07; }
.h-sub     { font-size: clamp(20px, 2.2vw, 26px); font-weight: 720; letter-spacing: -0.028em; }

.lead { font-size: clamp(17px, 1.6vw, 20px); font-weight: 450; line-height: 1.56; color: var(--ink-2); letter-spacing: -0.008em; }
.on-dark .lead { color: var(--on-dark-2); }
.muted { color: var(--ink-2); }
.small { font-size: 14.5px; }
.tiny  { font-size: 13px; color: var(--ink-3); }

/* ------------------------------------------------------------- sekcije */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-tight { padding: clamp(48px, 6vw, 76px) 0; }
.bg-canvas { background: var(--canvas); }
.bg-sand   { background: var(--sand); }
.bg-dark {
  background:
    radial-gradient(1100px 620px at 14% -10%, rgba(0,194,168,.16), transparent 62%),
    radial-gradient(900px 560px at 92% 8%, rgba(0,119,134,.32), transparent 60%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 62%, var(--navy-700) 100%);
  color: var(--on-dark);
}
.on-dark h1, .on-dark h2, .on-dark h3 { color: var(--on-dark); }

.section-head { max-width: 760px; margin-bottom: clamp(34px, 4.4vw, 56px); }
.section-head p { margin-top: 16px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* -------------------------------------------------------------- dugmad */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font: inherit; font-size: 15.5px; font-weight: 620; letter-spacing: -0.006em;
  padding: 13px 22px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: transform .16s ease, box-shadow .16s ease, background-color .16s ease, border-color .16s ease, color .16s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--teal-700); color: #fff; box-shadow: 0 2px 5px rgba(0,96,109,.25), 0 10px 26px rgba(0,96,109,.22);
}
.btn-primary:hover { background: var(--teal-600); color: #fff; box-shadow: 0 3px 8px rgba(0,96,109,.28), 0 16px 34px rgba(0,96,109,.26); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--teal-700); color: var(--teal-700); }
.btn-on-dark { background: #fff; color: var(--navy-900); }
.btn-on-dark:hover { background: #fff; color: var(--navy-900); box-shadow: 0 4px 14px rgba(0,0,0,.2), 0 20px 44px rgba(0,0,0,.22); }
.btn-outline-dark { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.34); }
.btn-outline-dark:hover { background: rgba(255,255,255,.13); color: #fff; border-color: rgba(255,255,255,.6); }
.btn-lg { padding: 16px 28px; font-size: 16.5px; }
.btn-sm { padding: 9px 16px; font-size: 14.5px; }
.btn .ico { width: 17px; height: 17px; flex: none; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.reassure { font-size: 14px; color: var(--ink-3); margin-top: 16px; }
.on-dark .reassure { color: var(--on-dark-3); }

/* ------------------------------------------------------------ zaglavlje */
.site-header {
  position: sticky; top: 0; z-index: 90;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 1px 14px rgba(5,39,51,.06); }
.site-header .wrap { display: flex; align-items: center; gap: 18px; }

.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); flex: none; }
.brand:hover { color: var(--ink); }
.brand svg { width: 26px; height: 26px; flex: none; }
.brand-name { font-size: 18.5px; font-weight: 750; letter-spacing: -0.028em; line-height: 1; }
.brand-name .e { opacity: .55; }
.brand-tag { display: block; font-size: 11px; font-weight: 500; letter-spacing: .002em; color: var(--ink-3); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 4px; margin-left: 14px; }
.nav a {
  color: var(--ink-2); font-size: 15px; font-weight: 570; letter-spacing: -0.004em;
  padding: 9px 13px; border-radius: 9px;
  transition: color .15s ease, background-color .15s ease;
}
.nav a:hover { color: var(--ink); background: var(--canvas); }
.header-cta { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.header-cta .link-login { font-size: 15px; font-weight: 580; color: var(--ink-2); padding: 9px 12px; border-radius: 9px; }
.header-cta .link-login:hover { color: var(--ink); background: var(--canvas); }

.burger {
  display: none; margin-left: auto; width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-soft); background: var(--canvas); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.burger span { display: block; width: 19px; height: 1.8px; background: var(--ink); border-radius: 2px; position: relative; transition: transform .2s ease, opacity .2s ease; }
.burger span::before, .burger span::after {
  content: ''; position: absolute; left: 0; width: 19px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.burger span::before { top: -6px; } .burger span::after { top: 6px; }
.burger[aria-expanded="true"] span { background: transparent; }
.burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0; z-index: 88;
  background: #fff; padding: 18px var(--gutter) 34px;
  display: flex; flex-direction: column; gap: 4px;
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}
.mobile-nav.is-open { transform: none; opacity: 1; pointer-events: auto; }
.mobile-nav a.m-link {
  font-size: 19px; font-weight: 620; letter-spacing: -0.02em; color: var(--ink);
  padding: 15px 4px; border-bottom: 1px solid var(--line-soft);
}
.mobile-nav .m-actions { margin-top: 22px; display: grid; gap: 10px; }
.mobile-nav .btn { width: 100%; }
body.nav-open { overflow: hidden; }

/* ------------------------------------------------------------------ hero */
.hero {
  position: relative; overflow: hidden;
  padding: clamp(52px, 7vw, 92px) 0 clamp(0px, 3vw, 24px);
  background:
    radial-gradient(1200px 700px at 12% -14%, rgba(0,194,168,.17), transparent 60%),
    radial-gradient(1000px 640px at 96% 4%, rgba(0,119,134,.34), transparent 58%),
    linear-gradient(168deg, var(--navy-900) 0%, var(--navy-800) 58%, #064450 100%);
  color: var(--on-dark);
}
.hero::after {
  /* Jedva vidljiva jadranska fotografija: atmosfera, ne sadržaj. */
  content: ''; position: absolute; inset: auto 0 0 0; height: 62%;
  background: url('../img/photo/jadran.webp') center 38% / cover no-repeat;
  opacity: .11; mix-blend-mode: screen; pointer-events: none;
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: clamp(34px, 5vw, 52px); }
/* Mjera naslova, ne cijele kolone.
   Naslov je dvodjelan i svaki dio treba svoj red na širokom desktopu.
   Duži red ("Manje administracije. Više kontrole.") mjeri oko 990 px pri
   64 px / 800, pa 1080 px daje dovoljno zraka i za nešto širi font, a
   ostaje unutar 1132 px koliko `.wrap` uopšte nudi.
   Ovo je MAX-širina: na tabletu i telefonu je viewport ionako uži, pa se
   tekst prelama sam, bez forsiranja desktop preloma. Podnaslov ima svoju
   mjeru (`.hero .lead`, 620 px) i ostaje nepromijenjen. */
.hero-copy { max-width: 1080px; }
.hero h1 { margin-bottom: 20px; }
.hero .lead { max-width: 620px; }
.hero .cta-row { margin-top: 30px; }

.hero-pill {
  display: inline-flex; align-items: center; gap: 9px; margin-bottom: 22px;
  font-size: 13px; font-weight: 600; letter-spacing: .01em;
  color: var(--on-dark-2); background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.16); border-radius: 999px; padding: 7px 15px 7px 11px;
}
.hero-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--turq-500); flex: none; box-shadow: 0 0 0 4px rgba(0,194,168,.22); }

/* okvir pregledača oko snimka proizvoda */
.frame {
  border-radius: var(--radius-l); overflow: hidden; background: #fff;
  box-shadow: var(--shadow-l); border: 1px solid rgba(255,255,255,.14);
}
.frame-bar {
  display: flex; align-items: center; gap: 8px; padding: 11px 15px;
  background: #F4F7F8; border-bottom: 1px solid #E5EDEF;
}
.frame-bar i { width: 10px; height: 10px; border-radius: 50%; background: #D6E0E3; flex: none; }
.frame-url {
  margin-left: 8px; font-size: 12.5px; color: #7D96A1; background: #fff;
  border: 1px solid #E5EDEF; border-radius: 999px; padding: 4px 14px;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 320px;
}
.frame img { width: 100%; height: auto; display: block; }
.hero-frame { margin-top: clamp(38px, 5vw, 58px); }
.hero-frame .frame { transform: translateY(0); }

.hero-strip {
  display: flex; flex-wrap: wrap; gap: 10px 30px; margin-top: 26px;
  font-size: 14px; color: var(--on-dark-2);
}
.hero-strip span { display: inline-flex; align-items: center; gap: 8px; }
.hero-strip svg { width: 15px; height: 15px; color: var(--turq-500); flex: none; }

/* ------------------------------------------------------- poruka + brojke */
.promise { display: grid; gap: clamp(28px, 4vw, 48px); grid-template-columns: minmax(0,1fr); align-items: start; }
.promise-points { display: grid; gap: 18px; }
.point { display: flex; gap: 14px; align-items: flex-start; }
.point .pico {
  width: 36px; height: 36px; border-radius: 11px; flex: none;
  display: grid; place-items: center; background: var(--teal-050); color: var(--teal-700);
}
.point .pico svg { width: 19px; height: 19px; }
.point h3 { font-size: 17.5px; font-weight: 700; letter-spacing: -0.022em; margin-bottom: 4px; }
.point p { font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }

/* ------------------------------------------------------- grupe mogućnosti */
.work-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.work-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 28px 26px 26px; box-shadow: var(--shadow-s);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.work-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-m); border-color: var(--line-soft); }
.work-card .wico {
  width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center;
  background: linear-gradient(140deg, var(--teal-700), var(--turq-500)); color: #fff; margin-bottom: 18px;
}
.work-card .wico svg { width: 21px; height: 21px; }
.work-card h3 { font-size: 19.5px; font-weight: 730; letter-spacing: -0.026em; margin-bottom: 8px; }
.work-card > p { font-size: 15.5px; color: var(--ink-2); line-height: 1.52; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 18px; }
.chip {
  font-size: 13px; font-weight: 580; letter-spacing: -0.004em; color: var(--teal-600); background: var(--teal-050);
  border-radius: 999px; padding: 5px 12px; line-height: 1.35;
}

/* ------------------------------------------------------------- skeniranje */
.scan-grid { display: grid; gap: clamp(30px, 4.5vw, 54px); grid-template-columns: minmax(0,1fr); align-items: center; }
.flow { display: grid; gap: 10px; margin-top: 30px; }
.flow-step {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.13);
  border-radius: 14px; padding: 13px 17px;
}
.flow-step .n {
  width: 26px; height: 26px; border-radius: 8px; flex: none; display: grid; place-items: center;
  font-size: 12.5px; font-weight: 700; background: rgba(0,194,168,.18); color: var(--turq-500);
}
.flow-step b { font-size: 15.5px; font-weight: 680; letter-spacing: -0.018em; }
/* `span:last-child`, ne `span`: broj koraka je takođe <span>, pa je
   `margin-left: auto` hvatao i njega i gurao cijeli red udesno za
   promjenljiv iznos — svaki korak je počinjao na drugom mjestu. */
.flow-step > span:last-child { font-size: 14px; color: var(--on-dark-3); margin-left: auto; text-align: right; }
.note-box {
  margin-top: 26px; border-left: 3px solid var(--turq-500);
  background: rgba(255,255,255,.055); border-radius: 0 12px 12px 0; padding: 15px 18px;
  font-size: 14.5px; color: var(--on-dark-2); line-height: 1.55;
}
.note-box b { color: #fff; font-weight: 620; }

/* ------------------------------------------------------------ životni vijek */
.life { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 30px; }
.life-item {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
  padding: 9px 16px 9px 11px; font-size: 14.5px; font-weight: 580; letter-spacing: -0.008em; box-shadow: var(--shadow-s);
}
.life-item i { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.life-arrow { display: inline-flex; align-items: center; color: var(--ink-3); }
.life-arrow svg { width: 16px; height: 16px; }

/* --------------------------------------------------------------- naizmjenično */
.alt { display: grid; gap: clamp(30px, 4.6vw, 56px); grid-template-columns: minmax(0,1fr); align-items: center; }
.alt .frame { border: 1px solid var(--line); }
.alt-list { display: grid; gap: 12px; margin-top: 24px; }
.alt-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); line-height: 1.5; }
.alt-list svg { width: 18px; height: 18px; flex: none; color: var(--teal-700); margin-top: 2px; }
.on-dark .alt-list li { color: var(--on-dark-2); }
.on-dark .alt-list svg { color: var(--turq-500); }
ul.alt-list { list-style: none; padding: 0; margin-top: 24px; }

/* ------------------------------------------------------------------ teme */
.themes-switch { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 26px; }
.theme-btn {
  display: inline-flex; align-items: center; gap: 10px; cursor: pointer;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 9px 18px 9px 11px; font: inherit; font-size: 15px; font-weight: 600; color: var(--ink-2);
  transition: border-color .18s ease, color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.theme-btn:hover { border-color: var(--ink-3); color: var(--ink); }
.theme-btn[aria-selected="true"] { border-color: var(--teal-700); color: var(--ink); box-shadow: 0 0 0 3px rgba(0,119,134,.12); }
.sw { display: inline-flex; gap: 3px; flex: none; }
.sw i { width: 11px; height: 11px; border-radius: 3px; display: block; }
.theme-stage {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: 14px; box-shadow: var(--shadow-m);
}
.theme-stage img { border-radius: 14px; width: 100%; height: auto; }
.theme-caption { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: baseline; margin-top: 16px; padding: 0 4px 4px; }
.theme-caption b { font-size: 16.5px; font-weight: 720; letter-spacing: -0.02em; }
.theme-caption span { font-size: 14.5px; color: var(--ink-2); }

/* -------------------------------------------------------------- za koga je */
.types { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.type {
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06);
  border-radius: var(--radius); padding: 20px; backdrop-filter: blur(3px);
}
.type b { display: block; font-size: 16.5px; font-weight: 700; letter-spacing: -0.022em; margin-bottom: 5px; }
.type span { font-size: 14px; color: var(--on-dark-3); line-height: 1.45; display: block; }

/* ----------------------------------------------------------------- cijene */
.plans { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0,1fr)); align-items: stretch; }
.plan {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: 26px 24px 24px; display: flex; flex-direction: column;
  box-shadow: var(--shadow-s);
}
.plan.is-featured {
  border-color: var(--teal-700); box-shadow: 0 0 0 2px rgba(0,119,134,.14), var(--shadow-m);
}
.plan-badge {
  position: absolute; top: -12px; left: 24px;
  background: var(--teal-700); color: #fff; font-size: 12px; font-weight: 680; letter-spacing: .04em;
  text-transform: uppercase; border-radius: 999px; padding: 5px 13px;
}
.plan h3 { font-size: 13.5px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-700); }
.plan.is-custom h3 { color: var(--ink-2); }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 14px 0 4px; }
.plan .price b { font-size: 40px; font-weight: 800; letter-spacing: -0.048em; line-height: 1; font-variant-numeric: tabular-nums; }
.plan .price span { font-size: 14.5px; color: var(--ink-3); font-weight: 500; }
.plan .price-note { font-size: 15px; color: var(--ink-2); margin: 14px 0 4px; line-height: 1.4; min-height: 40px; }
.plan .who { font-size: 14.5px; color: var(--ink-2); line-height: 1.45; margin-bottom: 16px; }
.plan .limits { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.plan .limits span {
  font-size: 13px; font-weight: 600; color: var(--ink); background: var(--canvas);
  border: 1px solid var(--line-soft); border-radius: 8px; padding: 5px 10px;
}
.plan ul { list-style: none; padding: 0; margin: 0 0 22px; display: grid; gap: 9px; }
.plan li { display: flex; gap: 9px; font-size: 14.5px; color: var(--ink-2); line-height: 1.45; align-items: flex-start; }
.plan li .li-t { flex: 1 1 auto; min-width: 0; }
.plan li svg { width: 16px; height: 16px; flex: none; color: var(--teal-700); margin-top: 2px; }
.plan li.soon { color: var(--ink-2); }
.plan li.soon svg { color: var(--turq-200); }
.plan .inherit { font-size: 14px; font-weight: 620; color: var(--ink); margin-bottom: 12px; }
.plan .btn { margin-top: auto; width: 100%; }
/* --- Najavljene mogućnosti -------------------------------------------
   Ostaju u paketu i ostaju čitljive. Razlika je tiha: prsten umjesto
   kvačice i jedna zvjezdica. Jedna jedina napomena stoji ispod cijele
   sekcije, umjesto da se "u razvoju" ponavlja deset puta i da proizvod
   zbog toga djeluje nedovršeno. */
.mark {
  color: var(--teal-700); font-weight: 700; margin-left: 3px;
  font-size: .95em; vertical-align: 2px; line-height: 1;
}
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.plan-footnote {
  margin-top: 22px; font-size: 14.5px; color: var(--ink-2); line-height: 1.55;
  display: flex; gap: 8px; align-items: baseline; max-width: 720px;
}
.plan-footnote .mark { margin-left: 0; vertical-align: 0; }
table.cmp td.soon-cell { color: var(--teal-700); font-weight: 700; }
.fine-note {
  margin-top: 24px; font-size: 14.5px; line-height: 1.6;
  color: var(--on-dark-3); padding-left: 14px; border-left: 2px solid rgba(0,194,168,.5);
}
.pricing-notes { display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 28px; }
.pricing-notes span { display: inline-flex; align-items: center; gap: 8px; font-size: 14.5px; color: var(--ink-2); }
.pricing-notes svg { width: 16px; height: 16px; color: var(--teal-700); flex: none; }

.compare-toggle { margin-top: 26px; }
details.compare > summary {
  list-style: none; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  font-size: 15.5px; font-weight: 620; color: var(--teal-600);
  border: 1.5px solid var(--line); border-radius: 999px; padding: 11px 20px; background: #fff;
  transition: border-color .16s ease, color .16s ease;
}
details.compare > summary::-webkit-details-marker { display: none; }
details.compare > summary:hover { border-color: var(--teal-700); }
details.compare > summary svg { width: 15px; height: 15px; transition: transform .2s ease; }
details.compare[open] > summary svg { transform: rotate(180deg); }
.table-scroll { overflow-x: auto; margin-top: 22px; -webkit-overflow-scrolling: touch; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; }
table.cmp { width: 100%; min-width: 760px; border-collapse: collapse; font-size: 14.5px; }
table.cmp th, table.cmp td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line-soft); }
table.cmp thead th { font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); font-weight: 700; background: var(--canvas); position: sticky; top: 0; }
table.cmp tbody th { font-weight: 560; color: var(--ink); }
table.cmp td { text-align: center; color: var(--ink-2); }
table.cmp td.yes { color: var(--teal-700); font-weight: 700; }
table.cmp td.no { color: var(--ink-3); }
table.cmp tr.group th { background: var(--sand); font-size: 12.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); font-weight: 700; }

/* ---------------------------------------------------------------- roadmap */
.road { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.road-card {
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface);
  padding: 22px; box-shadow: var(--shadow-s);
}
.road-card .rtop { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; }
.road-card b { font-size: 16.5px; letter-spacing: -0.018em; }
.road-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* -------------------------------------------------------------------- FAQ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
details.q { border-bottom: 1px solid var(--line); }
details.q > summary {
  list-style: none; cursor: pointer; display: flex; gap: 16px; align-items: flex-start;
  padding: 22px 4px; font-size: 17.5px; font-weight: 680; letter-spacing: -0.024em; color: var(--ink);
}
details.q > summary::-webkit-details-marker { display: none; }
details.q > summary:hover { color: var(--teal-700); }
details.q > summary .qi {
  margin-left: auto; width: 24px; height: 24px; flex: none; color: var(--ink-3);
  transition: transform .2s ease, color .2s ease;
}
details.q[open] > summary .qi { transform: rotate(45deg); color: var(--teal-700); }
details.q .a { padding: 0 44px 24px 4px; font-size: 16px; color: var(--ink-2); line-height: 1.6; }
details.q .a p + p { margin-top: 12px; }

/* ---------------------------------------------------------------- kontakt */
.contact-grid { display: grid; gap: clamp(32px, 4.5vw, 60px); grid-template-columns: minmax(0,1fr); align-items: start; }

.contact-direct { margin-top: 34px; display: grid; gap: 10px; }
.contact-direct-label {
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 4px;
}
.contact-line {
  display: flex; align-items: center; gap: 14px; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px 16px; box-shadow: var(--shadow-s);
  transition: border-color .16s ease, transform .16s ease, box-shadow .16s ease;
}
.contact-line:hover { border-color: var(--teal-700); transform: translateY(-1px); box-shadow: var(--shadow-m); }
.contact-line .cico {
  width: 38px; height: 38px; flex: none; border-radius: 11px; display: grid; place-items: center;
  background: var(--teal-050); color: var(--teal-700);
}
.contact-line .cico svg { width: 19px; height: 19px; }
.contact-line b { display: block; font-size: 16px; font-weight: 700; letter-spacing: -0.02em; color: var(--ink); }
.contact-line span span { display: block; font-size: 13px; color: var(--ink-2); margin-top: 2px; }

.contact-form-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-l);
  padding: clamp(24px, 3vw, 32px); box-shadow: var(--shadow-m);
}
.cf-row { display: grid; gap: 16px; grid-template-columns: minmax(0,1fr); }
.cf-field { margin-bottom: 16px; }
.cf-row .cf-field { margin-bottom: 0; }
.cf-row + .cf-row, .cf-row + .cf-field { margin-top: 16px; }
.cf-field label {
  display: block; font-size: 14px; font-weight: 620; letter-spacing: -0.008em;
  color: var(--ink); margin-bottom: 7px;
}
.cf-field .req { color: var(--coral-500); }
.cf-field .opt { font-weight: 500; color: var(--ink-3); font-size: 12.5px; letter-spacing: 0; }
.cf-field input, .cf-field select, .cf-field textarea {
  width: 100%; font: inherit; font-size: 15.5px; color: var(--ink);
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius-s);
  padding: 12px 14px; transition: border-color .15s ease, box-shadow .15s ease;
}
.cf-field textarea { resize: vertical; min-height: 96px; line-height: 1.5; }
.cf-field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237D96A1' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 17px; padding-right: 40px;
}
.cf-field input:hover, .cf-field select:hover, .cf-field textarea:hover { border-color: var(--line-strong, #C3D6DB); }
.cf-field input:focus, .cf-field select:focus, .cf-field textarea:focus {
  outline: none; border-color: var(--teal-700); box-shadow: 0 0 0 3px rgba(0,119,134,.14);
}
.cf-field input:focus-visible, .cf-field select:focus-visible, .cf-field textarea:focus-visible {
  outline: 2px solid transparent;
}
.cf-field.is-invalid input, .cf-field.is-invalid select, .cf-field.is-invalid textarea { border-color: var(--coral-500); }
.cf-field.is-invalid input:focus { box-shadow: 0 0 0 3px rgba(255,107,104,.18); }
.cf-err { margin: 7px 0 0; font-size: 13px; color: #A93F30; }

/* Mamac za botove - van ekrana, van tab reda, van čitača ekrana. */
.cf-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.cf-submit { width: 100%; margin-top: 6px; }
.cf-submit[disabled] { opacity: .72; cursor: progress; }
.cf-note { margin: 14px 0 0; font-size: 12.5px; color: var(--ink-3); line-height: 1.5; text-align: center; }
.cf-note a { color: var(--ink-2); text-decoration: underline; text-underline-offset: 2px; }

.cf-status { margin-top: 18px; border-radius: var(--radius); padding: 16px 18px; font-size: 14.5px; line-height: 1.55; }
.cf-status b { display: block; font-size: 15.5px; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 5px; }
.cf-status.ok { background: var(--teal-050); color: var(--teal-600); border: 1px solid #BFE3E5; }
.cf-status.ok b { color: var(--teal-700); }
.cf-status.warn { background: #FFF6E8; color: #7A5A1E; border: 1px solid #F3DFB8; }
.cf-status.warn b { color: #6B4E12; }
.cf-status a { color: inherit; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cf-status .cf-fallback { margin-top: 10px; display: grid; gap: 4px; }

@media (min-width: 720px) {
  .cf-row { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width: 960px) {
  .contact-grid { grid-template-columns: 0.92fr 1.08fr; }
}

/* ----------------------------------------------------------------- footer */
.site-footer { background: var(--navy-900); color: var(--on-dark-2); padding: clamp(50px, 6vw, 74px) 0 34px; }
.site-footer a { color: var(--on-dark-2); }
.site-footer a:hover { color: #fff; }
.foot-grid { display: grid; gap: 34px; grid-template-columns: minmax(0,1fr); }
.foot-brand .brand { color: #fff; }
.foot-brand .brand:hover { color: #fff; }
.foot-brand .brand-tag { color: var(--on-dark-3); }
.foot-brand p { margin-top: 14px; font-size: 14.5px; color: var(--on-dark-3); max-width: 320px; line-height: 1.55; }
.foot-col h4 { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--on-dark-3); margin-bottom: 14px; font-weight: 720; }
.foot-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; font-size: 15px; }
.foot-bottom {
  margin-top: 40px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center; font-size: 13.5px; color: var(--on-dark-3);
}

/* -------------------------------------------------------------- animacija */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s cubic-bezier(.22,.7,.28,1), transform .6s cubic-bezier(.22,.7,.28,1); }
.reveal.in { opacity: 1; transform: none; }

/* ---------------------------------------------------------------- pravne */
.legal { padding: clamp(46px, 6vw, 80px) 0 clamp(60px, 8vw, 100px); }
.legal h1 { margin-bottom: 10px; }
.legal h2 { font-size: 22px; margin: 34px 0 10px; }
.legal p, .legal li { font-size: 16.5px; color: var(--ink-2); line-height: 1.65; }
.legal p + p { margin-top: 12px; }
.legal ul { padding-left: 22px; margin: 10px 0; display: grid; gap: 8px; }
.legal-note {
  border: 1px dashed var(--line-soft); border-left: 3px solid var(--sun-300);
  background: var(--sand); border-radius: 0 12px 12px 0; padding: 16px 18px; margin: 18px 0;
  font-size: 15px; color: var(--ink-2);
}
.legal-note b { color: var(--ink); }

/* ============================ ŠIRINE ============================== */
@media (min-width: 720px) {
  .types { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .road  { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .promise { grid-template-columns: 0.95fr 1.05fr; }
  .promise-points { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .scan-grid { grid-template-columns: 0.92fr 1.08fr; }
  .alt { grid-template-columns: 1fr 1.15fr; }
  .alt.flip .alt-media { order: -1; }
  .plans { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .road { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (min-width: 1080px) {
  .work-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .plans { grid-template-columns: repeat(5, minmax(0,1fr)); }
  .plan { padding: 28px 22px 24px; }
  .plan .price b { font-size: 34px; }
  .types { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

/* ============================ MOBILNO ============================== */
@media (max-width: 899px) {
  .nav, .header-cta { display: none; }
  .burger { display: inline-flex; }
  .hero::after { height: 48%; }
  .work-grid { grid-template-columns: minmax(0,1fr); }
}
@media (max-width: 719px) {
  :root { --gutter: 18px; }
  body { font-size: 16.5px; }
  .types { grid-template-columns: minmax(0,1fr); }
  .plans { grid-template-columns: minmax(0,1fr); }
  .road  { grid-template-columns: minmax(0,1fr); }
  .plan { padding: 24px 20px 22px; }
  .plan.is-featured { order: -1; }
  .plan .price-note { min-height: 0; }
  .promise-points { grid-template-columns: minmax(0,1fr); }
  .frame-url { max-width: 150px; }
  .hero-frame { margin-left: calc(var(--gutter) * -0.5); margin-right: calc(var(--gutter) * -0.5); }
  .btn { width: 100%; }
  .cta-row .btn { width: 100%; }
  .theme-stage { padding: 8px; }
  .life-arrow { display: none; }
  details.q > summary { font-size: 16.5px; padding: 19px 2px; }
  details.q .a { padding-right: 8px; font-size: 15.5px; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}
@media print { .site-header, .mobile-nav, .btn { display: none !important; } }
