/* =========================================================
   ADVOKAT SLOBODAN JOVANOV — Korporativni stil
   Paleta: deep navy + bright blue + white + light gray
   ========================================================= */

:root {
  --navy: #001A4E;
  --navy-dark: #001036;
  --navy-light: #0A2864;
  --navy-soft: #1F325E;
  --blue: #00BAEB;
  --blue-bright: #1FCEFF;
  --blue-dark: #0098C4;
  --blue-soft: rgba(0, 186, 235, 0.08);
  --white: #FFFFFF;
  --gray-50: #F6F8FA;
  --gray-100: #EEF2F6;
  --gray-200: #D7DEE5;
  --gray-300: #B6BFC9;
  --gray-500: #6B7480;
  --gray-700: #3A434F;
  --gray-900: #14181F;

  --text: #001A4E;
  --text-muted: #6B7480;
  --line: #E1E6EC;
  --line-strong: #C7CFD8;

  --display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  --container: 1280px;
  --container-narrow: 920px;
  --gutter: clamp(1.25rem, 3vw, 2.5rem);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --shadow-sm: 0 1px 2px rgba(0, 26, 78, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 26, 78, 0.06);
  --shadow-lg: 0 12px 40px rgba(0, 26, 78, 0.08);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* =========================================================
   TIPOGRAFIJA
   ========================================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}
h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }

p { margin-bottom: 1rem; }

.eyebrow {
  font-family: var(--body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--blue);
}

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.6;
  color: var(--gray-700);
  font-weight: 400;
}

.accent-blue { color: var(--blue); }
.accent-navy { color: var(--navy); }

/* =========================================================
   LAYOUT
   ========================================================= */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

.container-narrow {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }
section.tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }

.bg-gray { background: var(--gray-50); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: var(--white); }

/* =========================================================
   HEADER / NAVIGACIJA
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-icon {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.brand-icon svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-mark {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.brand-sub {
  font-family: var(--body);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--blue);
  margin-top: 0.2rem;
  font-weight: 500;
}

.nav-menu {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  align-items: center;
  margin-left: auto;
}

.nav-menu li:not(:last-child) { margin-right: 1.25rem; }

.nav-menu a {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.2s var(--ease);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 2px;
  background: var(--blue);
  transition: right 0.3s var(--ease);
}

.nav-menu a:hover { color: var(--white); }
.nav-menu a:hover::after { right: 0; }

.nav-menu a.active { color: var(--white); }
.nav-menu a.active::after { right: 0; }

.nav-menu a.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.3rem;
  background: var(--blue);
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  border: 1.5px solid var(--blue);
  transition: all 0.25s var(--ease);
}

.nav-menu a.nav-cta::after { display: none !important; }

.nav-menu a.nav-cta:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
  color: var(--navy);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px auto;
  transition: all 0.3s var(--ease);
}

.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 980px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: fixed;
    inset: 73px 0 0 0;
    background: var(--navy);
    flex-direction: column;
    padding: 2.5rem var(--gutter);
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
    align-items: flex-start;
    overflow-y: auto;
  }
  .nav-menu li { margin-right: 0 !important; width: 100%; }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a {
    font-size: 1.4rem;
    padding: 0.85rem 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-menu a.nav-cta {
    margin-top: 1.5rem;
    font-size: 0.95rem !important;
    padding: 1rem 1.5rem !important;
    border-bottom: none;
    width: auto;
  }
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(5rem, 10vw, 8rem);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 186, 235, 0.18) 0%, transparent 60%),
    radial-gradient(circle at 90% 80%, rgba(0, 186, 235, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.hero-content { position: relative; }

.hero h1 {
  color: var(--white);
  margin: 1.5rem 0 1.5rem;
}

.hero h1 .accent {
  color: var(--blue);
  font-weight: 700;
}

.hero-lead {
  max-width: 560px;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.05rem, 1.4vw, 1.15rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero .eyebrow { color: var(--blue); }
.hero .eyebrow::before { background: var(--blue); }

.hero-emblem {
  position: relative;
  aspect-ratio: 1;
  max-width: 560px;
  width: 100%;
  margin-left: auto;
}

.hero-emblem svg { width: 100%; height: 100%; }

.hero-meta {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.75rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 1080px) {
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

@media (max-width: 600px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
}

.hero-meta-item .label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 0.4rem;
}

.hero-meta-item .value {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
}

/* =========================================================
   DUGMAD
   ========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1.75rem;
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.25s var(--ease);
}

.btn-primary {
  background: var(--blue);
  color: var(--navy);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--blue-bright);
  border-color: var(--blue-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--blue);
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: all 0.25s var(--ease);
}

.btn-link:hover {
  border-bottom-color: var(--blue);
  gap: 0.85rem;
}

.btn-link svg, .btn svg { transition: transform 0.25s var(--ease); }
.btn-link:hover svg, .btn:hover svg { transform: translateX(4px); }

/* =========================================================
   UVOD / O ADVOKATU
   ========================================================= */

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}

