:root{
  --bg:#0b0c10;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.08);
  --stroke: rgba(255,255,255,.12);
  --text:#f4f6ff;
  --muted: rgba(244,246,255,.72);
  --shadow: 0 18px 60px rgba(0,0,0,.45);
  --radius: 18px;
  --radius2: 26px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(255,255,255,.10), transparent 45%),
              radial-gradient(900px 600px at 90% 20%, rgba(255,255,255,.08), transparent 45%),
              var(--bg);
  color:var(--text);
  overflow-x:hidden;
}
a{ color:inherit; text-decoration:none; }
.wrap{ width:min(1120px, 92vw); margin:0 auto; }

.topbar{
  position:sticky; top:0; z-index:60;
  backdrop-filter: blur(14px);
  background: rgba(10,12,16,.55);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 0;
  gap:12px;
}
.topbar__right{ display:flex; gap:10px; align-items:center; }

.iconbtn{
  width:42px; height:42px;
  display:grid; place-items:center;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  transition: transform .2s ease, background .2s ease, border .2s ease;
}
.iconbtn svg{ width:20px; height:20px; fill: rgba(244,246,255,.9); }
.iconbtn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.16); }

.chip{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-weight:600;
  cursor:pointer;
  user-select:none;
}
.chip--ghost{ background: rgba(255,255,255,.06); }
.chip--soft{ background: rgba(255,255,255,.07); }
.ico{ opacity:.9; }

.header{
  position:sticky; top:53px; z-index:55;
  backdrop-filter: blur(14px);
  background: rgba(10,12,16,.40);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{ display:flex; align-items:center; gap:12px; }
.brand__mark{
  width:38px; height:38px; border-radius:12px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  font-weight:900;
}
.brand__text strong{ display:block; letter-spacing:.2px; }
.brand__text small{ display:block; color: var(--muted); margin-top:2px; font-weight:600; }

.nav{ display:flex; align-items:center; gap:18px; }
.nav a{ color: rgba(244,246,255,.86); font-weight:800; opacity:.9; }
.nav a:hover{ opacity:1; }
.nav__cta{
  padding:10px 14px;
  border-radius:999px;
  background: rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.16);
}

.burger{
  display:none;
  width:44px; height:44px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  cursor:pointer;
}
.burger span{
  display:block;
  width:20px; height:2px;
  background: rgba(244,246,255,.86);
  margin:5px auto;
  border-radius:2px;
}

/* HERO */
.hero{
  position:relative;
  min-height: calc(100vh - 110px);
  display:grid;
  place-items:center;
  padding: 34px 0 28px;
}
.hero__bg{
  position:absolute; inset:0;
  /* CELA slika vidna (ne odrezana) */
  background: url("assets/hero.jpg") center / contain no-repeat;
  background-color: #08090c;
  filter: saturate(1.02);
}
.hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 600px at 50% 25%, rgba(0,0,0,.12), rgba(0,0,0,.64) 55%, rgba(0,0,0,.78)),
    linear-gradient(to bottom, rgba(0,0,0,.35), rgba(0,0,0,.65));
}
.hero__content{ position:relative; z-index:2; width:100%; }

.hero__card{
  width:min(820px, 92vw);
  margin: 0 auto;
  padding: 26px 22px;
  border-radius: var(--radius2);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  text-align:center;
  backdrop-filter: blur(12px);
}
.eyebrow{
  color: rgba(244,246,255,.78);
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-size:12px;
}
.hero h1{
  margin: 10px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-shadow: 0 12px 44px rgba(0,0,0,.55);
}
.lead{
  margin: 0 auto 18px;
  color: rgba(244,246,255,.82);
  font-size: 16px;
  line-height: 1.6;
  max-width: 58ch;
}
.hero__actions{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top: 12px;
}
.hero__chips{
  margin-top: 14px;
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  color: rgba(244,246,255,.92);
  font-weight:900;
  transition: transform .18s ease, background .18s ease, border .18s ease;
}
.btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.25);
}
.btn--primary{
  background: rgba(255,255,255,.92);
  color: #0b0c10;
  border-color: rgba(255,255,255,.92);
}
.btn--primary:hover{ background:#ffffff; }
.btn--ghost{ background: rgba(255,255,255,.06); }
.btn--full{ width:100%; }

.scrollhint{
  display:flex; flex-direction:column; align-items:center;
  gap:10px;
  margin-top: 16px;
  opacity:.8;
}
.scrollhint span{ font-weight:900; letter-spacing:.12em; text-transform:uppercase; font-size:11px; color: rgba(244,246,255,.62); }
.mouse{
  width:22px; height:34px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.26);
  position:relative;
}
.mouse::after{
  content:"";
  width:4px; height:6px;
  border-radius:99px;
  background: rgba(255,255,255,.65);
  position:absolute; left:50%; top:8px;
  transform:translateX(-50%);
  animation: wheel 1.2s infinite ease;
}
@keyframes wheel{
  0%{ transform: translate(-50%, 0); opacity:.65; }
  60%{ transform: translate(-50%, 10px); opacity:.2; }
  100%{ transform: translate(-50%, 0); opacity:.65; }
}

