/* ═══════════════════════════════════════════════════════════
   FONTS
   ═══════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/AeonikTRIAL-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/AeonikTRIAL-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: 'Aeonik';
  src: url('../fonts/AeonikTRIAL-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}

/* ═══════════════════════════════════════════════════════════
   LOADER
   ═══════════════════════════════════════════════════════════ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #f5f5f3;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loader__logo {
  animation: logoFloat 2s ease-in-out infinite;
}

.loader__logo img {
  width: 60px;
  height: auto;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.loader__bar {
  width: 200px;
  height: 3px;
  background: #e8e8e6;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.loader__progress {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(90deg, #2962FF 0%, #1E4ED8 100%);
  border-radius: 10px;
  width: 0%;
  transition: width 0.3s ease;
}
/* ═══════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Aeonik', sans-serif;
  background: #f5f5f3;
  color: #222;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  align-items: center;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
}
.site-wrapper {
  width: 100%;
  max-width: 1240px;
  background: #f5f5f3;
  position: relative;
}
/* ═══════════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════════ */
.nav {
  position: relative;
  width: 100%;
  background: #f5f5f3  ;
  display: flex;
  justify-content: center;
  z-index: 100;
}
.nav__inner {
  width: 100%;
  max-width: 1240px;
  display: flex;
  align-items: center;
  padding: 22px 0px;
}
.nav__logo img {
  height: 28px;
  width: auto;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 36px;
  margin-left: 52px;
}
.nav__links a {
  font-weight: 400;
  font-size: 20px;
  color: #222;
  position: relative;
  transition: color .3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: #222;
  transition: width .3s;
}
.nav__links a:hover::after { width: 100%; }

.nav__cta {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 24px;
  font-weight: 400;
  color: #2962FF;
  border-bottom: 1.5px solid #1E4ED8;
  padding-bottom: 2px;
  transition: opacity .3s;
}
.nav__cta:hover { opacity: .7; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #222;
  border-radius: 2px;
  transition: .3s;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #f5f5f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu__close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
.mobile-menu__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 52px;
  align-items: center;
}
.mobile-menu__link {
  font-size: 26px;
  font-weight: 400;
  color: #222;
  transition: opacity .3s;
}
.mobile-menu__link:hover { opacity: .5; }
.mobile-menu__socials {
  position: absolute;
  bottom: 52px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.mobile-menu__socials img {
  height: 26px;
  width: auto;
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  margin-top: 69px; /* 169px od početka sajta */
  padding: 0 0px;
  background: #f5f5f3;
}

.hero__container {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 27px 568px 1fr;
  gap: 0 74px; /* 74px između prve i druge, 0px između druge i treće */
  height: 770px;
}

/* ════════════ PRVA KOLONA (27px) ════════════ */
.hero__side-label {
  width: 27px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  color: rgba(123, 123, 123, 0.4);
}

.hero__side-text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
}

.hero__side-line {
  width: 1px;
  height: 500px;
  background: rgba(123, 123, 123, 0.4);
  border-radius: 1px;
}

.hero__side-year {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
}

/* ════════════ DRUGA KOLONA (568px) ════════════ */
.hero__content {
  width: 568px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #222;
}
.hero__stats {
  display: flex;
  align-items: flex-start;
  gap: 8px; /* razmak izmedju svg i broja */
}

.hero__stats-icon {
  width: 24px; /* ili koliko ti je u figmi */
  height: auto;
  margin-top: 14px; /* fino poravnanje sa brojem */
  border: 1px solid red;
}

.hero__stats-number {
  font-size: 102px;
  font-weight: 300;
  line-height: 1;
  color: #222;
}

.hero__stats-label {
  font-size: 24px;
  font-weight: 400;
  color: #7B7B7B;
  margin-top: 0;
}

.hero__stats-number {
  display: flex;
  align-items: center;
  gap: 8px; /* Razmak između + i 55 */
  font-size: 102px;
  font-weight: 300;
  line-height: 1;
  color: #222;
}

.hero__plus-icon {
  width: 48px; /* Prilagodi veličinu ikone */
  height: 48px;
}

.hero__title {
  font-size: 266px;
  font-weight: 300;
  line-height: 1;
  color: #222;
  margin-top: 89px;
  white-space: nowrap;
}

.hero__sub {
  font-size: 24px;
  font-weight: 400;
  color: #222;
  margin-top: -24px;
  white-space: nowrap;
}

.hero__scroll {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 400;
  color: #222;
  margin-top: auto; /* Gura na dno */
  transition: opacity .3s;
  text-decoration: none;
}
.hero__scroll:hover { opacity: .6; }
.hero__scroll img { 
  height: 23px;
  width: 20px;
}

