/* ==========================================================
   PIPER GROUP — base.css (SINGLE SOURCE OF TRUTH)
   One file. No override. Stable dropdown + FAQ + images + reveal.
========================================================== */

/* =========================
   TOKENS
========================= */
:root{
  --text:#4a4f55;
  --blue:#3f97b5;
  --red:#dd1a1a;
  --accent:#ff5d00;

  --hover:#6d747c;
  --line:#e7eaee;
  --footerbg:#fbfcfd;

  --teal:#1f616f;
}

/* =========================
   FONTS
========================= */
@font-face{
  font-family:'Graphik';
  src:url('/assets/fonts/Graphik-Light.woff2') format('woff2');
  font-weight:300;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Graphik';
  src:url('/assets/fonts/Graphik-Semibold.woff2') format('woff2');
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'FreightText';
  src:url('/assets/fonts/FreightTextProLight-Regular.woff2') format('woff2');
  font-weight:300;
  font-style:normal;
  font-display:swap;
}

/* =========================
   BASE
========================= */
*{ box-sizing:border-box; }

html{ font-size:14px; }
html, body{ overflow-x:hidden; overflow-y:auto; }

body{
  margin:0;
  font-family:'Graphik', Arial, sans-serif;
  font-weight:300;
  font-size:1rem;
  line-height:1.6;
  color:var(--text);
  background:#fff;
  text-rendering:optimizeLegibility;
  -webkit-font-smoothing:antialiased;
}

/* leave space for fixed header */
body{ padding-top:72px; }

a{ color:var(--text); text-decoration:none; }
a:hover{ color:var(--hover); }

h1,h2,h3,h4,h5,h6{
  font-family:'FreightText', serif;
  font-weight:300;
  letter-spacing:.3px;
  margin:0 0 10px 0;
}

strong,b{ font-weight:600; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:16px;
}

/* =========================
   UTIL: DIVIDERS
========================= */
.vsep{ width:1px; background:var(--line); align-self:stretch; }
.vline{ border-left:1px solid var(--line); padding-left:16px; }
.hsep{ height:1px; background:var(--line); width:100%; }

.u-underline{
  display:inline-block;
  padding-bottom:6px;
  border-bottom:2px solid var(--accent);
}

/* =========================
   REVEAL ON SCROLL (TEXT + BLOCKS)
   Use: class="reveal" or "reveal reveal-slow"
   JS should add .is-in when visible
========================= */
.reveal{
  opacity:0;
  transform:translateY(14px);
  transition:opacity .6s ease, transform .6s ease;
  will-change:opacity, transform;
}
.reveal.reveal-slow{
  transition-duration:.9s;
}
.reveal.is-in{
  opacity:1;
  transform:none;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity:1 !important;
    transform:none !important;
    transition:none !important;
  }
}

/* =========================
   IMAGE FADE-IN (SAFE)
   (Only elements that get .img-fade will animate)
========================= */
img{ max-width:100%; height:auto; }

.img-fade{
  opacity:0;
  transform:translateY(6px);
  transition:opacity .45s ease, transform .45s ease;
  will-change:opacity, transform;
}
.img-fade.is-loaded{
  opacity:1;
  transform:none;
}

/* =========================
   HEADER (fixed + stable z-index)
========================= */
.site-header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:5000;
  background:#fff;
  border-bottom:1px solid var(--line);
}

.site-header.is-scrolled{
  box-shadow:0 4px 18px rgba(0,0,0,0.05);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

/* brand */
.brand{
  display:flex;
  align-items:center;
  padding-right:18px;
  border-right:1px solid var(--line);
  margin-right:18px;
  flex:0 0 auto;
}

.brand-link{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  font-weight:600;
  letter-spacing:.2px;
}

.brand-logo{
  height:28px;
  max-height:28px;
  width:auto;
  max-width:160px;
  display:block;
  object-fit:contain;
}

/* right block */
.hdr-right{
  display:flex;
  align-items:center;
  gap:14px;
  margin-left:auto;
}

/* nav */
.nav{
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}

.nav-link{
  color:var(--text);
  font-weight:510;
  font-size:13px;
  letter-spacing:.4px;
  padding:8px 2px;
}

.nav-link:hover{ color:var(--hover); }

.nav-link.is-active{
  font-weight:600;
  color:var(--blue);
  letter-spacing:.1px;
  position:relative;
}

.nav-link.is-active::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:1px;
  background:var(--blue);
}

.nav-sep{
  width:1px;
  height:16px;
  background:var(--line);
  flex:0 0 1px;
}

/* =========================
   LOGIN BUTTON
========================= */
.btn-login{
  padding:5px 10px;
  border-radius:4px;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  font-weight:600;
  font-size:13px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  transition:all .2s ease;
}
.btn-login:hover{
  border-color:var(--blue);
  background:rgba(63,151,181,0.06);
}

/* =========================
   LANGUAGE DROPDOWN (WORKS)
========================= */
.lang-dd{
  position:relative;
  z-index:6000;
}

.lang-btn{
  display:flex;
  align-items:center;
  gap:6px;
  padding:6px 4px;
  background:transparent;
  border:none;
  color:var(--text);
  font-weight:500;
  cursor:pointer;
  position:relative;
  z-index:6001;
}

.lang-btn:hover{ color:var(--hover); }

.lang-code{ letter-spacing:.4px; }
.lang-caret{ font-size:11px; opacity:.6; }

.lang-btn:focus{ outline:none; }
.lang-btn:focus-visible{
  outline:2px solid rgba(63,151,181,0.35);
  outline-offset:2px;
  border-radius:8px;
}

.flag-ico{
  width:18px;
  height:18px;
  border-radius:999px;
  object-fit:cover;
  display:block;
  border:1px solid rgba(0,0,0,0.08);
}

/* menu (JS adds .is-open) */
.lang-menu{
  position:fixed;
  display:none;
  z-index:9999;

  min-width:200px;
  padding:8px;
  border-radius:12px;
  background:rgba(255,255,255,0.96);
  border:1px solid var(--line);
  box-shadow:0 14px 40px rgba(0,0,0,0.12);
  backdrop-filter: blur(10px);
}

.lang-menu.is-open{ display:block; }

.lang-item{
  display:flex;
  align-items:center;
  gap:10px;
  padding:8px 10px;
  border-radius:8px;
  font-weight:300;
  color:var(--text);
}

.lang-item:hover{
  background:rgba(0,0,0,0.05);
  color:var(--hover);
}

.lang-item.is-active{
  font-weight:600;
  background:rgba(63,151,181,0.10);
}

/* =========================
   MAIN
========================= */
.site-main{ min-height:60vh; }

/* =========================
   FOOTER
========================= */
.site-footer{
  background:var(--footerbg);
  border-top:1px solid var(--line);
  margin-top:0px;
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:24px;
}
.footer-title{
  font-weight:600;
  margin-bottom:8px;
  color:var(--text);
}
.footer-text{
  margin:6px 0;
  color:var(--text);
  opacity:.9;
}
.footer-link{
  display:block;
  margin:6px 0;
  color:var(--text);
  font-weight:300;
}
.footer-link:hover{ color:var(--hover); }
main{
  padding-bottom:0;
}

section:last-of-type{
  margin-bottom:0;
}
/* =========================
   HOME HERO
========================= */
.hero{
  position:relative;
  height:600px;
  width:100%;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  pointer-events:none;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:1;
  pointer-events:none;
}
.hero-panel{
  position:absolute;
  right:220px;
  bottom:0;
  width:680px;
  padding:28px 40px;
  background:rgba(50,127,153,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  z-index:2;
  color:#fff;
}
.hero-title{
  font-size:36px;
  line-height:1.2;
  margin:0 0 18px 0;
  color:#fff;
}
.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:6px;
  font-weight:600;
  font-size:13px;
  white-space:nowrap;
  border:1px solid transparent;
  transition:all .2s ease;
}
.btn-ghost{
  background:#fff;
  color:#111;
  border-color:rgba(255,255,255,0.55);
}
.btn-ghost:hover{ background:rgba(255,255,255,0.92); }
.btn-light{
  background:transparent;
  border:1px solid rgba(255,255,255,0.7);
  color:#fff;
}
.btn-light:hover{ background:rgba(255,255,255,0.15); }

@media (max-width:1000px){
  .hero-panel{ right:40px; left:40px; width:auto; }
}
@media (max-width:700px){
  .hero{ height:540px; }
  .hero-panel{ bottom:30px; padding:22px; }
  .hero-title{ font-size:26px; }
}
/* HERO outline button (Kontakt) */
.btn-light{
  background:transparent;
  border:1px solid rgba(255,255,255,0.7);
  color:#fff;
  transition:all .2s ease;
}

