/* ═══════════════════════════════════════════════
   Hrvatski Pasoš – main.css
   ═══════════════════════════════════════════════ */

/* ── VARIJABLE ─────────────────────────────────── */
:root {
  --red:       #CC0000;
  --dark-red:  #990000;
  --blue:      #003DA5;
  --dark-blue: #001f5b;
  --gold:      #D4AF37;
  --cream:     #FAF7F2;
  --dark:      #0D0D0D;
  --mid:       #3a3a3a;
  --light:     #f0ece4;
  --border:    rgba(0,0,0,0.10);
  --white:     #ffffff;
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--dark); overflow-x: hidden; line-height: 1.6; }
a     { color: inherit; }
img   { max-width: 100%; height: auto; display: block; }

/* ── HEADER ─────────────────────────────────────── */
header {
  background: var(--dark-blue);
  position: relative;
  overflow: hidden;
  padding: 0;
}

.header-stripe { display: flex; height: 6px; }
.header-stripe span { flex: 1; }
.s-red   { background: var(--red); }
.s-white { background: #fff; }
.s-blue  { background: var(--blue); }

/* ── MAIN NAV (u headeru) ───────────────────────── */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  position: relative;
  z-index: 10;
}

.nav-logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
  filter: brightness(1);
}
@media (max-width: 640px) {
  .nav-logo-img { height: 38px; max-width: 160px; }
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
}

.lang-switcher { display: flex; gap: 8px; }

.lang-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.lang-btn.active,
.lang-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  font-weight: 600;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  padding: 80px 48px 100px;
  position: relative;
  z-index: 5;
}

.hero-bg-shield {
  position: absolute;
  right: -60px; top: -40px;
  width: 520px; height: 520px;
  opacity: 0.04;
  font-size: 480px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 14px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── BUTTONS ─────────────────────────────────────── */
.btn-primary {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--dark-red); }

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 14px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

/* ── STATS BAND ──────────────────────────────────── */
.stats-band {
  background: var(--red);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  text-align: center;
}

.stat-item {
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  font-weight: 700;
  display: block;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
}

/* ── STICKY TOP NAV ──────────────────────────────── */
.top-nav {
  position: sticky;
  top: 0;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(8px);
  z-index: 100;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.top-nav::-webkit-scrollbar { display: none; }

.top-nav a {
  white-space: nowrap;
  padding: 14px 22px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--mid);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}
.top-nav a:hover,
.top-nav a.active {
  color: var(--red);
  border-bottom-color: var(--red);
}

/* ── SECTIONS ────────────────────────────────────── */
section { padding: 80px 48px; }

section.bg-dark      { background: var(--dark); }
section.bg-dark-blue { background: var(--dark-blue); }
section.bg-white     { background: var(--white); }
section.bg-light     { background: var(--light); }

.section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  color: var(--mid);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── ELIGIBILITY GRID ────────────────────────────── */
.elig-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.elig-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  border-top: 3px solid transparent;
}
.elig-card:hover     { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.elig-card.easy      { border-top-color: #2e7d32; }
.elig-card.med       { border-top-color: var(--gold); }
.elig-card.hard      { border-top-color: var(--red); }

.elig-icon  { font-size: 1.5rem; margin-bottom: 12px; display: block; }
.elig-title { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.elig-desc  { font-size: 0.85rem; color: var(--mid); line-height: 1.6; margin-bottom: 12px; }

/* ── BADGES ──────────────────────────────────────── */
.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 4px;
}
.badge-easy, .badge-opt  { background: #e8f5e9; color: #2e7d32; }
.badge-med               { background: #fff8dc; color: #8a6000; }
.badge-hard, .badge-req  { background: #ffeaea; color: var(--red); }
.badge-prev              { background: #fff3e0; color: #e65100; }

/* ── INFO BOXES ──────────────────────────────────── */
.info-box-warn {
  background: #fff3e0;
  border-left: 4px solid #e65100;
  padding: 16px 20px;
  max-width: 700px;
  font-size: 0.88rem;
  color: #5d4037;
  line-height: 1.65;
  margin-top: 24px;
}
.info-box-ok {
  background: #e8f5e9;
  border-left: 4px solid #2e7d32;
  padding: 16px 20px;
  max-width: 700px;
  font-size: 0.88rem;
  color: #1b5e20;
  line-height: 1.65;
  margin-top: 24px;
}
.info-box-blue {
  background: #e8f0ff;
  border-left: 4px solid var(--blue);
  padding: 16px 20px;
  max-width: 700px;
  font-size: 0.88rem;
  color: var(--dark-blue);
  line-height: 1.65;
  margin-top: 24px;
}

/* ── QUIZ / KALKULATOR ───────────────────────────── */
.quiz-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 40px;
  max-width: 680px;
}

/* ── TABS ────────────────────────────────────────── */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 14px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  color: var(--mid);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all 0.2s;
}
.tab-btn.active,
.tab-btn:hover { color: var(--red); border-bottom-color: var(--red); font-weight: 600; }

.tab-panel        { display: none; }
.tab-panel.active { display: block; }

/* ── DOC CARDS ───────────────────────────────────── */
.docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.doc-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.doc-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }

.doc-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.doc-title { font-weight: 600; font-size: 0.95rem; margin-bottom: 6px; }
.doc-note  { font-size: 0.82rem; color: var(--mid); line-height: 1.55; }

/* ── TIMELINE ────────────────────────────────────── */
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 720px; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
  width: 2px; background: linear-gradient(to bottom, var(--red), var(--blue));
  z-index: 0;
}
.tl-item {
  display: flex; flex-direction: column; padding: 0 0 36px 68px; position: relative;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: 20px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--red); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--red); z-index: 1;
}
.tl-step  { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 4px; }
.tl-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.tl-desc  { font-size: 0.88rem; color: var(--mid); line-height: 1.7; margin-bottom: 8px; }
.tl-time  { display: inline-block; background: var(--cream); border: 1px solid var(--border); font-size: 0.75rem; font-weight: 600; padding: 3px 10px; border-radius: 100px; color: var(--mid); }

