/* ===================================================
   zasebna-fizioterapija-ljubljana.si
   Design: navy + warm orange, friendly medical
   Fonts: Poppins (headings) / Nunito Sans (body)
   =================================================== */

:root {
  --navy: #0f203a;
  --navy-dark: #0f203a;
  --navy-deep: #0f203a;
  --ink: #0f203a;
  --accent: #99d0b3;
  --accent-dark: #99d0b3;
  --accent-text: #0f203a;
  --cream: #f4faf6;
  --section: #f4faf6;
  --white: #ffffff;
  --text: #0f203a;
  --muted: rgba(15, 32, 58, 0.66);
  --link: #0f203a;
  --border: rgba(15, 32, 58, 0.14);
  --border-strong: rgba(15, 32, 58, 0.3);
  --danger: #d64545;
  --radius: 16px;
  --radius-sm: 12px;
  --header-h: 76px;
  --shadow: 0 6px 24px rgba(15, 32, 58, 0.08);
  --shadow-lg: 0 16px 44px rgba(15, 32, 58, 0.14);
  --head: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; cursor: pointer; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 2px;
  border-radius: 4px;
}

.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;
}

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

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 780px; }

h1, h2, h3, h4 {
  font-family: var(--head);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.25;
}

h1 { font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 700; }
h2 { font-size: clamp(1.45rem, 3vw, 1.95rem); }
h3 { font-size: 1.15rem; }