/* hover stanje – tekst ostaje BELO */
.btn-light:hover,
.btn-light:focus-visible{
  background:rgba(255,255,255,0.25);
  border-color:#fff;
  color:#fff !important;   /* sprečava globalni a:hover */
}
/* =========================
   RANK SECTION
========================= */
.rank-section{ padding:50px 0; background:#fff; }

.rank-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items:start;
  gap:40px;
}

.rank-sep{ background:var(--line); width:1px; height:100%; }
.rank-item{ padding:10px 0; }

.rank-number{
  font-family:'FreightText', serif;
  font-size:48px;
  line-height:1;
  margin-bottom:18px;
  color:var(--text);
}

.rank-text{
  font-size:14px;
  line-height:1.6;
  max-width:240px;
  color:var(--text);
}

@media (max-width:1000px){
  .rank-grid{ grid-template-columns:1fr; gap:50px; }
  .rank-sep{ display:none; }
  .rank-text{ max-width:none; }
}

/* =========================
   WHAT WE DO
========================= */
.what-section{ padding:45px 0; }
.rank-section + .what-section{ padding-top:25px; }

.what-head{ margin-bottom:18px; }
.what-title{ font-size:34px; line-height:1.15; margin:0; }

.what-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.what-card{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:22px;
  min-height:92px;
  background:#f4f5f6;
  border:1px solid #f0f1f2;
  border-radius:10px;
  color:var(--text);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.what-card:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  background:#f6f7f8;
}
.what-label{
  font-weight:400;
  font-size:18px;
  letter-spacing:.1px;
  white-space:pre-line;
}
.what-ico{
  position:relative;
  width:34px;
  height:34px;
  flex:0 0 34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.what-ring{
  position:absolute;
  inset:0;
  border-radius:999px;
  border:1px solid rgba(74,79,85,0.45);
}
.what-arrow{
  font-size:22px;
  line-height:1;
  transform:translateX(1px);
  opacity:0.85;
}

@media (max-width:980px){ .what-grid{ grid-template-columns:repeat(2, 1fr); } }
@media (max-width:560px){
  .what-grid{ grid-template-columns:1fr; }
  .what-title{ font-size:28px; }
}

/* =========================
   TX TEASER
========================= */
.tx-teaser{ margin-top:0px; }

.tx-hero{ width:100%; line-height:0; background:#fff; }
.tx-hero-img{ width:100%; height:auto; display:block; }

.tx-band{
  width:100%;
  background:var(--teal);
  margin-top:-1px;
  padding:32px 0 40px;
}

.tx-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:22px;
}

.tx-title{
  color:#fff;
  margin:0;
  font-size:42px;
  line-height:1.1;
}

.tx-all{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:38px;
  padding:0 18px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.55);
  color:#fff;
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  background:transparent;
  transition:all .25s ease;
}
.tx-all:hover{
  background:#fff;
  color:var(--accent);
  border-color:#fff;
}

.tx-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.tx-card{
  background:#fff;
  border-radius:6px;
  border:1px solid rgba(0,0,0,0.10);
  min-height:220px;
  display:flex;
  flex-direction:column;
  padding:18px 18px 16px;
}

.tx-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}
.tx-amount{ font-weight:600; font-size:14px; color:var(--text); }

.tx-logo{
  width:120px;
  height:46px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.12);
  background:rgba(255,255,255,0.70);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  overflow:hidden;
}
.tx-logo img{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
  opacity:0.95;
}
.tx-logo-fallback{
  display:none;
  font-size:11px;
  color:rgba(74,79,85,0.72);
  letter-spacing:.02em;
  text-transform:uppercase;
  font-weight:600;
}
.tx-logo.is-missing{
  border-style:dashed;
  background:rgba(255,255,255,0.55);
}
.tx-logo.is-missing .tx-logo-fallback{ display:block; }

.tx-desc{ color:var(--text); font-size:13px; line-height:1.55; }

.tx-foot{
  margin-top:auto;
  padding-top:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}
.tx-role{
  font-size:11px;
  letter-spacing:.10em;
  text-transform:uppercase;
  color:rgba(74,79,85,0.85);
  font-weight:600;
}
.tx-btn{
  height:30px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.25);
  color:var(--text);
  font-weight:600;
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.tx-btn:hover{
  border-color:rgba(0,0,0,0.35);
  background:rgba(0,0,0,0.03);
}

@media (max-width:1100px){
  .tx-grid{ grid-template-columns:repeat(2, 1fr); }
  .tx-title{ font-size:36px; }
}
@media (max-width:620px){
  .tx-grid{ grid-template-columns:1fr; }
  .tx-title{ font-size:30px; }
  .tx-head{ flex-direction:column; align-items:flex-start; }
}

/* =========================
   FAQ
========================= */
.faq-section{ padding:60px 0; }

.faq-title{
  font-size:36px;
  margin-bottom:28px;
}

.faq-box{
  background:#f4f5f6;
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 24px;
}

.faq-item{ padding:18px 0; }
.faq-divider{ height:1px; background:var(--line); }

.faq-question{
  width:100%;
  background:transparent;
  border:0;
  padding:14px 0;
  cursor:pointer;
  display:flex;
  justify-content:space-between;
  align-items:center;
  color:var(--text);
  font-size:18px;
  text-align:left;
}
.faq-question:hover{ color:var(--blue); }

.faq-icon{
  transition:transform .2s ease;
  font-size:20px;
  font-weight:600;
}

.faq-answer{
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease;
}
.faq-item.active .faq-answer{
  opacity:1;
  margin-top:10px;
}
.faq-item.active .faq-icon{
  transform:rotate(45deg);
}

/* =========================
   VIDEO SECTION (SPLIT)
========================= */
.video-section{ padding:60px 0; }

.video-grid{
  display:flex;
  align-items:center;
  gap:40px;
}

.video-col,
.video-text-col{
  flex:1;
  min-width:0;
}

.video-wrap{
  position:relative;
  width:100%;
  overflow:hidden;
  border-radius:8px;
}

.video-el{
  width:100%;
  height:auto;
  display:block;
}

.video-play{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:38px;
  color:#fff;
  background:rgba(0,0,0,0.35);
  border:none;
  cursor:pointer;
  transition:all .3s ease;
  z-index:5;
  pointer-events:auto;
}

.video-play:hover{ background:rgba(0,0,0,0.5); }
.video-play.hidden{ opacity:0; pointer-events:none; }

@media (max-width:980px){
  .video-grid{ flex-direction:column; }
  .vsep{ display:none; }
  .video-text-col{ margin-top:24px; }
}

/* =========================
   RESPONSIVE (header/footer)
========================= */
@media (max-width:980px){
  .hdr-right{ gap:10px; }
  .nav{ flex-wrap:wrap; white-space:normal; }
  .nav-sep{ display:none; }
  .brand{ border-right:none; margin-right:0; padding-right:0; }
}
@media (max-width:900px){
  .footer-grid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .cols-3{ grid-template-columns:1fr; }
  .vsep, .nav-sep{ display:none; }
}

/* prevent flash before JS */
.no-js .lang-menu{ display:none !important; }


/* =========================
   COMPANY HERO
========================= */

.hero-company{
  height:450px;
}

.hero-company-panel{
  right:220px; /* ili vrednost koju si izabrao */

  width:520px;
  padding:28px 32px;

  background:rgba(50,127,153,0.75); /* ISTO kao Home */
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);

  border-top-left-radius:12px;
  border-top-right-radius:12px;

  color:#fff;
}

.hero-company .hero-title{
  font-size:36px;
  margin-bottom:12px;
}

.hero-lead{
  font-family:'FreightText', serif;
  font-size:22px;   /* bilo 20px */
  line-height:1.35;
  margin:0 0 14px 0;
  color:#fff;
}

.hero-text{
  font-size:17px;
  line-height:1.75;
  opacity:0.98;
  margin:0;
}

@media (max-width:1000px){
  .hero-company-panel{
    right:40px;
    left:40px;
    width:auto;
  }
}

@media (max-width:700px){
  .hero-company{
    height:360px;
  }

  .hero-company-panel{
    padding:22px;
  }

  .hero-company .hero-title{
    font-size:28px;
  }
}
.company-stats{
  padding:70px 0;
  background:#fafbfc;
}

.company-stats .rank-number{
  font-size:52px;   /* malo veće nego na home */
}

.company-stats .rank-text{
  font-size:15px;
}
/* =========================
   COMPANY: ABOUT SPLIT (img left / text right) — FIXED
========================= */
.about-split{
  padding:70px 0;
  background:#fff;
}

.about-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:36px;
  align-items:stretch; /* BITNO: iste visine levo/desno */
}