@media (max-width: 980px) {
  .intro-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.intro-grid h2 {
  position: sticky;
  top: 110px;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .intro-grid h2 { position: static; }
}

.intro-text p {
  font-size: 1.02rem;
  margin-bottom: 1.4rem;
  color: var(--gray-700);
  line-height: 1.7;
}

.intro-text strong { color: var(--navy); font-weight: 700; }

/* =========================================================
   OBLASTI RADA — kartice
   ========================================================= */

.section-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 { margin: 1rem 0 1rem; }

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1080px) { .areas-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .areas-grid { grid-template-columns: 1fr; } }

.area-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: all 0.25s var(--ease);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  overflow: hidden;
}

.area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--blue);
  transition: width 0.3s var(--ease);
}

.area-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.area-card:hover::before { width: 100%; }

.area-card .area-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.05em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.area-card .area-num::after {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--line-strong);
}

.area-card .area-icon {
  color: var(--blue);
  width: 52px;
  height: 52px;
  margin: 0.5rem auto 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.area-card .area-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.area-card:hover .area-icon {
  transform: scale(1.08);
}

.area-card h3 {
  margin: 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
}

.area-card h3 svg {
  color: var(--gray-300);
  transition: color 0.25s var(--ease), transform 0.25s var(--ease);
  flex-shrink: 0;
  margin-top: 4px;
}

.area-card:hover h3 svg {
  color: var(--blue);
  transform: translate(3px, -3px);
}

.area-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
}

/* Detaljne oblasti */
.area-detailed {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  border-bottom: 1px solid var(--line);
}

.area-detailed:last-of-type { border-bottom: none; }

.area-detailed-grid {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (max-width: 980px) {
  .area-detailed-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}

.area-detailed-head { position: sticky; top: 110px; }

@media (max-width: 980px) {
  .area-detailed-head { position: static; }
}

.area-detailed-head .area-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.area-detailed-head .area-num::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--line-strong);
}

.area-detailed h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  margin: 0.85rem 0 0;
  color: var(--navy);
}

.area-detailed-body p {
  color: var(--gray-700);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.area-list { list-style: none; padding: 0; margin: 1.5rem 0; }

.area-list li {
  padding: 0.85rem 0 0.85rem 1.85rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.55;
}

.area-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.5rem;
  width: 14px;
  height: 2px;
  background: var(--blue);
}

.area-list li:last-child { border-bottom: none; }

/* Pill nav */
.pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.pill-nav a {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  transition: all 0.25s var(--ease);
}

.pill-nav a:hover {
  background: var(--blue);
  color: var(--navy);
  border-color: var(--blue);
}

/* =========================================================
   FAQ
   ========================================================= */

.faq-list { max-width: 920px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.faq-item:first-child { border-top: 1px solid var(--line); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: color 0.25s var(--ease);
  letter-spacing: -0.01em;
}

.faq-question:hover { color: var(--blue); }

.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s var(--ease);
  position: relative;
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--navy);
  transition: all 0.25s var(--ease);
}

.faq-icon::before { width: 12px; height: 2px; }
.faq-icon::after { width: 2px; height: 12px; }

.faq-item:hover .faq-icon { border-color: var(--blue); }

.faq-item.open .faq-icon {
  background: var(--blue);
  border-color: var(--blue);
}

.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--navy); }

