/*
  TERET – Berza prevoza i tereta
  Slike: --hero-bg-url, --hero-bg-url-2, --hero-bg-url-3
*/

:root {
  --color-bg: #0a0a0b;
  --color-bg-elevated: #111113;
  --color-surface: #161619;
  --color-surface-hover: #1c1c20;
  --color-text: #f4f4f5;
  --color-text-muted: #a1a1aa;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-pill: rgba(255, 255, 255, 0.25);
  --color-accent: #5b7cb8;
  --color-accent-hover: #6d8fc9;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --container-max: 1200px;
  --container-padding: 1.5rem;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --font-heading: "Space Grotesk", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --hero-bg-url: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&q=80");
  --hero-bg-url-2: url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1920&q=80");
  --hero-bg-url-3: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&q=80");
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body { margin: 0; font-family: var(--font-body); font-size: 1rem; line-height: 1.6; color: var(--color-text); background: var(--color-bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-heading); margin: 0; font-weight: 600; }

.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: fixed; top: 0; left: 0; z-index: 10000; padding: var(--space-md) var(--space-lg); background: var(--color-accent); color: var(--color-bg); font-weight: 600; transform: translateY(-100%); transition: transform 0.2s; }
.skip-link:focus { transform: translateY(0); outline: 2px solid var(--color-text); outline-offset: 2px; }

