@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #e20074;
  --primary-hover: #b3005a;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #111827;
}

h1, h2, h3, h4, h5, h6,
.logo-text {
  font-family: 'Outfit', sans-serif;
}

.container-custom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container-custom { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container-custom { padding: 0 2rem; }
}

.glass-header {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
}

.nav-link {
  position: relative;
  color: #374151;
  font-weight: 500;
  transition: color .2s;
}
.nav-link:hover, .nav-link.active { color: var(--primary); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width .2s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.category-label {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  color: #6b7280;
  font-weight: 600;
}

.tariff-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.5rem;
  transition: all .2s;
}
.tariff-card:hover {
  border-color: var(--primary);
  box-shadow: 0 18px 35px rgba(0,0,0,.08);
}
.tariff-card-popular {
  position: relative;
  box-shadow: 0 0 0 2px rgba(226,0,116,.8);
}
.tariff-card-popular::before {
  content: 'Doporučujeme';
  position: absolute;
  left: 1rem;
  top: -.75rem;
  background: var(--primary);
  color: #fff;
  font-size: .75rem;
  border-radius: 999px;
  padding: .25rem .75rem;
}

.feature-tag {
  display: inline-flex;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: .5rem;
  font-size: .875rem;
  color: #374151;
  padding: .25rem .65rem;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  color: #6b7280;
  font-size: .875rem;
}
.breadcrumb a:hover { color: var(--primary); }

.footer-section {
  background: #111827;
  color: #fff;
  padding: 4rem 0;
}
.footer-link {
  color: #9ca3af;
  transition: color .2s;
}
.footer-link:hover { color: #fff; }

.article-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: .9rem;
  overflow: hidden;
  transition: all .2s;
}
.article-card:hover {
  border-color: var(--primary);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.prose h2 {
  font-size: 1.5rem;
  margin: 1.5rem 0 .75rem;
  font-weight: 700;
}
.prose p { margin: .8rem 0; color: #4b5563; line-height: 1.65; }
.prose ul { list-style: disc; margin-left: 1.2rem; color: #4b5563; }

.btn-primary {
  background: var(--primary);
  color: #fff;
  border-radius: .75rem;
  padding: .75rem 1.2rem;
  font-weight: 600;
}
.btn-primary:hover { background: var(--primary-hover); }

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.mobile-menu-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: #111827;
  margin: 0 auto;
}

.mobile-menu-collapse {
  padding: 0 0 1rem;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(17, 24, 39, .06);
}

.mobile-menu-block {
  padding-top: .9rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.mobile-menu-link {
  display: block;
  padding: .62rem 0;
  color: #374151;
  font-weight: 500;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--primary);
}

.mobile-menu-divider {
  border: 0;
  border-top: 1px solid #e5e7eb;
  margin: .7rem 0;
}

.mobile-menu-cta {
  margin-top: .9rem;
  width: 100%;
  text-align: center;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle,
  .mobile-menu-collapse {
    display: none !important;
  }
}