/* ── COST GRID ───────────────────────────────────── */
.cost-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 16px;
}
.cost-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 20px; border-top: 3px solid var(--gold);
}
.cost-amount { display: block; font-family: 'Playfair Display',serif; font-size: 1.5rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 6px; }
.cost-name   { font-weight: 600; font-size: 0.88rem; margin-bottom: 4px; color: var(--dark); }
.cost-note   { font-size: 0.78rem; color: var(--mid); line-height: 1.5; }

/* ── FAQ ──────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0; max-width: 720px; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  width: 100%; padding: 18px 0; background: transparent; border: none;
  text-align: left; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; color: var(--dark);
  cursor: pointer; gap: 16px; transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-arrow {
  font-size: 1rem; color: var(--mid); flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--red); }
.faq-a {
  max-height: 0; overflow: hidden;
  font-size: 0.9rem; color: var(--mid); line-height: 1.75;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1), padding 0.25s;
  padding: 0;
  white-space: pre-line;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 18px; }

/* ── CONTACT ─────────────────────────────────────── */
.bg-dark { background: var(--dark-blue); padding: 80px 48px; }
.contact-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px,1fr));
  gap: 16px; margin-top: 2rem;
}
.contact-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 20px; display: flex; flex-direction: column; gap: 8px;
}
.contact-icon  { font-size: 1.5rem; }
.contact-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.4); font-weight: 700; }
.contact-val   { font-size: 0.87rem; color: rgba(255,255,255,0.85); line-height: 1.65; }
.contact-val a { color: var(--gold); text-decoration: none; }
.contact-val a:hover { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 32px 48px;
  font-size: 0.82rem;
  line-height: 1.7;
}
footer strong { color: rgba(255,255,255,0.85); font-size: 0.88rem; }
footer a { color: rgba(255,255,255,0.55); text-decoration: underline; transition: color 0.2s; }
footer a:hover { color: #fff; }
footer p { margin-bottom: 6px; }
footer p:last-child { margin-bottom: 0; }

/* ── PROSE PAGES ─────────────────────────────────── */
.prose-page { max-width: 760px; }
.qa-section { display: flex; flex-direction: column; }
.qa-item { padding: 28px 0; border-bottom: 1px solid var(--border); }
.qa-item:last-child { border-bottom: none; }
.qa-item h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.qa-item h3 { font-size: 0.95rem; font-weight: 700; margin: 14px 0 6px; color: var(--dark-blue); }
.qa-item p  { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 8px; }
.qa-item ul, .qa-item ol { margin: 8px 0 8px 20px; }
.qa-item li { font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin-bottom: 4px; }
.comparison-table { overflow-x: auto; margin-top: 12px; }
.comparison-table table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.comparison-table th { background: var(--dark-blue); color: #fff; padding: 10px 14px; text-align: left; font-size: 0.78rem; text-transform: uppercase; }
.comparison-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--mid); }