/* LEFT: IMAGE */
.about-img{
  border-radius:10px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;

  /* BITNO: da slika bude visine kao desni tekst blok */
  min-height:420px;
  height:100%;
}

.about-img img{
  display:block;
  width:100%;
  height:100%;         /* BITNO */
  object-fit:cover;    /* BITNO */
  object-position:center;
}

/* RIGHT: TEXT */
.about-text{
  display:flex;
  flex-direction:column;
  justify-content:center; /* vertikalno centriranje */
}

.about-title{
  font-size:36px;
  line-height:1.15;
  margin:0 0 14px 0;
}

.about-p{
  margin:10px 0;
  font-size:15px;
  line-height:1.75;
  color:var(--text);
  opacity:.95;
}

/* Responsive */
@media (max-width: 980px){
  .about-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .about-grid .vsep{ display:none; }
  .about-split{ padding:56px 0; }

  .about-img{
    min-height:320px;
  }
}

/* =========================
   IMG FADE-IN (SAFE FALLBACK)
   - Default: VIDI se slika
   - Kad JS doda html.js: fade radi
========================= */
.img-fade{ opacity:1; transform:none; }

html.js .img-fade{
  opacity:0;
  transform:translateY(6px);
  transition:opacity .45s ease, transform .45s ease;
  will-change:opacity, transform;
}
html.js .img-fade.is-loaded{
  opacity:1;
  transform:none;
}


/* =========================
   COMPANY — VALUES BAND
========================= */

.values-band{
  background:var(--teal);   /* tvoja zelena */
  padding:80px 0;
}

.values-inner{
  max-width:760px;          /* LEVO poravnato */
}

.values-title{
  color:#fff;
  font-size:40px;
  line-height:1.15;
  margin:0 0 18px 0;
}

.values-lead{
  color:#fff;
  font-size:18px;
  line-height:1.6;
  margin-bottom:26px;
  opacity:.95;
}

.values-list{
  list-style:none;
  padding:0;
  margin:0;
}

.values-list li{
  position:relative;
  padding-left:28px;
  margin-bottom:18px;
  color:#fff;
  font-size:18px;
  line-height:1.7;
}

/* Svetlo plave tačke */
.values-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:9px;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--blue); /* svetlija plava */
}

/* =========================
   COMPANY — JOURNEY SECTION
========================= */

.company-journey{
  padding:90px 0;
  background:#fff;
}

.journey-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:50px;
  align-items:stretch; /* VAŽNO */
}

.journey-img-wrap{
  position:relative;
  width:100%;
  height:100%;
  min-height:420px; /* kontrola visine */
  overflow:hidden;
  border-radius:6px;
}

.journey-img{
  width:100%;
  height:100%;
  object-fit:cover;     /* KLJUČNO */
  object-position:center;
  display:block;
}

.journey-text{
  display:flex;
  flex-direction:column;
  justify-content:center; /* vertikalno centriran tekst */
  max-width:620px;
}

.journey-title{
  font-size:38px;
  line-height:1.2;
  margin-bottom:16px;
}

.journey-lead{
  font-size:20px;
  line-height:1.6;
  margin-bottom:20px;
  font-weight:400;
}

.journey-body{
  font-size:17px;
  line-height:1.75;
  margin-bottom:18px;
}

@media (max-width:980px){
  .journey-grid{
    grid-template-columns:1fr;
  }
  .vsep{
    display:none;
  }
}
/* =========================
   COMPANY — TEAM BANNER
========================= */

.team-banner{
  background:rgba(50,127,153,0.85); /* tvoja plava */
  padding:90px 0;
  color:#fff;
}

.team-inner{
  max-width:800px;
}

.team-title{
  font-size:42px;
  line-height:1.15;
  margin:0 0 18px 0;
  color:#fff;
}

.team-lead{
  font-size:20px;
  line-height:1.7;
  margin-bottom:32px;
  opacity:.95;
}

/* BUTTONS */

.team-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.team-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 22px;
  border-radius:6px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.04em;
  text-transform:uppercase;
  transition:all .25s ease;
  border:1px solid transparent;
}

/* PRIMARY */
.team-btn-primary{
  background:#fff;
  color:#111;
  border-color:#fff;
}

.team-btn-primary:hover{
  background:transparent;
  color:#fff;
  border-color:#fff;
}

/* OUTLINE */
.team-btn-outline{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,0.7);
}

.team-btn-outline:hover{
  background:#fff;
  color:#111;
  border-color:#fff;
}

@media (max-width:768px){
  .team-title{
    font-size:34px;
  }
}
/* =========================
   INNER HERO (Services / Company)
========================= */
.inner-hero{
  position:relative;
  height:450px;
  width:100%;
  overflow:hidden;
}

.inner-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
  pointer-events:none;
}

/* overlay */
.inner-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.35);
  z-index:1;
  pointer-events:none;
}

/* PANEL (same as home panel tone) */
.inner-hero-panel{
  position:absolute;
  right:220px;
  bottom:0;
  width:min(680px, calc(100% - 64px));
  padding:26px 34px;
  background:rgba(50,127,153,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-top-left-radius:12px;
  border-top-right-radius:12px;
  z-index:2;
  color:#fff;
}

.inner-hero-title{
  font-size:38px;
  line-height:1.15;
  margin:0 0 10px 0;
  color:#fff;
}

.inner-hero-lead{
  margin:0;
  font-size:18px;
  line-height:1.65;
  opacity:.95;
  color:#fff;
}

@media (max-width:1000px){
  .inner-hero-panel{
    right:32px;
    left:32px;
    width:auto;
  }
}
@media (max-width:700px){
  .inner-hero{ height:360px; }
  .inner-hero-title{ font-size:30px; }
  .inner-hero-lead{ font-size:16px; }
}

/* =========================
   SERVICES LINKS (3)
========================= */
.services-links{
  padding:40px 0 20px;
  background:#fff;
}

.services-links-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap:22px;
  align-items:stretch;
}

.svc-link{
  display:block;
  padding:22px 18px;
  border-radius:10px;
  background:#f4f5f6;
  border:1px solid #eef1f4;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.svc-link:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  background:#f6f7f8;
  border-color:#e6ebf0;
}

.svc-link-title{
  display:block;
  font-family:'FreightText', serif;
  font-weight:300;
  font-size:22px;
  color:var(--text);
  margin-bottom:8px;
}

.svc-link-desc{
  display:block;
  font-size:14px;
  line-height:1.7;
  color:var(--text);
  opacity:.92;
  margin-bottom:14px;
}

.svc-link-more{
  display:inline-block;
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--accent);
}

.svc-link:hover .svc-link-more{
  color:var(--blue);
}

@media (max-width:980px){
  .services-links-grid{
    grid-template-columns:1fr;
    gap:14px;
  }
  .services-links-grid .vsep{ display:none; }
}

/* =========================
   SERVICES — OUR SECTORS
========================= */

.sectors-band{
  background:var(--teal);
  padding:80px 0;   /* isto kao values-band */
  color:#fff;
}

.sectors-title{
  font-size:42px;
  margin-bottom:60px;
  color:#fff;
}

.sectors-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:50px 60px;
}

.sector-item{
  position:relative;
  padding-left:26px;
}

/* plava vertikalna linija */
.sector-item::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  bottom:6px;
  width:3px;
  background:var(--blue);
  border-radius:2px;
}

.sector-item h3{
  font-size:24px;
  margin:0 0 12px 0;
  color:#fff;
}

.sector-item p{
  font-size:17px;
  line-height:1.75;
  opacity:.95;
  margin:0;
}

@media (max-width:980px){
  .sectors-grid{
    grid-template-columns:1fr;
  }

  .sectors-title{
    font-size:34px;
  }
}
/* =========================
   SERVICES: PARTNER SPLIT (img left / teal box right)
========================= */
.partner-split{
  padding:70px 0;
  background:#fff;
}

.partner-grid{
  display:grid;
  grid-template-columns: 1.35fr 1fr;
  gap:0;
  align-items:stretch;
}

/* image block */
.partner-img{
  border-radius:10px 0 0 10px;
  overflow:hidden;
  border:1px solid var(--line);
  border-right:0;
  background:#fff;
  min-height:320px;
}
.partner-img img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;          /* ne vidi se “pogrešan” crop */
}

/* text block */
.partner-box{
  border-radius:0 10px 10px 0;

  background:rgba(51,  128,  153, 0.84);   /* ISTO KAO HERO */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  color:#fff;
  padding:46px 46px;

  display:flex;
  flex-direction:column;
  justify-content:center;

  border:1px solid rgba(50,127,153,0.75);
  box-shadow:0 12px 40px rgba(0,0,0,0.12);
}