/* ════════════ TREĆA KOLONA (slika) ════════════ */
.hero__img-mobile { 
  display: none; 
}

.hero__image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  margin-top: auto; /* Gura na dno */
}

.hero__img-desktop {
  height: 100%;
  max-height: 835px;
  width: auto;
  object-fit: contain;
}

.hero__img-mobile { 
  display: none; 
}

.hero__cta-mobile {
  display: none;
}

/* Skloni bottom i stats koji nisu potrebni */
.hero__bottom,
.hero__stats,
.hero__year {
  display: none;
}
/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about {
  padding: 100px 0px;
  background: #f5f5f3;
}
.about__inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.about__title {
  font-size: 63px;
  font-weight: 400;
  margin-bottom: 30px;
  color: #222;
}
.about__text {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: #7B7B7B;
  text-align: justify;        /* 👈 levo + desno ravno */
  text-justify: inter-word;
  hyphens: auto;
}

.about__stats {
  display: flex;
  gap: 30px;
  padding-top: 100px;
  align-items: center; /* 👈 OVO */
  text-align: center;
}
.about__stat {
  display: flex;
  flex-direction: column;
}
.about__stat-num {
  font-size: 63px;
  font-weight: 400;
  color: #2962FF;
  line-height: 1;
}
.about__stat-label {
  font-size: 18px;
  font-weight: 4  00;
  color: #7B7B7B;
  margin-top: 6px;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process {
  padding: 0px 0px 100px 0px;
}
.process__title {
  text-align: center;
  font-size: 63px;
  font-weight: 400;
  color: #222;
  margin-bottom: 100px;
}
.process__steps {
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}
.process__step {
  flex: 1;
  max-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process__icon {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}
.process__step-name {
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}
.process__step-desc {
  font-size: 20px;
  font-weight: 300;
  color: #888;
  line-height: 1.2;
}
.process__arrow {
  height: 28px;
  width: auto;
  align-self: center;
  margin-top: 14px;
  opacity: .45;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════
   CONSULTATION BANNER
   ═══════════════════════════════════════════════════════════ */
.consult {
  position: relative;
  padding: 0;
  overflow: hidden;
  width: 100vw; /* Puna širina ekrana */
  height: 500px;
  margin-left: calc(-50vw + 50%); /* Izlazi iz wrapper-a */
}

.consult__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.consult__background img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.consult__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Dark overlay preko slike */
  pointer-events: none;
}

.consult__inner {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  margin: 0 auto;
  
  text-align: center;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.consult__title {
  font-size: 63px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}

.consult__sub {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: 36px;
}

.consult__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.5);
  border-radius: 30px;
  padding: 12px 28px;
  transition: background .3s, border-color .3s;
}

.consult__btn:hover {
  background: rgba(255,255,255,.08);
  border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════════════ */

.portfolio {
  padding: 100px 0px;
  background: #f5f5f3;
}
.portfolio__title {
  font-size: 63px;
  font-weight: 400;
  color: #222;
  max-width: 1240px;
  margin: 0 auto 50px;
}
.portfolio__grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Sakrivene kartice */
.portfolio__card--hidden {
  display: none !important;
}

.portfolio__card--hidden.show {
  display: block !important;
}

.portfolio__card {
  display: block;
  text-decoration: none;
  color: #222;
}
.portfolio__img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #e8e8e6;
  aspect-ratio: 4/3;
}
.portfolio__img-wrap img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(.19,1,.22,1);
}
.portfolio__card:hover .portfolio__img-wrap img:first-child {
  transform: scale(1.22);
}
.portfolio__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity .3s;
}
.portfolio__card:hover .portfolio__overlay { 
  opacity: 1; 
}
.portfolio__arrow {
  height: 22px;
  width: 22px;
  background: none;
  border-radius: 0;
  padding: 0;
}
.portfolio__info {
  padding-top: 10px;
}
.portfolio__info h3 {
  font-size: 20px;
  font-weight: 400;
  color: #222;
}
.portfolio__info span {
  font-size: 15px;
  font-weight: 300;
  color: #999;
}
.portfolio__more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
  font-size: 20px;
  font-weight: 400;
  color: #222;
  transition: opacity .3s;
  cursor: pointer;
}

.portfolio__more:hover { 
  opacity: .6; 
}
.portfolio__more img { 
  height: 18px; 
}
/* ═══════════════════════════════════════════════════════════
   SAY HI
   ═══════════════════════════════════════════════════════════ */
