* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background: #1a1a1a;
}

/* NAV */
.nav {
  background: #181818;
  border-bottom: 0.5px solid #242424;
  padding: 13px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-t {
  font-size: 16px;
  font-weight: 500;
  color: #f0ede8;
  letter-spacing: -0.2px;
}

.logo-t span {
  color: #059669;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  font-size: 12px;
  color: #8a8580;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.nav-cta {
  background: transparent;
  color: #c9a85c;
  border: 0.5px solid rgba(201, 168, 92, 0.35);
  padding: 8px 20px;
  font-size: 11px;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 44px 80px;
}

.bg-corner-tr {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-top: 0.5px solid rgba(184, 142, 72, 0.18);
  border-right: 0.5px solid rgba(184, 142, 72, 0.18);
  pointer-events: none;
}

.bg-corner-bl {
  position: absolute;
  bottom: 80px;
  left: 24px;
  width: 56px;
  height: 56px;
  border-bottom: 0.5px solid rgba(184, 142, 72, 0.12);
  border-left: 0.5px solid rgba(184, 142, 72, 0.12);
  pointer-events: none;
}

.bg-line-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  height: 1px;
  background: linear-gradient(90deg, #059669, transparent);
  opacity: 0.5;
  pointer-events: none;
}

.bg-line-bottom {
  position: absolute;
  bottom: 64px;
  right: 0;
  width: 25%;
  height: 1px;
  background: linear-gradient(270deg, rgba(201, 168, 92, 0.3), transparent);
  pointer-events: none;
}

.bg-radar {
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-60%);
  pointer-events: none;
  opacity: 0.055;
}

.bg-num {
  position: absolute;
  right: 30px;
  bottom: -20px;
  font-size: 200px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  letter-spacing: -12px;
  user-select: none;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0.5px solid rgba(5, 150, 105, 0.3);
  color: #059669;
  font-size: 10px;
  padding: 5px 15px;
  margin-bottom: 28px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.bdot {
  width: 4px;
  height: 4px;
  background: #059669;
  border-radius: 50%;
}

.hero h1 {
  font-size: 46px;
  font-weight: 300;
  color: #f0ede8;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  max-width: 580px;
  position: relative;
  z-index: 2;
}

.hero h1 strong {
  font-weight: 600;
  color: #c9a85c;
  display: block;
}

.hero-sub {
  font-size: 14px;
  color: #8a8580;
  line-height: 1.85;
  max-width: 420px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}

.btns {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.btn-main {
  background: transparent;
  border: 0.5px solid #c9a85c;
  color: #c9a85c;
  padding: 13px 32px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.btn-sec {
  font-size: 12px;
  color: #8a8580;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
}

.btn-sec span {
  color: #059669;
  font-size: 16px;
}

.hero-strip {
  background: #141414;
  border-top: 0.5px solid #242424;
  padding: 18px 44px;
  display: flex;
  gap: 0;
  justify-content: center;
}

.hb-item {
  padding: 0 40px 0 0;
  margin: 0 40px 0 0;
  border-right: 1px solid #c9a85c;
}

.hb-item:first-child {
  padding-left: 0;
}

.hb-item:last-child {
  border-right: none;
}

.hb-l {
  font-size: 12px;
  color: #8a8580;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.hb-v {
  font-size: 13px;
  color: #8a8580;
  font-weight: 400;
  margin-top: 2px;
}

.hb-d {
  font-size: 10px;
  color: #8a8580;
  margin-top: 1px;
}

/* SEKCIJE */
.sec {
  padding: 64px 44px;
  border-bottom: 0.5px solid #222;
}

.sec-dark {
  background: #1a1a1a;
}

.sec-darker {
  background: #141414;
}

.sec-mid {
  background: #1e1e1e;
}

.inner {
  max-width: 700px;
  margin: 0 auto;
}

.lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #059669;
  font-weight: 500;
  margin-bottom: 10px;
}

.lbl-gold {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #c9a85c;
  font-weight: 500;
  margin-bottom: 10px;
}

.h2 {
  font-size: 26px;
  font-weight: 300;
  color: #f0ede8;
  margin-bottom: 16px;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

.h2 strong {
  font-weight: 600;
}

.pm {
  font-size: 15px;
  color: #8a8580;
  /* line-height: 1.65; */
  margin-bottom: 8px;
  /* max-width: 620px; */
}

/* PORTFOLIO */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #242424;
  margin-top: 32px;
}

.pcard {
  background: #1a1a1a;
  position: relative;
  overflow: hidden;
}

.pcard a {
  text-decoration: none;
}

.pcard-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  object-position: top;
  display: block;
  filter: grayscale(40%) brightness(0.85);
  transition: filter 0.4s;
}

.pcard:hover .pcard-img {
  filter: grayscale(0%) brightness(1);
}

.pcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0);
  transition: background 0.4s;
  display: flex;
  align-items: flex-end;
}

