:root{
  --blue:#0b2b55;          /* osnovna REM-i modra (približek) */
  --blue-2:#081f3d;
  --card:#0f315f;
  --text:#eaf1ff;
  --muted:rgba(234,241,255,.75);
  --orange:#f28a1a;
  --white:#ffffff;

  --radius:18px;
  --shadow: 0 18px 40px rgba(0,0,0,.25);
  --container: 1100px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, var(--blue-2), var(--blue));
  color:var(--text);
}

a{ color:var(--text); text-decoration:none; }
a:hover{ text-decoration:underline; }

.container{
  width:min(var(--container), calc(100% - 40px));
  margin:0 auto;
}

/* Topbar */
.topbar{
  background: rgba(0,0,0,.25);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 14px;
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
}
.topbar .sep{ opacity:.6; margin:0 10px; }
.badge{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.10);
  padding:6px 10px;
  border-radius:999px;
}

/* Header */
.header{
  position: sticky;
  top:0;
  z-index: 50;
  background: rgba(11,43,85,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 14px 0;
}
.brand__logo{
  height:44px;
  width:auto;
  display:block;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,.25));
}

/* Nav */
.nav__toggle{
  display:none;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  padding:8px 10px;
  border-radius:10px;
  cursor:pointer;
}
.nav__list{
  list-style:none;
  display:flex;
  gap:22px;
  align-items:center;
  margin:0;
  padding:0;
}
.nav__list a{
  font-weight:600;
  opacity:.92;
}
.nav__list a:hover{ opacity:1; text-decoration:none; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  background: var(--orange);
  color:#1b1208;
  border-radius: 14px;
  font-weight:800;
  border: 0;
  cursor:pointer;
  box-shadow: 0 12px 24px rgba(242,138,26,.25);
}
.btn:hover{ transform: translateY(-1px); }
.btn--ghost{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  color: var(--text);
  box-shadow: none;
}
.btn--small{ padding:10px 14px; border-radius:12px; }

/* Hero */
.hero{
  position:relative;
  min-height: 72vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero__bg{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(11,43,85,.85), rgba(11,43,85,.35)),
    url("../img/hero.jpg") center/cover no-repeat;
  transform: scale(1.02);
}
.hero__overlay{
  position:absolute;
  inset:auto 0 0 0;
  height: 140px;
  background: linear-gradient(180deg, rgba(11,43,85,0), rgba(11,43,85,1));
}
.hero__content{
  position:relative;
  padding: 70px 0 60px;
  max-width: 720px;
}
.hero h1{
  font-size: clamp(34px, 4vw, 54px);
  margin: 0 0 10px;
  letter-spacing: .2px;
}
.hero p{
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}
.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom: 26px;
}
.hero__stats{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.stat{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 14px;
  min-width: 160px;
}
.stat__num{ font-weight:900; letter-spacing:.4px; }
.stat__label{ color: var(--muted); font-size: 13px; margin-top:2px; }

/* Sections */
.section{ padding: 70px 0; }
.section--alt{
  background: rgba(0,0,0,.12);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.section__head{
  margin-bottom: 26px;
  max-width: 760px;
}
.section__head h2{
  margin:0 0 8px;
  font-size: 32px;
}
.section__head p{
  margin:0;
  color: var(--muted);
  line-height: 1.6;
}

/* Cards */
.card{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

/* Services list */
.services{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.service{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.service__img{
  min-height: 180px;
  background: center/cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
}
.service__body{
  padding: 18px;
}
.service__body h3{
  margin: 0 0 6px;
  font-size: 24px;
}
.service__body p{
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.6;
}
.service__body ul{
  margin: 0;
  padding-left: 18px;
  color: rgba(234,241,255,.88);
}
.service__body li{ margin: 6px 0; }

/* Two columns */
.grid-2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.chips{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.chip{
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 10px;
  border-radius: 999px;
  font-weight:700;
  font-size: 13px;
}
.checklist{
  list-style:none;
  padding:0;
  margin: 10px 0 14px;
}
.checklist li{
  padding-left: 26px;
  position:relative;
  margin: 10px 0;
}
.checklist li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color: var(--orange);
  font-weight:900;
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1.3fr;
  gap:18px;
}
.contact__row{
  display:flex; align-items:center; gap:10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact__row:last-child{ border-bottom:0; }
.icon{ width:22px; text-align:center; }

.field{ display:flex; flex-direction:column; gap:8px; margin-bottom: 14px; }
label{ font-weight:800; }
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(242,138,26,.55);
  box-shadow: 0 0 0 4px rgba(242,138,26,.12);
}
.honeypot{ display:none; }

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

/* Footer */
.footer{
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  background: rgba(0,0,0,.15);
}
.footer__inner{
  display:flex; justify-content:space-between; align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__left{
  display:flex; align-items:center; gap:12px;
}
.footer__logo{
  height: 34px;
  width:auto;
}

/* Responsive */
@media (max-width: 860px){
  .service{ grid-template-columns: 1fr; }
  .service__img{ min-height: 210px; }
  .grid-2{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav__toggle{ display:inline-flex; }
  .nav__list{
    position:absolute;
    right: 20px;
    top: 64px;
    flex-direction:column;
    background: rgba(11,43,85,.92);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 12px;
    display:none;
    min-width: 220px;
  }
  .nav__list.is-open{ display:flex; }
}
