
:root{
  --navy:#17213f;
  --text:#20242a;
  --muted:#5f6673;
  --gold:#d8b43f;
  --blue:#2f6f9f;
  --light-blue:#eaf2fb;
  --bg:#f7f8fb;
  --white:#ffffff;
  --line:#e2e6ef;
  --soft:#f1f3f7;
  --radius:22px;
  --shadow:0 14px 35px rgba(23,33,63,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Arial, Helvetica, sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
.container{
  width:min(1180px, calc(100% - 40px));
  margin:0 auto;
}
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header-inner{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.logo{
  display:flex;
  align-items:center;
  line-height:1;
  flex:0 0 auto;
}
.logo img{
  display:block;
  width:auto;
  height:54px;
  object-fit:contain;
}
.nav{
  display:flex;
  align-items:center;
  gap:30px;
  color:var(--muted);
  font-weight:700;
  font-size:17px;
}
.nav a{
  padding:10px 0;
  border-bottom:3px solid transparent;
}
.nav a.active,
.nav a:hover{
  color:var(--navy);
  border-bottom-color:var(--gold);
}
.hero{
  padding:70px 0 70px;
}
.hero-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:60px;
  align-items:center;
}
.hero-brand{
  margin-bottom:30px;
}
.hero-brand img{
  display:block;
  width:min(560px, 100%);
  height:auto;
  object-fit:contain;
}
.eyebrow{
  color:var(--blue);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.09em;
  font-size:14px;
  margin-bottom:18px;
}
h1{
  margin:0;
  color:var(--navy);
  font-size:clamp(40px, 4.7vw, 62px);
  line-height:1.08;
  letter-spacing:-.04em;
}
h2{
  margin:0 0 24px;
  color:var(--navy);
  font-size:clamp(30px, 3vw, 42px);
  line-height:1.18;
  letter-spacing:-.025em;
}
h3{
  margin:0 0 12px;
  color:var(--navy);
  font-size:25px;
  line-height:1.25;
}
.lead{
  margin:26px 0 0;
  font-size:22px;
  color:var(--text);
  max-width:720px;
}
.hero-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:36px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:800;
  border:2px solid var(--navy);
  transition:.18s ease;
}
.btn-primary{
  background:var(--navy);
  color:#fff;
}
.btn-secondary{
  background:#fff;
  color:var(--navy);
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow)}
.hero-visual,
.card,
.cta{
  background:var(--white);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
}
.hero-visual{
  min-height:430px;
  padding:34px;
  position:relative;
  overflow:hidden;
}
.hero-visual-label{
  position:relative;
  z-index:2;
  color:var(--navy);
  font-weight:800;
  line-height:1.65;
}
.target{
  position:absolute;
  left:50%;
  top:51%;
  transform:translate(-50%,-50%);
  width:330px;
  height:330px;
  border-radius:50%;
  background:
    radial-gradient(circle at center, var(--navy) 0 9px, var(--blue) 10px 43px, #98bee8 44px 82px, #cfe0f5 83px 126px, var(--light-blue) 127px 165px);
}
.arrow{
  position:absolute;
  width:225px;
  height:8px;
  background:var(--navy);
  left:110px;
  top:290px;
  transform:rotate(-39deg);
  border-radius:99px;
  z-index:3;
}
.arrow::after{
  content:"";
  position:absolute;
  right:-13px;
  top:-12px;
  border-left:34px solid var(--navy);
  border-top:16px solid transparent;
  border-bottom:16px solid transparent;
}
.bars{
  position:absolute;
  right:52px;
  bottom:70px;
  display:flex;
  align-items:flex-end;
  gap:12px;
  z-index:4;
}
.bars span{
  width:28px;
  border-radius:9px 9px 3px 3px;
  background:var(--blue);
}
.bars span:nth-child(1){height:90px}
.bars span:nth-child(2){height:140px}
.bars span:nth-child(3){height:200px;background:var(--gold)}
.section{
  padding:70px 0;
}
.section-tight{padding:46px 0}
.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
}
.card{
  padding:34px;
}
.card p:last-child{margin-bottom:0}
.grid{
  display:grid;
  gap:28px;
}
.grid-4{grid-template-columns:repeat(4,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-2{grid-template-columns:repeat(2,1fr)}
.service-card{
  min-height:260px;
  padding:28px;
}
.icon{
  width:76px;
  height:76px;
  margin-bottom:22px;
}
.icon svg{width:100%;height:100%}
.muted{color:var(--muted)}
.check-list{
  list-style:none;
  padding:0;
  margin:0;
}
.check-list li{
  position:relative;
  padding-left:30px;
  margin:13px 0;
}
.check-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--gold);
}
.accordion{
  display:grid;
  gap:18px;
}
.accordion details{
  background:var(--white);
  border-radius:14px;
  border:1px solid var(--line);
  box-shadow:0 10px 22px rgba(23,33,63,.06);
  overflow:hidden;
}
.accordion summary{
  cursor:pointer;
  padding:24px 28px;
  color:var(--navy);
  font-size:21px;
  font-weight:800;
  list-style:none;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.accordion summary::-webkit-details-marker{display:none}
.accordion summary::after{
  content:"+";
  color:#6853c7;
  font-size:30px;
  line-height:1;
}
.accordion details[open] summary::after{content:"−"}
.accordion-content{
  padding:0 28px 28px;
  color:var(--text);
}
.accordion-content ul{margin:0;padding-left:22px}
.accordion-content li{margin:8px 0}
.steps{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:22px;
}
.step{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:24px;
  min-height:230px;
}
.step-number{
  width:52px;
  height:52px;
  border-radius:50%;
  background:var(--navy);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:800;
  margin-bottom:18px;
}
.cta{
  background:var(--navy);
  color:#fff;
  padding:46px;
}
.cta h2,.cta h3{color:#fff}
.cta p{font-size:20px}
.cta-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.contact-pill{
  display:inline-flex;
  background:#fff;
  color:var(--navy);
  padding:10px 18px;
  border-radius:999px;
  font-weight:800;
  margin:6px 10px 6px 0;
}
.page-title{
  padding:74px 0 46px;
}
.page-title p{
  max-width:1000px;
  font-size:22px;
  margin:22px 0 0;
}
.contact-layout{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:34px;
}
.contact-big{
  font-size:21px;
}
.footer{
  background:#fff;
  border-top:1px solid var(--line);
  padding:34px 0;
  margin-top:70px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
}
.footer strong{
  color:var(--navy);
}
.footer span{
  color:var(--muted);
}
@media (max-width:1050px){
  .header-inner{height:auto;align-items:flex-start;flex-direction:column;padding:20px 0}
  .nav{flex-wrap:wrap;gap:16px 24px}
  .hero-grid,.two-col,.contact-layout{grid-template-columns:1fr}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .grid-3{grid-template-columns:repeat(2,1fr)}
  .steps{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:680px){
  .container{width:min(100% - 28px, 1180px)}
  .logo img{
  display:block;
  width:auto;
  height:54px;
  object-fit:contain;
}
  .hero{padding-top:44px}
  .hero-brand{margin-bottom:22px;}
  .grid-4,.grid-3,.grid-2,.steps{grid-template-columns:1fr}
  .hero-visual{min-height:330px}
  .target{width:250px;height:250px}
  .arrow{left:70px;top:240px;width:175px}
  .bars{right:28px;bottom:45px}
}


/* Popravki logotipa, alinej in kontaktnih gumbov */
.site-header{
  overflow:visible;
}
.header-inner{
  min-height:108px;
  padding-top:12px;
  padding-bottom:12px;
}
.logo img{
  height:64px;
  width:auto;
  max-width:360px;
  object-fit:contain;
  display:block;
}
.hero-brand{
  display:block;
  margin-bottom:30px;
}
.hero-brand img{
  display:block;
  width:min(620px, 100%);
  height:auto;
  object-fit:contain;
}
.check-list li::before{
  top:0.58em;
  transform:translateY(-50%);
}
.contact-pill{
  text-decoration:none;
}
.contact-pill:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(255,255,255,.12);
}
@media (max-width:680px){
  .logo img{
    height:52px;
    max-width:260px;
  }
  .header-inner{
    min-height:92px;
  }
}


/* Finalni mikro popravki */
.check-list li::before{
  top:0.68em;
  transform:translateY(-50%);
}


/* Dodatni finalni popravki: logotip, alineje in mobilni prikaz */
.site-header,
.header-inner,
.logo,
.logo img,
.hero-brand,
.hero-brand img{
  overflow:visible;
}

.header-inner{
  min-height:118px;
  padding-top:16px;
  padding-bottom:16px;
}

.logo img{
  height:66px;
  width:auto;
  max-width:390px;
  object-fit:contain;
}

.hero-brand{
  margin-bottom:28px;
}

.hero-brand img{
  width:min(650px, 100%);
  height:auto;
  object-fit:contain;
}

/* pike pri alinejah so optično poravnane s prvo vrstico besedila */
.check-list li::before{
  top:0.82em;
  transform:translateY(-50%);
}

@media (max-width:1050px){
  .header-inner{
    min-height:auto;
    padding-top:18px;
    padding-bottom:18px;
  }
  .logo img{
    height:60px;
    max-width:340px;
  }
}

@media (max-width:680px){
  .logo img{
    height:50px;
    max-width:250px;
  }
  .hero-brand img{
    width:min(420px, 100%);
  }
  .hero-visual{
    display:none;
  }
  .lead,
  .page-title p{
    font-size:19px;
  }
  .cta{
    padding:30px 22px;
  }
  .contact-pill{
    width:100%;
    justify-content:center;
  }
}


/* Minimalna SEO nadgradnja - dodatne storitvene strani */
.inline-actions{
  margin-top:22px;
}
.small-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--navy);
  font-weight:800;
  border-bottom:2px solid var(--gold);
  padding-bottom:3px;
}
.small-link:hover{
  color:var(--blue);
}
.service-hero-note{
  display:grid;
  grid-template-columns:86px 1fr;
  gap:24px;
  align-items:start;
}
.service-hero-note .icon{
  margin:0;
}
.seo-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:start;
}
.keyword-strip{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:24px;
}
.keyword-strip span{
  display:inline-flex;
  padding:8px 13px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:var(--navy);
  font-weight:700;
  font-size:14px;
}
@media (max-width:900px){
  .seo-grid,
  .service-hero-note{
    grid-template-columns:1fr;
  }
}


