@charset "UTF-8";

/* ==========================================================================
   PBC d.o.o. – celostna grafična podoba
   ========================================================================== */

:root {
  color-scheme: light;
  --pbc-blue: #0b5fa5;
  --pbc-blue-dark: #084472;
  --pbc-blue-deep: #052c4b;
  --pbc-blue-light: #1a86d9;
  --pbc-blue-pale: #e8f2fa;
  --ink: #16202b;
  --ink-soft: #4a5a6a;
  --line: #dde5ec;
  --line-strong: #c6dcee;
  --bg: #ffffff;
  --bg-alt: #f4f8fb;
  --surface: #ffffff;
  --media-bg: linear-gradient(180deg, #fbfdff, #f4f8fb);
  --header-bg: rgba(255, 255, 255, .96);
  --heading: #052c4b;
  --band: #052c4b;
  --band-ink: #cfe2f2;
  --hero-a: #052c4b;
  --hero-b: #084472;
  --hero-c: #0b5fa5;
  --radius: 10px;
  --radius-lg: 18px;
  --shadow-sm: 0 1px 3px rgba(11, 95, 165, .08), 0 4px 14px rgba(11, 95, 165, .06);
  --shadow-md: 0 6px 28px rgba(8, 68, 114, .12);
  --wrap: 1180px;
  --font: "Segoe UI", "Helvetica Neue", Arial, system-ui, sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --pbc-blue: #58aef2;
  --pbc-blue-dark: #3c98e2;
  --pbc-blue-light: #7cc6fb;
  --pbc-blue-pale: #12293d;
  --ink: #dee8f1;
  --ink-soft: #9db1c3;
  --line: #23374a;
  --line-strong: #335875;
  --bg: #0d1620;
  --bg-alt: #111e2b;
  --surface: #142230;
  --media-bg: linear-gradient(180deg, #f7fafd, #e7eff7);
  --header-bg: rgba(13, 22, 32, .94);
  --heading: #e9f2fa;
  --band: #060f18;
  --band-ink: #a8c4dc;
  --hero-a: #061523;
  --hero-b: #0a2b48;
  --hero-c: #10456f;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .45), 0 4px 14px rgba(0, 0, 0, .3);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, .5);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--pbc-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, p, li, dd, dt, span, a {
  overflow-wrap: break-word;
  word-break: break-word;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--heading);
  margin: 0 0 .6em;
  letter-spacing: -.01em;
}

h1 { font-size: clamp(1.75rem, 5.2vw, 2.9rem); }
h2 { font-size: clamp(1.4rem, 4vw, 2.1rem); }
h3 { font-size: clamp(1.05rem, 2.6vw, 1.2rem); }

p { margin: 0 0 1.1em; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 22px);
}

.section { padding: 68px 0; }
.section--alt { background: var(--bg-alt); }
.section--tight { padding: 44px 0; }

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Gumbi ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary { background: var(--pbc-blue); color: #fff; }
.btn--primary:hover { background: var(--pbc-blue-dark); color: #fff; }
.btn--ghost { border-color: rgba(255, 255, 255, .7); color: #fff; }
.btn--ghost:hover { background: #fff; color: var(--pbc-blue-dark); }
.btn--outline { border-color: var(--pbc-blue); color: var(--pbc-blue); }
.btn--outline:hover { background: var(--pbc-blue); color: #fff; }

/* ---------- Glava ---------- */
.topbar {
  background: var(--band);
  color: var(--band-ink);
  font-size: .85rem;
}
.topbar .wrap {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  padding-block: 8px;
  flex-wrap: wrap;
}
.topbar a { color: var(--band-ink); }
.topbar a:hover { color: #fff; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 84px;
}

.brand { display: flex; align-items: center; gap: 14px; flex: none; }
.brand:hover { text-decoration: none; }
.brand img { height: 40px; width: auto; }
/* Logotip ima prosojne črke, zato v temni temi potrebuje svetlo podlago. */
[data-theme="dark"] .brand img {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 0 7px #fff;
  margin-inline: 7px;
}
[data-theme="dark"] .img--plain { border-radius: 10px; }
.brand__claim {
  border-left: 1px solid var(--line);
  padding-left: 14px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  white-space: nowrap;
}

.header-actions { display: flex; align-items: center; gap: 8px; flex: none; }

.theme-toggle {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--heading);
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.theme-toggle:hover { background: var(--pbc-blue-pale); border-color: var(--pbc-blue); color: var(--pbc-blue); }
.theme-toggle svg { width: 20px; height: 20px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

.lang-switch { position: relative; }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--heading);
  font-family: inherit;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.lang-toggle:hover,
.lang-switch.is-open .lang-toggle { background: var(--pbc-blue-pale); border-color: var(--pbc-blue); color: var(--pbc-blue); }
.flag {
  flex: none;
  width: 21px;
  height: 14px;
  border-radius: 2px;
  display: block;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, .18);
}
.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 178px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
  z-index: 70;
}
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: none; }
.lang-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  color: var(--ink);
  font-size: .92rem;
  white-space: nowrap;
}
.lang-menu a:hover { background: var(--pbc-blue-pale); color: var(--pbc-blue); text-decoration: none; }
.lang-menu a[aria-current="true"] { color: var(--pbc-blue); font-weight: 600; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 5px 0;
  background: var(--heading);
  transition: transform .2s ease, opacity .2s ease;
}
.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); }