.hl { color: inherit; background: linear-gradient(transparent 58%, #99d0b3 42%); }

.section { padding: 76px 0; }
.section-blue { background: var(--section); }
.section-cream { background: var(--cream); }

.section-head { max-width: 660px; margin-bottom: 42px; }
.section-head.centered { margin: 0 auto 42px; text-align: center; }
.kicker {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.section-head p { color: var(--muted); margin-top: 12px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 10px;
  border: 2px solid transparent;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  cursor: pointer;
}
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--accent); color: var(--ink); }
.btn-primary:hover { background: var(--navy); color: #fff; }

.btn-accent { background: var(--ink); color: #fff; }
.btn-accent:hover { background: var(--accent); color: var(--ink); }

.btn-outline { border-color: var(--border-strong); color: var(--ink); background: #fff; }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); }

.btn-ghost-light { border-color: rgba(255, 255, 255, 0.45); color: #fff; background: transparent; }
.btn-ghost-light:hover { border-color: #fff; }

.link-more {
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.link-more:hover { text-decoration: underline; }
.link-more .arrow { transition: transform 0.2s ease; }
.link-more:hover .arrow { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: calc(var(--header-h) + 1px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}
.brand-logo { height: 52px; width: auto; flex-shrink: 0; }
.brand-logo-full { height: 48px; width: auto; flex-shrink: 0; display: block; }
.brand-name {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.82rem;
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: var(--navy);
  text-transform: uppercase;
}
.brand-name .loc { display: block; font-weight: 600; font-size: 0.68rem; color: var(--accent-text); letter-spacing: 0.18em; }

.main-nav { display: flex; align-items: center; gap: 2px; }
.main-nav > a, .nav-item > .dd-trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  font-family: var(--head);
  font-weight: 500;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--ink);
  transition: color 0.2s ease;
}
.main-nav > a:hover, .nav-item > .dd-trigger:hover { color: var(--accent-text); }
.main-nav > a.is-active, .nav-item.is-active > .dd-trigger { color: var(--accent-text); }

.nav-item { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 250px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  z-index: 50;
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
}
.dropdown a:hover { background: var(--cream); color: var(--accent-text); }
.nav-item:hover .dropdown, .nav-item:focus-within .dropdown { display: block; }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-actions .btn { min-height: 44px; padding: 9px 20px; font-size: 0.9rem; }
.btn-phone { border: 2px solid var(--border-strong); color: var(--navy); background: #fff; }
.btn-phone:hover { border-color: var(--navy); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--ink);
  align-items: center;
  justify-content: center;
}
.main-nav .nav-cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: #fff;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 48px;
  align-items: center;
  min-height: 560px;
}
.hero-copy { padding: 64px 0; }
.hero-copy h1 { font-size: clamp(2.1rem, 4.2vw, 3rem); }
.hero-copy > p { margin: 18px 0 28px; font-size: 1.08rem; color: var(--muted); max-width: 470px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 30px;
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
}
.hero-checks span { display: inline-flex; align-items: center; gap: 8px; }
.hero-checks svg { color: var(--accent-text); flex-shrink: 0; }
.hero-photo { position: relative; height: 100%; min-height: 480px; }
.hero-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 0 130px;
}

/* ---------- Storitve (icon cards) ---------- */
.services-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { box-shadow: 0 10px 30px rgba(15, 32, 58, 0.09); transform: translateY(-3px); border-color: var(--accent); }
.service-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.srv-arrow {
  position: absolute;
  top: 30px;
  right: 22px;
  color: var(--border-strong);
  transition: color 0.2s ease, transform 0.2s ease;
}
.service-card:hover .srv-arrow { color: var(--ink); transform: translateX(3px); }
.service-card h3 { font-size: 0.98rem; margin-bottom: 6px; }
.service-card p { font-size: 0.85rem; color: var(--muted); line-height: 1.55; }

/* ---------- Zakaj mi (feature panel) ---------- */
.why-panel {
  background: var(--section);
  border-radius: 24px;
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.why-panel h2 .hl { color: inherit; background: linear-gradient(transparent 58%, #99d0b3 42%); }
.why-panel .intro p { color: var(--muted); margin: 16px 0 24px; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 24px;
}

.service-icon, .wi-icon, .step-icon { overflow: hidden; }
.service-icon img, .wi-icon img, .step-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  transform: scale(1.14);
}

.why-item.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
}
.why-item .wi-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: none;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  overflow: hidden;
}
.why-item h3 { font-size: 0.98rem; margin-bottom: 5px; }
.why-item p { font-size: 0.86rem; color: var(--muted); line-height: 1.55; }
.why-grid { gap: 18px; }

/* ---------- Koraki ---------- */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.step-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px 26px;
  text-align: center;
  overflow: hidden;
}
.step-card::before {
  content: "0" attr(data-num);
  position: absolute;
  top: 18px;
  left: 22px;
  font-family: var(--head);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: var(--accent);
  pointer-events: none;
}
.step-card > * { position: relative; }
.step-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  border-radius: 15px;
  background: none;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.step-card h3 { font-size: 1.02rem; margin-bottom: 8px; }
.step-card p { font-size: 0.88rem; color: var(--muted); }

/* ---------- Izjave ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 6px 24px rgba(15, 32, 58, 0.05);
}
.testimonial::after {
  content: "\201D";
  position: absolute;
  top: 14px;
  right: 26px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  pointer-events: none;
}
.t-stars { display: flex; gap: 3px; color: var(--accent); }
.testimonial blockquote {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.7;
  flex: 1;
}
.t-who {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.t-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 3px 12px rgba(15, 32, 58, 0.18);
}
.t-name strong {
  display: block;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.3;
}
.t-name > span { font-size: 0.88rem; color: var(--muted); }

/* ---------- Članki ---------- */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.article-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.article-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.article-thumb {
  aspect-ratio: 16 / 10;
  background: var(--section);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.article-thumb img { width: 100%; height: 100%; object-fit: cover; }
.article-body { padding: 20px 22px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.article-meta { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; color: var(--muted); }
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--accent-text);
  font-family: var(--head);
  font-size: 0.74rem;
  font-weight: 600;
}
.article-card h3 { font-size: 1.02rem; line-height: 1.4; }
.article-card h3 a:hover { color: var(--navy); }
.article-card .excerpt { color: var(--muted); font-size: 0.9rem; flex: 1; }

/* ---------- Blog filtri ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn {
  border: 1.5px solid var(--border-strong);
  background: #fff;
  color: var(--text);
  border-radius: 10px;
  padding: 9px 18px;
  min-height: 44px;
  font-family: var(--head);
  font-weight: 500;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.filter-btn:hover { border-color: var(--navy); color: var(--navy); }
.filter-btn.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }
.filter-empty { display: none; text-align: center; color: var(--muted); padding: 48px 0; }

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}
.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 17px 22px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 44px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--accent-text);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { padding: 0 22px 20px; color: var(--muted); font-size: 0.95rem; }

.faq-cta {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 32px;
}
.faq-cta .fc-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #fff;
  color: var(--accent-text);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  overflow: hidden;
}
.faq-cta .fc-icon img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.15); }
.faq-cta h3 { margin-bottom: 10px; }
.faq-cta p { color: var(--muted); font-size: 0.95rem; margin-bottom: 20px; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--navy);
  color: #fff;
  border-radius: 22px;
  padding: 48px 52px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 32px;
  align-items: center;
}
.cta-band h2 { color: #fff; }
.cta-band .cta-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin-top: 18px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}
.cta-band .cta-checks span { display: inline-flex; align-items: center; gap: 8px; }
.cta-band .cta-checks svg { color: var(--accent-dark); }
.cta-band .cta-buttons { display: flex; flex-direction: column; gap: 12px; }
.cta-band .btn-white { background: var(--accent); color: var(--ink); }
.cta-band .btn-white:hover { background: #fff; }

/* ---------- Page hero (podstrani) ---------- */
.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 52px 0 42px;
}
.breadcrumbs {
  font-size: 0.84rem;
  color: var(--muted);
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumbs a:hover { color: var(--navy); text-decoration: underline; }
.breadcrumbs .sep { color: var(--border-strong); }
.page-hero .lead { margin-top: 14px; font-size: 1.06rem; color: var(--muted); max-width: 700px; }

/* ---------- Vsebinske postavitve ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.split.rev { grid-template-columns: 0.95fr 1.05fr; }
.split-photo img { border-radius: var(--radius); width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.split h2 { margin-bottom: 14px; }
.split p + p { margin-top: 12px; }
.split ul { margin: 14px 0 0 20px; }
.split li { margin-bottom: 8px; }
.split li::marker { color: var(--accent-text); }
.split .actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

.prose h2 { margin: 40px 0 14px; }
.prose h3 { margin: 26px 0 10px; }
.prose p { margin-bottom: 14px; }
.prose ul, .prose ol { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 6px; }
.prose li::marker { color: var(--accent-text); }
.prose-meta { color: var(--muted); font-size: 0.9rem; margin-bottom: 8px; }

.callout {
  border-left: 4px solid var(--accent);
  background: var(--cream);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 18px 22px;
  margin: 24px 0;
  font-size: 0.96rem;
}
.callout strong { color: var(--ink); }

.table-wrap { overflow-x: auto; margin: 28px 0; border: 1px solid var(--border); border-radius: var(--radius-sm); }
table.data { width: 100%; border-collapse: collapse; font-size: 0.94rem; min-width: 520px; }
table.data th, table.data td { padding: 13px 16px; text-align: left; vertical-align: top; }
table.data thead th { background: var(--section); color: var(--navy); font-family: var(--head); font-weight: 600; font-size: 0.88rem; }
table.data tbody tr + tr { border-top: 1px solid var(--border); }

/* ---------- Kartice terapij / področij ---------- */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.tile:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.tile-photo { aspect-ratio: 16 / 10; overflow: hidden; }
.tile-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.tile:hover .tile-photo img { transform: scale(1.04); }
.tile-body { padding: 22px 24px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.tile-body h3 { font-size: 1.08rem; }
.tile-body p { color: var(--muted); font-size: 0.92rem; flex: 1; }

/* ---------- Obrazci ---------- */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-family: var(--head); font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.form-field label .req { color: var(--danger); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit;
  font-size: 16px;
  padding: 12px 14px;
  min-height: 48px;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--text);
  transition: border-color 0.2s ease;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--navy);
  outline: 3px solid rgba(30, 61, 109, 0.15);
  outline-offset: 0;
}
.form-field .hint { font-size: 0.82rem; color: var(--muted); }
.form-field .error { display: none; font-size: 0.84rem; color: var(--danger); font-weight: 700; }
.form-field.has-error input, .form-field.has-error textarea { border-color: var(--danger); }
.form-field.has-error .error { display: block; }
.form-note { font-size: 0.84rem; color: var(--muted); margin-top: 14px; }
.form-note a { color: var(--navy); text-decoration: underline; }
.form-success {
  display: none;
  background: #eefaf1;
  border: 1px solid #bfe8cc;
  color: #1c6b3c;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-top: 18px;
  font-weight: 700;
}
.form-success.is-visible { display: flex; align-items: center; gap: 10px; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-item .ci {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--accent-text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact-item h3 { font-size: 1rem; margin-bottom: 2px; }
.contact-item p, .contact-item a { color: var(--muted); font-size: 0.95rem; }
.contact-item a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- Avtor ---------- */
.author-hero { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.author-photo {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: var(--section);
  display: grid;
  place-items: center;
  color: var(--navy);
  overflow: hidden;
}
.author-photo img { width: 100%; height: 100%; object-fit: cover; }
.author-role { color: var(--accent-text); font-family: var(--head); font-weight: 600; margin: 6px 0 18px; }
.social-links { display: flex; gap: 10px; margin-top: 22px; }
.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.social-links a:hover { color: var(--navy); border-color: var(--navy); background: var(--section); }
.author-cat { margin-top: 44px; }
.author-cat h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.author-list { list-style: none; }
.author-list li { border-bottom: 1px solid var(--border); }
.author-list a { display: flex; justify-content: space-between; gap: 20px; padding: 13px 4px; font-weight: 600; }
.author-list a:hover { color: var(--navy); }
.author-list .date { color: var(--muted); font-size: 0.85rem; flex-shrink: 0; font-weight: 400; }

/* ---------- Article layout (single post) ---------- */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 56px;
  align-items: start;
}
.article-content { min-width: 0; }
.article-content > h2 { margin: 44px 0 16px; scroll-margin-top: calc(var(--header-h) + 20px); }
.article-content > h3 { margin: 28px 0 12px; }
.article-content > p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin: 0 0 16px 22px; }
.article-content li { margin-bottom: 8px; }
.article-content li::marker { color: var(--accent-text); }
.article-figure { margin: 28px 0; }
.article-figure img { width: 100%; border-radius: var(--radius); aspect-ratio: 16 / 9; object-fit: cover; }
.article-figure figcaption { font-size: 0.85rem; color: var(--muted); margin-top: 10px; }
.article-byline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  font-size: 0.9rem;
  color: var(--muted);
}
.byline-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--head);
}
.article-byline a { color: var(--navy); font-weight: 700; }
.article-byline a:hover { text-decoration: underline; }
.byline-dot { color: var(--border-strong); }

