/* =========================================================
   Top service tiles
========================================================= */

.dz-production-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.dz-production-tile {
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--dz-line-soft);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025));
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform .35s ease,
    border-color .35s ease,
    background .35s ease,
    box-shadow .35s ease;
}

.dz-production-tile:nth-child(1) {
  background:
    radial-gradient(circle at 20% 80%, rgba(255,102,0,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025));
}

.dz-production-tile:nth-child(2) {
  background:
    radial-gradient(circle at 80% 80%, rgba(140,80,255,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025));
}

.dz-production-tile:nth-child(3) {
  background:
    radial-gradient(circle at 70% 25%, rgba(54,231,255,.15), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025));
}

.dz-production-tile:nth-child(4) {
  background:
    radial-gradient(circle at 70% 80%, rgba(215,255,63,.11), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.025));
}

.dz-production-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255,102,0,.38);
  box-shadow:
    0 22px 70px rgba(0,0,0,.22),
    0 0 28px rgba(255,102,0,.08),
    0 0 42px rgba(54,231,255,.05);
}

.dz-production-tile__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--dz-orange);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 700;
}

.dz-production-tile h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(23px, 2vw, 32px);
  line-height: .96;
  letter-spacing: -.015em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-production-tile p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.5;
}

/* =========================================================
   Intent lane
========================================================= */