.nav > ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
}
.nav a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: .96rem;
  white-space: nowrap;
}
.nav a:hover { background: var(--pbc-blue-pale); color: var(--pbc-blue-dark); text-decoration: none; }
.nav a.is-active { color: var(--pbc-blue); box-shadow: inset 0 -3px 0 var(--pbc-blue); border-radius: 8px 8px 0 0; }

.has-sub { position: relative; }
.has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 7px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(2px);
}
.submenu {
  list-style: none;
  margin: 0;
  padding: 8px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 290px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.has-sub:hover .submenu,
.has-sub:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.submenu a { font-weight: 500; font-size: .93rem; padding: 9px 12px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 480px at 82% -12%, rgba(26, 134, 217, .5), transparent 62%),
    linear-gradient(135deg, var(--hero-a) 0%, var(--hero-b) 48%, var(--hero-c) 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8% -55% auto;
  width: 620px;
  height: 620px;
  border: 2px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}
.hero .wrap { position: relative; z-index: 1; }
.hero h1 { color: #fff; }
.hero p { color: rgba(255, 255, 255, .88); }

.hero--home .wrap {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding-block: 84px;
}
.hero--home .hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}
.hero__eyebrow {
  display: inline-block;
  font-size: .74rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .25);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }

.hero--page .wrap { padding-block: 62px; }
.hero--page p { max-width: 68ch; font-size: 1.1rem; margin-bottom: 0; }

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
}
.breadcrumb a { color: rgba(255, 255, 255, .9); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; opacity: .55; }

/* ---------- Kartice ---------- */
.grid { display: grid; gap: clamp(18px, 3vw, 26px); }
.grid > * { min-width: 0; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card__media {
  background: var(--media-bg);
  border-bottom: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  min-height: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  overflow: hidden;
}
.card__media img { width: 100%; height: 100%; object-fit: contain; }
.card__body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body h3 { margin-bottom: .35em; }
.card__body p { color: var(--ink-soft); font-size: .96rem; }
.card__tag {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--pbc-blue);
  background: var(--pbc-blue-pale);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.card__link {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  font-size: .94rem;
}
.card__link::after { content: " \2192"; }

.speclist {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  font-size: .93rem;
  color: var(--ink-soft);
}
.speclist li {
  padding: 7px 0 7px 24px;
  border-bottom: 1px dashed var(--line);
  position: relative;
}
.speclist li:last-child { border-bottom: 0; }
.speclist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 15px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--pbc-blue-light);
}

/* ---------- Značilnosti / ikone ---------- */
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.feature__icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--pbc-blue-pale);
  color: var(--pbc-blue);
  margin-bottom: 16px;
}
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: .4em; font-size: 1.08rem; }
.feature p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.checklist { list-style: none; margin: 0 0 1.2em; padding: 0; }
.checklist li {
  position: relative;
  padding: 8px 0 8px 34px;
  color: var(--ink-soft);
}
.checklist li strong { color: var(--ink); }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--pbc-blue-light);
  border-bottom: 3px solid var(--pbc-blue-light);
  transform: rotate(-45deg);
  border-radius: 2px;
}

/* ---------- Dvostolpčni blok ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}
.split > * { min-width: 0; }
.split--media-first .split__media { order: -1; }
.split__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split__media .img--plain {
  max-width: min(340px, 100%);
  margin-inline: auto;
  box-shadow: none;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--pbc-blue);
  border-radius: var(--radius);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
}

.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 22px); }
.stats > * { min-width: 0; }
.stat {
  text-align: center;
  padding: 26px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.stat b {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  color: var(--pbc-blue);
  margin-bottom: 8px;
}
.stat span { font-size: .92rem; color: var(--ink-soft); }

/* ---------- Tabela ---------- */
.table-wrap {
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
table { border-collapse: collapse; width: 100%; min-width: 520px; background: var(--surface); font-size: .95rem; }
th, td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
thead th { background: var(--pbc-blue-pale); color: var(--heading); font-size: .88rem; text-transform: uppercase; letter-spacing: .06em; }
tbody tr:last-child td { border-bottom: 0; }

/* Na telefonih se tabela z razredom table--stack prelomi v bloke z oznakami. */
@media (max-width: 620px) {
  .table-wrap--stack { overflow-x: visible; border: 0; border-radius: 0; }
  .table--stack { min-width: 0; display: block; background: transparent; }
  .table--stack thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .table--stack tbody, .table--stack tr, .table--stack td { display: block; }
  .table--stack tr {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 6px 16px 14px;
  }
  .table--stack tr + tr { margin-top: 12px; }
  .table--stack td { padding: 10px 0 0; border-bottom: 0; }
  .table--stack td::before {
    content: attr(data-label);
    display: block;
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--pbc-blue);
    margin-bottom: 4px;
  }
}