.article-aside { position: sticky; top: calc(var(--header-h) + 24px); display: flex; flex-direction: column; gap: 24px; }
.aside-box { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
.aside-box h2, .aside-box h3 { font-size: 1rem; margin-bottom: 12px; }
.toc { list-style: none; }
.toc li + li { margin-top: 4px; }
.toc a { display: block; padding: 7px 10px; border-radius: 8px; font-size: 0.9rem; color: var(--muted); }
.toc a:hover { background: var(--cream); color: var(--accent-text); }
.aside-cta { background: var(--navy); border: none; color: #fff; }
.aside-cta h3 { color: #fff; }
.aside-cta p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.85); margin-bottom: 16px; }

/* ---------- Footer (svetel) ---------- */
.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
  margin-top: 76px;
  font-size: 0.93rem;
  color: var(--muted);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.site-footer .brand { margin-bottom: 14px; }
.site-footer h3 { font-size: 0.95rem; margin-bottom: 14px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 9px; }
.footer-links a:hover { color: var(--navy); text-decoration: underline; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.footer-contact svg { color: var(--accent-text); flex-shrink: 0; margin-top: 3px; }
.footer-note {
  border-top: 1px solid var(--border);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.83rem;
}
.footer-note a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- Odzivnost ---------- */
@media (max-width: 1100px) {
  .services-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; min-height: 0; }
  .hero-photo { min-height: 320px; }
  .hero-photo img { border-radius: var(--radius); position: static; }
  .hero-copy { padding: 48px 0 8px; }
  .why-panel { grid-template-columns: 1fr; padding: 40px 32px; gap: 36px; }
  .steps-row, .testimonials, .article-grid, .tile-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid, .split, .split.rev, .contact-grid, .author-hero { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; }
  .article-aside nav.aside-box { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .author-photo { max-width: 260px; }
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 24px 20px;
    gap: 2px;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.is-open { display: flex; }
  .main-nav > a, .nav-item > .dd-trigger { min-height: 44px; }
  .nav-item .dropdown {
    position: static;
    display: block;
    border: none;
    box-shadow: none;
    padding: 0 0 6px 14px;
    min-width: 0;
  }
  .main-nav .nav-cta {
    display: inline-flex;
    margin-top: 14px;
  }
  .header-actions { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 54px 0; }
  .btn { width: 100%; max-width: 450px; }
  .hero-actions, .triage-actions, .split .actions, .cta-band .cta-buttons { width: 100%; }
  .services-strip { grid-template-columns: repeat(2, 1fr); }
  .steps-row, .testimonials, .article-grid, .tile-grid, .why-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; padding: 36px 28px; }
  .form-card { padding: 24px 20px; }
}

.triage-card 
@media (max-width: 1024px) {
  }
@media (max-width: 620px) {
  .triage-chips,   }

/* ---------- Hero rating ---------- */
.hero-rating { display: flex; align-items: center; gap: 16px; margin-top: 30px; }
.hr-avatars { display: flex; }
.hr-avatars img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -12px;
  box-shadow: 0 2px 8px rgba(15, 32, 58, 0.15);
}
.hr-avatars img:first-child { margin-left: 0; }
.hr-meta { display: flex; flex-direction: column; font-size: 0.92rem; color: var(--muted); }
.hr-stars { display: inline-flex; gap: 2px; color: var(--accent); margin-bottom: 2px; }
.hr-text strong { color: var(--ink); font-family: var(--head); }

