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

:root {
  --blue: #1a6fc4;
  --blue-dark: #1358a0;
  --blue-light: #e8f1fb;
  --text: #1a1f2e;
  --muted: #5a6478;
  --bg: #f5f7fa;
  --white: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(26,111,196,0.10);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled {
  border-bottom-color: #e2e8f0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--blue) !important;
  text-decoration: none;
  letter-spacing: -0.3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--blue); }
.btn-nav {
  background: var(--blue);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  transition: background .2s !important;
}
.btn-nav:hover { background: var(--blue-dark) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid #e2e8f0;
  padding: 16px 24px 24px;
  gap: 16px;
}
.mobile-menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
}
.mobile-menu.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  background: url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1600&q=80') 65% 20% / cover no-repeat;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(19,88,160,0.60) 0%, rgba(26,111,196,0.45) 50%, rgba(35,137,224,0.30) 100%);
}
.hero-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.hero-text {
  flex: 1;
  max-width: 600px;
}
.hero-logo {
  position: absolute;
  bottom: 90px;
  right: 24px;
}
.hero-logo img {
  width: 140px;
  height: 140px;
  object-fit: contain;
  opacity: 0.35;
}
.hero-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 .accent {
  color: var(--white);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.5);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

.hero-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; width: 100%; height: 80px; }

/* ── STATS ── */
.stats {
  background: var(--bg);
  padding: 56px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat {
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s, transform .5s;
}
.stat.visible { opacity: 1; transform: none; }
.stat strong {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 8px;
}
.stat span {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* ── USLUGE ── */
.usluge {
  padding: 96px 0;
  background: #eef3fa;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 17px;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.75); }

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.card-wide {
  grid-column: 1 / -1;
}
.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 64px 28px;
  border: 1px solid #c8d8ef;
  transition: border-color .2s, box-shadow .2s, transform .2s, opacity .5s;
  opacity: 0;
  transform: translateY(24px);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  z-index: 0;
}
.card > * { position: relative; z-index: 1; }
.card.visible { opacity: 1; transform: none; }
.card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.card-gotovinski::before { background-image: linear-gradient(rgba(255,255,255,0.82),rgba(255,255,255,0.82)), url('https://images.unsplash.com/photo-1567427017947-545c5f8d16ad?w=800&q=80'); }
.card-refinansiranje::before { background-image: linear-gradient(rgba(255,255,255,0.82),rgba(255,255,255,0.82)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=800&q=80'); }
.card-auto::before { background-image: linear-gradient(rgba(255,255,255,0.82),rgba(255,255,255,0.82)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=800&q=80'); }
.card-finansijsko::before { background-image: linear-gradient(rgba(255,255,255,0.82),rgba(255,255,255,0.82)), url('https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=800&q=80'); }
.card-penzioneri::before { background-image: linear-gradient(rgba(255,255,255,0.82),rgba(255,255,255,0.82)), url('https://images.unsplash.com/photo-1746192703433-9313b8ebcc4a?w=800&q=80'); }
.card-icon {
  display: none;
}
.card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}
.card p {
  font-size: 14px;
  color: #000;
  line-height: 1.65;
}

/* ── ZASTO ── */
.zasto {
  background: var(--bg);
  padding: 96px 0;
}
.zasto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.zasto-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  margin-bottom: 36px;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.check-list li {
  display: flex;
  gap: 16px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s, transform .5s;
}
.check-list li.visible { opacity: 1; transform: none; }
.check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.check-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.check-list p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.visual-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0;
}
.vc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border-radius: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
}
.vc-row.highlight {
  background: var(--blue-light);
  border: 1.5px solid var(--blue);
}
.rate {
  font-weight: 700;
  font-size: 16px;
}
.rate.bad { color: var(--muted); }
.rate.good { color: var(--blue); }
.vc-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}

.calc-card { display: flex; flex-direction: column; gap: 16px; }

.calc-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}
.calc-subtitle {
  font-size: 14px;
  color: var(--muted);
  margin-top: -8px;
}
.calc-amount-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .2s;
}
.calc-amount-wrap:focus-within { border-color: var(--blue); }
.calc-amount-wrap input {
  flex: 1;
  border: none;
  outline: none;
  padding: 13px 16px;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  background: transparent;
  -moz-appearance: textfield;
}
.calc-amount-wrap input::-webkit-outer-spin-button,
.calc-amount-wrap input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-currency {
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
  background: var(--bg);
  height: 100%;
  display: flex;
  align-items: center;
  border-left: 1.5px solid #e2e8f0;
}
.calc-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  display: block;
  margin-bottom: 8px;
}
.calc-months-wrap { display: flex; flex-direction: column; }
.calc-months-btns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.month-btn {
  border: 1.5px solid #e2e8f0;
  background: var(--white);
  border-radius: 8px;
  padding: 9px 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: inherit;
  color: var(--muted);
  cursor: pointer;
  transition: border-color .2s, background .2s, color .2s;
}
.month-btn:hover { border-color: var(--blue); color: var(--blue); }
.month-btn.active { border-color: var(--blue); background: var(--blue); color: var(--white); }

