/* ===== NAVBAR – LIGHT & BRUTAL ===== */
:root {
  /* pozadine */
   --bg: #f7f9fc;
  /* vrlo svijetla plavičasto-siva */
   --panel: #ffffff;
  /* čisto bijelo za kartice */
  /* tekst */
   --text: #1e293b;
  /* tamno plavičasto-siva (lakša od crne) */
   --muted: #6b7280;
  /* neutralni sivi sekundarni tekst */
  /* akcent */
   --primary: #5a72b0a1;
  /* zadržano */
  /* linije & efekti */
   --border: #e5e9f2;
  /* mekša, hladna linija */
   --ring: rgba(90,114,176,.25);
  /* ring u tonu primary boje */
}
*{
   box-sizing: border-box;
}
body{
   margin:0;
   font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
   background: var(--bg);
   color: var(--text);
}
/* ===== NAV ===== */
.nav{
   position: sticky;
   top: 0;
   z-index: 50;
   background: var(--panel);
   border-bottom: 1px solid var(--border);
   box-shadow: 0 8px 24px rgba(15,23,42,.06);
}
.nav__inner{
   max-width: 1200px;
   margin: 0 auto;
   padding: 14px 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
/* ===== BRAND ===== */
.nav__brand{
   display: flex;
   align-items: center;
   gap: 14px;
   text-decoration: none;
   color: var(--text);
}
/* VEĆI LOGO */
.nav__logo{
   width: 70px;
  /* ⬅️ povećano */
   height: 70px;
  /* ⬅️ povećano */
   border-radius: 16px;
   padding: 6px;
   object-fit: contain;
  /* BITNO */
}
.nav__name{
   font-weight: 800;
   font-size: 16px;
   letter-spacing: .3px;
}
/* ===== ACTIONS ===== */
.nav__actions{
   display: flex;
   align-items: center;
   gap: 12px;
}
/* ===== BUTTONS ===== */
.btn{
   height: 42px;
   padding: 0 18px;
   border-radius: 14px;
   font-size: 14px;
   font-weight: 700;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   text-decoration: none;
   cursor: pointer;
   transition: all .2s ease;
}
/* ghost */
.btn--ghost{
   color: var(--muted);
   background: transparent;
}
.btn--ghost:hover{
   color: var(--primary);
}
/* primary */
.btn--primary{
   background: var(--primary);
   color: #ffffff;
   border: none;
   box-shadow: 0 10px 24px rgba(31,60,136,.35);
}
.btn--primary:hover{
   transform: translateY(-2px);
   box-shadow: 0 14px 32px rgba(31,60,136,.45);
}
/* focus */
.btn:focus-visible{
   outline: none;
   box-shadow: 0 0 0 4px var(--ring);
}
/* ===== RESPONSIVE ===== */
@media (max-width: 560px){
   .nav__name{
       display:none;
  }
   .btn--ghost{
       display:none;
  }
}
/* ===== HERO SECTION ===== */
.hero{
   padding: 42px 0 56px;
}
.hero__inner{
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
   display: grid;
   gap: 22px;
   justify-items: center;
}
.hero__imageWrap{
   width: min(920px, 100%);
   background: linear-gradient( 180deg, rgba(31,60,136,.10), rgba(245,158,11,.08) );
   border: 1px solid var(--border);
   border-radius: 26px;
   padding: 18px;
   box-shadow: 0 20px 55px rgba(15,23,42,.10), inset 0 0 0 1px rgba(255,255,255,.35);
   overflow: hidden;
   position: relative;
  /* ✨ animacija pri loadu */
   animation: heroFloatIn .9s ease-out both;
}
/* blagi “glass” efekat */
.hero__imageWrap::before{
   content: "";
   position: absolute;
   inset: 0;
   background: linear-gradient( 120deg, rgba(255,255,255,.18), rgba(255,255,255,.04) );
   pointer-events: none;
}
/* slika */
.hero__image{
   width: 100%;
   height: auto;
   display: block;
   border-radius: 20px;
   transform: scale(1.015);
   opacity: .92;
  /* ⬅️ blaga providnost */
   transition: transform .6s ease, opacity .6s ease;
}
/* hover – vrlo suptilno */
.hero__imageWrap:hover .hero__image{
   transform: scale(1.03);
   opacity: .97;
}
/* ===== ANIMACIJA ===== */
@keyframes heroFloatIn{
   from{
       opacity: 0;
       transform: translateY(14px) scale(.98);
  }
   to{
       opacity: 1;
       transform: translateY(0) scale(1);
  }
}
.hero__content{
   width: min(920px, 100%);
   text-align: center;
}
.hero__title{
   margin: 10px 0 10px;
   font-size: clamp(26px, 3.2vw, 42px);
   line-height: 1.1;
   letter-spacing: -0.5px;
   font-weight: 900;
   color: var(--text);
}
.hero__subtitle{
   margin: 0 auto 18px;
   max-width: 68ch;
   font-size: 16px;
   line-height: 1.6;
   color: var(--muted);
}
/* ===== STEPS BOXES ===== */
.steps{
   margin-top: 18px;
   display: grid;
   grid-template-columns: repeat(3, minmax(0, 1fr));
   gap: 14px;
}
.step{
   text-align: left;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 18px;
   padding: 16px 16px 14px;
   box-shadow: 0 10px 22px rgba(15,23,42,.06);
   transform: translateY(8px);
   opacity: 0;
   transition: transform .35s ease, opacity .35s ease, box-shadow .2s ease;
}
.step:hover{
   transform: translateY(-2px);
   box-shadow: 0 16px 34px rgba(15,23,42,.10);
}
.step__badge{
   width: 34px;
   height: 34px;
   display: grid;
   place-items: center;
   border-radius: 12px;
   font-weight: 900;
   color: #fff;
   background: var(--primary);
   box-shadow: 0 10px 18px rgba(31,60,136,.22);
   margin-bottom: 10px;
}
.step__title{
   margin: 0 0 6px;
   font-size: 16px;
   font-weight: 900;
   letter-spacing: .2px;
   color: var(--text);
}
.step__text{
   margin: 0;
   font-size: 14px;
   line-height: 1.55;
   color: var(--muted);
}
/* when visible (JS adds .is-visible) */
.step.is-visible{
   transform: translateY(0);
   opacity: 1;
}
/* Responsive */
@media (max-width: 900px){
   .steps{
       grid-template-columns: 1fr;
  }
   .step{
       text-align: left;
  }
}
.hero__accent{
   color: var(--primary);
   font-weight: 900;
   letter-spacing: 1px;
   font-family: "Arial Black", system-ui, -apple-system, Segoe UI, Roboto, Arial;
   position: relative;
}
/* suptilna linija ispod riječi */
.hero__accent::after{
   content: "";
   position: absolute;
   left: 0;
   bottom: -6px;
   width: 100%;
   height: 4px;
   border-radius: 4px;
   background: var(--primary);
   transform: scaleX(0);
   transform-origin: left;
   animation: underlineLoad 1.6s ease-out forwards;
}
@keyframes underlineLoad{
   from{
       transform: scaleX(0);
       opacity: 0;
  }
   to{
       transform: scaleX(1);
       opacity: 1;
  }
}
/* ===== HERO CTA BUTTON ===== */
.hero__cta{
   margin-top: 32px;
   display: flex;
   justify-content: center;
}
.cta-btn{
   display: inline-flex;
   align-items: center;
   gap: 12px;
   padding: 16px 28px;
   border-radius: 18px;
   font-size: 16px;
   font-weight: 900;
   text-decoration: none;
   color: #fff;
   background: var(--primary);
   box-shadow: 0 18px 30px rgba(31,60,136,.45);
   transition: transform .2s ease, box-shadow .2s ease;
}
.cta-btn:hover{
   transform: translateY(-3px);
   box-shadow: 0 26px 60px rgba(31,60,136,.55);
}
.cta-arrows{
   font-size: 18px;
   animation: bounceDown 1.6s infinite;
}
/* arrow bounce animation */
@keyframes bounceDown{
   0%, 100%{
       transform: translateY(0);
       opacity: .9;
  }
   50%{
       transform: translateY(6px);
       opacity: 1;
  }
}
.hero__cta{
   margin-top: 32px;
   display: flex;
   flex-direction: column;
  /* ⬅⬅⬅ NAJBITNIJE */
   align-items: center;
}
.cta-thin{
   margin-top: 12px;
   max-width: 520px;
   font-size: 13px;
   font-weight: 400;
   color: var(--muted);
   text-align: center;
   line-height: 1.45;
}
/* ===== FORM SECTION ===== */
.formSection{
   padding: 56px 0 72px;
}
.formWrap{
   max-width: 1000px;
   margin: 0 auto;
   padding: 0 20px;
}
.formHead{
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 22px;
   padding: 18px 18px 14px;
   box-shadow: 0 14px 36px rgba(15,23,42,.06);
}
.formTitle{
   margin: 0 0 6px;
   font-size: 22px;
   font-weight: 900;
   letter-spacing: -.2px;
}
.formDesc{
   margin: 0 0 14px;
   color: var(--muted);
   line-height: 1.45;
   font-size: 14px;
}
/* Stepper */
.stepper__track{
   width: 100%;
   height: 10px;
   border-radius: 999px;
   background: rgba(15,23,42,.06);
   overflow: hidden;
   border: 1px solid rgba(15,23,42,.06);
}
.stepper__bar{
   height: 100%;
   border-radius: 999px;
   background: var(--primary);
   transition: width .25s ease;
}
.stepper__labels{
   display: flex;
   justify-content: space-between;
   margin-top: 10px;
   font-size: 13px;
   color: var(--muted);
}
.stepper__label--active{
   color: var(--text);
   font-weight: 800;
}
/* Form */
.diagForm{
   margin-top: 16px;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 22px;
   padding: 18px;
   box-shadow: 0 18px 46px rgba(15,23,42,.07);
}
.formStep{
   display: none;
}
.formStep--active{
   display: block;
}
.grid{
   display: grid;
   grid-template-columns: 1fr;
   gap: 14px;
}
.grid--2{
   grid-template-columns: repeat(2, minmax(0, 1fr));
}
.field label{
   display: block;
   font-weight: 800;
   font-size: 13px;
   margin-bottom: 8px;
   color: var(--text);
}
.field input, .field select, .field textarea{
   width: 100%;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 12px 12px;
   font-size: 14px;
   background: #fff;
   color: var(--text);
   outline: none;
   transition: box-shadow .15s ease, border-color .15s ease, transform .15s ease;
}
.field textarea{
   min-height: 120px;
   resize: vertical;
}
.field input:focus, .field select:focus, .field textarea:focus{
   border-color: rgba(31,60,136,.35);
   box-shadow: 0 0 0 4px rgba(31,60,136,.12);
}
.fieldMeta{
   margin-top: 8px;
   display: flex;
   justify-content: space-between;
   gap: 10px;
   align-items: center;
}
.hint{
   color: var(--muted);
}
.counter{
   color: var(--muted);
}
.error{
   margin: 8px 0 0;
   font-size: 12px;
   color: #b42318;
   min-height: 16px;
}
/* Actions */
.formActions{
   margin-top: 16px;
   display: flex;
   justify-content: flex-end;
}
.formActions--split{
   justify-content: space-between;
   gap: 12px;
}
.btn2{
   height: 44px;
   padding: 0 16px;
   border-radius: 16px;
   font-weight: 900;
   font-size: 14px;
   border: 1px solid transparent;
   cursor: pointer;
   display: inline-flex;
   align-items: center;
   gap: 10px;
   transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn2--primary{
   background: var(--primary);
   color: #fff;
   box-shadow: 0 16px 34px rgba(31,60,136,.25);
}
.btn2--primary:hover{
   transform: translateY(-2px);
   box-shadow: 0 22px 46px rgba(31,60,136,.30);
}
.btn2--ghost{
   background: #fff;
   color: var(--text);
   border-color: var(--border);
}
.btn2--ghost:hover{
   border-color: rgba(31,60,136,.25);
   box-shadow: 0 14px 30px rgba(15,23,42,.06);
}
.chev{
   font-weight: 900;
}
.formNote{
   margin: 12px 0 0;
   font-size: 13px;
   color: var(--muted);
   text-align: center;
}
/* Responsive */
@media (max-width: 820px){
   .grid--2{
       grid-template-columns: 1fr;
  }
   .radioRow{
       grid-template-columns: 1fr;
  }
}
/* ===== DRAWER (SIDE PANEL) ===== */
.drawer{
   position: fixed;
   inset: 0;
   z-index: 999;
   pointer-events: none;
}
.drawer__backdrop{
   position: absolute;
   inset: 0;
   background: rgba(15,23,42,.45);
   backdrop-filter: blur(6px);
   opacity: 0;
   transition: opacity .22s ease;
}
.drawer__panel{
   position: absolute;
   top: 0;
   right: 0;
   height: 100%;
   width: min(520px, 92vw);
   background: var(--panel);
   border-left: 1px solid var(--border);
   box-shadow: -24px 0 70px rgba(0,0,0,.25);
   transform: translateX(105%);
   transition: transform .22s ease;
   display: flex;
   flex-direction: column;
}
.drawer.is-open{
   pointer-events: auto;
}
.drawer.is-open .drawer__backdrop{
   opacity: 1;
}
.drawer.is-open .drawer__panel{
   transform: translateX(0);
}
.drawer__header{
   padding: 16px 16px 12px;
   display: flex;
   align-items: flex-start;
   justify-content: space-between;
   gap: 12px;
   border-bottom: 1px solid var(--border);
}
.drawer__title{
   margin: 0;
   font-size: 18px;
   font-weight: 900;
}
.drawer__sub{
   margin: 6px 0 0;
   color: var(--muted);
   font-size: 13px;
   line-height: 1.35;
}
.drawer__close{
   width: 40px;
   height: 40px;
   border-radius: 14px;
   border: 1px solid var(--border);
   background: #fff;
   cursor: pointer;
   font-size: 16px;
   font-weight: 900;
   transition: transform .15s ease, box-shadow .15s ease;
}
.drawer__close:hover{
   transform: translateY(-1px);
   box-shadow: 0 14px 30px rgba(15,23,42,.10);
}
.drawer__body{
   padding: 14px 16px 18px;
   overflow: auto;
   flex: 1;
}
.drawer__loading{
   display:flex;
   align-items:center;
   gap: 10px;
   color: var(--muted);
   padding: 10px 0;
}
/* Cards inside drawer */
.drawer__content{
   display: grid;
   gap: 12px;
}
.drawer__card{
   border: 1px solid var(--border);
   background: #fff;
   border-radius: 18px;
   padding: 14px;
}
.drawer__card h4{
   margin: 0 0 8px;
   font-size: 14px;
   font-weight: 900;
}
.drawer__card ul{
   margin: 0;
   padding-left: 18px;
   color: var(--muted);
   line-height: 1.55;
   font-size: 13px;
}
.drawer__card p{
   margin: 0;
   color: var(--muted);
   line-height: 1.55;
   font-size: 13px;
}
/* CTA centered */
.drawer__cta{
   margin-top: 8px;
   display:flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   padding-top: 6px;
}
.drawer__btn{
   min-width: 260px;
   justify-content: center;
}
.drawer__note{
   font-size: 13px;
   color: var(--muted);
   text-align: center;
}
/* Better mobile */
@media (max-width: 520px){
   .drawer__panel{
       width: 100vw;
  }
}
/* CTA ispod "Generiši izvještaj" */
.underCta{
   margin-top: 12px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 8px;
   animation: underCtaIn .2s ease both;
}
@keyframes underCtaIn{
   from{
       opacity: 0;
       transform: translateY(6px);
  }
   to{
       opacity: 1;
       transform: translateY(0);
  }
}
.underCta__btn{
   min-width: 260px;
   justify-content: center;
}
.underCta__note{
   font-size: 13px;
   color: var(--muted);
   text-align: center;
}
/* ===== REVIEWS SECTION ===== */
.reviews{
   padding: 64px 0 76px;
}
.reviews__inner{
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}
.reviews__head{
   text-align: center;
   margin-bottom: 18px;
}
.reviews__title{
   margin: 0 0 8px;
   font-size: clamp(22px, 2.6vw, 34px);
   font-weight: 900;
   letter-spacing: -.3px;
}
.reviews__sub{
   margin: 0 auto;
   max-width: 70ch;
   color: var(--muted);
   line-height: 1.55;
   font-size: 14px;
}
.reviews__grid{
   margin-top: 18px;
   display: grid;
   grid-template-columns: repeat(4, minmax(0, 1fr));
   gap: 14px;
}
.review{
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 20px;
   padding: 16px;
   box-shadow: 0 14px 34px rgba(15,23,42,.06);
   transform: translateY(10px);
   opacity: 0;
   transition: transform .35s ease, opacity .35s ease, box-shadow .2s ease;
}
.review.is-visible{
   transform: translateY(0);
   opacity: 1;
}
.review:hover{
   transform: translateY(-2px);
   box-shadow: 0 18px 44px rgba(15,23,42,.10);
}
.review__top{
   display: flex;
   align-items: center;
   gap: 10px;
   margin-bottom: 10px;
}
.review__avatar{
   width: 42px;
   height: 42px;
   border-radius: 14px;
   display: grid;
   place-items: center;
   font-weight: 900;
   color: #fff;
   background: var(--primary);
   box-shadow: 0 10px 18px rgba(31,60,136,.20);
   flex: 0 0 auto;
}
.review__name{
   margin: 0;
   font-size: 14px;
   font-weight: 900;
   line-height: 1.2;
}
.review__meta{
   margin: 3px 0 0;
   font-size: 12px;
   color: var(--muted);
}
.review__stars{
   display: flex;
   gap: 2px;
   font-size: 14px;
   line-height: 1;
   color: var(--primary2);
   margin-bottom: 10px;
   user-select: none;
}
.review__text{
   margin: 0;
   color: var(--muted);
   line-height: 1.6;
   font-size: 13px;
}
.reviews__cta{
   margin-top: 22px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
}
.reviews__btn{
   min-width: 280px;
   justify-content: center;
}
.reviews__note{
   font-size: 13px;
   color: var(--muted);
   text-align: center;
}
/* Responsive */
@media (max-width: 1100px){
   .reviews__grid{
       grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 620px){
   .reviews__grid{
       grid-template-columns: 1fr;
  }
}
/* ===== FAQ SECTION ===== */
.faq{
   padding: 64px 0 76px;
}
.faq__inner{
   max-width: 1000px;
   margin: 0 auto;
   padding: 0 20px;
}
.faq__head{
   text-align: center;
   margin-bottom: 18px;
}
.faq__title{
   margin: 0 0 8px;
   font-size: clamp(22px, 2.6vw, 34px);
   font-weight: 900;
   letter-spacing: -.3px;
}
.faq__sub{
   margin: 0 auto;
   max-width: 72ch;
   color: var(--muted);
   line-height: 1.55;
   font-size: 14px;
}
.faq__list{
   margin-top: 18px;
   display: grid;
   gap: 12px;
}
.faqItem{
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 20px;
   box-shadow: 0 14px 34px rgba(15,23,42,.05);
   overflow: hidden;
}
.faqItem__q{
   width: 100%;
   padding: 16px 16px;
   border: 0;
   background: transparent;
   text-align: left;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px;
   font-weight: 900;
   color: var(--text);
   font-size: 14px;
}
.faqItem__q:hover{
   background: rgba(31,60,136,.04);
}
.faqItem__icon{
   width: 34px;
   height: 34px;
   border-radius: 14px;
   display: grid;
   place-items: center;
   font-size: 18px;
   font-weight: 900;
   color: var(--primary);
   background: rgba(31,60,136,.08);
   border: 1px solid rgba(31,60,136,.16);
   flex: 0 0 auto;
   transition: transform .18s ease;
}
.faqItem__a{
   padding: 0 16px 16px;
   color: var(--muted);
   line-height: 1.6;
   font-size: 13px;
}
.faqItem.is-open .faqItem__icon{
   transform: rotate(45deg);
}
/* CTA */
.faq__cta{
   margin-top: 22px;
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
}
.faq__btn{
   min-width: 260px;
   justify-content: center;
}
.faq__note{
   font-size: 13px;
   color: var(--muted);
   text-align: center;
}
/* ===== FOOTER ===== */
.footer{
   margin-top: 40px;
   padding: 56px 0 28px;
   background: #ffffff;
   border-top: 1px solid var(--border);
}
.footer__inner{
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 20px;
}
.footer__grid{
   display: grid;
   grid-template-columns: 1.6fr .8fr .9fr 1.2fr;
   gap: 18px;
   align-items: start;
}
.footer__logoRow{
   display: flex;
   gap: 12px;
   align-items: center;
}
.footer__logo{
   width: 44px;
   height: 44px;
   border-radius: 14px;
   display: grid;
   place-items: center;
   font-weight: 1000;
   color: #fff;
   background: linear-gradient(135deg, var(--primary), var(--primary2));
   box-shadow: 0 12px 24px rgba(31,60,136,.20);
   flex: 0 0 auto;
}
.footer__name{
   margin: 0;
   font-size: 16px;
   font-weight: 1000;
}
.footer__tagline{
   margin: 4px 0 0;
   color: var(--muted);
   font-size: 13px;
   line-height: 1.4;
}
.footer__disclaimer{
   margin: 12px 0 0;
   color: var(--muted);
   font-size: 13px;
   line-height: 1.6;
   max-width: 60ch;
}
.footer__title{
   margin: 0 0 10px;
   font-size: 13px;
   font-weight: 1000;
   letter-spacing: .3px;
   text-transform: uppercase;
   color: var(--text);
}
.footer__link{
   display: inline-block;
   margin: 7px 0;
   color: var(--muted);
   text-decoration: none;
   font-size: 13px;
   line-height: 1.4;
   transition: color .15s ease, transform .15s ease;
}
.footer__link:hover{
   color: var(--primary);
   transform: translateY(-1px);
}
.footer__link--strong{
   color: var(--text);
   font-weight: 800;
}
.footer__text{
   margin: 0 0 10px;
   color: var(--muted);
   font-size: 13px;
   line-height: 1.5;
}
.footer__contact{
   display: grid;
   gap: 6px;
   margin-bottom: 12px;
}
.footer__muted{
   font-size: 12px;
   color: var(--muted);
}
.footer__social{
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin: 10px 0 14px;
}
.footer__chip{
   text-decoration: none;
   font-size: 12px;
   font-weight: 800;
   color: var(--text);
   background: rgba(31,60,136,.06);
   border: 1px solid rgba(31,60,136,.12);
   padding: 8px 10px;
   border-radius: 999px;
   transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.footer__chip:hover{
   transform: translateY(-1px);
   background: rgba(31,60,136,.08);
   box-shadow: 0 12px 24px rgba(15,23,42,.06);
}
.footer__cta{
   width: 100%;
   justify-content: center;
   height: 44px;
   border-radius: 16px;
}
.footer__bottom{
   margin-top: 20px;
   padding-top: 16px;
   border-top: 1px solid var(--border);
   display: flex;
   justify-content: space-between;
   gap: 12px;
   color: var(--muted);
   font-size: 12px;
   flex-wrap: wrap;
}
.footer__made{
   color: rgba(100,116,139,.95);
}
/* Responsive */
@media (max-width: 1050px){
   .footer__grid{
       grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 560px){
   .footer__grid{
       grid-template-columns: 1fr;
  }
}
/* ===== AUTH MODALS ===== */
.authModal{
   position: fixed;
   inset: 0;
   z-index: 1000;
   display: none;
}
.authModal.is-open{
   display: block;
}
.authModal__backdrop{
   position: absolute;
   inset: 0;
   background: rgba(15,23,42,.55);
   backdrop-filter: blur(6px);
}
.authModal__panel{
   position: relative;
   width: min(440px, calc(100% - 24px));
   margin: 64px auto;
   background: var(--panel);
   border: 1px solid var(--border);
   border-radius: 22px;
   box-shadow: 0 30px 80px rgba(0,0,0,.35);
   padding: 18px;
   transform: translateY(10px);
   opacity: 0;
   animation: authIn .22s ease forwards;
}
@keyframes authIn{
   to{
       transform: translateY(0);
       opacity: 1;
  }
}
.authModal__close{
   position: absolute;
   top: 12px;
   right: 12px;
   width: 40px;
   height: 40px;
   border-radius: 14px;
   border: 1px solid var(--border);
   background: #fff;
   cursor: pointer;
   font-size: 16px;
   font-weight: 900;
}
.authModal__title{
   margin: 6px 0 6px;
   font-size: 18px;
   font-weight: 1000;
}
.authModal__sub{
   margin: 0 0 14px;
   color: var(--muted);
   font-size: 13px;
   line-height: 1.45;
}
.authForm{
   display: grid;
   gap: 12px;
}
.authField label{
   display:block;
   font-weight: 900;
   font-size: 13px;
   margin-bottom: 8px;
}
.authField input{
   width: 100%;
   border: 1px solid var(--border);
   border-radius: 16px;
   padding: 12px 12px;
   font-size: 14px;
   outline: none;
}
.authField input:focus{
   border-color: rgba(31,60,136,.35);
   box-shadow: 0 0 0 4px rgba(31,60,136,.12);
}
.authError{
   margin: 8px 0 0;
   font-size: 12px;
   color: #b42318;
   min-height: 14px;
}
.authBtn{
   width: 100%;
   justify-content: center;
   height: 44px;
}
.authSwitch{
   margin: 2px 0 0;
   font-size: 13px;
   color: var(--muted);
   text-align: center;
}
.authLink{
   border: none;
   background: transparent;
   color: var(--primary);
   font-weight: 900;
   cursor: pointer;
   padding: 0;
}
.authCheck{
   display:flex;
   gap: 10px;
   align-items:flex-start;
   font-size: 12px;
   color: var(--muted);
   line-height: 1.4;
}
.authCheck a{
   color: var(--primary);
   text-decoration: none;
   font-weight: 800;
}
.authCheck a:hover{
   text-decoration: underline;
}
/* Mobile */
@media (max-width: 520px){
   .authModal__panel{
       margin: 18px auto;
  }
}
/* ===== NAV GREETING ===== */
.nav__greeting{
   font-size: 14px;
   font-weight: 600;
   color: rgba(0, 0, 0, 0.85);
   padding: 0 6px;
   white-space: nowrap;
}
@media (max-width: 640px){
   .nav__greeting{
       display: none;
      /* sakrij na baš malim ekranima */
  }
}
.drawer__content .report__text{
   white-space: pre-wrap;
   word-break: break-word;
   background: #f6f7fb;
   border: 1px solid #e7e9f1;
   padding: 12px 14px;
   border-radius: 12px;
   font-size: 14px;
   line-height: 1.45;
}
.drawer__content .report__warn{
   padding: 10px 12px;
   border-radius: 12px;
   background: rgba(245,158,11,.12);
   border: 1px solid rgba(245,158,11,.25);
}
.ncModal{
   position: fixed;
   inset: 0;
   z-index: 9999;
   display: none;
  /* default hidden */
   align-items: center;
   justify-content: center;
   padding: 18px;
}
.ncModal.is-open{
   display: flex;
}
.ncModal__backdrop{
   position: absolute;
   inset: 0;
   background: rgba(8, 14, 28, .55);
   backdrop-filter: blur(8px);
}
.ncModal__panel{
   position: relative;
   width: min(520px, 100%);
   background: #fff;
   border-radius: 18px;
   border: 1px solid rgba(0,0,0,.08);
   box-shadow: 0 30px 80px rgba(0,0,0,.28);
   padding: 22px 22px 18px;
   text-align: center;
   animation: ncPop .18s ease-out;
}
@keyframes ncPop{
   from {
       transform: translateY(8px) scale(.98);
       opacity: .0;
  }
   to {
       transform: translateY(0) scale(1);
       opacity: 1;
  }
}
.ncModal__close{
   position: absolute;
   top: 12px;
   right: 12px;
   width: 42px;
   height: 42px;
   border-radius: 14px;
   border: 1px solid rgba(0,0,0,.10);
   background: #fff;
   cursor: pointer;
   display: grid;
   place-items: center;
   font-size: 18px;
}
.ncModal__icon{
   width: 52px;
   height: 52px;
   border-radius: 16px;
   margin: 8px auto 12px;
   display: grid;
   place-items: center;
   font-size: 24px;
   background: rgba(245,158,11,.14);
   border: 1px solid rgba(245,158,11,.25);
}
.ncModal__title{
   margin: 0 0 8px;
   font-size: 20px;
   font-weight: 800;
   color: var(--text);
}
.ncModal__text{
   margin: 0 auto 16px;
   color: rgba(17,24,39,.72);
   line-height: 1.5;
   max-width: 42ch;
}
.ncModal__actions{
   display: flex;
   gap: 10px;
   justify-content: center;
   flex-wrap: wrap;
   margin: 6px 0 10px;
}
.ncModal__hint{
   margin: 10px 0 0;
   font-size: 13px;
   color: rgba(17,24,39,.55);
}
/* ===== REPORTS MODAL ===== */
.modal{
   position: fixed;
   inset: 0;
   display: none;
   align-items: center;
   justify-content: center;
   padding: 18px;
   z-index: 9999;
}
.modal.is-open{
   display:flex;
}
.modal__backdrop{
   position:absolute;
   inset:0;
   background: rgba(0,0,0,.6);
}
.modal__panel{
   position: relative;
   width: min(560px, 92vw);
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 25px 80px rgba(0,0,0,.25);
   overflow: hidden;
}
.modal__header{
   display:flex;
   align-items:center;
   justify-content:space-between;
   padding: 16px 16px;
   border-bottom: 1px solid rgba(0,0,0,.07);
}
.modal__title{
   margin:0;
   font-size: 18px;
}
.modal__close{
   width: 40px;
   height: 40px;
   border-radius: 12px;
   border: 1px solid rgba(0,0,0,.10);
   background: #fff;
   cursor: pointer;
}
.modal__body{
   padding: 14px 16px 18px;
   max-height: 70vh;
   overflow: auto;
}
.reportItem{
   border: 1px solid rgba(0,0,0,.08);
   border-radius: 14px;
   padding: 12px 12px;
   margin-bottom: 10px;
   cursor: pointer;
   transition: transform .15s ease, background .15s ease;
}
.reportItem:hover{
   background: rgba(31,60,136,.05);
   transform: translateY(-1px);
}
.reportItem__title{
   font-weight: 800;
}
.reportItem__meta{
   margin-top: 4px;
   font-size: 13px;
   color: rgba(17,24,39,.65);
}
.muted{
   color: rgba(17,24,39,.65);
}
/* Greeting clickable */
.nav__greeting{
   display: inline-flex;
   align-items: center;
   gap: 6px;
   font-weight: 600;
   cursor: default;
}
.nav__greeting.is-clickable{
   cursor: pointer;
}
.navCaret{
   font-size: 12px;
   opacity: .7;
   transition: transform .2s ease, opacity .2s ease;
}
/* hover efekat */
.nav__greeting.is-clickable:hover .navCaret{
   transform: translateY(1px);
   opacity: 1;
}
.drawer__headerActions{
   display: flex;
   align-items: center;
   gap: 10px;
}
/* PDF dugme */
.drawer__pdf{
   height: 38px;
   padding: 0 14px;
   border-radius: 10px;
   border: 1px solid rgba(255,255,255,.25);
   background: rgba(255,255,255,.08);
   color: #000000;
   font-weight: 700;
   cursor: pointer;
   transition: all .15s ease;
}
.drawer__pdf:hover{
   background: rgba(255,255,255,.15);
   transform: translateY(-1px);
}