/* ---------- Single post: oznake + avtorski blok ---------- */
.post-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 36px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
}
.post-tags a.badge:hover { background: var(--accent); color: var(--ink); }
.author-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--section);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 28px;
}
.author-box .byline-avatar { width: 56px; height: 56px; font-size: 1.05rem; flex-shrink: 0; }
.author-box h3 { font-size: 1.08rem; margin-bottom: 6px; }
.author-box h3 a:hover { color: var(--navy); text-decoration: underline; }
.author-box p { color: var(--muted); font-size: 0.93rem; }
.author-box-links { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 20px; margin-top: 14px; }
.author-box .social-links { display: inline-flex; gap: 8px; margin: 0; }
.author-box .social-links a { width: 34px; height: 34px; border-radius: 9px; }

/* ---------- CTA foto medaljon ---------- */
.cta-band.has-photo { margin-top: 46px; padding-right: 250px; }
.cta-photo {
  position: absolute;
  top: -46px;
  right: 64px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 6px solid #fff;
  object-fit: cover;
  object-position: top;
  box-shadow: 0 14px 34px rgba(15, 32, 58, 0.25);
  z-index: 2;
}
@media (max-width: 900px) {
  .cta-photo { display: none; }
  }


/* ---------- Google kartica (naroči se) ---------- */
.google-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.g-row { display: flex; align-items: center; gap: 10px; }
.g-word { font-family: var(--head); font-weight: 800; font-size: 1.15rem; color: var(--ink); }
.g-stars { display: inline-flex; gap: 2px; color: var(--accent); }
.g-row strong { font-family: var(--head); font-size: 1.1rem; color: var(--ink); }
.g-sub { font-size: 0.84rem; color: var(--muted); margin-top: 4px; }
.g-quote {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
}
.g-quote img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.g-quote p { font-size: 0.92rem; color: var(--text); }
.g-quote p span { display: block; margin-top: 6px; font-size: 0.82rem; color: var(--muted); }