.partner-title{
  color:#fff;
  font-size:34px;
  line-height:1.15;
  margin:0 0 16px 0;
}

.partner-p{
  margin:10px 0 0;
  font-size:15px;
  line-height:1.8;
  color:rgba(255,255,255,0.92);
}

/* responsive */
@media (max-width: 980px){
  .partner-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .partner-img{
    border-radius:10px;
    border-right:1px solid var(--line);
    min-height:240px;
  }
  .partner-box{
    border-radius:10px;
    padding:34px 24px;
  }
  .partner-title{ font-size:28px; }
}
/* =========================
   INVESTMENT BANKING — 3 COLUMN WITH VERTICAL LINES
========================= */

.ib-highlights{
  padding:80px 0;
  background:#fff;
}

.ib-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  align-items:start;
}

.ib-item{
  padding:0 40px;
  position:relative;
}

/* Uzdužne linije */
.ib-item:not(:last-child)::after{
  content:"";
  position:absolute;
  top:10px;
  right:0;
  width:1px;
  height:calc(100% - 20px);
  background:var(--line);
}

.ib-title{
  font-size:24px;
  margin:0 0 12px 0;
  line-height:1.2;
}

.ib-text{
  font-size:15px;
  line-height:1.75;
  color:var(--text);
  opacity:.95;
  margin:0;
}

/* Responsive */
@media (max-width:980px){
  .ib-grid{
    grid-template-columns:1fr;
    gap:50px;
  }

  .ib-item{
    padding:0;
  }

  .ib-item::after{
    display:none;
  }
}
/* =========================
   INVESTMENT BANKING — SPLIT (image left / text right)
========================= */
.ib-split{
  padding:80px 0;
  background:#fff;
}

.ib-split-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:36px;
  align-items:center;
}

.ib-split-img{
  border-radius:10px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
}

.ib-split-img img{
  display:block;
  width:100%;
  height:420px;          /* da bude jednaka “težina” kao tekst */
  object-fit:cover;      /* ako je uzdužna slika, seče višak lepo */
}

.ib-split-title{
  font-size:36px;
  line-height:1.15;
  margin:0 0 10px 0;
}

.ib-split-lead{
  font-size:18px;
  line-height:1.6;
  color:var(--text);
  opacity:.95;
  margin:0 0 14px 0;
}

.ib-split-p{
  margin:10px 0 16px 0;
  font-size:15px;
  line-height:1.75;
  color:var(--text);
  opacity:.95;
}

.ib-split-list{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.ib-split-list li{
  position:relative;
  padding-left:18px;
  font-size:15px;
  line-height:1.7;
  color:var(--text);
  opacity:.95;
}

.ib-split-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--blue); /* svetlije plavo kao akcenat */
}

/* responsive */
@media (max-width: 980px){
  .ib-split{ padding:56px 0; }
  .ib-split-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .ib-split-grid .vsep{ display:none; }
  .ib-split-img img{ height:260px; }
  .ib-split-title{ font-size:30px; }
}
/* =========================
   CTA BAND (teal background, white text)
========================= */
.cta-band{
  background:var(--teal);
  padding:80px 0;
}

.cta-grid{
  display:grid;
  grid-template-columns: 1fr;
}

.cta-copy{
  max-width:880px;
}

.cta-title{
  color:#fff;
  font-size:40px;
  line-height:1.12;
  margin:0 0 12px 0;
}

.cta-lead{
  color:rgba(255,255,255,0.92);
  font-size:18px;
  line-height:1.7;
  margin:0 0 14px 0;
}

.cta-text{
  color:rgba(255,255,255,0.92);
  font-size:15px;
  line-height:1.85;
  margin:10px 0;
}

.cta-list{
  margin:16px 0 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}

.cta-list li{
  position:relative;
  padding-left:18px;
  color:#fff;
  font-size:15px;
  line-height:1.75;
}

.cta-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--blue); /* svetlije plavo */
}

.cta-actions{
  margin-top:22px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:46px;
  padding:0 20px;
  border-radius:999px;

  background:#fff;               /* belo dugme */
  border:1px solid #fff;

  color:var(--teal);             /* zelena slova */
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;

  transition:all .25s ease;
}

/* Hover efekat */
.cta-btn:hover{
  background:transparent;
  color:#fff;
  border:1px solid #fff;
}

/* Active */
.cta-btn:active{
  transform:translateY(1px);
}

/* responsive */
@media (max-width: 700px){
  .cta-band{ padding:60px 0; }
  .cta-title{ font-size:32px; }
}
/* =========================
   SERVICE HERO (Fixed Income)
   Height: 450px standard
========================= */

.service-hero{
  position:relative;
  height:450px;
  width:100%;
  overflow:hidden;
}

.service-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform:scale(1.02);
}

/* overlay */
.service-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.30);
  z-index:1;
}

/* PANEL bottom right */
.service-hero-panel{
  position:absolute;
  right:160px;
  bottom:0;

  width:640px;
  padding:32px 38px;

  background:rgba(50,127,153,0.75); /* tvoja zelena transparent */
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);

  border-top-left-radius:12px;
  border-top-right-radius:12px;

  z-index:2;
  color:#fff;
}

.service-hero-title{
  font-size:38px;
  line-height:1.15;
  margin:0 0 10px 0;
  color:#fff;
}

.service-hero-sub{
  font-size:20px;
  line-height:1.4;
  margin:0 0 12px 0;
  color:rgba(255,255,255,0.95);
}

.service-hero-text{
  font-size:15px;
  line-height:1.75;
  margin:0;
  color:rgba(255,255,255,0.95);
}

@media (max-width:1000px){
  .service-hero-panel{
    right:40px;
    left:40px;
    width:auto;
  }
}

@media (max-width:700px){
  .service-hero{
    height:380px;
  }
  .service-hero-title{
    font-size:30px;
  }
  .service-hero-sub{
    font-size:17px;
  }
}
/* =========================
   FIXED INCOME — SPLIT SECTION
========================= */

.fi-split{
  padding:80px 0;
  background:#fff;
}

.fi-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:36px;
  align-items:center;
}

.fi-img{
  border-radius:10px;
  overflow:hidden;
  border:1px solid var(--line);
  background:#fff;
}

.fi-img img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
}

.fi-title{
  font-size:36px;
  margin:0 0 10px 0;
  line-height:1.15;
}

.fi-lead{
  font-size:18px;
  line-height:1.6;
  margin:0 0 14px 0;
  color:var(--text);
  opacity:.95;
}

.fi-p{
  font-size:15px;
  line-height:1.75;
  margin:10px 0 16px 0;
  color:var(--text);
  opacity:.95;
}

.fi-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}

.fi-list li{
  position:relative;
  padding-left:18px;
  font-size:15px;
  line-height:1.7;
  color:var(--text);
}

.fi-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--blue);
}

@media (max-width:980px){
  .fi-grid{
    grid-template-columns:1fr;
    gap:20px;
  }
  .fi-grid .vsep{ display:none; }
  .fi-img img{
    height:260px;
  }
}
/* =========================
   FIXED INCOME — TEAL BAND
========================= */
.fi-band{
  background:var(--teal);
  color:#fff;
  padding:80px 0;
}

.fi-band-head{
  max-width:880px;
}

.fi-band-title{
  color:#fff;
  font-size:40px;
  line-height:1.1;
  margin:0 0 10px 0;
}

.fi-band-lead{
  font-size:18px;
  line-height:1.7;
  opacity:.92;
  margin:0 0 24px 0;
}

.fi-band-big{
  max-width:980px;
  font-size:20px;
  line-height:1.85;
  opacity:.98;
}

/* responsive */
@media (max-width: 700px){
  .fi-band{ padding:64px 0; }
  .fi-band-title{ font-size:32px; }
  .fi-band-big{ font-size:18px; line-height:1.8; }
}
/* =========================
   PUBLIC FINANCE — SPLIT (balanced layout)
========================= */

.pf-split{
  padding:80px 0;
  background:#fff;
}

.pf-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:40px;
  align-items:stretch;   /* KLJUČNO */
}

/* TEXT */
.pf-text{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.pf-title{
  font-size:36px;
  margin:0 0 12px 0;
  line-height:1.15;
}

.pf-lead{
  font-size:18px;
  line-height:1.7;
  margin:0 0 14px 0;
  color:var(--text);
  opacity:.95;
}

.pf-p{
  font-size:15px;
  line-height:1.8;
  margin:10px 0;
  color:var(--text);
}

.pf-list{
  list-style:none;
  padding:0;
  margin:16px 0 0 0;
  display:grid;
  gap:10px;
}

.pf-list li{
  position:relative;
  padding-left:18px;
  font-size:15px;
  line-height:1.7;
}

.pf-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:11px;
  width:7px;
  height:7px;
  border-radius:999px;
  background:var(--blue);
}