/* Finalni pregled tipografije in postavitve */
body{
  font-size:17px;
}

p{
  margin-top:0;
}

h1{
  font-size:clamp(36px, 4.2vw, 58px);
  line-height:1.12;
  letter-spacing:-.035em;
}

h2{
  font-size:clamp(28px, 2.6vw, 38px);
  line-height:1.2;
  letter-spacing:-.02em;
}

h3{
  font-size:23px;
  line-height:1.28;
}

.lead,
.page-title p{
  font-size:20px;
  line-height:1.65;
}

.nav{
  font-size:16px;
}

.card{
  padding:32px;
}

.accordion summary{
  font-size:20px;
  line-height:1.35;
}

.accordion-content{
  font-size:17px;
}

.service-card{
  min-height:250px;
}

.check-list li{
  line-height:1.62;
}

/* Rumene pike so poravnane s prvo vrstico besedila */
.check-list li::before{
  top:0.94em;
  transform:translateY(-50%);
}

.btn{
  font-size:16px;
}

.footer{
  font-size:16px;
}

@media (max-width:1050px){
  h1{
    font-size:clamp(34px, 5.5vw, 50px);
  }

  .nav{
    font-size:15px;
  }

  .card{
    padding:28px;
  }
}

@media (max-width:680px){
  body{
    font-size:16px;
  }

  h1{
    font-size:34px;
    line-height:1.14;
  }

  h2{
    font-size:28px;
  }

  h3{
    font-size:22px;
  }

  .lead,
  .page-title p{
    font-size:18px;
    line-height:1.6;
  }

  .section{
    padding:48px 0;
  }

  .section-tight{
    padding:34px 0;
  }

  .page-title{
    padding:48px 0 28px;
  }

  .card{
    padding:24px;
  }

  .accordion summary{
    padding:20px 22px;
    font-size:18px;
  }

  .accordion-content{
    padding:0 22px 22px;
  }

  .check-list li::before{
    top:0.92em;
  }
}