/* ---------- Hitri posvet (triažni pripomoček) ---------- */
.triage {
  background: var(--navy);
  border-radius: 26px;
  padding: 56px 56px 60px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 56px;
  align-items: center;
}
.triage-head .kicker { color: var(--accent); }
.triage-head h2 { color: #fff; }
.triage-head p { color: rgba(255, 255, 255, 0.75); margin-top: 14px; max-width: 430px; }
.triage-benefits { list-style: none; margin-top: 26px; display: grid; gap: 12px; }
.triage-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.9);
}
.triage-benefits svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }

.triage-card {
  background: #fff;
  border-radius: 20px;
  padding: 32px 34px 30px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.triage-card > * { width: 100%; }

.triage-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}
.triage-step-label {
  font-family: var(--head);
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.triage-seg { display: inline-flex; gap: 5px; }
.triage-seg i {
  width: 26px;
  height: 5px;
  border-radius: 3px;
  background: rgba(15, 32, 58, 0.14);
}
.triage-seg i.on { background: var(--accent); }

.triage-card h3 { font-size: 1.22rem; margin-bottom: 18px; }
.triage-card h3:focus { outline: none; }

.triage-chips { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.triage-chips.two { grid-template-columns: repeat(2, 1fr); }
.chip {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: #fff;
  padding: 14px 12px;
  min-height: 52px;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
  text-align: center;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.chip:hover { border-color: var(--accent); box-shadow: 0 6px 18px rgba(15, 32, 58, 0.1); transform: translateY(-2px); }
.chip-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 8px 12px;
}
.chip-icon img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  transform: scale(1.12);
}
.chip-icon span { font-size: 0.84rem; line-height: 1.25; }

.triage-foot { font-size: 0.78rem; color: var(--muted); margin-top: 16px; }
.triage-note { color: var(--muted); font-size: 0.94rem; margin-bottom: 16px; }
.triage-result {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--section);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  font-size: 0.98rem;
  margin-bottom: 20px;
}
.triage-result svg { color: var(--accent-text); flex-shrink: 0; margin-top: 2px; }
.triage-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.triage-back {
  display: inline-block;
  margin-top: auto;
  padding-top: 18px;
  width: auto;
  background: none;
  border: none;
  font-family: var(--head);
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--muted);
  min-height: 44px;
}
.triage-back:hover { color: var(--ink); text-decoration: underline; }