/* IMAGE */
.pf-img{
  border-radius:10px;
  overflow:hidden;
  border:1px solid var(--line);
  display:flex;
}

.pf-img img{
  width:100%;
  height:100%;
  object-fit:cover;   /* Seče višak */
  display:block;
}

/* Responsive */
@media (max-width:980px){
  .pf-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .pf-grid .vsep{
    display:none;
  }

  .pf-img{
    height:260px;
  }
}
/* =========================
   PUBLIC FINANCE — TEAL BAND
========================= */

.pf-band{
  background:var(--teal);
  padding:90px 0;
  color:#fff;
}

.pf-band-content{
  max-width:900px;
}

.pf-band-title{
  font-size:42px;
  line-height:1.1;
  margin:0 0 14px 0;
  color:#fff;
}

.pf-band-lead{
  font-size:20px;
  line-height:1.7;
  margin:0 0 18px 0;
  opacity:.95;
}

.pf-band-text{
  font-size:16px;
  line-height:1.9;
  margin:0 0 22px 0;
  opacity:.95;
}

.pf-band-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:12px;
}

.pf-band-list li{
  position:relative;
  padding-left:20px;
  font-size:16px;
  line-height:1.8;
}

.pf-band-list li::before{
  content:"";
  position:absolute;
  left:0;
  top:12px;
  width:8px;
  height:8px;
  border-radius:999px;
  background:var(--blue);
}

@media (max-width:700px){
  .pf-band{
    padding:70px 0;
  }

  .pf-band-title{
    font-size:32px;
  }

  .pf-band-lead{
    font-size:18px;
  }
}
.about-lead{
  margin: 6px 0 14px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  opacity: .92;
  font-weight: 600;
}
/* =========================
   INVESTOR RELATIONS: PROFILE + TILES
========================= */
.ir-profile{
  padding:70px 0;
  background:#fff;
}

.ir-title{
  font-size:36px;
  line-height:1.15;
  margin:0 0 12px 0;
}

.ir-lead{
  margin:0 0 14px 0;
  font-size:16px;
  line-height:1.75;
  font-weight:600;
  color:var(--text);
  opacity:.92;
  max-width:860px;
}

.ir-text{
  margin:10px 0;
  font-size:15px;
  line-height:1.75;
  color:var(--text);
  opacity:.95;
  max-width:900px;
}

.ir-tiles{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
}

.ir-tile{
  background:#f4f5f6;
  border:1px solid var(--line);
  border-radius:6px;
  padding:22px 22px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  min-height:76px;

  color:var(--text);
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.ir-tile:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  background:#f6f7f8;
  border-color:rgba(0,0,0,0.10);
}

.ir-tile-label{
  font-size:16px;
  line-height:1.35;
  font-weight:400;
  letter-spacing:.1px;
}

.ir-tile-ico{
  width:30px;
  height:30px;
  border-radius:999px;
  border:1px solid rgba(74,79,85,0.45);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  line-height:1;
  opacity:.9;
  flex:0 0 30px;
}

.ir-tile:hover .ir-tile-ico{
  border-color:rgba(63,151,181,0.75);
  color:var(--blue);
}

@media (max-width:980px){
  .ir-tiles{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:620px){
  .ir-tiles{ grid-template-columns:1fr; }
}
/* =========================
   INVESTOR RELATIONS: TEAL BAND
========================= */
.ir-band{
  background:var(--teal);
  padding:80px 0;
  color:#fff;
}

.ir-band-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:36px;
  align-items:center;
}

.ir-band .vsep{
  background:rgba(255,255,255,0.22);
}

.ir-band-title{
  color:#fff;
  font-size:38px;
  line-height:1.1;
  margin:0 0 10px 0;
}

.ir-band-lead{
  margin:0;
  font-size:18px;
  line-height:1.7;
  font-weight:600;
  color:#fff;
  opacity:.95;
  max-width:520px;
}

.ir-band-text{
  margin:0;
  font-size:16px;
  line-height:1.8;
  color:#fff;
  opacity:.92;
  max-width:560px;
}

.ir-band-actions{
  margin-top:18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

/* primary button: white bg + teal text */
.ir-band-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 18px;
  border-radius:999px;
  background:#fff;
  color:var(--teal);
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  border:1px solid rgba(255,255,255,0.85);
  transition:all .2s ease;
}
.ir-band-btn:hover{
  background:rgba(255,255,255,0.92);
  transform:translateY(-1px);
}

/* secondary link button */
.ir-band-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 18px;
  border-radius:999px;
  color:#fff;
  border:1px solid rgba(255,255,255,0.55);
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  transition:all .2s ease;
}
.ir-band-link:hover{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.75);
}

@media (max-width:980px){
  .ir-band-grid{ grid-template-columns:1fr; gap:18px; }
  .ir-band .vsep{ display:none; }
  .ir-band{ padding:64px 0; }
}
/* =========================
   GLOBAL SECTION SPACING TUNE
========================= */

/* smanji razmak između svih glavnih sekcija */
section{
  padding:60px 0;   /* bilo je 80px */
}

/* hero ostaje veći */
.inner-hero{
  padding:0; /* hero ima svoju visinu */
}

/* ako neka sekcija ima dodatni razmak */
.rank-section,
.video-section,
.what-section,
.tx-teaser,
.faq-section,
.about-split,
.ir-band,
.values-band,
.ib-highlights,
.ib-cta,
.pf-split{
  padding:60px 0 !important;
}

.tx-grid-section{
  padding:70px 0;
  background:#fff;
}

.section-title{
  font-size:34px;
  margin-bottom:30px;
}

.tx-grid-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.tx-card{
  padding:26px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fff;
  transition:.25s ease;
}

.tx-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 28px rgba(0,0,0,0.05);
}

.tx-card-amount{
  font-size:22px;
  font-weight:600;
  margin-bottom:8px;
  color:var(--blue);
}

.tx-card-title{
  font-size:18px;
  margin-bottom:8px;
}

.tx-card-desc{
  font-size:14px;
  line-height:1.6;
  opacity:.85;
}

@media(max-width:900px){
  .tx-grid-cards{ grid-template-columns:1fr 1fr; }
}
@media(max-width:600px){
  .tx-grid-cards{ grid-template-columns:1fr; }
}
.tx-filter{
  padding:50px 0;
  background:#f8f9fa;
}

.tx-filter-buttons{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

.tx-filter-buttons button{
  padding:8px 18px;
  border-radius:999px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  transition:.2s ease;
}

.tx-filter-buttons button:hover{
  background:var(--teal);
  color:#fff;
}
/* =========================
   TRANSACTIONS: CROSS BORDER (soft blue background)
========================= */
.tx-cross{
  padding:80px 0;
  background:linear-gradient(
    180deg,
    rgba(63,151,181,0.08) 0%,
    rgba(63,151,181,0.04) 100%
  );
}

.tx-cross .container{
  background:#fff;
  padding:60px 70px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.06);
}

.tx-cross .section-title{
  font-size:38px;
  line-height:1.15;
  margin:0 0 18px 0;
  max-width:900px;
}

.tx-cross-text{
  font-size:18px;
  line-height:1.85;
  max-width:900px;
  opacity:.95;
  position:relative;
  padding-left:22px;
}

/* vertical orange accent */
.tx-cross-text::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:3px;
  height:90%;
  background:var(--accent);
  border-radius:2px;
}

@media (max-width:980px){

  .tx-cross{
    padding:60px 0;
  }

  .tx-cross .container{
    padding:40px 28px;
  }

  .tx-cross .section-title{
    font-size:30px;
  }

  .tx-cross-text{
    font-size:16px;
  }
}
.tx-highlight{
  background:var(--teal);
  padding:80px 0;
  color:#fff;
}

.tx-highlight-box{
  max-width:900px;
}

.tx-highlight-amount{
  font-size:48px;
  font-weight:700;
  margin-bottom:10px;
}

.tx-highlight-title{
  font-size:24px;
  margin-bottom:14px;
}

.tx-highlight-text{
  font-size:16px;
  line-height:1.8;
  opacity:.95;
}
/* =========================
   TRANSACTIONS: SECTOR BREAKDOWN
========================= */
.tx-breakdown{
  padding:60px 0;
  background:#fff;
}

.txb-head{
  margin-bottom:18px;
}

.txb-title{
  font-size:36px;
  line-height:1.15;
  margin:0 0 8px 0;
}

.txb-lead{
  margin:0;
  font-size:15px;
  line-height:1.75;
  opacity:.92;
  max-width:760px;
}

.txb-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:36px;
  align-items:start;
  margin-top:18px;
}