/* ── INFO WARN BOX ───────────────────────────────── */
.info-box-warn {
  background: #FFF8E1; border-left: 4px solid var(--gold);
  border-radius: 0 8px 8px 0; padding: 14px 18px;
  font-size: 0.87rem; color: #7a5c00; line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* ── BTN SECONDARY ───────────────────────────────── */
.btn-secondary {
  display: inline-block; padding: 10px 22px;
  background: transparent; color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; text-decoration: none;
  transition: all 0.2s; cursor: pointer;
  font-size: 0.88rem;
}
.btn-secondary:hover { border-color: #fff; color: #fff; }

/* ══════════════════════════════════════
   CHECKLIST — redesign
   ══════════════════════════════════════ */
/* ══════════════════════════════════════
   CHECKLIST — premium redesign
   ══════════════════════════════════════ */

/* ── Wrapper ── */
.cl-wrap {
  max-width: 720px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,31,91,0.08), 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
}

/* ── Tab navigacija ── */
.cl-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--dark-blue);
}
.cl-tab {
  display: flex; flex-direction: column; align-items: center;
  gap: 5px; padding: 16px 8px;
  background: transparent; border: none; border-bottom: 3px solid transparent;
  cursor: pointer; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif; position: relative;
}
.cl-tab::after {
  content: ''; position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.cl-tab:last-child::after { display: none; }
.cl-tab:hover { background: rgba(255,255,255,0.06); }
.cl-tab.active {
  background: rgba(255,255,255,0.1);
  border-bottom-color: var(--gold);
}
.cl-tab-label {
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.5);
  white-space: nowrap; line-height: 1.3; text-align: center;
}
.cl-tab.active .cl-tab-label { color: #fff; }
.cl-tab-badge {
  font-size: 0.65rem; font-weight: 800; padding: 2px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  transition: all 0.25s; letter-spacing: 0.02em;
}
.cl-tab.active .cl-tab-badge {
  background: var(--gold);
  color: var(--dark);
}

/* ── Panel ── */
.cl-panel { display: none; }
.cl-panel.active { display: block; }

/* ── Intro bar ── */
.cl-intro-bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; padding: 14px 24px;
  background: linear-gradient(135deg, rgba(0,31,91,0.04) 0%, rgba(0,31,91,0.02) 100%);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.cl-intro-text {
  font-size: 0.85rem; color: var(--mid);
  line-height: 1.6; flex: 1;
}
.cl-lawyer-link {
  font-size: 0.78rem; font-weight: 700; color: var(--red);
  text-decoration: none; white-space: nowrap;
  padding: 5px 12px; border: 1.5px solid var(--red);
  border-radius: 6px; transition: all 0.2s;
}
.cl-lawyer-link:hover { background: var(--red); color: #fff; }

/* ── Progress ── */
.cl-progress-wrap {
  display: flex; align-items: center; gap: 20px;
  padding: 16px 24px;
  background: var(--dark-blue);
}
.cl-progress-ring-wrap {
  position: relative; width: 56px; height: 56px; flex-shrink: 0;
}
.cl-ring { width: 56px; height: 56px; transform: rotate(-90deg); }
.cl-ring-bg   { fill: none; stroke: rgba(255,255,255,0.12); stroke-width: 4; }
.cl-ring-fill {
  fill: none; stroke: var(--gold); stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cl-ring-pct {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center;
  font-size: 0.68rem; font-weight: 800; color: var(--gold);
  letter-spacing: -0.03em;
}
.cl-progress-info { flex: 1; }
.cl-progress-title {
  font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: rgba(255,255,255,0.4); margin-bottom: 8px;
}
.cl-progress-bar-wrap {
  height: 4px; background: rgba(255,255,255,0.1);
  border-radius: 100px; margin-bottom: 6px;
}
.cl-progress-bar {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, #f5cc60 100%);
  border-radius: 100px; width: 0;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cl-progress-count {
  font-size: 0.78rem; color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ── Grupe ── */
.cl-group {
  border-bottom: 1px solid var(--border);
}
.cl-group:last-of-type { border-bottom: none; }

.cl-group-header {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 14px 24px;
  background: transparent;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: background 0.15s;
  user-select: none;
}
.cl-group-header:hover { background: rgba(0,31,91,0.02); }

.cl-group-icon {
  font-size: 1.1rem; width: 32px; height: 32px;
  background: var(--light); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cl-group-title {
  font-size: 0.82rem; font-weight: 700;
  color: var(--dark); flex: 1; text-align: left;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.cl-group-count {
  font-size: 0.7rem; font-weight: 800;
  color: var(--mid); background: var(--light);
  padding: 3px 9px; border-radius: 100px;
  transition: all 0.25s; border: 1.5px solid var(--border);
}
.cl-group-arrow {
  font-size: 0.75rem; color: var(--mid);
  transition: transform 0.25s cubic-bezier(0.4,0,0.2,1);
}
.cl-group.collapsed .cl-group-arrow { transform: rotate(-90deg); }
.cl-group.collapsed .cl-group-body  {
  display: none;
}
.cl-group-body { padding: 0; }

/* ── Stavke ── */
.cl-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 24px 14px 24px;
  cursor: pointer;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  transition: background 0.15s, transform 0.1s;
  position: relative;
}
.cl-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent; transition: background 0.2s;
}
.cl-item:last-child { border-bottom: none; }
.cl-item:hover { background: rgba(0,31,91,0.02); }
.cl-item:hover::before { background: var(--border); }
.cl-item.checked { background: rgba(0,150,60,0.03); }
.cl-item.checked::before { background: #22c55e; }

/* Checkbox */
.cl-checkbox {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 6px; border: 2px solid #d1d5db;
  background: #fff; display: flex; align-items: center;
  justify-content: center; margin-top: 1px;
  transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}
.cl-check-icon {
  width: 12px; height: 10px; opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  transform: scale(0.7);
}
.cl-item:hover .cl-checkbox { border-color: #9ca3af; }
.cl-item.checked .cl-checkbox {
  background: #22c55e; border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.cl-item.checked .cl-check-icon {
  opacity: 1; transform: scale(1);
}

/* Item body */
.cl-item-body { flex: 1; min-width: 0; }
.cl-item-top  {
  display: flex; align-items: flex-start;
  gap: 8px; flex-wrap: wrap; margin-bottom: 4px;
}
.cl-item-text {
  font-size: 0.88rem; font-weight: 600;
  color: var(--dark); flex: 1; line-height: 1.45;
}
.cl-item.checked .cl-item-text {
  text-decoration: line-through;
  color: #9ca3af;
}
.cl-item-sub  {
  font-size: 0.76rem; color: #9ca3af;
  line-height: 1.55; display: block;
}
.cl-item.checked .cl-item-sub { color: #c4c9d4; }
.cl-item-warn {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.74rem; line-height: 1.5;
  margin-top: 6px; padding: 4px 10px;
  border-radius: 6px;
}
.cl-item-warn:has-text("⚠️"), .cl-item-warn {
  background: linear-gradient(135deg, #fffbeb, #fef3c7);
  color: #78350f;
  border: 1px solid #fde68a;
}

/* Badges */
.cl-badge {
  font-size: 0.62rem; font-weight: 800;
  padding: 2px 8px; border-radius: 100px;
  white-space: nowrap; flex-shrink: 0;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.cl-badge-req  {
  background: rgba(204,0,0,0.07);
  color: #b91c1c;
  border: 1px solid rgba(204,0,0,0.15);
}
.cl-badge-opt  {
  background: rgba(0,31,91,0.06);
  color: #1d4ed8;
  border: 1px solid rgba(0,31,91,0.12);
}
.cl-badge-cond {
  background: rgba(217,119,6,0.08);
  color: #92400e;
  border: 1px solid rgba(217,119,6,0.18);
}
.cl-badge-info {
  background: rgba(107,114,128,0.07);
  color: #6b7280;
  border: 1px solid rgba(107,114,128,0.15);
}

/* Type variants */
.cl-type-opt   { opacity: 0.85; }
.cl-type-info  { background: rgba(248,250,252,0.8); }
.cl-type-info .cl-item-text { color: #9ca3af; font-weight: 500; }
.cl-type-info .cl-checkbox  { border-color: #e5e7eb; background: #f9fafb; }

/* ── Footer ── */
.cl-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: var(--light);
  border-top: 1px solid var(--border);
  gap: 12px; flex-wrap: wrap;
}
.cl-footer-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--dark-blue);
  text-decoration: none; font-weight: 600;
  padding: 7px 14px; background: #fff;
  border: 1.5px solid var(--border); border-radius: 7px;
  transition: all 0.2s;
}
.cl-footer-link:hover {
  border-color: var(--dark-blue);
  box-shadow: 0 2px 8px rgba(0,31,91,0.1);
}
.cl-reset {
  font-size: 0.75rem; color: #9ca3af;
  background: none; border: none;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  transition: color 0.15s; padding: 4px 0;
}
.cl-reset:hover { color: #ef4444; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .cl-tabs { grid-template-columns: repeat(2, 1fr); }
  .cl-tab  { padding: 12px 6px; }
  .cl-tab-label { font-size: 0.7rem; }
  .cl-progress-wrap { gap: 14px; padding: 14px 16px; }
  .cl-group-header { padding: 12px 16px; }
  .cl-item { padding: 12px 16px; }
  .cl-footer { padding: 12px 16px; }
  .cl-intro-bar { padding: 12px 16px; }
}

/* ── SKIP LINK (accessibility + SEO) ─────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--dark-blue);
  color: #fff;
  padding: 8px 16px;
  font-size: 0.85rem;
  text-decoration: none;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ── BREADCRUMBS ──────────────────────────────── */
.breadcrumb {
  padding: 10px 48px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
}
.breadcrumb ol {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  max-width: 1200px;
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; }
.breadcrumb a  { color: var(--mid); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.bc-sep { color: var(--border); font-size: 0.9rem; margin: 0 2px; }
.breadcrumb li:last-child span { color: var(--dark); font-weight: 500; }

@media (max-width: 640px) {
  .breadcrumb { padding: 10px 16px; }
}

@media (max-width: 900px) {
  .main-nav, section, .hero { padding-left: 24px; padding-right: 24px; }
  .stats-band { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .main-nav, section, .hero { padding-left: 16px; padding-right: 16px; }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(odd):last-child { grid-column: 1 / -1; border-right: none; }
  .hero { padding-top: 48px; padding-bottom: 60px; }
  section { padding-top: 48px; padding-bottom: 48px; }
  footer  { padding-left: 16px; padding-right: 16px; }
  .quiz-box { padding: 24px 16px; }
}

/* ══════════════════════════════════════
   HOME PAGE DODACI
   ══════════════════════════════════════ */

/* ── BENEFIT STRIP ── */
.benefits-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 40px;
  flex: 1;
  min-width: 220px;
}
.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit-item div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.benefit-item strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}
.benefit-item span {
  font-size: 0.78rem;
  color: var(--mid);
}
.benefit-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── ELIGIBILITY CARD NUMBER ── */
.elig-card { position: relative; }
.elig-card-num {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(0,0,0,0.05);
  line-height: 1;
  user-select: none;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--red);
  padding: 0 48px;
}
.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 28px 0;
  max-width: 900px;
  flex-wrap: wrap;
}
.cta-banner strong {
  display: block;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.cta-banner span {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
}
.cta-banner .btn-primary {
  background: #fff;
  color: var(--red);
  font-weight: 700;
}
.cta-banner .btn-primary:hover {
  background: var(--cream);
}

/* ── SPLIT SECTION ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: 1100px;
}
.split-text {}

/* Mini koraci */
.mini-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mini-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--mid);
}
.mini-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Process card visual */
.process-card-visual {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.process-card-visual::before {
  content: '';
  position: absolute;
  left: 43px;
  top: 52px;
  bottom: 52px;
  width: 2px;
  background: linear-gradient(to bottom, var(--red), var(--blue));
}
.pcv-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.pcv-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px currentColor;
}
.pcv-dot.red   { background: var(--red);   color: var(--red); }
.pcv-dot.blue  { background: var(--blue);  color: var(--blue); }
.pcv-dot.gold  { background: var(--gold);  color: var(--gold); }
.pcv-dot.green { background: #2e7d32;      color: #2e7d32; }

.pcv-label { font-size: 0.88rem; font-weight: 600; color: var(--dark); }
.pcv-time  { font-size: 0.78rem; color: var(--mid); margin-top: 2px; }
.pcv-long  { color: var(--red); font-weight: 600; }

/* ── RESPONSIVE DODACI ── */
@media (max-width: 900px) {
  .benefits-strip    { flex-direction: column; align-items: flex-start; }
  .benefit-divider   { width: 100%; height: 1px; }
  .benefit-item      { padding: 12px 0; }
  .split-section     { grid-template-columns: 1fr; gap: 2.5rem; }
  .cta-banner        { padding: 0 16px; }
  .cta-banner-inner  { flex-direction: column; align-items: flex-start; }
}

/* ══════════════════════════════════════
   BLOG
   ══════════════════════════════════════ */
.blog-cats {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 2rem;
}
.blog-cat-btn {
  padding: 6px 16px; border-radius: 100px; font-size: 0.8rem;
  font-weight: 600; text-decoration: none; border: 1.5px solid var(--border);
  color: var(--mid); transition: all 0.2s;
}
.blog-cat-btn:hover, .blog-cat-btn.active {
  border-color: var(--red); color: var(--red); background: #FFF5F5;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin-bottom: 2rem;
}
.blog-card {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 24px; text-decoration: none; color: inherit;
  transition: all 0.2s; display: flex; flex-direction: column;
  border-top: 3px solid transparent;
}
.blog-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); border-top-color: var(--red); transform: translateY(-3px); }
.blog-card-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.blog-card-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; line-height: 1.3; color: var(--dark); }
.blog-card-excerpt { font-size: 0.85rem; color: var(--mid); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-card-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--mid); margin-top: auto; }

/* Blog post */
.blog-post-wrap { max-width: 760px; margin: 0 auto; padding: 60px 48px; }
.blog-post-meta-top { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }
.back-link { font-size: 0.82rem; color: var(--mid); text-decoration: none; }
.back-link:hover { color: var(--red); }
.blog-post-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; }
.blog-post-lead { font-size: 1.1rem; color: var(--mid); line-height: 1.7; margin-bottom: 32px; border-bottom: 1px solid var(--border); padding-bottom: 32px; }
.blog-post-body.prose { font-size: 0.97rem; line-height: 1.85; color: var(--ink2, #3D3630); }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 700; margin: 2rem 0 0.7rem; color: var(--dark); }
.prose h3 { font-size: 1.05rem; font-weight: 700; margin: 1.4rem 0 0.5rem; color: var(--dark-blue); }
.prose p  { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0.8rem 0 1rem 1.4rem; }
.prose li { margin-bottom: 0.4rem; }
.prose strong { color: var(--dark); }
.blog-cta-box {
  background: var(--light); border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0; padding: 24px 28px; margin: 2.5rem 0;
}
.blog-cta-box strong { display: block; font-size: 1rem; margin-bottom: 6px; }
.blog-cta-box p { font-size: 0.88rem; color: var(--mid); margin-bottom: 14px; }

/* ══════════════════════════════════════
   TESTIMONIJALI
   ══════════════════════════════════════ */
.testi-stats {
  display: flex; gap: 0; margin-bottom: 2.5rem; background: var(--dark-blue);
  border-radius: 10px; overflow: hidden; flex-wrap: wrap;
}
.testi-stat { flex: 1; padding: 24px; text-align: center; border-right: 1px solid rgba(255,255,255,0.1); min-width: 140px; }
.testi-stat:last-child { border-right: none; }
.testi-stat-n { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--gold); }
.testi-stat-l { display: block; font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }

.testi-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; margin-bottom: 2rem; }
.testi-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.testi-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--dark-blue); color: #fff; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-meta { font-size: 0.77rem; color: var(--mid); margin-top: 2px; }
.testi-stars { margin-left: auto; font-size: 0.85rem; }
.testi-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px; }
.testi-tag { background: var(--light); border-radius: 100px; padding: 3px 10px; font-size: 0.72rem; font-weight: 600; color: var(--mid); }
.testi-tag-time { background: #FFF3E0; color: #8A4000; }
.testi-text { font-size: 0.87rem; color: var(--mid); line-height: 1.7; font-style: italic; }
.testi-submit-box {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; background: var(--light); border-radius: 10px;
  padding: 24px 28px; flex-wrap: wrap; margin-top: 2rem;
}
.testi-submit-box strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.testi-submit-box p { font-size: 0.85rem; color: var(--mid); }

/* ══════════════════════════════════════
   ADVOKATI
   ══════════════════════════════════════ */
.lawyer-filter { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 1.5rem; }
.lawyer-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 20px; }
.lawyer-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; position: relative; }
.lawyer-verified { position: absolute; top: 16px; right: 16px; font-size: 0.7rem; font-weight: 700; color: var(--green, #1A7A4A); background: var(--green-light, #E8F5EE); padding: 3px 8px; border-radius: 4px; }
.lawyer-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.lawyer-avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--dark-blue); color: #fff; font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.lawyer-name { font-weight: 700; font-size: 1rem; }
.lawyer-firm { font-size: 0.8rem; color: var(--mid); margin-top: 2px; }
.lawyer-city { font-size: 0.78rem; color: var(--red); margin-top: 4px; font-weight: 600; }
.lawyer-desc { font-size: 0.84rem; color: var(--mid); line-height: 1.65; margin-bottom: 14px; }
.lawyer-details { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.lawyer-detail-row { display: flex; gap: 8px; font-size: 0.82rem; color: var(--mid); }
.lawyer-detail-icon { flex-shrink: 0; }
.lawyer-actions { display: flex; gap: 8px; flex-wrap: wrap; }

/* ══════════════════════════════════════
   GRADOVI
   ══════════════════════════════════════ */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 14px; margin-bottom: 2.5rem; }
.city-card {
  background: #fff; border: 1.5px solid var(--border); border-radius: 10px;
  padding: 20px; text-align: center; text-decoration: none; color: inherit;
  transition: all 0.2s;
}
.city-card:hover, .city-card.active { border-color: var(--red); box-shadow: 0 4px 16px rgba(204,0,0,0.1); }
.city-card.active { background: #FFF5F5; }
.city-icon { font-size: 1.8rem; margin-bottom: 8px; }
.city-name { font-weight: 700; font-size: 0.95rem; }
.city-region { font-size: 0.75rem; color: var(--mid); margin-top: 2px; }
.city-detail { margin-top: 2rem; }
.city-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 1.5rem; }
.city-info-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.city-info-card h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 14px; }
.city-info-card p { font-size: 0.87rem; color: var(--mid); margin-bottom: 6px; line-height: 1.6; }
.city-info-card a { color: var(--blue); }
.city-tip { background: var(--light); border-color: var(--gold); }