/* Utility bar – transparent, plava dugmad; skriva se pri skrolanju */
.utility-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  min-height: 44px;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  background: rgba(8, 18, 32, 0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}
body.header-is-scrolled .utility-bar {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.utility-bar-inner {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 var(--container-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}
.utility-left { display: flex; align-items: center; flex-shrink: 0; }
.utility-right {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-shrink: 0;
}
.utility-social {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.utility-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.4);
  background: rgba(96, 165, 250, 0.12);
  color: rgba(255, 255, 255, 0.9);
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.utility-social-link:hover {
  background: rgba(96, 165, 250, 0.25);
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.2);
}
.utility-social-link svg { width: 18px; height: 18px; }
.utility-toggle-wrap {
  display: flex;
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: var(--radius-full);
  padding: 3px;
  background: rgba(96, 165, 250, 0.08);
}
.utility-toggle {
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  background: none;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.utility-toggle:hover { color: var(--color-text); }
.utility-toggle-active, .utility-toggle[aria-pressed="true"] {
  background: rgba(96, 165, 250, 0.25);
  color: var(--color-text);
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.15);
}
.utility-toggle:focus-visible { outline: 2px solid var(--accent, var(--color-accent)); outline-offset: 2px; }
/* Pomoć dugme – mora nadjačati .btn (veća specifičnost) */
.utility-bar .btn-utility-pomoc,
.utility-bar a.btn-utility-pomoc {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.5rem !important;
  font-size: 0.6875rem !important;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(96, 165, 250, 0.45);
  border-radius: var(--radius-full);
  background: rgba(96, 165, 250, 0.12);
  transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
  min-height: 0;
}
.utility-bar .btn-utility-pomoc::after {
  display: none;
}
.utility-bar .btn-utility-pomoc:hover {
  color: var(--color-text);
  border-color: rgba(96, 165, 250, 0.65);
  background: rgba(96, 165, 250, 0.2);
  box-shadow: 0 0 18px rgba(59, 130, 246, 0.12);
}
.utility-bar .btn-utility-pomoc svg {
  width: 11px !important;
  height: 11px !important;
}
.utility-support { font-size: 0.8125rem; color: rgba(255, 255, 255, 0.7); }
@media (max-width: 639px) { .utility-support { display: none; } .utility-social { display: none; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: 0.875rem 1.75rem; font-family: var(--font-body); font-size: 0.875rem; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; border-radius: var(--radius-full); border: 1px solid transparent; cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, background 0.2s; position: relative; }
.btn-pill { border-color: var(--color-border-pill); background: transparent; color: var(--color-text); }
.btn-pill::after { content: ""; position: absolute; left: 1.75rem; right: 1.75rem; bottom: 0.7rem; height: 1px; background: currentColor; opacity: 0.7; transition: opacity 0.2s; }
.btn-pill:hover { border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 0 20px rgba(255, 255, 255, 0.08); }
.btn-pill:hover::after { opacity: 1; }
.btn-primary.btn-pill { border-color: rgba(255, 255, 255, 0.35); color: var(--color-text); }
.btn-primary.btn-pill:hover { border-color: rgba(255, 255, 255, 0.6); box-shadow: 0 0 24px rgba(91, 124, 184, 0.2); }
.btn-secondary.btn-pill, .btn-tertiary.btn-pill { color: var(--color-text-muted); }
.btn-hotline { font-size: 1.0625rem; padding: 1rem 2rem; border-color: rgba(255, 255, 255, 0.3); }
.btn-hotline::after { left: 2rem; right: 2rem; bottom: 0.8rem; }

/* Navbar – pill na vrhu; pri skrolanju puna širina (od kraja do kraja) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 var(--container-padding) 1.25rem;
  padding-top: calc(44px + 24px);
  pointer-events: none;
  transition: padding 0.35s ease;
}
body.header-is-scrolled .navbar {
  padding: 0;
}
.navbar-inner {
  pointer-events: auto;
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 80px;
  padding: 0 2.2rem;
  background: rgba(8, 18, 32, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, border-radius 0.35s ease, max-width 0.35s ease, margin 0.35s ease, padding 0.35s ease;
}
body.header-is-scrolled .navbar-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  border-radius: 0;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}
.navbar.is-scrolled .navbar-inner {
  background: rgba(8, 18, 32, 0.75);
  border-color: rgba(96, 165, 250, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.navbar-logo { display: block; flex-shrink: 0; }
.navbar-logo-img { height: 65px; width: auto; display: block; }
.navbar-nav { display: none; gap: var(--space-xl); position: absolute; left: 50%; transform: translateX(-50%); }
.navbar-nav a { font-size: 1.25rem; color: rgba(255, 255, 255, 0.85); transition: color 0.2s; }
.navbar-nav a:hover { color: var(--color-text); }
.navbar-right { flex-shrink: 0; display: flex; align-items: center; gap: 0.5rem; }
.navbar-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid rgba(96, 165, 250, 0.4);
  color: rgba(255, 255, 255, 0.9);
  background: rgba(96, 165, 250, 0.15);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.navbar-icon-btn:hover {
  background: rgba(96, 165, 250, 0.28);
  border-color: rgba(96, 165, 250, 0.6);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.navbar-icon-btn svg { width: 28px; height: 28px; }
.navbar-toggle { display: flex; }
@media (min-width: 768px) {
  .navbar-nav { display: flex; }
  .navbar-toggle { display: none; }
}
.navbar-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  padding: var(--space-lg);
  background: rgba(8, 18, 32, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(96, 165, 250, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.navbar-menu[hidden] { display: none; }
.navbar-menu a { color: rgba(255, 255, 255, 0.85); padding: var(--space-sm) 0; }
.navbar-menu a:hover { color: var(--color-text); }
@media (max-width: 767px) { .navbar-nav { position: static; transform: none; } .navbar-menu { left: 0; right: 0; min-width: auto; transform: none; } .navbar-menu .btn { display: inline-flex; justify-content: center; } }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: flex-start; justify-content: center; padding: 6rem var(--container-padding) 0; }
.search-overlay[hidden] { display: none; }
.search-overlay-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, 0.7); backdrop-filter: blur(8px); }
.search-overlay-inner { position: relative; width: 100%; max-width: 560px; display: flex; align-items: center; gap: var(--space-md); background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-md) var(--space-lg); box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4); }
.search-input { flex: 1; padding: var(--space-md) 0; font-family: var(--font-body); font-size: 1.125rem; color: var(--color-text); background: none; border: none; outline: none; }
.search-input::placeholder { color: var(--color-text-muted); }
.search-overlay-close { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; background: none; border: none; color: var(--color-text-muted); cursor: pointer; border-radius: var(--radius-md); transition: color 0.2s, background 0.2s; }
.search-overlay-close:hover { color: var(--color-text); background: var(--color-surface-hover); }
.search-overlay-close:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.search-overlay-close svg { width: 24px; height: 24px; }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100dvh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: var(--color-bg) var(--hero-bg-url) center / cover no-repeat; will-change: transform; filter: saturate(0.7) brightness(0.85); }
.hero-slider-bg { position: absolute; inset: 0; will-change: transform; }
.hero-slider-bg .hero-slide { position: absolute; inset: 0; background: var(--color-bg) var(--hero-bg-url) center / cover no-repeat; opacity: 0; transition: opacity 0.6s ease; will-change: opacity, transform; filter: saturate(0.7) brightness(0.85); }
.hero-slider-bg .hero-slide[data-hero-slide="0"] { background-image: var(--hero-bg-url); }
.hero-slider-bg .hero-slide[data-hero-slide="1"] { background-image: var(--hero-bg-url-2); }
.hero-slider-bg .hero-slide[data-hero-slide="2"] { background-image: var(--hero-bg-url-3); }
.hero-slider-bg .hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.6) 25%, rgba(0, 0, 0, 0.78) 50%, rgba(0, 0, 0, 0.9) 75%, rgba(0, 0, 0, 0.95) 100%), radial-gradient(ellipse 80% 70% at 50% 100%, transparent 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.85) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; width: 100%; max-width: var(--container-max); margin: 0 auto; padding: calc(5rem + 100px) var(--container-padding) var(--space-4xl); text-align: center; }
/* ===== TERET Cards Section (glass + neon) ===== */
:root {
  --bg: #05070a;
  --card: rgba(255, 255, 255, 0.06);
  --card2: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted2: rgba(255, 255, 255, 0.52);
  --accent: #3b82f6;
  --accent2: #60a5fa;
  --radius: 22px;
}

.teret-cards {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0;
  background: var(--bg);
  overflow: hidden;
}

.teret-cards::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 600px at 70% 10%, rgba(59, 130, 246, 0.18), transparent 55%),
    radial-gradient(900px 500px at 20% 40%, rgba(96, 165, 250, 0.1), transparent 60%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.85)),
    var(--cards-bg, var(--hero-bg-url));
  background-size: cover;
  background-position: center;
  filter: blur(2px) saturate(0.9) contrast(1.05);
  transform: scale(1.03);
  opacity: 0.95;
  z-index: 0;
}