.txb-kicker{
  font-size:20px;
  margin:0 0 10px 0;
}

.txb-p{
  margin:10px 0;
  font-size:15px;
  line-height:1.8;
  opacity:.95;
}

.txb-note{
  margin:14px 0 0 0;
  font-size:13px;
  opacity:.75;
}

.txb-bars{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.txb-rowTop{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:14px;
  margin-bottom:6px;
}

.txb-label{
  font-weight:600;
  letter-spacing:.02em;
}

.txb-val{
  font-weight:600;
  color:#fff;
  background:rgba(63,151,181,0.95); /* brand blue pill */
  padding:3px 10px;
  border-radius:999px;
  font-size:12px;
}

.txb-bar{
  height:10px;
  border-radius:999px;
  background:rgba(74,79,85,0.10);
  overflow:hidden;
  border:1px solid rgba(231,234,238,0.9);
}

.txb-fill{
  height:100%;
  width:0%;
  background:var(--accent); /* orange fill */
  border-radius:999px;
}

@media (max-width: 980px){
  .txb-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .txb-grid .vsep{ display:none; }
}
/* =========================
   CONTACT: SPLIT (left details / right form)
========================= */
.contact-split{
  padding:52px 0;
  background:rgba(63,151,181,0.06); /* blaga plava pozadina */
}

.contact-grid{
  display:grid;
  grid-template-columns: 1fr 1px 1fr;
  gap:36px;
  align-items:start;
}

.contact-card,
.contact-formCard{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:22px 22px 20px;
}

.contact-title{
  font-size:34px;
  line-height:1.15;
  margin:0 0 10px 0;
}

.contact-lead{
  margin:0 0 18px 0;
  font-size:15px;
  line-height:1.75;
  opacity:.95;
}

.contact-lines{
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  background:#fff;
}

.contact-line{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
}

.contact-k{
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(74,79,85,0.88);
  flex:0 0 160px;
}

.contact-v{
  flex:1;
  text-align:right;
  color:var(--text);
  font-size:14px;
  line-height:1.55;
}

.contact-divider{
  height:1px;
  background:var(--line);
}

.contact-link{
  color:var(--blue);
  font-weight:600;
}
.contact-link:hover{
  color:var(--accent);
}

.contact-hours{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--line);
}

.contact-hours-h{
  font-weight:600;
  margin:0 0 10px 0;
  letter-spacing:.02em;
}

.hours-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 0;
  border-bottom:1px solid rgba(231,234,238,0.8);
}
.hours-row:last-child{ border-bottom:none; }

.hours-day{
  font-size:14px;
  color:var(--text);
  opacity:.95;
}
.hours-time{
  font-size:14px;
  font-weight:600;
  color:var(--text);
}

.contact-note{
  margin-top:10px;
  font-size:13px;
  line-height:1.6;
  color:rgba(74,79,85,0.92);
}

/* form */
.cform-row{ margin:0 0 12px 0; }
.cform-label{
  display:block;
  font-weight:600;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin:0 0 6px 0;
  color:rgba(74,79,85,0.90);
}

.cform-input,
.cform-textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 12px;
  font-family:'Graphik', Arial, sans-serif;
  font-size:14px;
  outline:none;
  background:#fff;
}

.cform-input:focus,
.cform-textarea:focus{
  border-color:rgba(63,151,181,0.60);
  box-shadow:0 0 0 3px rgba(63,151,181,0.12);
}

.cform-actions{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:8px;
  flex-wrap:wrap;
}

.cform-btn{
  height:40px;
  padding:0 18px;
  border-radius:10px;
  border:1px solid transparent;
  background:var(--blue);
  color:#fff;
  font-weight:800;
  letter-spacing:.02em;
  cursor:pointer;
  transition:all .2s ease;
}
.cform-btn:hover{
  background:var(--accent);
}

.cform-hint{
  font-size:13px;
  color:rgba(74,79,85,0.85);
}

.cform-alert{
  margin-top:14px;
  border-radius:10px;
  padding:12px 14px;
  border:1px solid var(--line);
  background:#f4f5f6;
  display:none;
  line-height:1.6;
}
.cform-alert.is-show{ display:block; }
.cform-alert.is-ok{
  border-color:rgba(63,151,181,0.35);
  background:rgba(63,151,181,0.10);
}

.contact-alt{
  margin-top:18px;
  padding-top:16px;
  border-top:1px solid var(--line);
}
.contact-alt-title{
  font-weight:600;
  margin-bottom:6px;
}
.contact-alt-text{
  font-size:14px;
  line-height:1.7;
  opacity:.95;
}

@media (max-width: 980px){
  .contact-grid{
    grid-template-columns:1fr;
    gap:18px;
  }
  .contact-grid .vsep{ display:none; }
  .contact-k{ flex:0 0 140px; }
  .contact-v{ text-align:left; }
}
/* =========================
   CONTACT CTA (Green Band)
========================= */
.contact-cta{
  background:var(--teal);
  padding:90px 0;
  text-align:center;
}

.contact-cta-inner{
  max-width:900px;
  margin:0 auto;
  color:#fff;
}

.contact-cta-title{
  font-size:42px;
  line-height:1.15;
  margin:0 0 18px 0;
  color:#fff;
}

.contact-cta-lead{
  font-size:20px;
  line-height:1.6;
  margin:0 0 16px 0;
  font-weight:500;
  color:#fff;
  opacity:.95;
}

.contact-cta-text{
  font-size:16px;
  line-height:1.8;
  margin:0 0 30px 0;
  color:#fff;
  opacity:.9;
}

.contact-cta-actions{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.contact-cta-btn{
  background:#fff;
  color:var(--teal);
  padding:14px 28px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  transition:all .25s ease;
}

.contact-cta-btn:hover{
  background:var(--accent);
  color:#fff;
}

.contact-cta-link{
  color:#fff;
  font-weight:600;
  text-decoration:underline;
  align-self:center;
  transition:opacity .2s ease;
}

.contact-cta-link:hover{
  opacity:.75;
}

@media (max-width: 768px){
  .contact-cta{
    padding:70px 0;
  }
  .contact-cta-title{
    font-size:32px;
  }
  .contact-cta-lead{
    font-size:18px;
  }
}
/* Phone button in green CTA */
.contact-cta-phone{
  background:transparent;
  border:2px solid #fff;
  color:#fff;
  padding:14px 26px;
  border-radius:10px;
  font-weight:800;
  text-decoration:none;
  transition:all .25s ease;
  display:inline-block;
}

.contact-cta-phone:hover{
  background:#fff;
  color:var(--teal);
  border-color:#fff;
}
/* =========================
   SMALL HERO (Login / Legal)
========================= */
.inner-hero-sm{
  height:200px;
  position:relative;
  overflow:hidden;
}

.inner-hero-sm .inner-hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
}

.inner-hero-panel-sm{
  position:absolute;
  bottom:0px;
  right:360px;
  background:rgba(50,127,153,0.75);
  padding:28px 34px;
  border-radius:12px;
  max-width:480px;
}

.inner-hero-sm .inner-hero-title{
  font-size:30px;
  line-height:1.15;
  margin:0 0 10px 0;
  color:#fff;
}

.inner-hero-sm .inner-hero-lead{
  font-size:15px;
  line-height:1.6;
  margin:0;
  color:#fff;
  opacity:.95;
}

@media (max-width: 768px){
  .inner-hero-panel-sm{
    right:20px;
    left:20px;
    bottom:30px;
    max-width:none;
  }
}
/* =========================
   LEGAL HERO BACKGROUND
========================= */
.legal-hero-bg{
  background:rgba(74, 79, 85, 0.62);
  position:absolute;
  inset:0;
}

/* =========================
   LEGAL CONTENT (IMPRINT) — bigger + darker + blue accents
========================= */
.legal-content{
  padding:74px 0;
  background:#fff;
}

.legal-title{
  font-size:42px;
  line-height:1.1;
  margin:0 0 18px 0;
  color:#1f2429;              /* tamnije */
}

.legal-sub{
  font-size:24px;
  line-height:1.2;
  margin:42px 0 12px 0;
  color:#1f2429;
}

/* “plavi trag” ispod podnaslova */
.legal-sub::after{
  content:"";
  display:block;
  width:56px;
  height:2px;
  margin-top:10px;
  background:var(--blue);
  opacity:.95;
}

.legal-p{
  font-size:16px;             /* bilo 15 */
  line-height:1.9;
  margin:12px 0;
  color:#1f2429;              /* crnje */
  opacity:1;                  /* ukloni izbleđivanje */
}

/* “legal box” jači kontrast i plavi border */
.legal-box{
  margin:28px 0 10px;
  padding:30px 32px;
  border:1px solid rgba(63,151,181,0.35);
  border-left:4px solid var(--blue);
  border-radius:12px;
  background:rgba(63,151,181,0.06);
}

