
  :root{
    --bg:#0b1220;
    --card:#101a33;
    --text:#e9eefc;
    --muted:#b7c2e3;
    --accent:#7dd3fc;
    --accent2:#a78bfa;
    --border:rgba(255,255,255,.10);
    --shadow: 0 12px 30px rgba(0,0,0,.35);
    --radius:18px;
    --max:1100px;
  }

  *{
    box-sizing:border-box;
  }

  body{
    margin:0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
    background: radial-gradient(1200px 800px at 10% 0%, rgba(125,211,252,.18), transparent 60%),
          radial-gradient(900px 700px at 90% 20%, rgba(167,139,250,.16), transparent 55%),
          var(--bg);
    color:var(--text);
    line-height:1.55;
  }

  a{
    color:inherit;
  }

  .wrap{
    max-width:var(--max); 
    margin:0 auto; 
    padding:24px;
  }

  header{
    position:sticky; top:0; z-index:50;
    backdrop-filter: blur(10px);
    background: rgba(11,18,32,.65);
    border-bottom: 1px solid var(--border);
  }

  .nav{
    display:flex; 
    align-items:center; 
    justify-content:space-between;
    gap:16px;
  }

  .brand-container{
    display: flex;
    flex-direction:row;
    gap: 12px;
  }

  .image-container{
    display: flex;
    justify-content: center;   /* horizontalno centriranje */
    align-items: center;       /* vertikalno centriranje */
  }

  .logo{
    height: 120px;
    width: auto;
    display: block;
    transition: transform 0.12s ease-out;
  }

  .logo:hover{
    transform: scale(1.05) rotate(45deg);
  }

  .brand{
    display:flex; 
    flex-direction:column;
    padding:14px 0;
  }

  .brand strong{
    font-size:16px; 
    letter-spacing:.2px;
  }

  .brand span{
    font-size:16px; 
    color:var(--muted);
  }

  .links{
    display:flex; 
    gap:14px; 
    flex-wrap:wrap;
    font-size:14px;
  }

  .links a{
    text-decoration: none;
    padding: 8px 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    color: var(--muted);
    transition: all 0.25s ease;
  }

  .links a:hover{
    border-color: #cfe5ff;
    background-color: #eaf4ff;
    color: #0b3d91;
  }

  .hero{
    padding:10px 0 22px;
  }

  .grid{
    display:grid;
    grid-template-columns: 1.2fr .8fr;
    gap:18px;
  }

  @media (max-width: 880px){
    .grid{grid-template-columns:1fr}
    .links{justify-content:flex-end}
  }

  .card{
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
    border:1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding:22px;
  }

  h1{
    font-size:38px;
    line-height:1.12;
    margin:0 0 12px;
    letter-spacing:-.6px;
  }

  p{
    margin:0 0 14px; 
    color:var(--muted);
  }

  .badges{
    display:flex; 
    gap:10px; 
    flex-wrap:wrap; 
    margin-top:14px;
  }

  .badge{
    display:inline-flex; align-items:center; gap:8px;
    padding:8px 10px;
    border-radius:999px;
    border:1px solid var(--border);
    background: rgba(255,255,255,.03);
    font-size:13px;
    color:var(--text);
  }

  .badge i{
    width:10px; height:10px; border-radius:50%;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    display:inline-block;
  }

  .ctaRow{
    display:flex; 
    gap:12px; 
    flex-wrap:wrap; 
    margin:18px;
  }

  .btn{
    display:inline-flex; align-items:center; justify-content:center;
    padding:12px 14px;
    border-radius:12px;
    text-decoration:none;
    border:1px solid var(--border);
    background: rgba(255,255,255,.04);
    color:var(--text);
    font-weight:600;
    font-size:14px;
  }

  .btn.primary{
    border-color: transparent;
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color:#08101f;
  }

  .btn:hover{
    transform: translateY(-1px);
  }

  .btn:active{
    transform: translateY(0);
  }

  section{
    padding:18px 0;
    scroll-margin-top: 170px;
  }

  h2{
    margin:0 0 10px; 
    font-size:20px;
  }

  ul{
    margin:0; 
    padding-left:18px; 
    color:var(--muted);
  }

  .cols{
    display:grid; 
    grid-template-columns:1fr 1fr; 
    gap:18px;
  }

  @media (max-width: 880px){
    .cols{grid-template-columns:1fr}
  }

  .kpi{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:10px;
    margin-top:12px;
  }

  .kpi .mini{
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px;
    background: rgba(255,255,255,.03);
  }

  .mini b{
    font-size:24px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mini span{
    color:var(--muted); 
    font-size:12px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .mini{
    transition: transform 0.2s ease;
  }
  
  .mini:hover{
    background: rgba(255,255,255,.06);
    transform: scale(1.1);
  }

  .contactGrid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin-top:12px;
  }

  @media (max-width: 880px){
    .contactGrid{grid-template-columns:1fr}
  }

  .field{
    border:1px solid var(--border);
    border-radius:14px;
    padding:12px;
    background: rgba(255,255,255,.03);
  }

  .field small{
    display:block; 
    color:var(--muted); 
    margin-bottom:4px;
  }

  footer{
    padding:28px 0 40px;
    color:var(--muted);
    border-top:1px solid var(--border);
    margin-top:22px;
  }

  .brand > .company-name{
    font-size: 36px;
  }

  .footer{
    color:var(--muted);
    margin-top:20px;
    display: block;
  }

  .footer-text{
    display: block;
    text-align: center;
    font-size:14px; 
  }

  .whyWeList{
    margin-top: 16px;
  }

  /* Base animation */
.slideIn {
  opacity: 0;
  transform: translateX(0) scale(1.05);
  transition: opacity 0.6s ease, transform 0.8s ease;
}

.slideIn.left { 
  transform: translateX(-120px) scale(1.05); 
}

.slideIn.right { 
  transform: translateX(120px) scale(1.05); 
}

.slideIn.show {
  opacity: 1;
  transform: translateX(0) scale(1);
}