/* SECTIONS */
.section{ padding: 70px 0; }
.sectionhead{ margin-bottom: 18px; }
.sectionhead h2{ margin:0 0 6px; font-size: 34px; letter-spacing:-0.02em; }
.sectionhead p{ margin:0; color: var(--muted); }
.center{ display:flex; justify-content:center; margin-top: 16px; }

.grid2{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items:start;
}
.row{ display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }

.profilecard{
  display:flex;
  gap:16px;
  align-items:center;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border:1px solid var(--stroke);
}
.profilepic{
  width:92px; height:92px;
  border-radius:999px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 18px 40px rgba(0,0,0,.45);
}
.profilemeta span{ display:block; color: var(--muted); margin-top: 4px; font-weight:700; }
.mini{ margin-top:10px; display:flex; gap:10px; flex-wrap:wrap; color: rgba(244,246,255,.72); font-weight:700; }
.dot{ width:6px; height:6px; border-radius:99px; background: rgba(255,255,255,.55); display:inline-block; }

.gallery{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.gallery figure{
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.gallery img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  aspect-ratio: 4 / 3;
}
.gallery figure:nth-child(1){ grid-column: span 6; }
.gallery figure:nth-child(2){ grid-column: span 6; }
.gallery figure:nth-child(3){ grid-column: span 4; }
.gallery figure:nth-child(4){ grid-column: span 4; }
.gallery figure:nth-child(5){ grid-column: span 4; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}
.card{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
  box-shadow: 0 16px 40px rgba(0,0,0,.30);
  position:relative;
}
.card h3{ margin:0 0 6px; }
.price{ margin:0 0 12px; color: rgba(244,246,255,.75); font-weight:800; }
.card ul{ margin:0 0 14px; padding-left: 18px; color: rgba(244,246,255,.78); }
.card li{ margin: 6px 0; }
.card--featured{
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
}
.badge{
  position:absolute;
  top:12px; right:12px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.88);
  color: #0b0c10;
  font-weight:900;
  font-size:12px;
}

.faq details{
  background: var(--panel);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px 14px;
  margin: 10px 0;
}
.faq summary{
  cursor:pointer;
  font-weight:900;
}
.faq p{ margin: 10px 0 0; color: rgba(244,246,255,.78); line-height:1.55; }

.form{
  padding: 18px;
  border-radius: var(--radius);
  background: var(--panel);
  border: 1px solid var(--stroke);
}
.form__grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
label{ display:block; font-weight:800; color: rgba(244,246,255,.9); }
input, select, textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.25);
  color: rgba(244,246,255,.92);
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(255,255,255,.28);
}
textarea{ resize: vertical; }
.span2{ grid-column: span 2; }
.form__actions{
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 14px;
}

.footer{
  padding: 22px 0 40px;
  border-top: 1px solid rgba(255,255,255,.07);
  background: rgba(10,12,16,.35);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 14px;
  flex-wrap:wrap;
}
.footer__links{ display:flex; gap: 14px; flex-wrap:wrap; }
.muted{ color: var(--muted); font-weight:700; }

.fab{
  position: fixed;
  right: 18px;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(10,12,16,.55);
  backdrop-filter: blur(12px);
  color: rgba(244,246,255,.95);
  font-weight:900;
  cursor:pointer;
  box-shadow: 0 14px 34px rgba(0,0,0,.45);
  z-index: 80;
}
.fab--call{ bottom: 18px; }
.fab--top{ bottom: 78px; opacity: 0; pointer-events:none; transform: translateY(8px); transition: .2s ease; }
.fab--top.show{ opacity:1; pointer-events:auto; transform: translateY(0); }

/* Reveal animation */
.reveal{ opacity: 0; transform: translateY(14px); transition: .55s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

/* MOBILE */
@media (max-width: 900px){
  .grid2{ grid-template-columns: 1fr; }
  .cards{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: repeat(6,1fr); }
  .gallery figure:nth-child(1){ grid-column: span 6; }
  .gallery figure:nth-child(2){ grid-column: span 6; }
  .gallery figure:nth-child(3){ grid-column: span 3; }
  .gallery figure:nth-child(4){ grid-column: span 3; }
  .gallery figure:nth-child(5){ grid-column: span 6; }

  .burger{ display:block; }
  .nav{
    position: fixed;
    top: 110px;
    left: 50%;
    transform: translateX(-50%);
    width: min(520px, 92vw);
    background: rgba(10,12,16,.78);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    display:none;
    flex-direction:column;
    gap:12px;
    z-index: 90;
  }
  .nav.open{ display:flex; }
}