/* =========================
   SteelPro - Dark Theme
   Accent: #ECA50D (gold) + #040F09 (deep green/black)
   ========================= */

:root{
  --bg: #050505;
  --bg2: #0b0b0b;
  --panel: rgba(255,255,255,0.04);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.70);
  --border: rgba(255,255,255,0.10);
  --gold: #ECA50D;
  --deep: #040F09;
  --shadow: 0 16px 40px rgba(0,0,0,0.45);
  --radius: 16px;
  --max: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  background: radial-gradient(1200px 700px at 20% 10%, rgba(236,165,13,0.12), transparent 55%),
              radial-gradient(900px 600px at 80% 20%, rgba(4,15,9,0.18), transparent 55%),
              linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
  color: var(--text);
  line-height:1.6;
}

a{ color: inherit; text-decoration:none; }
img{ max-width:100%; height:auto; display:block; }

.container{
  width: min(var(--max), 92vw);
  margin: 0 auto;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 14px;
  border-radius: 10px;
  background: #111;
  border: 1px solid var(--border);
  z-index: 9999;
}

.topbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(5,5,5,0.65);
  border-bottom: 1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 12px 0;
}

.brand{
  display:flex;
  align-items:center;
  /* gap:12px; */
  min-width: 220px;
   gap: 14px;
}
/* .brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(236,165,13,0.95), rgba(236,165,13,0.35)),
    radial-gradient(20px 20px at 70% 30%, rgba(255,255,255,0.35), transparent 60%);
  border: 2px solid rgba(4,15,9,0.85); /* rubovi (#040F09) 
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
} */

/* .brand-mark{
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(236,165,13,0.25),
    rgba(236,165,13,0.05)
  );
  border: 2px solid #040F09; /* rub logoa */
  /*display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}*/


.brand-mark{
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 2px solid #040F09;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.brand-mark img{
  width: 90%;
  height: 90%;
  object-fit: contain;
}

@media (max-width: 480px){
  .brand-mark{
    width: 44px;
    height: 44px;
  }
}


.brand-mark img{
  /* width: 80%;
  height: 80%;
  object-fit: contain; */
    width: 90%;
  height: 90%;
} */



.brand-name{
  display:flex; flex-direction:column; line-height:1.2;
}



.brand-name strong{
  letter-spacing: 0.4px;
  font-size: 16px;
}
.brand-name span{
  /* font-size: 12px; */
   font-size: 13px;
  color: var(--muted);
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 10px;
}

.nav-links a{
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}
.nav-links a:hover{
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.03);
}
.nav-links a.active{
  color: var(--text);
  border-color: rgba(236,165,13,0.35);
  background: rgba(236,165,13,0.08);
}

.nav-cta{
  display:flex;
  align-items:center;
  gap:10px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
  box-shadow: none;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.05);
  border-color: rgba(236,165,13,0.25);
}
.btn.primary{
  background: linear-gradient(135deg, rgba(236,165,13,0.95), rgba(236,165,13,0.55));
  border-color: rgba(4,15,9,0.75);
  color: #0b0b0b;
}
.btn.primary:hover{
  border-color: rgba(4,15,9,1);
}

.mobile-toggle{
  display:none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.hero{
  padding: 54px 0 26px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: stretch;
}
.hero-card{
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}
.hero-card:before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(600px 260px at 20% 0%, rgba(236,165,13,0.18), transparent 70%),
              radial-gradient(500px 260px at 80% 20%, rgba(4,15,9,0.25), transparent 70%);
  pointer-events:none;
}
.hero-card > *{ position:relative; }

.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(236,165,13,0.10);
  border: 1px solid rgba(236,165,13,0.20);
  color: rgba(255,255,255,0.88);
  font-size: 13px;
}
.kicker b{
  color: var(--gold);
}

h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.4px;
}
.lead{
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 16px;
}

.hero-aside{
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  box-shadow: var(--shadow);
  overflow:hidden;
}
.hero-aside img{
  width:100%;
  height: 240px;
  object-fit: cover;
  filter: contrast(1.05) brightness(0.92);
}
.hero-aside .aside-body{
  padding: 18px;
}
.badges{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 10px;
}
.badge{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  background: rgba(255,255,255,0.02);
}

.section{
  padding: 34px 0;
}
.section-title{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.section-title h2{
  margin:0;
  font-size: clamp(22px, 2.8vw, 30px);
  letter-spacing: -0.2px;
}
.section-title p{
  margin:0;
  color: var(--muted);
  max-width: 560px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.card{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.card:hover{
  transform: translateY(-2px);
  border-color: rgba(236,165,13,0.25);
  background: rgba(255,255,255,0.04);
}
.card h3{
  margin: 0 0 8px;
  font-size: 17px;
}
.card p{
  margin:0;
  color: var(--muted);
  font-size: 14px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  /* align-items: center; */
  align-items: stretch;
}
.panel{
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}
.panel ul{
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}
.panel li{ margin: 6px 0; }

.form{
  display:grid;
  gap: 12px;
}
.field{
  display:grid;
  gap: 6px;
}
label{
  font-size: 13px;
  color: var(--muted);
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  outline: none;
}
input:focus, textarea:focus{
  border-color: rgba(236,165,13,0.35);
  box-shadow: 0 0 0 4px rgba(236,165,13,0.10);
}
textarea{ min-height: 140px; resize: vertical; }

.small{
  font-size: 12px;
  color: var(--muted);
}

.footer{
  margin-top: 28px;
  border-top: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
}
.footer-inner{
  padding: 20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap:wrap;
}
.footer a{
  color: var(--muted);
}
.footer a:hover{ color: var(--text); }

/* Mobile nav */
@media (max-width: 860px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid-3{ grid-template-columns: 1fr; }
  .split{ grid-template-columns: 1fr; }

  .nav-links, .nav-cta{
    display:none;
  }
  .mobile-toggle{
    display:inline-flex;
  }
  .mobile-open .nav-links,
  .mobile-open .nav-cta{
    display:flex;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    gap: 8px;
    padding: 10px 0 12px;
  }
  .mobile-open .nav{
    flex-wrap:wrap;
  }
  .nav-links a, .btn{ width:100%; }
}

/* Utility */
.hr{
  height:1px;
  background: var(--border);
  margin: 18px 0;
}
.gold{
  color: var(--gold);
}


.stack{
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: stretch; /* bitno */
}

.stack > .panel{
  width: 100%;
  max-width: none;
}

.mini-gallery{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.line-gallery{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mini-gallery img{
  width: 100%;
  aspect-ratio: 1 / 1;     /* KVADRATI */
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.95) contrast(1.05);
}

.line-gallery img{
  width: 100%;
  aspect-ratio: 1 / 1;     /* KVADRATI */
  object-fit: cover;
  border-radius: 10px;
  filter: brightness(0.95) contrast(1.05);
}