.teret-cards::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: radial-gradient(80% 70% at 50% 35%, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 0;
}

.teret-cards .container {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.teret-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
  align-items: stretch;
}

.teret-card {
  position: relative;
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  background: linear-gradient(180deg, var(--card), var(--card2));
  border: 1px solid var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  min-height: 420px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.teret-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.9), transparent);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.65));
  opacity: 0.95;
}

.teret-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 180px at 50% 0%, rgba(59, 130, 246, 0.16), transparent 60%),
    radial-gradient(420px 240px at 50% 40%, rgba(255, 255, 255, 0.06), transparent 55%);
  pointer-events: none;
}

.teret-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.65),
    0 0 0 1px rgba(96, 165, 250, 0.08) inset,
    0 0 30px rgba(59, 130, 246, 0.12);
}

.teret-card__icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.25));
  flex-shrink: 0;
}

.teret-card__icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.8;
}

.teret-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--text);
  font-size: clamp(20px, 2.1vw, 28px);
  margin: 0 0 12px;
}

.teret-card__text {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.teret-card__cta {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(96, 165, 250, 0.55);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(8, 15, 28, 0.35);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.35),
    0 0 18px rgba(59, 130, 246, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.teret-card__cta::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 7px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  opacity: 0.5;
}

.teret-card__cta:hover {
  transform: translateX(-50%) translateY(-2px);
  border-color: rgba(96, 165, 250, 0.85);
  background: rgba(10, 20, 40, 0.45);
  box-shadow:
    0 14px 40px rgba(0, 0, 0, 0.45),
    0 0 26px rgba(59, 130, 246, 0.22);
}

.teret-card__cta .arrow {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
}

.teret-card__cta .arrow svg {
  width: 18px;
  height: 18px;
}

/* Unutar heroa: ne crtaj vlastitu pozadinu, koristi hero slider */
.hero .teret-cards.teret-cards--in-hero {
  padding: 0 0 var(--space-2xl);
  background: transparent;
  overflow: visible;
}

.hero .teret-cards.teret-cards--in-hero::before,
.hero .teret-cards.teret-cards--in-hero::after {
  display: none;
}

.hero .teret-cards .container {
  max-width: 1240px;
  padding: 0 var(--container-padding);
}

@media (max-width: 1100px) {
  .teret-cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .teret-card {
    min-height: 400px;
  }
}

@media (max-width: 560px) {
  .teret-cards-grid {
    grid-template-columns: 1fr;
  }
  .teret-card {
    padding: 26px 22px 22px;
  }
  .teret-card__cta {
    left: 50%;
    transform: translateX(-50%);
  }
  .teret-card__cta:hover {
    transform: translateX(-50%) translateY(-2px);
  }
  .teret-card__text {
    max-width: 40ch;
  }
}
.hero-cta-wrap { display: flex; justify-content: center; margin-top: 0; }
.hero-cta-wrap .btn { margin: 0; }
.hero-controls { position: absolute; right: var(--container-padding); top: 50%; transform: translateY(-50%); z-index: 3; display: flex; flex-direction: column; align-items: center; gap: var(--space-sm); }
.hero-control { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; padding: 0; background: rgba(255, 255, 255, 0.08); border: 1px solid var(--color-border-pill); border-radius: var(--radius-full); color: var(--color-text); cursor: pointer; transition: background 0.2s, border-color 0.2s; }
.hero-control:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.3); }
.hero-control:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.hero-control svg { width: 22px; height: 22px; }
.hero-dots { display: flex; flex-direction: column; gap: var(--space-xs); }
.hero-dot { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: rgba(255, 255, 255, 0.3); cursor: pointer; transition: background 0.2s, transform 0.2s; }
.hero-dot:hover { background: rgba(255, 255, 255, 0.5); }
.hero-dot.hero-dot-active, .hero-dot[aria-current="true"] { background: var(--color-accent); transform: scale(1.2); }
.hero-dot:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
@media (max-width: 767px) { .hero-controls { right: var(--space-md); } }