.dz-intent-lane {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.dz-intent-card {
  position: relative;
  min-height: 250px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 26px;
  background:
    radial-gradient(circle at 88% 92%, rgba(54,231,255,.09), transparent 36%),
    radial-gradient(circle at 12% 18%, rgba(255,102,0,.09), transparent 30%),
    linear-gradient(145deg, rgba(255,255,255,.070), rgba(255,255,255,.022));
}

.dz-intent-card::before {
  content: "";
  position: absolute;
  right: -48px;
  bottom: -64px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(255,102,0,.10);
  filter: blur(14px);
  pointer-events: none;
}

.dz-intent-card > * {
  position: relative;
  z-index: 1;
}

.dz-intent-card b {
  display: block;
  color: var(--dz-orange);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-intent-card h3 {
  margin: 46px 0 0;
  color: #fff;
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-intent-card p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.66);
  font-size: 13px;
  line-height: 1.6;
}

/* =========================================================
   Editorial split / board
========================================================= */

.dz-editorial-split {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.dz-sticky-note {
  position: sticky;
  top: 100px;
}

.dz-studio-board {
  display: grid;
  gap: 1px;
  border: 1px solid var(--dz-line-soft);
  border-radius: var(--dz-radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,.09);
}

.dz-board-row {
  display: grid;
  grid-template-columns: 82px minmax(170px, 220px) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: clamp(20px, 2.3vw, 30px);
  background: rgba(255,255,255,.045);
}

.dz-board-row__num {
  color: var(--dz-orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.dz-board-row h3 {
  margin: 0 0 9px;
  color: #fff;
  font-size: clamp(21px, 1.8vw, 29px);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-board-row p,
.dz-board-row span {
  margin: 0;
  color: var(--dz-muted);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0;
}

.dz-board-row p {
  max-width: 620px;
}

/* =========================================================
   Manifest service blocks
========================================================= */

.dz-manifest {
  display: grid;
  gap: 12px;
}

.dz-manifest-item {
  display: grid;
  grid-template-columns: 70px minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 3.5vw, 46px);
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid var(--dz-line-soft);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 18%, rgba(255,102,0,.11), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  position: relative;
  overflow: hidden;
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.dz-manifest-item:nth-child(2) {
  background:
    radial-gradient(circle at 16% 18%, rgba(140,80,255,.15), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.dz-manifest-item:nth-child(3) {
  background:
    radial-gradient(circle at 16% 18%, rgba(54,231,255,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.dz-manifest-item:nth-child(4) {
  background:
    radial-gradient(circle at 16% 18%, rgba(255,63,143,.11), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
}

.dz-manifest-item:hover {
  transform: translateY(-3px);
  border-color: rgba(255,102,0,.34);
  box-shadow:
    0 22px 70px rgba(0,0,0,.22),
    0 0 28px rgba(255,102,0,.07),
    0 0 42px rgba(54,231,255,.04);
}

.dz-manifest-item__num {
  color: var(--dz-orange);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .12em;
}

.dz-manifest-item h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: .98;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-manifest-item p {
  margin: 0;
  color: var(--dz-muted);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
}

.dz-mini-list {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}

.dz-mini-list li {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.45;
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 10px;
}

/* =========================================================
   Signal / feature panels
========================================================= */

.dz-feature-panel,
.dz-signal-panel,
.dz-signal-card,
.dz-service-proof,
.dz-story-panel,
.dz-creative-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dz-line-soft);
  border-radius: 34px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255,102,0,.15), transparent 32%),
    radial-gradient(circle at 82% 78%, rgba(54,231,255,.10), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
}

.dz-feature-panel,
.dz-service-proof,
.dz-story-panel {
  padding: clamp(30px, 5vw, 64px);
}

.dz-signal-grid {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 12px;
  align-items: stretch;
}

.dz-signal-panel {
  min-height: 430px;
  padding: clamp(30px, 5vw, 58px);
}

.dz-signal-panel > *,
.dz-feature-panel > *,
.dz-service-proof > *,
.dz-story-panel > * {
  position: relative;
  z-index: 2;
}

/* Mali top-left frame, bez velikog unutrašnjeg kvadrata */
/*.dz-signal-panel::before,
.dz-feature-panel::before,
.dz-service-proof::before,
.dz-story-panel::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: min(42%, 290px);
  height: min(42%, 190px);
  border-top: 1px solid rgba(54,231,255,.30);
  border-left: 1px solid rgba(54,231,255,.30);
  border-right: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
  border-radius: inherit;
  background: transparent;
  pointer-events: none;
  z-index: 1;
}*/

.dz-signal-panel h2 {
  margin: 0;
  color: #fff;
  max-width: 760px;
  font-size: clamp(38px, 5vw, 82px);
  line-height: .94;
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-signal-panel p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.70);
  font-size: 15px;
  line-height: 1.7;
}

.dz-signal-card {
  padding: clamp(22px, 3vw, 34px);
}

.dz-signal-card h3,
.dz-feature-panel h3,
.dz-service-proof h3,
.dz-story-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 48px);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-signal-card p,
.dz-feature-panel p,
.dz-service-proof p,
.dz-story-panel p {
  margin: 18px 0 0;
  color: var(--dz-muted);
  font-size: 15px;
  line-height: 1.65;
}

.dz-signal-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background: rgba(255,255,255,.08);
}

.dz-signal-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  padding: clamp(20px, 2.7vw, 32px);
  background:
    linear-gradient(145deg, rgba(255,255,255,.060), rgba(255,255,255,.020));
}

.dz-signal-item b {
  color: var(--dz-orange);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-signal-item h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1;
  letter-spacing: -.015em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-signal-item p {
  margin: 12px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 13px;
  line-height: 1.6;
}

/* Skidamo stare nepotrebne frame klase */
.dz-feature-card::before,
.dz-signal-card::before,
.dz-service-proof-card::before,
.dz-creative-panel::before,
.dz-manifest-item::before,
.dz-manifest-item::after,
.dz-search-cell::before,
.dz-production-tile::before,
.dz-offer::before {
  display: none !important;
  content: none !important;
}

.dz-panel-frame,
.dz-card-frame,
.dz-inner-frame,
.dz-floating-frame,
.dz-corner-frame {
  display: none !important;
}

/* =========================================================
   Pricing
========================================================= */

.dz-pricing-clean {
  display: grid;
  gap: 34px;
}

.dz-pricing-clean__intro {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.dz-pricing-clean__intro .dz-title {
  max-width: 640px;
}

.dz-pricing-clean__intro .dz-text {
  max-width: 560px;
}

.dz-offer-levels {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 0;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.dz-offer {
  min-height: 300px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 26px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,.05), transparent 38%),
    rgba(255,255,255,.045);
  padding: clamp(22px, 2.4vw, 32px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.dz-offer:hover {
  transform: translateY(-3px);
  border-color: rgba(255,102,0,.34);
  box-shadow:
    0 22px 70px rgba(0,0,0,.22),
    0 0 28px rgba(255,102,0,.07),
    0 0 42px rgba(54,231,255,.04);
}

.dz-offer--featured {
  background:
    radial-gradient(circle at 20% 0%, rgba(255,102,0,.16), transparent 38%),
    rgba(255,255,255,.06);
  border-color: rgba(255,102,0,.24);
}

.dz-offer__label {
  color: var(--dz-orange);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.dz-offer h3 {
  max-width: 100%;
  margin: 24px 0 0;
  color: #fff;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
  font-size: clamp(22px, 1.75vw, 30px);
  line-height: 1.05;
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-offer p {
  max-width: 100%;
  margin: 18px 0 0;
  color: var(--dz-muted);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0;
}

.dz-offer__price {
  margin-top: auto;
  padding-top: 34px;
  color: #fff;
  font-size: clamp(25px, 2.1vw, 34px);
  line-height: 1.05;
  letter-spacing: -.01em;
  font-weight: 900;
}

.dz-offer small {
  display: block;
  margin-top: 18px;
  color: var(--dz-faint);
  font-size: 12px;
  line-height: 1.45;
}

/* =========================================================
   Questions stack
========================================================= */

.dz-question-stack {
  border-top: 1px solid var(--dz-line);
}

.dz-question {
  border-bottom: 1px solid var(--dz-line);
}

.dz-question button {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  color: #fff;
  padding: clamp(22px, 2.7vw, 34px) 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  gap: 30px;
  text-align: left;
  cursor: pointer;
  font-family: Poppins, sans-serif;
  font-size: clamp(21px, 2vw, 32px);
  line-height: 1.08;
  letter-spacing: -.01em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-question button::after {
  content: "+";
  color: var(--dz-orange);
  font-size: 38px;
  line-height: 1;
  text-align: right;
}

.dz-question.is-open button::after {
  content: "–";
}

.dz-question__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.dz-question__content {
  max-width: 820px;
  padding: 0 0 28px;
  color: var(--dz-muted);
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   Read more / recent posts block
========================================================= */

.dz-readmore {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  padding: clamp(28px, 4vw, 46px);
  background:
    radial-gradient(circle at 10% 15%, rgba(255,102,0,.12), transparent 30%),
    radial-gradient(circle at 90% 80%, rgba(54,231,255,.09), transparent 34%),
    rgba(255,255,255,.035);
  position: relative;
  overflow: hidden;
}

.dz-readmore__head {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
  margin-bottom: 30px;
}

.dz-post-links {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.1);
}

.dz-post-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 20px 22px;
  background: rgba(255,255,255,.045);
  color: #fff !important;
  transition: background .22s ease, color .22s ease;
}

.dz-post-link:hover {
  background: rgba(255,102,0,.16);
  color: #fff !important;
}

.dz-post-link__title {
  font-size: clamp(17px, 1.55vw, 24px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 800;
}

.dz-post-link__meta {
  color: rgba(255,255,255,.48);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}

.dz-post-links__empty {
  padding: 20px 22px;
  background: rgba(255,255,255,.045);
  color: rgba(255,255,255,.62);
  font-size: 14px;
}

/* =========================================================
   Portfolio / filter utilities for other pages
========================================================= */

.dz-filterbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dz-filterbar button {
  appearance: none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.72);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.dz-filterbar button:hover,
.dz-filterbar button.is-active {
  color: #111;
  background: var(--dz-orange);
  border-color: var(--dz-orange);
}

.dz-work-card.is-hidden {
  display: none;
}