/* linkovi da budu plavi i vidljivi */
.legal-content a{
  color:var(--blue);
  font-weight:600;
}
.legal-content a:hover{
  color:#2c7f9a;
  text-decoration:underline;
}

/* mali “note” / disclaimer blok */
.legal-note{
  margin-top:26px;
  padding:18px 22px;
  border:1px solid var(--line);
  border-radius:10px;
  background:#f7f8f9;
  color:#1f2429;
  font-size:15px;
  line-height:1.85;
}
/* =========================
   LEGAL PAGES (BASELINE)
========================= */
.legal-hero{
  position:relative;
  height:200px; /* kao što si rekao da ostaje za legal */
  overflow:hidden;
  background:#4A4F55;
}
.legal-hero-bg{
  position:absolute;
  inset:0;
  background:#4A4F55;
}
.legal-hero-panel{
  position:absolute;
  bottom:0;
  right:360px;
  max-width:560px;
  background:rgba(50,127,153,0.75);
  padding:28px 34px;
  border-radius:12px;
  color:#fff;
}
.legal-hero-title{
  font-size:42px;
  line-height:1.1;
  margin:0 0 10px 0;
  color:#fff;
}
.legal-hero-lead{
  margin:0;
  font-size:16px;
  line-height:1.65;
  color:rgba(255,255,255,0.92);
}

.legal-page{ padding:46px 0 66px; }
.legal-meta{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  margin:0 0 20px 0;
}
.legal-meta-item{
  border:1px solid var(--line);
  border-radius:10px;
  padding:10px 14px;
  background:#fff;
}
.legal-meta-k{ font-weight:600; color:#1f2429; }
.legal-meta-v{ color:#1f2429; }

.legal-body{ max-width:920px; }
.legal-intro{
  font-size:16px;
  line-height:1.85;
  color:#1f2429;
  margin:0 0 18px 0;
}
.legal-h2{
  font-size:24px;
  margin:26px 0 10px 0;
  color:#1f2429;
}
.legal-p{
  font-size:16px;
  line-height:1.85;
  color:#1f2429;
  margin:10px 0;
}
.legal-list{
  margin:10px 0 10px 18px;
  padding:0;
  color:#1f2429;
  font-size:16px;
  line-height:1.85;
}
.legal-box{
  margin:16px 0;
  padding:16px 18px;
  border-radius:12px;
  background:#f7f9fb;
  border:1px solid var(--line);
  border-left:4px solid var(--blue);
}
.legal-box-title{
  font-weight:600;
  color:#1f2429;
  margin:0 0 8px 0;
}

.legal-contact{
  margin-top:14px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  padding:14px 16px;
  max-width:560px;
}
.legal-contact-row{
  display:flex;
  gap:10px;
  padding:8px 0;
  border-bottom:1px solid var(--line);
}
.legal-contact-row:last-child{ border-bottom:0; }
.legal-contact-k{ width:120px; font-weight:600; color:#1f2429; }
.legal-contact-v{ color:var(--blue); font-weight:600; }
.legal-contact-v:hover{ color:var(--accent); }

@media (max-width: 980px){
  .legal-hero-panel{
    right:24px;
    left:24px;
    max-width:none;
  }
}
/* =========================
   UNIVERSAL LEGAL NAV
========================= */
.legal-nav{
  padding:42px 0 36px;
  background:#f6f8fa;
  border-bottom:1px solid var(--line);
}

.legal-nav-head{
  margin-bottom:26px;
}

.legal-nav-title{
  font-size:26px;
  margin:0 0 6px 0;
  color:#1f2429;
}

.legal-nav-sub{
  margin:0;
  font-size:14px;
  color:#4a4f55;
}

.legal-nav-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.legal-nav-card{
  display:block;
  padding:20px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fff;
  text-decoration:none;
  transition:all .25s ease;
}

.legal-nav-name{
  font-size:16px;
  font-weight:600;
  margin-bottom:6px;
  color:#1f2429;
}

.legal-nav-desc{
  font-size:13px;
  color:#4a4f55;
  line-height:1.6;
}

/* Hover effect – čist, bez sivog */
.legal-nav-card:hover{
  border-color:var(--blue);
  box-shadow:0 4px 14px rgba(0,0,0,0.05);
  transform:translateY(-2px);
}

.legal-nav-card:hover .legal-nav-name{
  color:var(--blue);
}

@media (max-width: 980px){
  .legal-nav-grid{
    grid-template-columns:1fr 1fr;
  }
}
/* =========================
   FOOTER (4 cols + legal line)
========================= */
.site-footer{
  background:#7fb5c8;
  border-top:1px solid rgba(255,255,255,0.55);
  margin-top:28px;
  color:#0f1418;
}

.footer-grid4{
  display:grid;
  grid-template-columns: 1.2fr 1px 0.9fr 1px 0.9fr 1px 0.9fr;
  gap:22px;
  padding:28px 0 18px;
  align-items:start;
}

.footer-vsep{
  width:1px;
  background:rgba(255,255,255,0.7); /* tanka bela linija (može i plava) */
  align-self:stretch;
}

.footer-title{
  font-weight:600;
  margin-bottom:10px;
  color:#0b1014;
  letter-spacing:.2px;
}

.footer-slogan{
  margin:0 0 14px 0;
  font-size:13px;
  color:#0b1014;
  opacity:.92;
}

.footer-meta .footer-text{
  margin:6px 0;
  color:#0b1014;
  opacity:.92;
  font-size:13px;
}

.footer-link{
  display:inline-block;
  margin:6px 0;
  color:#0b1014;
  font-weight:400;
  text-decoration:none;
  transition:color .2s ease, text-decoration-color .2s ease;
}

/* NO gray hover — use accent orange */
.footer-link:hover{
  color:var(--accent);
  text-decoration:underline;
  text-decoration-color:var(--accent);
  text-underline-offset:3px;
}

.footer-badges{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:6px;
}

.footer-badges img{
  width:84px;
  height:44px;
  object-fit:contain;
  display:block;
  background:rgba(255,255,255,0.35);
  border:1px solid rgba(255,255,255,0.55);
  border-radius:10px;
  padding:6px 8px;
}

/* long legal paragraph */
.footer-legal{
  border-top:1px solid rgba(255,255,255,0.55);
  padding:14px 0 10px;
  font-size:12px;
  line-height:1.65;
  color:#0b1014;
  opacity:.92;
}

.footer-bottom{
  padding:10px 0 18px;
}

.footer-copy{
  font-size:12px;
  color:#0b1014;
  opacity:.92;
}

/* responsive */
@media (max-width: 980px){
  .footer-grid4{
    grid-template-columns:1fr;
    gap:14px;
  }
  .footer-vsep{
    display:none;
  }
  .footer-badges img{
    width:92px;
    height:46px;
  }
}
/* =========================
   FOOTER (new layout)
========================= */
.site-footer{
  background:#7fb5c8;
  border-top:1px solid rgba(255,255,255,0.55);
  margin-top:0;
}

.footer-grid4{
  display:grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  gap:22px;
  padding:26px 0 18px;
  align-items:start;
}

.footer-vsep{
  width:1px;
  background:rgba(63,151,181,0.75); /* tanka plava linija */
  align-self:stretch;
}

.footer-title{
  font-weight:600;
  color:#111;
  margin-bottom:10px;
}

.footer-slogan{
  color:#111;
  font-size:14px;
  line-height:1.6;
  opacity:.95;
  max-width:320px;
}

/* link stack */
.footer-links{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* link style */
.footer-link{
  display:inline-flex;
  align-items:center;
  padding:8px 10px;
  border-radius:8px;
  color:#111;
  font-weight:500;
  transition:background .2s ease, color .2s ease, transform .15s ease;
}

/* hover: background white, text stays black (no grey) */
.footer-link:hover{
  background:rgba(255,255,255,0.85);
  color:#111;
  transform:translateY(-1px);
}

/* active state (if you want to highlight current page) */
.footer-link.is-active{
  background:rgba(255,255,255,0.95);
  color:#111;
}

/* badges */
.footer-badges{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.footer-badges img{
  height:34px;
  width:auto;
  display:block;
  border-radius:6px;
  background:rgba(255,255,255,0.45);
  padding:6px;
}

/* long legal */
.footer-legal{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(63,151,181,0.55);
  color:#111;
  font-size:12.5px;
  line-height:1.65;
  opacity:.95;
}

.footer-bottom{
  padding:12px 0 18px;
}

.footer-copy{
  color:#111;
  font-size:12.5px;
  opacity:.95;
}

/* responsive */
@media (max-width: 980px){
  .footer-grid4{
    grid-template-columns:1fr;
    gap:14px;
    padding:22px 0 12px;
  }
  .footer-vsep{ display:none; }
}

/* =========================
   LOGIN: Partner banks grid + modal
========================= */
.partner-login{
  padding:42px 0 60px;
  background:#fff;
}

.partner-head{
  margin-bottom:18px;
}

.partner-title{
  font-size:34px;
  line-height:1.15;
  margin:0 0 10px 0;
}

.partner-lead{
  margin:0;
  font-size:15px;
  line-height:1.75;
  color:var(--text);
  opacity:.95;
  max-width:760px;
}

.partner-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
  margin-top:18px;
}

.partner-card{
  width:100%;
  text-align:left;
  border:1px solid var(--line);
  background:#f4f5f6;
  border-radius:10px;
  padding:16px 16px;
  cursor:pointer;
  display:flex;
  align-items:center;
  gap:14px;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}

.partner-card:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 24px rgba(0,0,0,0.06);
  background:#f6f7f8;
  border-color:rgba(63,151,181,0.35);
}

.partner-card:focus{ outline:none; }
.partner-card:focus-visible{
  outline:2px solid rgba(63,151,181,0.35);
  outline-offset:2px;
}

.partner-card__logo{
  width:72px;
  height:44px;
  border-radius:8px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  flex:0 0 72px;
}

.partner-card__logo img{
  max-width:90%;
  max-height:80%;
  width:auto;
  height:auto;
  display:block;
  object-fit:contain;
}

.partner-card__meta{
  min-width:0;
  flex:1;
}

.partner-card__name{
  font-weight:600;
  font-size:14px;
  letter-spacing:.02em;
  margin-bottom:4px;
}

.partner-card__desc{
  font-size:12.5px;
  line-height:1.45;
  opacity:.9;
}

.partner-card__arrow{
  font-size:26px;
  line-height:1;
  opacity:.55;
  padding-left:6px;
}

.partner-note{
  margin-top:14px;
  font-size:12.5px;
  line-height:1.55;
  opacity:.9;
  max-width:820px;
}

/* responsive */
@media (max-width:1100px){
  .partner-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media (max-width:620px){
  .partner-grid{ grid-template-columns:1fr; }
}

/* =========================
   MODAL
========================= */
.portal-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:99999;
}

.portal-modal.is-open{ display:block; }

.portal-modal__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.38);
  backdrop-filter: blur(2px);
}

.portal-modal__dialog{
  position:relative;
  width:min(520px, calc(100vw - 32px));
  margin:10vh auto 0;
  background:#fff;
  border-radius:14px;
  border:1px solid rgba(0,0,0,0.10);
  box-shadow:0 24px 60px rgba(0,0,0,0.20);
  padding:22px 22px 18px;
}

.portal-modal__x{
  position:absolute;
  right:10px;
  top:10px;
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:20px;
  line-height:1;
  color:var(--text);
}
.portal-modal__x:hover{
  border-color:rgba(63,151,181,0.35);
  background:rgba(63,151,181,0.06);
}

.portal-modal__logo{
  width:112px;
  height:56px;
  border-radius:10px;
  border:1px solid rgba(0,0,0,0.10);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  margin-bottom:14px;
}
.portal-modal__logo img{
  max-width:90%;
  max-height:85%;
  width:auto;
  height:auto;
  object-fit:contain;
}

.portal-modal__title{
  margin:0 0 8px 0;
  font-size:22px;
  line-height:1.2;
}

.portal-modal__desc{
  margin:0 0 14px 0;
  font-size:14px;
  line-height:1.6;
  opacity:.95;
}

.portal-progress{
  width:100%;
  height:10px;
  border-radius:999px;
  background:rgba(31,97,111,0.12);
  overflow:hidden;
  border:1px solid rgba(31,97,111,0.16);
}

.portal-progress__bar{
  width:0%;
  height:100%;
  background:rgba(31,97,111,0.95);
  border-radius:999px;
  transition:width .10s linear;
}

.portal-modal__count{
  margin-top:10px;
  font-size:12.5px;
  opacity:.9;
}

.portal-modal__hr{
  height:1px;
  background:var(--line);
  width:100%;
  margin:14px 0;
}

.portal-modal__ssl{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12.5px;
  opacity:.95;
}

.portal-ssl-ic{
  width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--teal);
}
.portal-ssl-ic svg{ width:18px; height:18px; display:block; }
.footer-legal2{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(0,0,0,0.10);
}
.footer-legal2-title{
  font-weight:600;
  margin:0 0 6px 0;
}
.footer-legal2-text{
  margin:0 0 10px 0;
  opacity:.95;
}
.footer-legal2-list{
  margin:0;
  padding-left:18px;
}
.footer-legal2-list li{
  margin:6px 0;
  line-height:1.55;
}
/* =========================
   COOKIE CONSENT (popup, large)
========================= */
.cc{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
}
.cc.is-open{ display:block; }