.faq-item.open .faq-icon::after { transform: rotate(90deg); opacity: 0; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.faq-answer-inner {
  padding: 0 0 2rem;
  color: var(--gray-700);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 760px;
}

.faq-answer-inner p { margin-bottom: 0.75rem; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

.faq-answer-inner a { color: var(--blue); border-bottom: 1px solid var(--blue); }
.faq-answer-inner strong { color: var(--navy); font-weight: 700; }

/* =========================================================
   KONTAKT
   ========================================================= */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

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

.contact-info {
  background: var(--navy);
  color: var(--white);
  padding: clamp(2rem, 4vw, 3rem);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--blue);
}

.contact-info::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(0, 186, 235, 0.18), transparent 65%);
  pointer-events: none;
}

.contact-info h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.contact-info .eyebrow { color: var(--blue); }
.contact-info .eyebrow::before { background: var(--blue); }

.contact-info > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
  font-size: 0.95rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-list li:last-child { border-bottom: none; }

.contact-list .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  width: 110px;
  flex-shrink: 0;
  padding-top: 0.25rem;
}

.contact-list .value {
  font-size: 1rem;
  color: var(--white);
  line-height: 1.45;
  font-weight: 500;
}

.contact-list .value a {
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.contact-list .value a:hover { border-bottom-color: var(--blue); }

/* Forma */
.contact-form { padding: 0; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--body);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  border: 1.5px solid var(--line);
  transition: all 0.2s var(--ease);
  outline: none;
  font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 186, 235, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-500);
  font-weight: 400;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
}

.form-disclaimer {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  line-height: 1.6;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}

.form-status { font-size: 0.95rem; font-weight: 500; }

/* =========================================================
   CTA TRAKA
   ========================================================= */

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 186, 235, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 10% 90%, rgba(0, 186, 235, 0.08) 0%, transparent 50%);
}

.cta-band-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 720px) {
  .cta-band-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 660px;
  margin: 0;
  line-height: 1.25;
}

.cta-band h2 .accent { color: var(--blue); font-weight: 700; }

.cta-band .btn-primary {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--navy);
  font-weight: 700;
}

.cta-band .btn-primary:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* =========================================================
   PAGE HERO
   ========================================================= */

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(3rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 50%, rgba(0, 186, 235, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-content { max-width: 880px; position: relative; z-index: 2; }

.page-hero h1 { margin: 1rem 0 1.25rem; color: var(--white); }
.page-hero h1 .accent { color: var(--blue); }

.page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
  max-width: 660px;
  line-height: 1.6;
}

.breadcrumb {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.5rem;
}

.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { margin: 0 0.5rem; color: rgba(255, 255, 255, 0.3); }

/* =========================================================
   STAT BLOK (lična karta)
   ========================================================= */

.stat-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
  border-top: 1px solid var(--line);
}

.stat-list li {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.stat-list .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.stat-list .stat-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
}

/* =========================================================
   FUTER
   ========================================================= */

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: clamp(3.5rem, 5vw, 4.5rem) 0 1.5rem;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 60%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand .brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.footer-brand .brand-mark { color: var(--white); font-size: 1.05rem; }
.footer-brand .brand-sub { color: var(--blue); }

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blue);
  margin-bottom: 1.25rem;
}

.footer-col ul { list-style: none; padding: 0; }

.footer-col li {
  margin-bottom: 0.7rem;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.25s var(--ease);
}

.footer-col a:hover { color: var(--blue); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 760px;
  line-height: 1.65;
}

/* =========================================================
   ANIMACIJE
   ========================================================= */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   MAPA
   ========================================================= */

.map-wrapper {
  margin-top: 3rem;
  border: 1px solid var(--line);
  background: var(--gray-50);
  aspect-ratio: 21 / 9;
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .map-wrapper { aspect-ratio: 4 / 3; }
}

.map-wrapper iframe { width: 100%; height: 100%; border: 0; }

/* =========================================================
   PRINCIPI
   ========================================================= */

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1080px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .principles-grid { grid-template-columns: 1fr; } }

.principle-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.75rem 1.5rem;
  transition: all 0.25s var(--ease);
  position: relative;
}

.principle-card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.principle-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
  color: var(--navy);
}

.principle-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.principle-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
}

/* =========================================================
   QUOTE
   ========================================================= */

.quote-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.quote-block::before {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--blue);
  margin: 0 auto 2rem;
}

.quote-block p {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.4;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 1.5rem;
}

.quote-block cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