.pcard:hover .pcard-overlay {
  background: rgba(20, 20, 20, 0.6);
}

.pcard-hover-text {
  color: #f0ede8;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 11px;
  line-height: 1.6;
  color: #8a8580;
}

.pcard:hover .pcard-hover-text {
  opacity: 1;
}

.pcard-info {
  padding: 14px 16px;
  border-top: 0.5px solid #242424;
}

.pcard-name {
  font-size: 15px;
  font-weight: 500;
  color: #8a8580;
}

.pcard-tag {
  font-size: 12px;
  color: #8a8580;
  margin-top: 2px;
  letter-spacing: 0.04em;
}

.pcard-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, #059669, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pcard:hover .pcard-accent {
  opacity: 1;
}

/* USLUGE */
.usluga {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 32px;
  padding: 28px 0;
  border-top: 0.5px solid rgba(201, 168, 92, 0.25);
}

.usluga:last-of-type {
  border-bottom: 0.5px solid rgba(201, 168, 92, 0.25);
  margin-bottom: 24px;
}

.usluga-num {
  font-size: 11px;
  color: rgba(201, 168, 92, 0.35);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.usluga-title {
  font-size: 16px;
  font-weight: 500;
  color: #f0ede8;
  line-height: 1.3;
}

.usluga-text {
  font-size: 13px;
  color: #8a8580;
  line-height: 1.85;
}

.card {
  background: #141414;
  padding: 28px;
  border-top: 1.5px solid #059669;
}

.card-n {
  font-size: 32px;
  font-weight: 200;
  color: #555;
  margin-bottom: 16px;
  line-height: 1;
}

.card h3 {
  font-size: 13px;
  font-weight: 500;
  color: #8a8580;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.card p {
  font-size: 12px;
  color: #8a8580;
  line-height: 1.7;
}

.after {
  background: #111;
  border: 0.5px solid #222;
  border-left: 1.5px solid #c9a85c;
  padding: 28px 32px;
  margin-top: 1px;
}

.after-h {
  font-size: 15px;
  font-weight: 400;
  color: #8a8580;
  margin-bottom: 8px;
}

.after-p {
  font-size: 13px;
  color: #8a8580;
  line-height: 1.85;
}

/* CASE STUDY */
.cs-grid {
  display: block;
}

.cs-text-full {
  margin-bottom: 32px;
}

.cs-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.cs-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #059669;
  margin-bottom: 8px;
}

.cs-h {
  font-size: 20px;
  font-weight: 300;
  color: #f0ede8;
  line-height: 1.3;
  margin-bottom: 12px;
}

.cs-p {
  font-size: 13px;
  color: #8a8580;
  line-height: 1.8;
  margin-bottom: 6px;
}

.cs-ul {
  margin: 8px 0 14px 16px;
}

.cs-ul li {
  font-size: 15px;
  color: #8a8580;
  line-height: 1.9;
}

.met {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  background: transparent;
  margin-bottom: 24px;
  text-align: center;
}