/* ══════════════════════════════════════
   PROSE PAGES (dvojno, domovnica)
   ══════════════════════════════════════ */
.prose-page { max-width: 760px; }
.qa-section { display: flex; flex-direction: column; gap: 0; }
.qa-item { padding: 28px 0; border-bottom: 1px solid var(--border); }
.qa-item:last-child { border-bottom: none; }
.qa-item h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.qa-item h3 { font-size: 0.95rem; font-weight: 700; margin: 14px 0 6px; color: var(--dark-blue); }
.qa-item p  { font-size: 0.92rem; color: var(--mid); line-height: 1.8; margin-bottom: 8px; }
.qa-item ul, .qa-item ol { margin: 8px 0 8px 20px; }
.qa-item li { font-size: 0.9rem; color: var(--mid); line-height: 1.7; margin-bottom: 4px; }
.comparison-table { overflow-x: auto; margin-top: 12px; }
.comparison-table table { width: 100%; border-collapse: collapse; font-size: 0.87rem; }
.comparison-table th { background: var(--dark-blue); color: #fff; padding: 10px 14px; text-align: left; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.5px; }
.comparison-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: var(--mid); }
.comparison-table tr:hover td { background: var(--light); }

/* ══════════════════════════════════════
   COOKIE CONSENT
   ══════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9000;
  background: var(--dark); color: #fff;
  transform: translateY(100%); transition: transform 0.35s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding: 16px 48px; flex-wrap: wrap; max-width: 1400px; margin: 0 auto;
}
.cookie-text strong { display: block; font-size: 0.9rem; margin-bottom: 3px; }
.cookie-text p { font-size: 0.8rem; color: rgba(255,255,255,0.6); margin: 0; }
.cookie-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.cookie-decline-btn { background: transparent; border: none; color: rgba(255,255,255,0.45); font-family: 'DM Sans', sans-serif; font-size: 0.8rem; cursor: pointer; text-decoration: underline; }
.cookie-decline-btn:hover { color: #fff; }

/* ══════════════════════════════════════
   NEWSLETTER POPUP
   ══════════════════════════════════════ */