.sayhi {
  padding: 0px 0px 100px 0px;
  background: #f5f5f3;
  display: flex;
  justify-content: center; /* ← Centrira parent na ekranu */
}
.sayhi__inner {
  max-width: 700px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.sayhi__text {
  padding: 0px 0px 74px 0px;
  font-size: 63px;
  font-weight: 400;
  color: #222;
  line-height: 1.25;
  text-align: right;
}
.sayhi__hi {
  font-style: italic;
  color: #7B7B7B;
}
.mobile-br {
  display: none;
}
.desktop-tablet-br {
  display: inline;
}
.sayhi__arrow {
  position: absolute;
  top: 11px;
  left: 180px;
  width: 200px;
  pointer-events: none;
}
.sayhi__link {
  display: inline-block;
  font-size: 24px;
  font-weight: 400;
  color: #2962FF;
  border-bottom: 1.5px solid #1E4ED8;
  padding-bottom: 2px;
  transition: opacity .3s;
}
.sayhi__link:hover { opacity: .7; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  width: 100%;
  background: #1a1a1a;
}
.footer__copy {
  max-width: 1240px;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 300;
  color: #7B7B7B;
  text-align: center;
}
.footer__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 89px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__links {
  list-style: none;
  display: flex;
  gap: 50px;
}
.footer__links a {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,.7);
  transition: color .3s;
}
.footer__links a:hover { color: #fff; }
.footer__socials {
  display: flex;
  gap: 50px;
  align-items: center;
}
.footer__socials img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: .7;
  transition: opacity .3s;
}
.footer__socials a:hover img { opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS (scroll reveal)
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 900px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* NAV - hamburger levo, bez loga */
  .nav__inner { 
    padding: 70px 32px 0 32px; 
    justify-content: flex-start;
  }
  .nav__logo { 
    display: none; 
  }
  .nav__links, 
  .nav__cta { 
    display: none; 
  }
  .nav__burger { 
    display: flex;
    margin-left: 0;
  }

  /* MOBILE MENU - full screen, centriran */
  .mobile-menu {
    background: #f5f5f3;
  }
  .mobile-menu__close {
    top: 70px;
    left: 32px;
    right: auto;
  }

  /* HERO - centriran vertikalno */
  .hero {
    margin-top: 0;
    padding: 0 30px;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .hero__side-label {
    display: none;
  }

  .hero__content {
    width: 100%;
    align-items: center;
    text-align: center;
    order: 2;
  }

  .hero__stats-number,
  .hero__stats-label {
    display: none;
  }

  .hero__title {
    font-size: 120px;
    margin-top: 0;
    line-height: 0.9;
  }

  .hero__sub {
    font-size: 20px;
    margin-top: 15px;
  }

  .hero__cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    font-size: 20px;
    color: #2962FF;
    border-bottom: 1.5px solid #2962FF;
    padding-bottom: 2px;
  }

  .hero__scroll {
    font-size: 20px;
    margin-top: 150px;
  }

  .hero__image {
    order: 1;
    margin-bottom: 30px;
    margin-top: -200px;  /* ← Pomera sliku NA GORE */
  }

  .hero__img-desktop {
    display: none;
  }

  .hero__img-mobile {
    display: block;
    max-height: 400px;
    width: auto;
  }

  /* ABOUT */
  .about { 
    padding: 0px 30px; 
  }
  .about__inner { 
    grid-template-columns: 1fr; 
    gap: 50px; 
  }
  .about__title {
    font-size: 48px;
  }
  .about__text {
    font-size: 18px;
  }
  .about__stats {
    padding-top: 50px;
    gap: 30px;
    justify-content: center; /* ← Centrira stats */
  }
  /* PROCESS */
  .process { 
    padding: 70px 32px 80px; 
  }
  .process__title {
    font-size: 48px;
    margin-bottom: 60px;
  }
  .process__steps { 
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* ← 2 kolone */
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
  }
  .process__step-desc{
    font-size: 18px;
  }
  .process__arrow { 
    display: none; 
  }

  /* CONSULTATION */
  .consult { 
    height: 450px;
  }
  .consult__background img {
    height: 450px;
  }
  .consult__inner {
    height: 450px;
    padding: 0 32px;
  }
  .consult__title { 
    font-size: 42px; 
  }
  .consult__sub {
    font-size: 18px;
  }

/* PORTFOLIO */
.portfolio { 
  padding: 70px 32px; 
}
.portfolio__title {
  font-size: 48px;
}
.portfolio__grid { 
  grid-template-columns: repeat(2, 1fr); /* ← 2 kolone */
  max-width: 100%;
  gap: 20px;
}

/* Sakrivene kartice ostaju sakrivene */
.portfolio__card--hidden {
  display: none !important;
}

.portfolio__card--hidden.show {
  display: block !important;
}


 /* SAY HI */
.sayhi { 
  padding: 70px 32px 60px;
  justify-content: center; /* ← Centrira parent */
}
.sayhi__inner {
  align-items: center;
}
.sayhi__text { 
  font-size: 42px;
  padding: 0 0 60px 0;
  text-align: right;
}
.desktop-tablet-br {
  display: inline; /* ← Break posle "about" */
}
.mobile-br {
  display: none;
}
.sayhi__arrow {
  width: 160px;
  top: 10px;
  left: 40%;
  transform: translateX(-50%);
}
  /* FOOTER */
  .footer__inner { 
    padding: 60px 32px; 
    flex-direction: column; 
    gap: 30px; 
  }
  .footer__links {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    font-size: 18px;
  }
  .footer__socials {
    gap: 35px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 480px)
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  /* NAV - hamburger levo, bez loga */
  .nav__inner { 
    padding: 70px 20px 0 20px; 
    justify-content: flex-start;
  }
  .nav__logo { 
    display: none; 
  }
  .nav__burger {
    margin-left: 0;
  }

  /* MOBILE MENU - full screen, centriran */
  .mobile-menu {
    background: #f5f5f3;
  }
  .mobile-menu__close {
    top: 70px;
    left: 20px;
    right: auto;
  }

  /* HERO - centriran vertikalno */
  .hero {
    margin-top: 0;
    padding: 0 20px;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    height: auto;
    min-height: calc(100vh - 140px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .hero__side-label {
    display: none;
  }

  .hero__content {
    width: 100%;
    align-items: center;
    text-align: center;
    order: 2;
  }

  .hero__stats-number,
  .hero__stats-label {
    display: none;
  }

  .hero__title {
    font-size: 102px;
    margin-top: 0;
    line-height: 0.9;
  }

  .hero__sub {
    font-size: 20px;
    margin-top: 10px;
  }

  .hero__cta-mobile {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 30px;
    font-size: 24px;
    color: #2962FF;
    border-bottom: 1.5px solid #2962FF;
    padding-bottom: 2px;
  }

  .hero__scroll {
    font-size: 20px;
    margin-top: 30px;
  }

  .hero__image {
    order: 1;
    margin-bottom: 30px;
    margin-top: 0;
  }

  .hero__img-desktop {
  display: none;
  }

  .hero__img-mobile {
    display: block;
    max-height: 300px;
    width: auto;
  }

  /* ABOUT */
  .about { 
    padding: 56px 20px; 
  }
  .about__inner { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  .about__title { 
    font-size: 36px; 
  }
  .about__text {
    font-size: 16px;
  }
  .about__stats { 
    flex-direction: column; 
    gap: 24px;
    padding-top: 40px;
  }

  /* PROCESS */
  .process { 
    padding: 56px 20px 64px; 
  }
  .process__title { 
    font-size: 36px; 
    margin-bottom: 40px; 
  }
  .process__steps {
    display: flex;
    flex-direction: column;
    align-items: center; /* ← Centrirano */
    gap: 30px;
  }

  .process__step { 
    max-width: 100%; 
  }

  .process__arrow {
    display: block;
    transform: rotate(90deg);
    height: 22px;
    opacity: .35;
  }

  /* CONSULTATION */
  .consult { 
    height: 400px;
  }
  .consult__background img {
    height: 400px;
  }
  .consult__inner {
    height: 400px;
    padding: 0 20px;
  }
  .consult__title { 
    font-size: 28px; 
  }
  .consult__sub {
    font-size: 16px;
  }

  /* PORTFOLIO */

.portfolio { 
  padding: 56px 20px; 
}
.portfolio__title { 
  font-size: 36px; 
}
.portfolio__grid {
  grid-template-columns: 1fr; /* ← 1 kolona */
}

/* Sakrivene kartice ostaju sakrivene */
.portfolio__card--hidden {
  display: none !important;
}

.portfolio__card--hidden.show {
  display: block !important;
}

/* Deveta kartica na mobile je normalna, puna širina */
.portfolio__card--hidden.show:nth-child(9) {
  grid-column: auto;
  max-width: 100%;
}

/* SAY HI */
.sayhi { 
  padding: 56px 55px 48px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.sayhi__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.sayhi__text { 
  font-size: 32px;
  padding: 0 0 50px 0;
  text-align: right;
  line-height: 1.3;
  display: inline-block; /* ← KLJUČNO */
}
.desktop-tablet-br {
  display: none;
}
.mobile-br {
  display: inline;
}
.sayhi__arrow { 
  width: 100px;
  position: absolute;
  top: 45px;
  left: 40%;
  pointer-events: none;
}
.sayhi__link {
  font-size: 20px;
}
  /* FOOTER */
  .footer__inner {
    padding: 40px 20px;
    flex-direction: column;
    gap: 24px;
  }
  .footer__links { 
    flex-direction: column;
    text-align: center;
    gap: 20px; 
    font-size: 16px;
  }
  .footer__socials {
    gap: 30px;
  }
}