/* Klikljive kartice na uvodni strani */
.service-card-link{
  display:block;
  color:inherit;
  text-decoration:none;
  border-radius:var(--radius);
}
.service-card-link .service-card{
  height:100%;
  transition:transform .18s ease, box-shadow .18s ease;
}
.service-card-link:hover .service-card,
.service-card-link:focus-visible .service-card{
  transform:translateY(-3px);
  box-shadow:0 18px 42px rgba(23,33,63,.14);
}
.service-card-link:focus-visible{
  outline:3px solid var(--gold);
  outline-offset:6px;
}


/* Politika piškotkov – manjši podnaslovi */
.policy-subtitle{
  font-size:22px;
  margin-top:30px;
  margin-bottom:12px;
}

.policy-subtitle:first-child{
  margin-top:0;
}

@media (max-width:680px){
  .policy-subtitle{
    font-size:20px;
  }
}


/* Popravek pomika na sidra zaradi fiksne / sticky glave */
.accordion details{
  scroll-margin-top:150px;
}

@media (max-width:1050px){
  .accordion details{
    scroll-margin-top:190px;
  }
}

@media (max-width:680px){
  .accordion details{
    scroll-margin-top:170px;
  }
}


/* Mobilni spustni meni */
.menu-toggle{
  display:none;
  width:48px;
  height:48px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  cursor:pointer;
  padding:0;
  flex:0 0 auto;
  box-shadow:0 8px 20px rgba(23,33,63,.06);
}
.menu-toggle span{
  display:block;
  width:24px;
  height:3px;
  margin:5px auto;
  background:var(--navy);
  border-radius:999px;
  transition:transform .18s ease, opacity .18s ease;
}
.menu-toggle.is-open span:nth-child(1){
  transform:translateY(8px) rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2){
  opacity:0;
}
.menu-toggle.is-open span:nth-child(3){
  transform:translateY(-8px) rotate(-45deg);
}