/* Stats */
.stats-strip { padding: var(--space-3xl) var(--container-padding); background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-elevated) 50%, var(--color-surface) 100%); border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.stats-inner { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); text-align: center; }
@media (min-width: 640px) { .stats-inner { grid-template-columns: repeat(3, 1fr); gap: var(--space-xl); } }
.stat-item { position: relative; padding: var(--space-lg) var(--space-md); }
@media (min-width: 640px) { .stat-item:not(:last-child)::after { content: ""; position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 40%; background: var(--color-border); opacity: 0.8; } }
.stat-value { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--color-accent); letter-spacing: -0.02em; line-height: 1; }
.stat-suffix { font-family: var(--font-heading); font-size: inherit; color: var(--color-accent); font-weight: 700; }
.stat-label { display: block; margin-top: var(--space-sm); font-size: 0.875rem; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Graph section – interaktivni graf + tekst (boje kao na slici 2) */
.graph-section {
  padding: var(--space-4xl) var(--container-padding);
  background: var(--color-bg);
}
.graph-section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}
@media (min-width: 900px) {
  .graph-section-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
  }
}
.graph-card-wrap {
  order: 1;
}
@media (min-width: 900px) { .graph-card-wrap { order: 0; } }
.graph-card {
  position: relative;
  overflow: visible;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.graph-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
}
.graph-grid line { opacity: 0.8; }
.graph-line {
  stroke: #60a5fa;
  filter: drop-shadow(0 0 8px rgba(96, 165, 250, 0.45));
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: graph-line-draw 1.2s ease-out forwards;
}
@keyframes graph-line-draw {
  to { stroke-dashoffset: 0; }
}
.graph-point-hit {
  fill: transparent;
  cursor: pointer;
  stroke: none;
}
.graph-point {
  fill: #1a1a1a;
  stroke: rgba(255, 255, 255, 0.85);
  stroke-width: 2;
  pointer-events: none;
  transition: transform 0.25s ease, stroke 0.25s, filter 0.25s;
}
.graph-point-wrap:hover .graph-point,
.graph-point-wrap.is-active .graph-point {
  transform: scale(1.4);
  stroke: #60a5fa;
  filter: drop-shadow(0 0 10px rgba(96, 165, 250, 0.6));
}
.graph-point-wrap .graph-point { transform-origin: center; }
.graph-tooltip {
  position: absolute;
  left: 0;
  top: 0;
  transform: translate(-50%, calc(-100% - 8px)) scale(0.9);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: rgba(30, 41, 59, 0.95);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  white-space: nowrap;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.45), 0 0 20px rgba(96, 165, 250, 0.15);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s ease;
}
.graph-tooltip.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, calc(-100% - 8px)) scale(1);
}
.graph-tooltip-value { color: #60a5fa; }
.graph-tooltip-icon { display: flex; align-items: center; color: #60a5fa; }
.graph-tooltip-icon svg { width: 16px; height: 16px; }
.graph-text-wrap { order: 0; }
@media (min-width: 900px) { .graph-text-wrap { order: 1; } }
.graph-title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  line-height: 1.35;
}
.graph-title-line { display: block; }
.graph-title strong { font-weight: 700; color: var(--color-text); }
.graph-title-accent {
  display: block;
  font-weight: 700;
  color: #60a5fa;
  margin-top: 0.2em;
  letter-spacing: 0.01em;
}
.graph-text {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}
.graph-text strong.graph-text-highlight {
  color: #60a5fa;
  font-weight: 700;
}
.graph-text-accent {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

/* Galerija – 2×2 kartice sa slikom, kategorijom i naslovom (kao Today) */
.gallery-section {
  padding: var(--space-4xl) var(--container-padding);
  background: var(--color-bg-elevated);
}
.gallery-inner {
  max-width: var(--container-max);
  margin: 0 auto;
}
.gallery-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-2xl);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}
@media (min-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(10, 1fr);
    gap: var(--space-xl);
  }
  .gallery-card:nth-child(1) { grid-column: 1 / 7; }
  .gallery-card:nth-child(2) { grid-column: 7 / 11; }
  .gallery-card:nth-child(3) { grid-column: 1 / 5; }
  .gallery-card:nth-child(4) { grid-column: 5 / 11; }
}
.gallery-card {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-surface) var(--gallery-bg) center / cover no-repeat;
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.2) 45%, transparent 70%);
  pointer-events: none;
}
.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}
.gallery-card__category {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.95);
  z-index: 1;
}
.gallery-card__title {
  position: absolute;
  left: var(--space-lg);
  right: var(--space-lg);
  bottom: var(--space-lg);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  z-index: 1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

/* Sections */
.section-eyebrow { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-accent); margin: 0 0 var(--space-sm); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 0 0 var(--space-md); color: var(--color-text); }
.section-subtitle { font-size: 1rem; color: var(--color-text-muted); max-width: 560px; margin: 0 auto var(--space-2xl); line-height: 1.6; }