/* ---------- CTA ---------- */
.cta {
  background: linear-gradient(120deg, var(--hero-b), var(--hero-c));
  color: #fff;
  text-align: center;
}
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .88); max-width: 60ch; margin-inline: auto; }
.cta .hero__actions { justify-content: center; }

/* ---------- Kontakt ---------- */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.contact-card dl { margin: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px 20px; }
.contact-card dt { font-weight: 600; color: var(--heading); }
.contact-card dd { margin: 0; color: var(--ink-soft); }

/* ---------- Noga ---------- */
.site-footer {
  background: var(--band);
  color: var(--band-ink);
  padding-top: 58px;
  font-size: .94rem;
}
.site-footer h4 {
  color: #fff;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.site-footer a { color: #cfe2f2; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; padding-bottom: 44px; }
.footer-logo {
  background: #fff;
  border-radius: var(--radius);
  padding: 12px 16px;
  display: inline-block;
  margin-bottom: 18px;
}
.footer-logo img { height: 34px; width: auto; }
.footer-badge { margin-top: 20px; width: 92px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .13);
  padding: 20px 0 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: .87rem;
}
.footer-legal { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Odzivnost ---------- */

/* Manjši prenosniki */
@media (max-width: 1280px) {
  .brand__claim { display: none; }
}

/* Tablice – ležeče */
@media (max-width: 1024px) {
  .site-header .wrap { gap: 14px; }
  .nav > ul { gap: 0; }
  .nav a { padding: 10px 9px; font-size: .9rem; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .section { padding: 58px 0; }
}

/* Tablice – pokončno in manjše: pomični meni */
@media (max-width: 900px) {
  .site-header .wrap { min-height: 72px; gap: 12px; }
  .brand img { height: 34px; }
  .nav-toggle { display: block; }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 12px clamp(16px, 4vw, 22px) 22px;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: none;
  }
  .nav.is-open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav a { padding: 14px 10px; font-size: 1rem; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav a.is-active { box-shadow: none; }
  .has-sub > a::after { float: right; margin-top: 10px; }
  .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 14px;
    min-width: 0;
    display: none;
  }
  .has-sub.is-open .submenu { display: block; }
  .submenu a { padding: 12px 10px; font-size: .95rem; }

  .hero--home .wrap { grid-template-columns: 1fr; padding-block: 48px; gap: 34px; }
  .hero--home .hero__media { order: -1; }
  .hero--home .hero__media img { max-height: 46vh; width: auto; margin-inline: auto; }
  .hero--page .wrap { padding-block: 44px; }
  .hero::after { display: none; }

  .split { grid-template-columns: 1fr; }
  .split--media-first .split__media { order: 0; }
  .split__media img { max-height: 60vh; width: auto; margin-inline: auto; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--2 { grid-template-columns: 1fr; }
  .section { padding: 48px 0; }
}

/* Telefoni */
@media (max-width: 620px) {
  body { font-size: 16px; }
  .section { padding: 40px 0; }
  .topbar { font-size: .78rem; }
  .topbar .wrap {
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    padding-block: 7px;
  }
  .topbar .wrap > span { white-space: nowrap; }
  .topbar__support { display: none; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 12px; }
  .stat b { font-size: 1.7rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .card__body { padding: 20px 20px 22px; }
  .feature { padding: 24px 20px; }
  .panel { padding: 22px 20px; }
  .contact-card { padding: 24px 20px; }
  .contact-card dl { grid-template-columns: 1fr; gap: 2px; }
  .contact-card dd { margin-bottom: 10px; }
  .hero__actions { gap: 10px; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .btn { padding: 13px 20px; }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .footer-legal { flex-direction: column; gap: 10px; }
}

/* Ozki telefoni: glava mora spraviti logotip, jezik, temo in meni v eno vrstico. */
@media (max-width: 430px) {
  .site-header .wrap { gap: 8px; min-height: 68px; }
  .header-actions { gap: 2px; }
  .brand img { height: 32px; }
  [data-theme="dark"] .brand img { box-shadow: 0 0 0 5px #fff; margin-inline: 5px; }
  .theme-toggle { width: 38px; height: 38px; }
  .lang-toggle { height: 38px; padding: 0 8px; gap: 0; }
  .lang-toggle span { display: none; }
  .nav-toggle { padding: 8px 4px; }
  .nav-toggle span { width: 24px; }
  .nav { max-height: calc(100vh - 68px); }
}

@media (max-width: 380px) {
  .stats { grid-template-columns: 1fr; }
}

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