.cc__overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

.cc__modal{
  position:relative;
  width:min(860px, calc(100% - 32px));
  margin: min(9vh, 90px) auto 0;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  box-shadow:0 26px 70px rgba(0,0,0,0.18);
  padding:22px 24px 18px;
}

.cc__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
}

.cc__brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.cc__logo{
  width:100px;
  height:auto;
  border:none;
  background:none;
  padding:0;
  border-radius:0;
  object-fit:contain;
}
.cc__brandName{ font-weight:600; letter-spacing:.2px; }
.cc__brandSub{ font-size:14px; opacity:.85; margin-top:2px; }

.cc__x{
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid var(--line);
  background:#fff;
  cursor:pointer;
  font-size:22px;
  line-height:1;
  color:var(--text);
}
.cc__x:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(255,93,0,0.06);
}

.cc__title{
  font-size:34px;
  line-height:1.15;
  margin:6px 0 8px;
}
.cc__lead{
  margin:0 0 14px 0;
  font-size:15px;
  line-height:1.7;
  color:var(--text);
  opacity:.95;
}

.cc__lang{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fbfcfd;
  margin:14px 0;
}
.cc__langLabel{ font-weight:600; }
.cc__langBtns{ display:flex; gap:8px; flex-wrap:wrap; }
.cc__langBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 12px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,0.20);
  color:var(--text);
  font-weight:600;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  background:#fff;
}
.cc__langBtn:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(255,93,0,0.06);
}

.cc__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  margin-top:12px;
}

.cc__btn{
  height:42px;
  padding:0 16px;
  border-radius:10px;
  border:1px solid transparent;
  font-weight:600;
  font-size:13px;
  letter-spacing:.03em;
  cursor:pointer;
  transition:all .2s ease;
}
.cc__btn--primary{
  background:var(--accent);
  color:#fff;
}
.cc__btn--primary:hover{
  transform:translateY(-1px);
  filter:brightness(0.98);
}
.cc__btn--outline{
  background:#fff;
  border-color:rgba(0,0,0,0.20);
  color:var(--text);
}
.cc__btn--outline:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(255,93,0,0.06);
}
.cc__btn--ghost{
  background:#fff;
  border-color:var(--line);
  color:var(--text);
}
.cc__btn--ghost:hover{
  border-color:var(--accent);
  color:var(--accent);
  background:rgba(255,93,0,0.06);
}

.cc__prefs{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid var(--line);
}
.cc__prefsTitle{
  font-weight:600;
  margin:0 0 6px 0;
}
.cc__prefsText{
  margin:0 0 12px 0;
  opacity:.95;
}

.cc__row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding:12px;
  border:1px solid var(--line);
  border-radius:12px;
  background:#fbfcfd;
  margin:10px 0;
}
.cc__rowTitle{ font-weight:600; display:block; }
.cc__rowDesc{ display:block; margin-top:4px; opacity:.92; }

.cc__toggle--locked{
  font-weight:600;
  color:rgba(0,0,0,0.55);
  white-space:nowrap;
  padding-top:4px;
}

.cc__check{
  width:20px;
  height:20px;
  margin-top:6px;
  accent-color: var(--accent);
}

.cc__actions--prefs{
  justify-content:space-between;
  margin-top:10px;
}

.cc__foot{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,0.06);
  display:flex;
  justify-content:flex-start;
}
.cc__link{
  color:var(--text);
  border-bottom:1px solid rgba(0,0,0,0.20);
}
.cc__link:hover{
  color:var(--accent);
  border-bottom-color:var(--accent);
}

@media (max-width:720px){
  .cc__modal{ margin-top:16px; padding:18px; }
  .cc__title{ font-size:28px; }
  .cc__actions{ justify-content:stretch; }
  .cc__btn{ flex:1; }
  .cc__lang{ flex-direction:column; align-items:flex-start; }
}