/* Steps – isti stil kao hero kartice (tamna pozadina, plavi obrub, neon linija) */
.steps-section { padding: var(--space-4xl) var(--container-padding); background: var(--color-bg-elevated); }
.steps-inner { max-width: var(--container-max); margin: 0 auto; text-align: center; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); margin-top: var(--space-2xl); }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .steps-grid { grid-template-columns: repeat(4, 1fr); gap: var(--space-xl); } }
.step-card {
  position: relative;
  padding: var(--space-2xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.step-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.9), transparent);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
  opacity: 0.95;
}
.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45), 0 0 30px rgba(59, 130, 246, 0.12);
}
.process-step-icon-box { position: relative; width: 64px; height: 64px; margin: 0 auto var(--space-lg); }
.process-step-icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(96, 165, 250, 0.25);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
}
.box-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, transparent 0%, rgba(0,0,0,0.15) 100%); }
.step-num { position: relative; z-index: 1; font-family: var(--font-heading); font-weight: 700; font-size: 1.25rem; color: var(--color-text); }
.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.step-card p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; line-height: 1.5; }

/* Audience – isti stil kao hero kartice */
.audience-section { padding: var(--space-4xl) var(--container-padding); text-align: center; }
.audience-grid { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); }
@media (min-width: 640px) { .audience-grid { grid-template-columns: repeat(3, 1fr); } }
.audience-card {
  position: relative;
  padding: var(--space-2xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.audience-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.9), transparent);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
  opacity: 0.95;
}
.audience-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45), 0 0 30px rgba(59, 130, 246, 0.12);
}
.audience-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-lg);
  background: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: var(--radius-md);
  color: #60a5fa;
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.25));
}
.audience-icon-wrap svg { width: 28px; height: 28px; }
.audience-card h3 {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 var(--space-md);
  color: var(--color-text);
}
.audience-card ul { text-align: left; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; }
.audience-card li { padding: var(--space-xs) 0; padding-left: 1.25rem; position: relative; }
.audience-card li::before { content: "–"; position: absolute; left: 0; color: #60a5fa; }

/* Benefits – isti stil kao hero kartice */
.benefits-section { padding: var(--space-4xl) var(--container-padding); background: var(--color-bg-elevated); text-align: center; }
.benefits-grid { max-width: var(--container-max); margin: 0 auto; display: grid; grid-template-columns: 1fr; gap: var(--space-xl); }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card {
  position: relative;
  padding: var(--space-2xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
}
.benefit-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(96, 165, 250, 0.9), transparent);
  filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
  opacity: 0.95;
}
.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.35);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.45), 0 0 30px rgba(59, 130, 246, 0.12);
}
.benefit-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-lg);
  background: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: var(--radius-md);
  color: #60a5fa;
  filter: drop-shadow(0 0 14px rgba(59, 130, 246, 0.25));
}
.benefit-icon-wrap svg { width: 24px; height: 24px; }
.benefit-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0 0 var(--space-sm);
  color: var(--color-text);
}
.benefit-card p { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0; line-height: 1.5; }

