/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #FFFFFF;
  color: #14314A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.62;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #14314A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #CF4C0F;
  outline: none;
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Georgia', serif;
  color: #14314A;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 20px; line-height: 1.2; }
h3 { font-size: 1.4rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1.125rem; }
p, ul li, ol li { font-size: 1rem; color: #214468; }
.subtitle {
  font-size: 1.25rem;
  color: #556F88;
  margin-bottom: 32px;
  font-weight: 400;
}
strong, b { color: #14314A; font-weight: bold; }
blockquote {
  font-family: 'Roboto Slab', serif;
  font-size: 1.15rem;
  color: #14314A;
  background: #F3F7FB;
  border-left: 4px solid #CF4C0F;
  margin: 0 0 18px 0;
  padding: 16px 20px 10px 24px;
  border-radius: 10px;
  font-style: italic;
}
hr { border: none; border-top: 1px solid #E5EBF2; margin: 32px 0; }
/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(30, 52, 70, 0.06);
  transition: box-shadow 0.2s;
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(30, 52, 70, 0.11);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.feature-grid, .service-list, .service-category-list, .advantage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-category-list, .advantage-list {
    gap: 16px;
    flex-direction: column;
  }
}
.feature-grid li, .service-category-list li, .advantage-list li, .service-list li {
  background: #F3F7FB;
  border-radius: 12px;
  padding: 24px 20px 16px 20px;
  min-width: 220px;
  flex: 1 1 240px;
  box-shadow: 0 2px 12px rgba(30, 52, 70, 0.06);
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 0;
  /* Remove bottom margin for last item in row */
}
.service-list li, .advantage-list li {
  align-items: center;
  font-size: 1rem;
  gap: 10px;
  display: flex;
  flex-direction: row;
  background: none;
  padding: 0;
  min-width: unset;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
}
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-list > div {
  background: #F3F7FB;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 280px;
  box-shadow: 0 2px 12px rgba(30, 52, 70, 0.06);
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .faq-list {
    flex-direction: column;
    gap: 14px;
  }
}
/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F3F7FB;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(30, 52, 70, 0.09);
  border: 1px solid #E5EBF2;
  color: #14314A;
}
.testimonial-card blockquote {
  background: none;
  border-left: 4px solid #CF4C0F;
  color: #14314A;
  padding: 0 0 0 16px;
  margin-bottom: 8px;
}
.testimonial-card p, .testimonial-card strong {
  color: #14314A;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
}
/* BUTTONS */
.btn-primary, .btn-secondary, .btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 28px;
  border-radius: 28px;
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  border: none;
  outline: none;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(20,49,74,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.15s;
}
.btn-primary {
  color: #fff;
  background: #14314A;
  border: 2px solid #14314A;
}
.btn-primary:hover, .btn-primary:focus {
  background: #CF4C0F;
  border-color: #CF4C0F;
  color: #fff;
}
.btn-secondary {
  color: #14314A;
  background: #F3F7FB;
  border: 2px solid #14314A;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #14314A;
  color: #fff;
}
.btn-tertiary {
  color: #CF4C0F;
  background: #fff;
  border: 2px solid #CF4C0F;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #CF4C0F;
  color: #fff;
}
.btn-primary, .btn-secondary, .btn-tertiary {
  margin-top: 12px;
}
/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1.5px solid #E5EBF2;
  z-index: 100;
  position: relative;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 16px;
  gap: 0;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  color: #14314A;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.15s, color 0.18s;
}
header nav a:hover, header nav a:focus, header nav a.active {
  color: #CF4C0F;
  border-bottom: 2px solid #CF4C0F;
}
header .btn-primary {
  margin: 0 0 0 28px;
  font-size: 1rem;
  padding: 9px 20px;
}
/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #14314A;
  font-size: 2rem;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  cursor: pointer;
  z-index: 402;
  transition: background 0.12s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F3F7FB;
  color: #CF4C0F;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 40px rgba(20,49,74,0.10);
  z-index: 401;
  transform: translateX(-104vw);
  transition: transform 0.32s cubic-bezier(0.68,0.1,0.24,1.02);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: none;
  border: none;
  color: #14314A;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 403;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #CF4C0F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 32px;
  margin-top: 12px;
  width: calc(100% - 50px);
}
.mobile-nav a {
  color: #14314A;
  font-size: 1.2rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 500;
  padding: 12px 0 12px 2px;
  border-radius: 8px;
  transition: background 0.13s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F3F7FB;
  color: #CF4C0F;
}
@media (max-width: 992px) {
  header .container nav,
  header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
    position: absolute;
    right: 24px;
    top: 24px;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none!important;
  }
  .mobile-menu-toggle {
    display: none!important;
  }
}
/* TABLE STYLES */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(30, 52, 70, 0.07);
  margin-bottom: 30px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 18px;
  text-align: left;
  font-size: 1rem;
  color: #14314A;
}
.pricing-table thead th {
  background: #F3F7FB;
  font-weight: 700;
  color: #14314A;
  border-bottom: 1px solid #E5EBF2;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #E5EBF2;
  transition: background 0.14s;
}
.pricing-table tbody tr:hover {
  background: #F3F7FB;
}
.pricing-notes, .disclaimer {
  color: #7E9AB3;
  font-size: 0.98rem;
  margin-bottom: 12px;
}
/* FOOTER */
footer {
  background: #F3F7FB;
  min-height: 96px;
  border-top: 1px solid #E5EBF2;
  margin-top: 60px;
  padding-top: 38px;
  padding-bottom: 32px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 0 16px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  font-size: 1rem;
  color: #556F88;
  padding: 0;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #CF4C0F;
}
.footer-contact p, .footer-contact a {
  color: #14314A;
  font-size: 0.99rem;
  margin-bottom: 4px;
}
.footer-contact a:hover {
  color: #CF4C0F;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  footer nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin: 10px 0;
  }
}
/* MISC FORMATTING */
ul > li > img,
ol > li > img,
.feature-grid li > img,
.service-list li > img,
.service-category-list li > img,
.advantage-list li > img {
  margin-right: 14px;
  width: 28px;
  height: 28px;
  vertical-align: middle;
  display: inline-block;
}
ul > li > img[alt=''], ul > li > img:not([alt]) { /* For icons without alt text */
  margin-right: 10px;
  width: 22px;
  height: 22px;
}
li {
  margin-bottom: 11px;
}
.text-section ul {
  margin-bottom: 22px;
}
.text-section ul li {
  font-size: 1rem;
}
/* RESPONSIVE SECTION SPACING & FONT SCALE */
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.25rem; }
  .container {
    padding: 0 6px;
  }
}
@media (max-width: 425px) {
  .btn-primary, .btn-secondary, .btn-tertiary {
    min-width: 110px;
    font-size: 1rem;
    padding: 11px 12px;
  }
  .section {
    padding: 20px 3px;
    margin-bottom: 28px;
  }
}
/* MICRO-INTERACTIONS & TRANSITIONS */
a, .btn-primary, .btn-secondary, .btn-tertiary {
  transition: background 0.12s, color 0.14s, box-shadow 0.19s;
}
.feature-grid li,
.service-category-list li,
.faq-list > div {
  transition: box-shadow 0.18s, transform 0.17s;
}
.feature-grid li:hover, .service-category-list li:hover, .faq-list > div:hover {
  box-shadow: 0 6px 18px rgba(30, 52, 70, 0.12);
  transform: translateY(-2px) scale(1.012);
}
/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -2px 20px rgba(20,49,74,0.10);
  border-top: 1.5px solid #E5EBF2;
  z-index: 1200;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 18px 12px;
  gap: 32px;
  font-size: 1rem;
  transition: transform 0.3s cubic-bezier(0.46,0.03,0.52,0.96), opacity 0.24s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(140px);
  pointer-events: none;
}
.cookie-banner-text {
  color: #14314A;
  font-size: 1.04rem;
  margin-right: 8px;
  max-width: 60vw;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-tertiary {
  margin: 0;
  min-width: 105px;
  font-size: 1rem;
  padding: 10px 16px;
}
/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1300;
  width: 100vw; height: 100vh;
  background: rgba(20,49,74,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 40px rgba(20,49,74,0.13);
  max-width: 410px;
  width: 92vw;
  padding: 32px 24px 28px 24px;
  z-index: 1401;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookieModalIn 0.32s cubic-bezier(0.65,0.05,0.36,1.07);
}
@keyframes cookieModalIn {
  0% { transform: translateY(40px) scale(.96); opacity: 0; }
  90% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-cat {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #F3F7FB;
}
.cookie-cat:last-child {
  border-bottom: none;
}
.cookie-cat-label {
  font-size: 1.05rem;
  color: #14314A;
  font-weight: 600;
}
.cookie-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  width: 0; height: 0;
  opacity: 0;
}
.cookie-toggle .slider {
  display: inline-block;
  width: 38px;
  height: 22px;
  background: #EEE;
  border-radius: 17px;
  position: relative;
  transition: background 0.16s;
  cursor: pointer;
}
.cookie-toggle input:checked + .slider {
  background: #14314A;
}
.cookie-toggle .slider:before {
  content: '';
  display: block;
  position: absolute;
  left: 4px; top: 4px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(20,49,74,0.09);
  transition: transform 0.18s;
}
.cookie-toggle input:checked + .slider:before {
  transform: translateX(14px);
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  min-width: 98px;
  font-size: 1rem;
  padding: 9px 17px;
  margin: 0;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 22px 10px 16px 10px;
    max-width: 97vw;
  }
}
/* Hide essential toggle -- always enabled */
.cookie-cat.cookie-essential .cookie-toggle { opacity:0.4; pointer-events:none; }
.cookie-cat.cookie-essential .cookie-cat-label:after {
  content: ' (zauvek uključeno)';
  font-weight: normal;
  font-size: 0.93em;
  color: #7E9AB3;
  margin-left:6px;
}
/* UTIL */
.mt-2 { margin-top: 14px; }
.mb-2 { margin-bottom: 14px; }
.pt-2 { padding-top: 14px; }
.pb-2 { padding-bottom: 14px; }
.w-100 { width: 100%; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* VISIBILITY/ACCESSIBILITY */
[tabindex="0"]:focus, a:focus, button:focus {
  outline: 2px solid #CF4C0F;
  outline-offset: 2px;
}

/* FORMS */
input, select, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #14314A;
  border: 1.5px solid #E5EBF2;
  border-radius: 9px;
  padding: 11px 12px;
  margin-bottom: 14px;
  background: #fff;
  transition: border 0.12s;
}
input:focus, select:focus, textarea:focus {
  border-color: #CF4C0F;
}
label {
  font-size: 1rem;
  margin-bottom: 7px;
  color: #214468;
}
/* Z-INDEX LAYERS */
header { z-index: 100; }
.mobile-menu { z-index: 401; }
.cookie-banner { z-index: 1200; }
.cookie-modal-overlay { z-index: 1300; }

/* HIDE/SHOW (no grid properties used) */
.d-none { display: none!important; }

/* PRINT HELPERS */
@media print {
  header, nav, footer, .cookie-banner, .cookie-modal-overlay { display: none; }
  .container { max-width: 100vw; }
}