.nl-overlay {
  display: none; position: fixed; inset: 0; z-index: 8000;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(4px);
  place-items: center;
}
.nl-overlay.show { display: grid; }
.nl-modal {
  background: #fff; border-radius: 16px; padding: 40px;
  max-width: 460px; width: 90vw; position: relative;
  animation: slideUp 0.3s ease;
}
.nl-close {
  position: absolute; top: 16px; right: 16px; background: none;
  border: none; font-size: 1.2rem; cursor: pointer; color: var(--mid);
  width: 32px; height: 32px; border-radius: 50%; display: flex;
  align-items: center; justify-content: center; transition: background 0.2s;
}
.nl-close:hover { background: var(--light); }
.nl-icon { font-size: 2.5rem; text-align: center; margin-bottom: 12px; }
.nl-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; text-align: center; margin-bottom: 10px; }
.nl-text { font-size: 0.88rem; color: var(--mid); text-align: center; line-height: 1.7; margin-bottom: 20px; }
.nl-input-row { display: flex; gap: 8px; }
.nl-input {
  flex: 1; padding: 10px 14px; border: 1.5px solid var(--border);
  border-radius: 6px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem;
}
.nl-input:focus { outline: none; border-color: var(--red); }
.nl-disclaimer { font-size: 0.72rem; color: var(--mid); text-align: center; margin-top: 10px; }
.nl-success { background: #e8f5e9; color: #1b5e20; padding: 14px; border-radius: 8px; text-align: center; font-weight: 600; }

@media (max-width: 640px) {
  .blog-post-wrap  { padding: 40px 16px; }
  .city-detail-grid { grid-template-columns: 1fr; }
  .cookie-inner    { padding: 16px; }
  .testi-stats     { flex-direction: column; }
  .nl-input-row    { flex-direction: column; }
}

/* ══════════════════════════════════════
   CHECKLIST SA TABOVIMA
   ══════════════════════════════════════ */
.checklist-tabbed { max-width: 680px; }

/* Tab header */
.cl-tab-header {
  display: flex; gap: 0; flex-wrap: wrap;
  border-bottom: 2px solid var(--border); margin-bottom: 0;
}
.cl-tab-btn {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 20px; background: none; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  font-family: 'DM Sans', sans-serif; font-size: 0.85rem;
  font-weight: 600; color: var(--mid); cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.cl-tab-btn:hover { color: var(--dark); }
.cl-tab-btn.active {
  color: var(--red); border-bottom-color: var(--red);
}
.cl-tab-count {
  background: var(--border); border-radius: 100px;
  padding: 2px 8px; font-size: 0.72rem; font-weight: 700;
  color: var(--mid); transition: all 0.2s;
}
.cl-tab-btn.active .cl-tab-count {
  background: rgba(204,0,0,0.1); color: var(--red);
}

/* Panel */
.cl-panel { display: none; padding-top: 16px; }
.cl-panel.active { display: block; }

/* Intro */
.cl-intro {
  font-size: 0.88rem; color: var(--mid); line-height: 1.7;
  padding: 14px 16px; background: var(--light); border-radius: 8px;
  border-left: 3px solid var(--blue); margin-bottom: 4px;
}

/* Warning/tip uz stavku */
.cl-warn {
  display: block; font-size: 0.78rem;
  margin-top: 4px; line-height: 1.5; color: var(--mid);
}
.cl-warn:contains('⚠️') { color: #8a4000; }

/* Footer note */
.cl-footer-note {
  display: flex; align-items: center; gap: 6px;
  margin-top: 20px; padding: 12px 16px;
  background: var(--light); border-radius: 8px;
  font-size: 0.82rem; color: var(--mid);
}
.cl-footer-note a { color: var(--red); font-weight: 600; text-decoration: none; }
.cl-footer-note a:hover { text-decoration: underline; }

@media (max-width: 640px) {
  .cl-tab-btn { padding: 10px 12px; font-size: 0.78rem; }
}

/* ══════════════════════════════════════
   QUIZ REDESIGN
   ══════════════════════════════════════ */
.quiz-wrap { max-width: 640px; }

/* Step hide/show */
.quiz-step         { display: none; }
.quiz-step.active  { display: block; }

/* Step label */
.quiz-step-label {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.quiz-step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* Question */
.quiz-q {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: #fff;
  margin-bottom: 20px; line-height: 1.45;
}
.quiz-q strong { color: var(--gold); font-style: normal; }

/* Options - redesign */
.quiz-options { display: flex; flex-direction: column; gap: 10px; }

.quiz-option {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 14px 18px;
  text-align: left; cursor: pointer;
  transition: all 0.2s; width: 100%;
  font-family: 'DM Sans', sans-serif;
}
.quiz-option:hover {
  border-color: var(--gold);
  background: rgba(212,175,55,0.1);
  transform: translateX(4px);
}

.qo-icon { font-size: 1.3rem; flex-shrink: 0; width: 32px; text-align: center; }

.qo-text {
  display: flex; flex-direction: column; gap: 2px; text-align: left;
}
.qo-text strong {
  font-size: 0.9rem; font-weight: 600; color: rgba(255,255,255,0.9);
}
.qo-text small {
  font-size: 0.76rem; color: rgba(255,255,255,0.45);
}

/* Back button */
.quiz-back {
  margin-top: 16px; background: transparent; border: none;
  color: rgba(255,255,255,0.4); font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; cursor: pointer; padding: 0; transition: color 0.2s;
}
.quiz-back:hover { color: rgba(255,255,255,0.8); }

/* Results redesign */
.quiz-result {
  display: none;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px;
  margin-top: 8px;
}

.qr-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 16px;
}
.qr-green  { background: rgba(0,200,100,0.15); }
.qr-yellow { background: rgba(212,175,55,0.15); }
.qr-red    { background: rgba(204,0,0,0.15); }

.quiz-result h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--gold); margin-bottom: 10px;
}
.quiz-result p {
  color: rgba(255,255,255,0.75); font-size: 0.9rem;
  line-height: 1.7; margin-bottom: 18px;
}

/* Mini steps u rezultatu */
.qr-steps {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px;
}
.qr-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.qr-step span {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--dark);
  font-size: 0.72rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* CTA dugmad u rezultatu */
.qr-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.btn-secondary-dark {
  display: inline-block; padding: 8px 18px;
  background: transparent; color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 6px; font-family: 'DM Sans', sans-serif;
  font-weight: 500; text-decoration: none;
  transition: all 0.2s; cursor: pointer;
}
.btn-secondary-dark:hover { border-color: var(--gold); color: var(--gold); }

/* Restart */
.quiz-restart {
  margin-top: 20px; background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.5); padding: 8px 20px;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem; border-radius: 6px; transition: all 0.2s;
}
.quiz-restart:hover { border-color: #fff; color: #fff; }