@media (max-width: 1024px) {
  .triage { grid-template-columns: 1fr; padding: 40px 30px 44px; gap: 34px; }
}
@media (max-width: 620px) {
  .triage-chips { grid-template-columns: repeat(2, 1fr); }
  .triage-chips.two { grid-template-columns: 1fr; }
  .triage-card { min-height: 520px; padding: 26px 22px; }
}

/* ---------- FAQ stranski blok (navy) ---------- */
.faq-cta-dark { background: var(--navy); }
.faq-cta-dark h3 { color: #fff; }
.faq-cta-dark p { color: rgba(255, 255, 255, 0.78); }
.faq-cta-dark .fc-icon { background: #fff; }

.fc-phone {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.fc-phone > span { display: block; font-size: 0.84rem; color: rgba(255, 255, 255, 0.7); margin-bottom: 6px; }
.fc-phone a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--head);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.fc-phone a svg { color: var(--accent); }
.fc-phone a:hover { color: var(--accent); }
.fc-phone a:hover svg { color: var(--accent); }

/* ---------- Mobilni prepisi (na koncu, da prepišejo osnovna pravila) ---------- */
@media (max-width: 900px) {
  .cta-band.has-photo { margin-top: 0; padding-right: 52px; }
}
@media (max-width: 620px) {
  .cta-band.has-photo { padding-right: 28px; }
}

/* ---------- Enotna kljukica (generirana ikona) ---------- */
.ico-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: inline-block;
}
.hero-checks .ico-check, .cta-checks .ico-check { width: 19px; height: 19px; }
.triage-benefits .ico-check { width: 20px; height: 20px; margin-top: 0; }
.check-list .ico-check { width: 20px; height: 20px; margin-top: 1px; }

/* ---------- Manjkajoči slog: opozorilni callout ---------- */
.callout.warn {
  border-left-color: var(--danger);
  background: #fdf4f4;
}