.met-i {
  background: transparent;
  padding: 0;
}

.met-n {
  font-size: 26px;
  font-weight: 300;
  color: #c9a85c;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}

.met-d {
  font-size: 14px;
  color: #8a8580;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.quote {
  background: #1e1e1e;
  border-left: none;
  padding: 24px 28px;
  margin-top: 1px;
  border-radius: 4px;
}

.quote p {
  font-size: 14px;
  color: #8a8580;
  line-height: 1.85;
  font-style: italic;
}

.quote-sig {
  font-size: 10px;
  color: #c9a85c;
  margin-top: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* KLIJENTI */
.clients-section {
  padding: 34px 44px;
  background: radial-gradient(circle at 50% 0%, rgba(201, 168, 92, 0.06), transparent 38%), #0b0b0b;
  border-top: 1px solid #151515;
  border-bottom: 1px solid #151515;
}

.cl-lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a8580;
  text-align: center;
  margin-bottom: 24px;
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.client-logo {
  min-height: 82px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #151515, #101010);
  border: 1px solid #242424;
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.client-logo img {
  display: block;
  max-width: 100%;
  max-height: 48px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: .78;
  transition: opacity .25s ease, transform .25s ease;
}

.client-logo-om img {
  max-height: 38px;
}

.client-logo-text {
  color: #d9d9d9;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .14em;
  opacity: .78;
}

.client-logo:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 168, 92, .45);
  background: linear-gradient(180deg, #181818, #111);
}

.client-logo:hover img,
.client-logo:hover.client-logo-text {
  opacity: 1;
  transform: scale(1.03);
}

/* FORMA */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 12px;
}

.fg label {
  font-size: 10px;
  color: #8a8580;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.fg input,
.fg select,
.fg textarea {
  font-size: 13px;
  padding: 10px 12px;
  border: 0.5px solid #2a2a2a;
  border-bottom: 0.5px solid #3a3a3a;
  background: #111;
  color: #8a8580;
  border-radius: 0;
  outline: none;
}

.fg textarea {
  min-height: 72px;
  resize: none;
}

.fr {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.btn-sub {
  width: 100%;
  background: transparent;
  border: 0.5px solid #c9a85c;
  color: #c9a85c;
  padding: 12px;
  font-size: 11px;
  cursor: pointer;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 6px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #8a8580;
  margin-bottom: 10px;
}

.contact-detail span {
  color: #059669;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* FOOTER */
.ft {
  background: #111;
  padding: 22px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 0.5px solid #1e1e1e;
}

.ft-logo {
  font-size: 14px;
  font-weight: 500;
  color: #f0ede8;
}

.ft-logo span {
  color: #059669;
}

.ft-c {
  font-size: 11px;
  color: #8a8580;
  margin-top: 4px;
}

.bg-abs {
  position: absolute;
  pointer-events: none;
}


/* DODATO: container, responzivnost i mobilna navigacija */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 96px 44px 44px;
}

.hero-content .hero-sub {
  font-size: 15px;
}

body {
  font-size: 16px;
}

.pm {
  font-size: 15px;
}

.usluga-text,
.cs-p,
.after-p,
.fg input,
.fg select,
.fg textarea {
  font-size: 15px;
}

.nav-links a {
  font-size: 13px;
}

@media (max-width: 1024px) {
  .nav {
    padding: 13px 28px;
    gap: 22px;
  }

  .nav-links {
    gap: 18px;
  }

  .hero-content {
    padding: 88px 28px 40px;
  }

  .hero h1 {
    font-size: clamp(36px, 5vw, 46px);
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .inner {
    max-width: 760px;
  }

  .hero-strip {
    padding: 18px 28px;
    flex-wrap: wrap;
    row-gap: 18px;
  }

  .hb-item {
    padding-right: 26px;
    margin-right: 26px;
  }
}

@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  .nav {
    position: sticky;
    align-items: flex-start;
    padding: 14px 18px;
    gap: 14px;
    flex-wrap: wrap;
  }

  .nav-brand {
    width: 100%;
    justify-content: center;
  }

  .nav-links {
    order: 3;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 4px;
  }

  .nav-links a {
    display: block;
    text-align: center;
    padding: 10px 8px;
    border: 0.5px solid #242424;
    background: #141414;
    font-size: 12px;
  }

  .nav-cta {
    order: 2;
    margin: 0 auto;
    padding: 9px 18px;
  }

  .hero {
    min-height: 560px !important;
  }

  .hero-content {
    padding: 72px 18px 34px;
  }

  .hero h1 {
    font-size: 34px;
    line-height: 1.12;
    letter-spacing: -0.6px;
    margin-bottom: 18px;
  }

  .hero-sub {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 28px;
  }

  .badge {
    font-size: 12px;
    margin-bottom: 22px;
  }

  .btns {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-main,
  .btn-sec {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sec {
    padding: 52px 18px;
  }

  .h2 {
    font-size: 25px;
  }

  .pm {
    font-size: 15px;
    line-height: 1.8;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .usluga {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .usluga-title {
    font-size: 17px;
  }

  .usluga-text {
    font-size: 14px;
  }

  .cs-bottom,
  .form-grid,
  .fr {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .met {
    gap: 16px;
  }

  .hero-strip {
    padding: 20px 18px;
    display: block;
  }

  .hb-item {
    border-right: 0;
    border-bottom: 1px solid rgba(201, 168, 92, 0.35);
    padding: 0 0 14px;
    margin: 0 0 14px;
  }

  .hb-item:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .clients-section {
    padding: 30px 18px;
  }

  .client-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .client-logo {
    min-height: 78px;
    padding: 14px;
    border-radius: 16px;
  }

  .client-logo img {
    max-height: 42px;
  }

  .client-logo-om img {
    max-height: 32px;
  }

  .client-logo-text {
    font-size: 11px;
  }

  .ft {
    padding: 22px 18px;
    display: block;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 30px;
  }

  .nav-links {
    grid-template-columns: 1fr;
  }

  .h2 {
    font-size: 23px;
  }
}


/* === SEOzona PHP responsive polish === */
:root {
  --container: 1180px;
}

body.nav-open {
  overflow: hidden;
}

.inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
}

.sec {
  padding-left: 44px;
  padding-right: 44px;
}

.hero {
  padding: 0;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(26, 26, 26, .92) 0%, rgba(26, 26, 26, .72) 35%, rgba(26, 26, 26, .30) 65%, rgba(26, 26, 26, .12) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 112px 0 58px;
}

.nav {
  padding-left: 44px;
  padding-right: 44px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #f0ede8;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 102;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 24px;
  height: 2px;
  background: #f0ede8;
  border-radius: 99px;
  transition: transform .25s ease, opacity .25s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: "";
  position: absolute;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(7px);
}

.nav.is-open .nav-toggle-lines {
  background: transparent;
}

.nav.is-open .nav-toggle-lines::before {
  transform: rotate(45deg);
}

.nav.is-open .nav-toggle-lines::after {
  transform: rotate(-45deg);
}

.nav-cta a,
.btn-main,
.btn-sec {
  text-decoration: none;
}

@media (max-width:1240px) {

  .hero-content,
  .inner {
    max-width: calc(100% - 56px);
  }

  .hero-content {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width:1024px) {
  .inner {
    max-width: calc(100% - 56px);
  }

  .sec {
    padding-left: 28px;
    padding-right: 28px;
  }

  .nav {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-content {
    max-width: calc(100% - 56px);
    padding-top: 92px;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:767px) {
  .nav {
    align-items: center;
    flex-wrap: nowrap;
    padding: 12px 18px;
  }

  .nav-brand {
    width: auto;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu {
    position: fixed;
    top: 58px;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, .98);
    border-top: 1px solid #242424;
    border-bottom: 1px solid #242424;
    padding: 18px;
    display: grid;
    gap: 12px;
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .25s ease;
    z-index: 101;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
  }

  .nav.is-open .nav-menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-links {
    order: initial;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 0;
  }

  .nav-links a {
    display: block;
    text-align: left;
    padding: 13px 14px;
    border: 1px solid #242424;
    background: #181818;
    font-size: 13px;
    color: #f0ede8;
  }

  .nav-cta {
    order: initial;
    width: 100%;
    margin: 0;
    padding: 12px 14px;
  }

  .hero {
    min-height: 620px !important;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(26, 26, 26, .28) 0%, rgba(26, 26, 26, .55) 34%, rgba(26, 26, 26, .94) 100%);
  }

  .hero-media img {
    object-position: center top;
  }

  .hero-content {
    max-width: 100%;
    padding: 86px 18px 38px;
  }

  .inner {
    max-width: 100%;
  }

  .sec {
    padding: 52px 18px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .usluga {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cs-bottom,
  .form-grid,
  .fr {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-strip {
    padding: 20px 18px;
    display: block;
  }

  .ft {
    padding: 22px 18px;
    display: block;
    text-align: center;
  }
}

/** FAQ */

.faq-item {
  border-top: 0.5px solid rgba(201, 168, 92, 0.2);
}

.faq-item:last-child {
  border-bottom: 0.5px solid rgba(201, 168, 92, 0.2);
}

.faq-q {
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-q-text {
  font-size: 17px;
  font-weight: 500;
  color: #f0ede8;
  line-height: 1.4;
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: #c9a85c;
  font-size: 20px;
  line-height: 1;
  transition: transform 0.3s;
  user-select: none;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-a-inner {
  padding: 0 0 20px;
}

.faq-a-inner p {
  font-size: 15px;
  color: #8a8580;
  line-height: 1.85;
  margin-bottom: 10px;
}

.faq-a-inner p:last-child {
  margin-bottom: 0;
}

.faq-a-inner ol {
  margin: 10px 0 10px 16px;
}

.faq-a-inner ol li {
  font-size: 13px;
  color: #8a8580;
  line-height: 1.7;
  margin-bottom: 6px;
}

.faq-item.open .faq-a {
  max-height: 1000px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Success quote block - desktop keeps the same visual structure, mobile is optimized */
.after-success {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px 40px;
}

.after-success .lbl-gold {
  margin-bottom: 8px;
}

.after-success-intro {
  font-size: 14px;
  color: #8a8580;
  line-height: 1.75;
  margin-bottom: 16px;
}

.after-success-quote {
  font-size: 19px;
  font-weight: 300;
  color: #c9a85c;
  line-height: 1.5;
  font-style: italic;
  letter-spacing: -0.3px;
  margin-bottom: 10px;
}

.after-success-author {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a8581;
}

@media (max-width: 640px) {
  .after-success {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 34px 22px 30px;
    margin-top: 28px;
    border: 1px solid rgba(201, 168, 92, 0.35);
    border-left: 1px solid rgba(201, 168, 92, 0.35);
    border-radius: 14px;
    background:
      radial-gradient(circle at top, rgba(201, 168, 92, 0.08), transparent 42%),
      #111;
    text-align: center;
  }

  /* .after-success-content::before {
    content: "“";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #c9a85c;
    color: #111;
    font-family: Georgia, serif;
    font-size: 46px;
    line-height: 1;
    font-weight: 700;
  } */

  .after-success-intro {
    font-size: 19px;
    line-height: 1.55;
    color: #f0ede8;
    max-width: 260px;
    margin: 0 auto 18px;
  }

  .after-success-quote {
    font-size: 20px;
    line-height: 1.55;
    letter-spacing: -0.2px;
    max-width: 280px;
    margin: 0 auto 18px;
  }

  .after-success-quote::before,
  .after-success-quote::after {
    content: "";
    display: block;
    width: 70px;
    height: 1px;
    margin: 0 auto 18px;
    background: rgba(201, 168, 92, 0.75);
  }

  .after-success-quote::after {
    margin: 18px auto 0;
  }

  .after-success-author {
    max-width: 230px;
    margin: 0 auto;
    color: #8a8580;
    font-size: 11px;
    line-height: 1.65;
    letter-spacing: 0.16em;
  }

  .after-success-label {
    width: 100%;
    padding-top: 2px;
  }

  .after-success .lbl-gold {
    margin: 0;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: #c9a85c;
  }

  .after-success .lbl-gold::after {
    content: "";
    display: block;
    width: 64px;
    height: 1px;
    margin: 14px auto 0;
    background: rgba(201, 168, 92, 0.75);
  }
}

/* AJAX kontakt forma */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.contact-form {
  position: relative;
}

.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  align-items: center;
}

.contact-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 0.5px solid #c9a85c;
  color: #c9a85c;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}

.form-status {
  display: none;
  margin: 12px 0 0;
  padding: 12px 14px;
  border: 0.5px solid #2a2a2a;
  background: #111;
  color: #8a8580;
  font-size: 12px;
  line-height: 1.6;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: rgba(5, 150, 105, 0.45);
  color: #d8efe7;
  background: rgba(5, 150, 105, 0.08);
}

.form-status.is-error {
  border-color: rgba(201, 168, 92, 0.55);
  color: #f0dca8;
  background: rgba(201, 168, 92, 0.08);
}

.contact-form.is-loading .btn-sub {
  opacity: .65;
  pointer-events: none;
}

@media (max-width:768px) {
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-call-btn {
    width: 100%;
  }
}

/* Footer centriranje i poravnanje sa ostatkom sajta */

.ft {
  max-width: 1180px;
  margin: 0 auto;
}

@media (max-width:768px) {

  .ft {
    padding: 32px 18px !important;
    text-align: center;
  }

  .ft>div:first-child {
    margin-bottom: 24px;
  }

  .ft-logo {
    justify-content: center;
  }

  .ft p {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .ft>div:last-child {
    text-align: center !important;
  }

  .ft-c {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* === FIX: header/footer full-width background + inner container alignment === */
.nav {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #181818;
  border-bottom: 0.5px solid #242424;
}

.nav-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ft {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: #111;
  border-top: 0.5px solid #1e1e1e;
}

.ft-inner {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  background: transparent;
}

@media (max-width:1240px) {

  .nav-inner,
  .ft-inner {
    max-width: calc(100% - 56px);
  }
}

@media (max-width:1024px) {

  .nav-inner,
  .ft-inner {
    max-width: calc(100% - 56px);
  }
}

@media (max-width:767px) {
  .nav {
    padding: 0;
  }

  .nav-inner {
    max-width: 100%;
    padding: 12px 18px;
    flex-wrap: nowrap;
  }

  .nav-menu {
    top: 58px;
  }

  .ft {
    padding: 0 !important;
    display: block;
    text-align: center;
  }

  .ft-inner {
    max-width: 100%;
    padding: 32px 18px;
    display: block;
    text-align: center;
  }

  .ft-inner>div:first-child {
    margin-bottom: 24px;
  }

  .ft-logo {
    justify-content: center;
  }

  .ft p {
    max-width: 100% !important;
    margin-left: auto;
    margin-right: auto;
  }

  .ft-inner>div:last-child {
    text-align: center !important;
  }

  .ft-c {
    font-size: 13px;
    line-height: 1.8;
  }
}

/** dodao **/
/* Portfolio spacing polish */
.portfolio-grid {
  gap: 28px;
  background: transparent;
}

.pcard {
  border: 1px solid #242424;
  border-radius: 14px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.pcard:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 92, 0.35);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
}

.pcard-info {
  padding: 18px 18px 20px;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .portfolio-grid {
    gap: 22px;
    margin-top: 26px;
  }

  .pcard {
    border-radius: 12px;
  }
}

.client-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 80px;
}

.client-logo a img {
  display: block;
}