/* FAQ */
.faq-section { padding: var(--space-4xl) var(--container-padding); text-align: center; }
.faq-list { max-width: 720px; margin: 0 auto; text-align: left; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-trigger { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: var(--space-lg) 0; font-family: var(--font-heading); font-size: 1rem; font-weight: 600; color: var(--color-text); background: none; border: none; cursor: pointer; text-align: left; transition: color 0.2s; }
.faq-trigger:hover { color: var(--color-accent); }
.faq-trigger:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.faq-icon { flex-shrink: 0; margin-left: var(--space-md); transition: transform 0.2s; }
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }
.faq-icon svg { width: 20px; height: 20px; }
.faq-panel { padding-bottom: var(--space-lg); }
.faq-panel p { margin: 0; font-size: 0.9375rem; color: var(--color-text-muted); line-height: 1.6; }

/* CTA band */
.cta-band { padding: var(--space-4xl) var(--container-padding); background: linear-gradient(135deg, var(--color-surface) 0%, var(--color-bg-elevated) 100%); border-top: 1px solid var(--color-border); text-align: center; }
.cta-band-text { font-family: var(--font-heading); font-size: clamp(1.25rem, 2.5vw, 1.5rem); font-weight: 600; color: var(--color-text); margin: 0 0 var(--space-lg); }
.cta-band .btn { margin: 0; }