@media (max-width:820px){
  .header-inner{
    min-height:auto;
    padding-top:14px;
    padding-bottom:14px;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
  }
  .menu-toggle{
    display:block !important;
  }
  .nav{
    display:none;
    width:100%;
    order:3;
    flex-direction:column;
    align-items:flex-start;
    gap:0;
    padding:12px 0 4px;
    margin-top:4px;
    border-top:1px solid var(--line);
    font-size:16px;
  }
  .nav.is-open{
    display:flex;
  }
  .nav a{
    display:block;
    width:100%;
    padding:13px 0;
    border-bottom:1px solid rgba(226,230,239,.9);
  }
  .nav a.active,
  .nav a:hover{
    border-bottom-color:rgba(226,230,239,.9);
    color:var(--navy);
  }
  .nav a.active{
    position:relative;
  }
  .nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-1px;
    width:66px;
    height:3px;
    background:var(--gold);
  }
}

@media (max-width:680px){
  .site-header{
    position:sticky;
  }
  .logo img{
    height:48px;
    max-width:230px;
  }
  .menu-toggle{
    width:46px;
    height:46px;
  }
}


/* Tablični prikaz: klasični meni ostane viden na iPadu in večjih tablicah */
@media (min-width:821px) and (max-width:1050px){
  .header-inner{
    min-height:96px;
    padding-top:14px;
    padding-bottom:14px;
    display:flex;
    flex-direction:row;
    align-items:center;
    justify-content:space-between;
    gap:22px;
    flex-wrap:nowrap;
  }
  .logo img{
    height:54px;
    max-width:260px;
  }
  .menu-toggle{
    display:none !important;
  }
  .nav{
    display:flex;
    width:auto;
    flex-direction:row;
    align-items:center;
    justify-content:flex-end;
    flex-wrap:wrap;
    gap:14px 20px;
    margin-top:0;
    padding:0;
    border-top:0;
    font-size:14px;
  }
  .nav a{
    width:auto;
    padding:9px 0;
    border-bottom:3px solid transparent;
  }
  .nav a.active,
  .nav a:hover{
    color:var(--navy);
    border-bottom-color:var(--gold);
  }
  .nav a.active::after{
    content:none;
  }
}


/* Cache-fix: gumb mobilnega menija je privzeto skrit, na telefonu ga CSS izrecno prikaže. */
@media (min-width:821px){
  .menu-toggle{display:none !important;}
}
@media (max-width:820px){
  .menu-toggle{display:block !important;}
}