.calc-slider-wrap { display: flex; flex-direction: column; gap: 6px; }
.calc-slider-wrap input[type=range] {
  width: 100%;
  accent-color: var(--blue);
  height: 4px;
  cursor: pointer;
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--muted);
}
.calc-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--blue-light);
  border: 1.5px solid var(--blue);
  border-radius: 10px;
  padding: 16px 20px;
}
.calc-result span { font-size: 14px; font-weight: 600; color: var(--blue); }
.calc-result strong { font-size: 24px; font-weight: 800; color: var(--blue); }

.btn-calc {
  display: block;
  text-align: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 13px;
  border-radius: 10px;
  text-decoration: none;
  transition: background .2s;
}
.btn-calc:hover { background: var(--blue-dark); }

/* ── KONTAKT ── */
/* Recenzije */
.recenzije {
  padding: 80px 0;
  background: #eef3fa;
}
.recenzije-header {
  text-align: center;
  margin-bottom: 48px;
}
.prosecna-ocena {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.ocena-red {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.ocena-broj {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
}
.ocena-max {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
}
.zvezde {
  font-size: 1.8rem;
  color: #f5a623;
  letter-spacing: 2px;
}
.ocena-tekst {
  font-size: 14px;
  color: var(--muted);
}
.karusel-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.karusel-track-outer {
  overflow: hidden;
  flex: 1;
}
.karusel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.4s ease;
}
.recenzija-kartica {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border: 1px solid #dde6f5;
  border-radius: var(--radius);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.rec-zvezde {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.recenzija-kartica p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.rec-autor {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rec-inicijali {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rec-autor strong {
  display: block;
  font-size: 14px;
  color: var(--text);
}
.rec-autor span {
  font-size: 12px;
  color: var(--muted);
}
.karusel-btn {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .2s;
}
.karusel-btn:hover { background: var(--blue-dark); }

.kontakt {
  background: linear-gradient(rgba(10,40,90,0.65), rgba(10,40,90,0.65)), url('https://images.unsplash.com/photo-1763729805496-b5dbf7f00c79?w=1600&q=80') center/cover no-repeat;
  padding: 96px 0;
}
.kontakt-inner { text-align: center; }
.kontakt-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.k-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 36px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--white);
  min-width: 220px;
  transition: background .2s, transform .2s, opacity .5s;
  opacity: 0;
  transform: translateY(20px);
}
.k-card.visible { opacity: 1; transform: none; }
.k-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}
.k-icon {
  font-size: 1.8rem;
  line-height: 1;
}
.k-card strong {
  font-size: 16px;
  font-weight: 700;
}
.k-card span {
  font-size: 14px;
  opacity: 0.85;
}
.k-card.insta .k-icon { color: var(--white); }

/* ── KONTAKT FORMA ── */
.kontakt-inner-new {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.kontakt-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}
.kontakt-left p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.kontakt-right {
  grid-column: 2;
  grid-row: 1 / 3;
}
.kontakt-kartice {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 0;
  grid-column: 1;
  grid-row: 2;
}
.kontakt-kartica {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 16px 20px;
  text-decoration: none;
  color: var(--white);
  transition: background .2s, transform .2s;
}
.kontakt-kartica:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.kontakt-kartica-ikona {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.kontakt-kartica strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
  opacity: 0.65;
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.kontakt-kartica span {
  font-size: 15px;
  font-weight: 600;
}

.forma {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.forma-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.forma input,
.forma textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  outline: none;
  transition: border-color .2s;
}
.forma-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  margin-bottom: -4px;
}
.status-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1.5px solid #0f4a8a;
  border-radius: 10px;
  overflow: hidden;
}
.status-btn {
  background: var(--blue-dark);
  border: none;
  border-right: 1.5px solid #0f4a8a;
  padding: 13px 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  color: rgba(255,255,255,0.9);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.status-btn:last-child { border-right: none; }
.status-btn:hover { background: #0f4a8a; color: var(--white); }
.status-btn.active { background: var(--white); color: var(--blue); }
.status-btn.active .radio-dot { background: var(--blue); border-color: var(--blue); box-shadow: inset 0 0 0 3px var(--white); }

.radio-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  margin-right: 7px;
  vertical-align: middle;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.status-btn.active .radio-dot { background: var(--blue); border-color: var(--blue); box-shadow: inset 0 0 0 3px var(--white); }

.radio-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  margin-right: 7px;
  vertical-align: middle;
  flex-shrink: 0;
  transition: background .2s, border-color .2s, box-shadow .2s;
}
.forma input::placeholder,
.forma textarea::placeholder { color: #aab0be; }
.forma input:focus,
.forma textarea:focus { border-color: var(--blue); }
.forma textarea { resize: vertical; min-height: 110px; }
.btn-forma {
  background: var(--blue-dark);
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
  font-family: inherit;
  border: none;
  border-radius: 10px;
  padding: 15px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 4px;
}
.btn-forma:hover { background: #0f4a8a; transform: translateY(-2px); }

@media (max-width: 860px) {
  .kontakt-inner-new { grid-template-columns: 1fr; gap: 40px; }
  .forma-row { grid-template-columns: 1fr; }
}

/* ── FOOTER ── */
.footer {
  background: var(--text);
  padding: 28px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-tag {
  font-style: italic;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .zasto-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-logo img { width: 260px; height: 260px; }
}

@media (max-width: 640px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 100px 0 70px; }
  .hero-sub { display: none; }
  .hero h1 { margin-top: 80px; }
  .hero-content { flex-direction: column-reverse; align-items: center; text-align: center; gap: 24px; }
  .hero-text { max-width: 100%; }
  .hero-logo img { width: 160px; height: 160px; }
  .hero-cta { justify-content: center; }
  .hero-sub { font-size: 16px; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat strong { font-size: 2rem; }

  /* Usluge */
  .usluge { padding: 64px 0; }
  .cards { grid-template-columns: 1fr; }

  /* Zasto */
  .zasto { padding: 64px 0; }
  .zasto-inner { gap: 32px; }
  .visual-card { padding: 24px 16px; width: 100%; box-sizing: border-box; }
  .calc-months-btns { grid-template-columns: repeat(3, 1fr); }
  .zasto-visual { width: 100%; overflow: hidden; }
  .check-list li { overflow: hidden; }
  .check-list p { word-break: break-word; }

  /* Kontakt */
  .kontakt { padding: 64px 0; }
  .kontakt-cards { flex-direction: column; align-items: center; }
  .k-card { width: 100%; max-width: 100%; padding: 28px 24px; }
  .kontakt-inner-new { display: flex; flex-direction: column; }
  .kontakt-left { order: 0; }
  .kontakt-right { order: 1; }
  .kontakt-kartice { order: 2; margin-top: 24px; grid-column: unset; grid-row: unset; }

  /* Footer */
  .footer-inner { flex-direction: column; text-align: center; gap: 4px; }

  /* General */
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: 15px; }

  /* Recenzije */
  .recenzije { padding: 56px 0; }
  .karusel-wrapper { gap: 8px; }
  .karusel-btn { width: 36px; height: 36px; font-size: 1.2rem; flex-shrink: 0; }
  .recenzija-kartica { min-width: calc(100% - 0px); padding: 24px 20px; }
}