/* Footer: samo crna traka sa sadržajem, bez slike */
.footer { background: #000; padding: var(--space-4xl) var(--container-padding) var(--space-2xl); text-align: center; }
.footer-inner { max-width: var(--container-max); margin: 0 auto; }
.footer-eyebrow { font-size: 0.9375rem; color: var(--color-text-muted); margin: 0 0 var(--space-xl); max-width: 480px; margin-left: auto; margin-right: auto; }
.footer-pills { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-md); margin-bottom: var(--space-xl); }
.footer-hotline { margin-bottom: var(--space-2xl); }
.footer-hotline-label { display: block; font-size: 0.8125rem; color: var(--color-text-muted); margin-top: var(--space-sm); text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--space-3xl); margin-bottom: var(--space-2xl); text-align: left; }
.footer-col h4 { font-size: 0.8125rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-text-muted); margin: 0 0 var(--space-md); }
.footer-col a { display: block; font-size: 0.9375rem; color: var(--color-text-muted); padding: var(--space-xs) 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--color-text); }
.footer-legal { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; }

/* ========== SAMO TELEFON (max 767px) – ništa ne mijenja desktop ========== */
@media (max-width: 767px) {
  html { overflow-x: hidden; }
  body { font-size: 16px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
  a, button { -webkit-tap-highlight-color: rgba(96, 165, 250, 0.2); }
  .utility-bar { min-height: 48px; padding: 0 1rem; }
  .utility-bar-inner { padding: 0 0.5rem; gap: 0.5rem; }
  .utility-toggle { padding: 0.5rem 0.85rem; font-size: 0.75rem; min-height: 44px; }
  .utility-toggle-wrap { padding: 2px; }
  .utility-right { gap: 0.5rem; }
  .utility-bar .btn-utility-pomoc,
  .utility-bar a.btn-utility-pomoc { padding: 0.4rem 0.6rem; font-size: 0.6875rem; min-height: 44px; }
  .navbar { padding: 0 1rem 0.6rem; padding-top: calc(48px + 12px); }
  .navbar-inner { min-height: 56px; padding: 0 1rem; border-radius: 999px; }
  .navbar-logo-img { height: 44px; }
  .navbar-icon-btn { width: 48px; height: 48px; min-width: 48px; min-height: 48px; }
  .navbar-icon-btn svg { width: 24px; height: 24px; }
  .navbar-menu { top: calc(100% + 6px); left: 0; right: 0; padding: 1rem; gap: 0.25rem; border-radius: var(--radius-md); }
  .navbar-menu a { padding: 0.875rem 0; min-height: 48px; display: flex; align-items: center; font-size: 1rem; }
  .navbar-menu .btn { min-height: 48px; width: 100%; justify-content: center; }
  .search-overlay { padding: 5rem 1rem 0; align-items: flex-start; }
  .search-overlay-inner { padding: 0.75rem 1rem; }
  .search-input { font-size: 16px; padding: 0.75rem 0; }
  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content { padding: calc(48px + 12px + 56px + 24px) 1rem var(--space-3xl); }
  .hero .teret-cards .container { padding: 0 0.5rem; padding-top: 0; }
  .teret-cards-grid { grid-template-columns: 1fr; gap: 1rem; }
  .teret-card { min-height: 320px; padding: 1.5rem 1.25rem 4rem; border-radius: var(--radius-md); }
  .teret-card__icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .teret-card__icon svg { width: 28px; height: 28px; }
  .teret-card__title { font-size: 1rem; margin-bottom: 8px; }
  .teret-card__text { font-size: 0.9375rem; max-width: none; line-height: 1.5; }
  .teret-card__cta { bottom: 1rem; padding: 0.75rem 1.25rem; min-height: 48px; font-size: 0.8125rem; }
  .hero-cta-wrap .btn { min-height: 48px; width: 100%; max-width: 280px; }
  .hero-controls { display: none; }
  .stats-strip { padding: var(--space-2xl) 1rem; }
  .stats-inner { grid-template-columns: 1fr; gap: var(--space-xl); }
  .stat-item { padding: var(--space-md) 0; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-value { font-size: 2rem; }
  .stat-label { font-size: 0.8125rem; margin-top: 0.25rem; }
  .graph-section { padding: var(--space-2xl) 1rem; }
  .graph-section-inner { gap: var(--space-xl); }
  .graph-card { padding: 1rem; border-radius: var(--radius-md); }
  .graph-svg { min-height: 180px; touch-action: manipulation; }
  .graph-point-hit { cursor: pointer; }
  .graph-tooltip { padding: 0.5rem 0.75rem; font-size: 0.875rem; }
  .graph-title { font-size: 1.25rem; margin-bottom: var(--space-md); }
  .graph-text { font-size: 0.9375rem; }
  .gallery-section { padding: var(--space-2xl) 1rem; }
  .gallery-title { font-size: 1.5rem; margin-bottom: var(--space-lg); }
  .gallery-grid { gap: 1rem; }
  .gallery-card { min-height: 240px; }
  .gallery-card__category { top: 1rem; left: 1rem; font-size: 0.625rem; }
  .gallery-card__title { left: 1rem; right: 1rem; bottom: 1rem; font-size: 1rem; }
  .steps-section { padding: var(--space-2xl) 1rem; }
  .steps-inner { padding: 0; }
  .section-subtitle { margin-bottom: var(--space-xl); padding: 0 0.5rem; }
  .steps-grid { margin-top: var(--space-xl); gap: var(--space-lg); }
  .step-card { padding: var(--space-xl) 1.25rem; }
  .step-card h3 { font-size: 1.0625rem; }
  .step-card p { font-size: 0.875rem; }
  .audience-section { padding: var(--space-2xl) 1rem; }
  .audience-grid { gap: var(--space-lg); }
  .audience-card { padding: var(--space-xl) 1.25rem; }
  .audience-card h3 { font-size: 1rem; }
  .audience-card ul { font-size: 0.875rem; }
  .benefits-section { padding: var(--space-2xl) 1rem; }
  .benefits-grid { gap: var(--space-lg); }
  .benefit-card { padding: var(--space-xl) 1.25rem; }
  .benefit-card h3 { font-size: 0.9375rem; }
  .benefit-card p { font-size: 0.875rem; }
  .faq-section { padding: var(--space-2xl) 1rem; }
  .faq-trigger { padding: 1rem 0; min-height: 52px; font-size: 0.9375rem; align-items: center; }
  .faq-icon svg { width: 22px; height: 22px; }
  .faq-panel { padding-bottom: 1rem; }
  .faq-panel p { font-size: 0.875rem; }
  .cta-band { padding: var(--space-2xl) 1rem; }
  .cta-band-text { font-size: 1.125rem; margin-bottom: 1.25rem; }
  .cta-band .btn { width: 100%; max-width: 320px; min-height: 52px; }
  .footer { padding: var(--space-2xl) 1rem var(--space-xl); }
  .footer-eyebrow { font-size: 0.875rem; margin-bottom: var(--space-lg); }
  .footer-pills { gap: 0.75rem; margin-bottom: var(--space-lg); }
  .footer-pills .btn { min-height: 48px; padding: 0.75rem 1.25rem; }
  .footer-links { gap: var(--space-2xl); margin-bottom: var(--space-lg); flex-direction: column; align-items: center; text-align: center; }
  .footer-col a { padding: 0.5rem 0; }
}

/* Mali telefoni (max 480px) */
@media (max-width: 480px) {
  .utility-bar-inner { padding: 0 0.75rem; }
  .navbar-inner { padding: 0 0.75rem; }
  .hero-content { padding: calc(48px + 12px + 56px + 20px) 0.75rem var(--space-2xl); }
  .teret-card { min-height: 280px; padding: 1.25rem 1rem 3.5rem; }
  .teret-card__title { font-size: 0.9375rem; }
  .graph-svg { min-height: 160px; }
  .gallery-card { min-height: 220px; }
  .gallery-card__title { font-size: 0.9375rem; }
  .section-title { font-size: 1.5rem; }
  .step-card { padding: 1rem; }
  .cta-band .btn { max-width: none; }
}
