/* ==========================================================================
   dvd.si — slog (čisti CSS, brez ogrodja) — v2 (prenovljen izgled)
   Tehnološka temna osnova + berljive svetle sekcije + modri/cyan poudarki.
   ========================================================================== */

/* ---- Oblikovni žetoni ---- */
:root {
  --brand:        #2563eb;
  --brand-dark:   #1d4ed8;
  --brand-darker: #1e3a8a;
  --indigo:       #4f46e5;
  --accent:       #06b6d4;
  --accent-soft:  #22d3ee;

  --navy:    #0b1530;
  --navy-2:  #111f3f;
  --navy-3:  #18294f;

  --ink:        #0f172a;
  --ink-soft:   #475569;
  --ink-mute:   #64748b;
  --line:       #e2e8f0;
  --line-soft:  #eef2f7;

  --bg:       #ffffff;
  --bg-soft:  #f5f8fc;
  --bg-tint:  #eef4ff;

  --ok:    #16a34a;
  --warn:  #d97706;
  --danger:#dc2626;

  --maxw: 1180px;
  --radius:   16px;
  --radius-sm:10px;
  --radius-lg:24px;
  --shadow:    0 6px 24px rgba(15, 23, 42, .08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, .16);
  --shadow-brand: 0 14px 30px rgba(37, 99, 235, .35);
  --ring: 0 0 0 3px rgba(37, 99, 235, .35);

  --grad-brand:  linear-gradient(120deg, #2563eb 0%, #06b6d4 100%);
  --grad-rich:   linear-gradient(125deg, #4f46e5 0%, #2563eb 45%, #06b6d4 100%);
  --grad-text:   linear-gradient(110deg, #38bdf8, #22d3ee 60%, #67e8f9);

  --ff: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
  --ff-display: "Plus Jakarta Sans", var(--ff);
}

/* ---- Osnova ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--ff);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; height: auto; }
img { display: block; }
/* Privzeta velikost vrstičnih ikon (kontejnerji jo lahko prepišejo). */
.ico { width: 1.25em; height: 1.25em; flex: 0 0 auto; vertical-align: -.18em; }
a { color: var(--brand-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.15; color: var(--ink); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 4.8vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.4vw, 2.35rem); }
h3 { font-size: 1.28rem; }
p  { margin: 0 0 1rem; }
ul, ol { margin: 0 0 1rem; padding-left: 1.25rem; }
strong { font-weight: 700; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--brand); color: #fff; padding: .6rem 1rem; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---- Postavitev ---- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.main { display: block; }
.section { padding: clamp(2.8rem, 6vw, 5rem) 0; position: relative; }
.section--alt   { background: var(--bg-soft); }
.section--tint  { background: var(--bg-tint); }
.section--navy  { background:
    radial-gradient(800px 420px at 90% -10%, rgba(6,182,212,.18), transparent 60%),
    radial-gradient(700px 400px at -5% 110%, rgba(37,99,235,.22), transparent 55%),
    var(--navy);
  color: #cdd9f0; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--tight { padding: clamp(1.8rem, 4vw, 3rem) 0; }

.section-head { max-width: 780px; margin: 0 0 2.4rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem; font-family: var(--ff-display);
  font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .8rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; border-radius: 2px; background: var(--grad-brand); }
.section-head--center .eyebrow::before { display: none; }
.section--navy .eyebrow { color: var(--accent-soft); }
.lead { font-size: 1.14rem; color: var(--ink-soft); }
.section--navy .lead { color: #bccbe6; }
.muted { color: var(--ink-mute); }
.text-center { text-align: center; }

/* ---- Gumbi ---- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem; justify-content: center;
  font-family: var(--ff-display); font-weight: 700; font-size: 1rem; line-height: 1;
  padding: .9rem 1.5rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; position: relative; overflow: hidden;
  transition: transform .14s ease, box-shadow .25s ease, background .25s ease, color .2s ease, border-color .2s ease;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--grad-brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn--primary:hover { color: #fff; box-shadow: 0 18px 38px rgba(37,99,235,.45); }
.btn--primary::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.28) 50%, transparent 70%); transform: translateX(-120%); transition: transform .6s ease; }
.btn--primary:hover::after { transform: translateX(120%); }
.btn--outline { background: transparent; color: var(--brand-dark); border-color: var(--brand); }
.btn--outline:hover { background: var(--brand); color: #fff; }
.btn--light { background: #fff; color: var(--navy); border-color: #fff; }
.btn--light:hover { background: #eaf1ff; color: var(--navy); }
.btn--ghost { background: rgba(255,255,255,.07); color: #fff; border-color: rgba(255,255,255,.32); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); color: #fff; border-color: rgba(255,255,255,.5); }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.06rem; }
.btn--sm { padding: .55rem 1.05rem; font-size: .9rem; }
.btn--block { display: flex; width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: .85rem; }
.btn-row--center { justify-content: center; }

/* ---- Glava / navigacija ---- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11, 21, 48, .82);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  color: #fff; transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled { background: rgba(9, 17, 38, .96); box-shadow: 0 10px 30px rgba(2,8,23,.35); }
.site-header__inner { display: flex; align-items: center; gap: 1rem; min-height: 70px; }
.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--ff-display); font-weight: 800; color: #fff; font-size: 1.4rem; letter-spacing: -.03em; }
.brand:hover { text-decoration: none; }
.brand__mark { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px;
  background: var(--grad-brand); color: #fff; box-shadow: 0 6px 16px rgba(6,182,212,.4); }
.brand__icon { width: 23px; height: 23px; }
.brand__dot { color: var(--accent-soft); }
.brand--footer { color: #fff; font-size: 1.35rem; }

.nav-toggle { display: none; margin-left: auto; background: transparent; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 25px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .25s; }

.site-nav { margin-left: auto; }
.site-nav__list { display: flex; align-items: center; gap: .15rem; list-style: none; margin: 0; padding: 0; }
.site-nav__link { display: inline-block; color: #cdd8ee; font-weight: 600; font-size: .92rem; padding: .5rem .64rem; border-radius: 9px; white-space: nowrap; transition: color .2s, background .2s; }
.site-nav__link:hover { color: #fff; background: rgba(255,255,255,.08); text-decoration: none; }
.site-nav__link.is-active { color: #fff; background: rgba(37,99,235,.32); }
.site-nav__cta { margin-left: .45rem; }
.site-nav__phone { margin-left: .15rem; }
.header-phone { display: inline-flex; align-items: center; gap: .42rem; color: #fff; font-weight: 700; font-size: .92rem; padding: .4rem .55rem; white-space: nowrap; }
.header-phone__icon { width: 18px; height: 18px; color: var(--accent-soft); }

/* ---- Hero ---- */
.hero { position: relative; overflow: hidden; color: #e7eefb;
  background:
    radial-gradient(1100px 540px at 80% -12%, rgba(6,182,212,.30), transparent 58%),
    radial-gradient(900px 520px at -5% 115%, rgba(79,70,229,.34), transparent 55%),
    linear-gradient(180deg, #0a1430 0%, #0b1530 100%);
}
.hero::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 24px 24px; opacity: .55; mask-image: linear-gradient(180deg, #000 30%, transparent 95%); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; pointer-events: none; z-index: 0; }
.hero__blob--1 { width: 420px; height: 420px; background: #1d4ed8; top: -120px; left: -80px; animation: floaty 14s ease-in-out infinite; }
.hero__blob--2 { width: 360px; height: 360px; background: #06b6d4; bottom: -140px; right: 10%; animation: floaty 17s ease-in-out infinite reverse; }
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.08fr .92fr; gap: 2.6rem; align-items: center; padding: clamp(2.8rem, 6vw, 5rem) 0; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: .5rem; font-family: var(--ff-display); font-size: .82rem; font-weight: 700; letter-spacing: .06em; color: #cfe0ff; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: .4rem .85rem; border-radius: 999px; margin-bottom: 1.1rem; }
.hero__eyebrow .ico { width: 16px; height: 16px; color: var(--accent-soft); }
.hero__title { color: #fff; font-size: clamp(2.1rem, 4.8vw, 3.35rem); margin-bottom: 1.1rem; line-height: 1.08; }
.hero__title .hl { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__subtitle { font-size: 1.16rem; color: #c4d2ec; max-width: 58ch; margin-bottom: 1.7rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 1.5rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .7rem 1.5rem; padding: 0; margin: 1.3rem 0 0; list-style: none; }
.hero__badges li { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; color: #cfe0ff; }
.hero__badges .ico { width: 18px; height: 18px; color: var(--accent-soft); }

/* desni stolpec: ilustracija nad kalkulatorjem */
.hero__visual { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.hero__art { width: 100%; max-width: 380px; pointer-events: none; animation: floaty2 12s ease-in-out infinite; filter: drop-shadow(0 24px 44px rgba(2,8,23,.5)); }
.hero__card { width: 100%; position: relative; z-index: 2; background: rgba(13, 24, 51, .72); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 1.6rem; backdrop-filter: blur(10px); box-shadow: var(--shadow-lg); }
.hero__card h2 { color: #fff; font-size: 1.22rem; margin-bottom: .2rem; }

.format-pills { display: flex; flex-wrap: wrap; gap: .5rem; padding: 0; margin: 1.4rem 0 0; list-style: none; }
.format-pills li { font-size: .82rem; font-weight: 600; color: #d7e3fb; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); padding: .35rem .8rem; border-radius: 999px; }

@keyframes floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__blob { animation-name: blobby; }
@keyframes blobby { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(20px,-18px) scale(1.08); } }

/* ---- Trakti zaupanja (stats) ---- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.stat { text-align: center; padding: 1.2rem 1rem; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.stat__icon { display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto .6rem; border-radius: 12px; background: var(--bg-tint); color: var(--brand); }
.stat__icon .ico { width: 24px; height: 24px; }
.stat__num { font-family: var(--ff-display); font-size: 1.45rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.stat__label { font-size: .92rem; color: var(--ink-soft); margin-top: .15rem; }

/* ---- Mreže in kartice ---- */
.grid { display: grid; gap: 1.3rem; }
.grid > * { min-width: 0; } /* dovoli krčenje stolpcev, da .table-wrap prevzame vodoravno drsenje (npr. cenik na mobilnem) */
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--auto { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow); height: 100%; position: relative;
  transition: transform .18s ease, box-shadow .25s ease, border-color .25s ease;
}
.card--hover:hover, a.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: #c4d6f0; text-decoration: none; }
a.card { color: inherit; display: block; }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px;
  background: var(--grad-brand); color: #fff; margin-bottom: 1.1rem; box-shadow: 0 8px 18px rgba(37,99,235,.28); }
.card__icon .ico { width: 27px; height: 27px; }
.card__title { font-size: 1.14rem; margin-bottom: .45rem; }
.card__text { color: var(--ink-soft); margin: 0; font-size: .98rem; }
.card__more { display: inline-flex; align-items: center; gap: .4rem; margin-top: .9rem; font-family: var(--ff-display); font-weight: 700; color: var(--brand-dark); }
.card__more .ico { width: 16px; height: 16px; transition: transform .2s ease; }
a.card:hover .card__more .ico, .card--hover:hover .card__more .ico { transform: translateX(4px); }

.card--navy { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.12); color: #cfdaf0; backdrop-filter: blur(6px); }
.card--navy .card__title { color: #fff; }
.card--navy .card__text { color: #b6c4de; }
.card--accent::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; border-radius: var(--radius) var(--radius) 0 0; background: var(--grad-brand); }
.card--accent { overflow: hidden; }

/* seznam s kljukicami */
.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: .65rem; }
.checklist li { position: relative; padding-left: 2rem; }
.checklist li::before { content: ""; position: absolute; left: 0; top: .12em; width: 1.4rem; height: 1.4rem; background: var(--grad-brand); border-radius: 50%;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/68% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/68% no-repeat; }
.checklist--lg li { padding-left: 2.1rem; margin-bottom: .25rem; }
.section--navy .checklist li { color: #d6e1f5; }

/* značke / pilule */
.pill-row { display: flex; flex-wrap: wrap; gap: .55rem; padding: 0; margin: 0; list-style: none; }
.pill { display: inline-flex; align-items: center; gap: .4rem; background: var(--bg-tint); color: var(--brand-darker);
  border: 1px solid #d6e4ff; padding: .4rem .85rem; border-radius: 999px; font-size: .88rem; font-weight: 600; }
.section--navy .pill { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.16); color: #dce7fb; }

/* ---- Koraki ---- */
.steps { list-style: none; counter-reset: step; padding: 0; margin: 0; display: grid; gap: 1.1rem; }
.steps--cols { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.step { position: relative; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .25s ease; }
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.step::before { counter-increment: step; content: counter(step); display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--grad-brand); color: #fff; font-family: var(--ff-display); font-weight: 800; margin-bottom: .8rem; box-shadow: 0 8px 16px rgba(37,99,235,.3); }
.step h3 { font-size: 1.08rem; margin-bottom: .3rem; }
.step p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

/* ---- Opombe / poudarki / pravno ---- */
.note { border-radius: var(--radius); padding: 1.15rem 1.3rem; margin: 1.5rem 0; border: 1px solid var(--line); background: var(--bg-soft); }
.note p:last-child { margin-bottom: 0; }
.note__title { font-family: var(--ff-display); font-weight: 800; margin: 0 0 .35rem; display: flex; align-items: center; gap: .55rem; }
.note__title .ico { width: 20px; height: 20px; }
.note--info  { background: #eff6ff; border-color: #bfdbfe; }
.note--info .note__title { color: var(--brand-dark); }
.note--warn  { background: #fff7ed; border-color: #fed7aa; }
.note--warn .note__title { color: var(--warn); }
.note--legal { background: #f8fafc; border-left: 4px solid var(--brand); }
.note--legal .note__title { color: var(--ink); }
.note--ok    { background: #f0fdf4; border-color: #bbf7d0; }
.note--ok .note__title { color: var(--ok); }

.callout { position: relative; overflow: hidden; background: var(--grad-rich); color: #eef4ff; border-radius: var(--radius-lg); padding: clamp(1.6rem, 3.2vw, 2.6rem); box-shadow: var(--shadow-lg); }
.callout::before { content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); }
.callout h2, .callout h3 { color: #fff; position: relative; }
.callout p { color: #dbe6ff; position: relative; }
.callout p:last-child { margin-bottom: 0; }
.callout .btn-row { position: relative; }

/* info bloki */
.infoblock { display: grid; grid-template-columns: 210px 1fr; gap: 1.3rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line); }
.infoblock:last-child { border-bottom: 0; }
.infoblock h3 { margin: 0; }
.infoblock p { margin: 0; color: var(--ink-soft); }

/* opisni seznam formatov */
.deflist { display: grid; gap: 0; }
.deflist > div { padding: 1.2rem 1.3rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); margin-bottom: .8rem; transition: border-color .2s, box-shadow .2s; }
.deflist > div:hover { border-color: #c4d6f0; box-shadow: var(--shadow-lg); }
.deflist dt { font-family: var(--ff-display); font-weight: 800; font-size: 1.1rem; margin-bottom: .3rem; color: var(--ink); }
.deflist dt::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--grad-brand); margin-right: .6rem; vertical-align: middle; }
.deflist dd { margin: 0; color: var(--ink-soft); }

/* ---- Tabele / cenik ---- */
.table-wrap { overflow-x: auto; border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); }
table.price-table, table.data-table { width: 100%; border-collapse: collapse; background: #fff; min-width: 420px; }
.price-table th, .price-table td, .data-table th, .data-table td { padding: 1rem 1.15rem; text-align: left; border-bottom: 1px solid var(--line); }
.price-table thead th { background: var(--navy); color: #fff; font-family: var(--ff-display); font-weight: 700; }
.price-table thead th:first-child { border-radius: 0; }
.price-table tbody th { font-weight: 700; }
.price-table tbody tr:nth-child(even) { background: var(--bg-soft); }
.price-table tbody tr:hover { background: var(--bg-tint); }
.price-table__gross strong { color: var(--brand-dark); font-size: 1.08rem; }
.price-table__net { color: var(--ink-mute); }

/* primeri izračunov */
.example-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow); text-align: center; transition: transform .18s, box-shadow .25s; }
.example-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.example-card__qty { font-size: .9rem; color: var(--ink-mute); }
.example-card__calc { font-size: .98rem; color: var(--ink-soft); margin: .3rem 0; }
.example-card__total { font-family: var(--ff-display); font-size: 1.6rem; font-weight: 800; background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---- Kalkulator ---- */
.calc { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow); }
.hero__card .calc { background: transparent; border: 0; box-shadow: none; padding: 0; }
/* Polje za vnos je vedno NAD okvirjem z izračunom cene. */
.calc__row { display: grid; grid-template-columns: 1fr; gap: 1.1rem; align-items: stretch; }
.calc__field { display: flex; flex-direction: column; gap: .5rem; font-weight: 700; }
.hero__card .calc__field span { color: #c4d2ec; }
.calc__input { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 800; padding: .7rem .9rem; border: 2px solid var(--line); border-radius: 12px; width: 100%; color: var(--ink); background: #fff; }
.calc__input:focus { border-color: var(--brand); box-shadow: var(--ring); outline: none; }
.calc__output { background: var(--bg-tint); border-radius: 14px; padding: 1rem 1.2rem; display: flex; flex-direction: column; justify-content: center; gap: .55rem; }
.hero__card .calc__output { background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); }
.calc__line { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.calc__line span { color: var(--ink-soft); font-size: .95rem; }
.hero__card .calc__line span { color: #b9c7e3; }
.calc__line strong { font-family: var(--ff-display); font-size: 1.18rem; color: var(--ink); }
.hero__card .calc__line strong { color: #fff; }
.calc__line--total strong { font-size: 1.75rem; color: var(--brand-dark); }
.hero__card .calc__line--total strong { background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.calc__note { margin: 1rem 0 0; font-size: .84rem; color: var(--ink-mute); }
.hero__card .calc__note { color: #9fb0cf; }

/* ---- FAQ ---- */
.faq { display: grid; gap: .8rem; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow); overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.faq__item[open] { border-color: #c4d6f0; box-shadow: var(--shadow-lg); }
.faq__item > summary { cursor: pointer; list-style: none; padding: 1.1rem 1.3rem; font-family: var(--ff-display); font-weight: 700; font-size: 1.04rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq__item > summary::-webkit-details-marker { display: none; }
.faq__item > summary::after { content: "+"; font-size: 1.6rem; font-weight: 400; color: var(--brand); transition: transform .25s ease; line-height: 1; }
.faq__item[open] > summary::after { transform: rotate(45deg); }
.faq__item > summary:hover { color: var(--brand-dark); }
.faq__body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.faq__body p:last-child { margin-bottom: 0; }

/* ---- Drobtinice ---- */
.breadcrumb { padding: 1rem 0 0; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: .45rem; list-style: none; padding: 0; margin: 0; font-size: .88rem; color: var(--ink-mute); }
.breadcrumb a { color: var(--ink-mute); }
.breadcrumb li + li::before { content: "/"; margin-right: .45rem; color: var(--line); }
.breadcrumb [aria-current] { color: var(--ink); font-weight: 600; }

/* ---- Podstran hero ---- */
.page-hero { position: relative; overflow: hidden; color: #e7eefb;
  background:
    radial-gradient(800px 380px at 90% -25%, rgba(6,182,212,.24), transparent 60%),
    radial-gradient(700px 360px at -5% 120%, rgba(79,70,229,.26), transparent 55%),
    var(--navy); }
.page-hero::before { content: ""; position: absolute; right: -60px; top: 50%; transform: translateY(-50%); width: 360px; height: 360px;
  background: url("/assets/img/disc-motif.svg") center/contain no-repeat; opacity: .5; pointer-events: none; }
.page-hero__inner { position: relative; z-index: 1; padding: clamp(2.2rem, 5vw, 3.8rem) 0; max-width: 760px; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #c4d2ec; font-size: 1.14rem; margin-bottom: 0; }
.page-hero .breadcrumb { position: relative; z-index: 1; }
.page-hero .breadcrumb ol, .page-hero .breadcrumb a { color: #93a6c9; }
.page-hero .breadcrumb [aria-current] { color: #dce7fb; }

/* ---- Obrazec ---- */
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-lg); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.15rem; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: .95rem; }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea { font-family: inherit; font-size: 1rem; padding: .75rem .9rem; border: 1.5px solid var(--line); border-radius: 10px; color: var(--ink); background: #fff; width: 100%; transition: border-color .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--brand); box-shadow: var(--ring); outline: none; }
.field--error input, .field--error select, .field--error textarea { border-color: var(--danger); }
.field__error { color: var(--danger); font-size: .85rem; }
.field--check { flex-direction: row; align-items: flex-start; gap: .6rem; }
.field--check input { width: auto; margin-top: .25rem; }
.field--check label { font-weight: 500; font-size: .95rem; }
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }
.form__alert { padding: .9rem 1.1rem; border-radius: 10px; margin-bottom: 1.2rem; font-weight: 600; }
.form__alert--error { background: #fef2f2; border: 1px solid #fecaca; color: var(--danger); }

/* ---- CTA pas pred nogo ---- */
.cta-band { position: relative; overflow: hidden; background: var(--grad-rich); color: #fff; }
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size: 22px 22px; opacity: .6; }
.cta-band__inner { position: relative; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; padding: clamp(2.2rem, 4vw, 3rem) 0; }
.cta-band__title { color: #fff; margin-bottom: .35rem; }
.cta-band__text { color: #dbe6ff; margin: 0; max-width: 52ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---- Noga ---- */
.site-footer { background: var(--navy); color: #aebbd4; font-size: .95rem; }
.site-footer a { color: #c8d4ec; }
.site-footer a:hover { color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.1fr; gap: 2.2rem; padding: clamp(2.6rem, 5vw, 3.6rem) 0 2.2rem; }
.site-footer__heading { color: #fff; font-family: var(--ff-display); font-size: 1.02rem; margin-bottom: 1rem; }
.site-footer__links, .site-footer__contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .58rem; }
.site-footer__contact li { display: flex; align-items: flex-start; gap: .55rem; }
.site-footer__contact .ico { width: 18px; height: 18px; color: var(--accent-soft); flex: 0 0 auto; margin-top: .2rem; }
.site-footer__tagline { margin: 1rem 0; color: #9fb0cf; }
.site-footer__tagline a { color: #fff; font-weight: 600; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottominner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem; padding: 1.2rem 0; font-size: .85rem; color: #8497ba; }
.site-footer__bottom p { margin: 0; }
.site-footer__legal { max-width: 60ch; }

/* ---- Pomožno ---- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; }
.prose ul li { margin-bottom: .35rem; }
.stack > * + * { margin-top: 1.2rem; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.center-narrow { max-width: 780px; margin-inline: auto; }

/* ---- Animacija razkritja ob drsenju (samo če je JS aktiven) ---- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.js .reveal.in { opacity: 1; transform: none; }

/* ---- Odzivnost ---- */
@media (max-width: 1080px) {
  .hero__art { max-width: 300px; }
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2rem; padding-inline: 22px; }
  .hero__visual { order: 2; }
  .hero__art { max-width: 300px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .site-footer__grid { grid-template-columns: 1fr 1fr; padding-inline: 22px; }
  .cta-band__inner, .site-footer__bottominner { padding-inline: 22px; }
}
@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav { position: fixed; inset: 70px 0 auto 0; background: #0a1430; box-shadow: 0 20px 40px rgba(2,8,23,.5); margin: 0; max-height: 0; overflow: hidden; transition: max-height .3s ease; border-bottom: 1px solid rgba(255,255,255,.1); }
  .site-nav.is-open { max-height: 85vh; overflow-y: auto; }
  .site-nav__list { flex-direction: column; align-items: stretch; padding: .6rem 22px 1.3rem; gap: .15rem; }
  .site-nav__link { padding: .85rem .6rem; font-size: 1rem; }
  .site-nav__cta, .site-nav__phone { margin: .35rem 0 0; }
  .site-nav__cta .btn { width: 100%; }
  .header-phone { padding: .65rem; font-size: 1.02rem; justify-content: center; }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .calc__row { grid-template-columns: 1fr; }
  .form__grid { grid-template-columns: 1fr; }
  .infoblock { grid-template-columns: 1fr; gap: .35rem; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .page-hero::before { width: 220px; right: -80px; opacity: .35; }
  .btn { width: 100%; }
  .hero__cta .btn, .btn-row .btn { width: 100%; }
  .btn-row { width: 100%; }
}
@media (max-width: 420px) {
  .stats { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
