/* =========================================================
   Digitizer service page module
   Final controlled version
========================================================= */

/* =========================================================
   Legacy service helpers
========================================================= */

.dz-service-intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.dz-service-section {
  border-top: 1px solid rgba(255,255,255,.11);
}

.dz-service-block {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.dz-service-block__aside {
  position: sticky;
  top: 110px;
}

.dz-service-block__content {
  display: grid;
  gap: var(--dz-gap, 24px);
}

.dz-process {
  counter-reset: dzprocess;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 14px;
}

.dz-process__step {
  position: relative;
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--dz-border, rgba(255,255,255,.12));
  border-radius: var(--dz-radius-md, 22px);
  background: rgba(255,255,255,.045);
}

.dz-process__step:before {
  counter-increment: dzprocess;
  content: counter(dzprocess, decimal-leading-zero);
  display: block;
  margin-bottom: 24px;
  color: var(--dz-orange, #ff6600);
  font-size: 13px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .12em;
}

.dz-process__step b {
  display: block;
  color: #fff;
  font-size: 18px;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.dz-process__step span {
  display: block;
  margin-top: 10px;
  color: var(--dz-muted, rgba(255,255,255,.62));
  font-size: 13px;
  line-height: 1.5;
}

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

.dz-seo-table__row {
  display: grid;
  grid-template-columns: minmax(180px,.45fr) minmax(0,1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.dz-seo-table__row b {
  color: #fff;
  font-size: 15px;
}

.dz-seo-table__row span {
  color: var(--dz-muted, rgba(255,255,255,.62));
  font-size: 15px;
  line-height: 1.6;
}

/* =========================================================
   Core editorial service system
========================================================= */

.dz-page {
  --dz-panel: rgba(255,255,255,.055);
  --dz-panel-strong: rgba(255,255,255,.095);
  --dz-line: rgba(255,255,255,.15);
  --dz-line-soft: rgba(255,255,255,.08);
  --dz-text: #f2f2f2;
  --dz-muted: rgba(255,255,255,.64);
  --dz-faint: rgba(255,255,255,.44);
  --dz-orange: #ff6600;
  --dz-cyan: #36e7ff;
  --dz-violet: #8c50ff;
  --dz-pink: #ff3f8f;
  --dz-lime: #d7ff3f;
  --dz-radius-lg: 34px;
  --dz-radius-md: 22px;
  --dz-radius-sm: 14px;
  --dz-max: 1240px;
  color: var(--dz-text);
  overflow: hidden;
  font-family: Poppins, sans-serif;
}

.dz-page *,
.dz-page *::before,
.dz-page *::after {
  box-sizing: border-box;
}

/* Ne resetujemo globalne CTA linkove */
/*.dz-page a:not(.animated-iz-ideje-services):not(.wpex-lightbox):not(.vc_general) {
  color: inherit;
  text-decoration: none;
}*/
/*.dz-page a:not(.animated-iz-ideje-services):not(.wpex-lightbox):not(.vc_general):not([class*="animated-"]) {
  color: inherit;
  text-decoration: none;
}*/

.dz-section {
  position: relative;
  padding: clamp(50px, 6vw, 92px) 0;
  isolation: isolate;
}

.dz-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .88;
  background:
    radial-gradient(circle at 12% 18%, rgba(255,102,0,.14), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(54,231,255,.10), transparent 30%),
    radial-gradient(circle at 44% 92%, rgba(140,80,255,.10), transparent 34%);
}

.dz-section:nth-of-type(even)::before {
  background:
    radial-gradient(circle at 86% 8%, rgba(255,102,0,.12), transparent 26%),
    radial-gradient(circle at 16% 78%, rgba(140,80,255,.12), transparent 30%),
    radial-gradient(circle at 56% 42%, rgba(54,231,255,.09), transparent 28%);
}

.dz-section--tight {
  padding: clamp(44px, 5vw, 78px) 0;
}

.dz-section--first {
  padding-top: clamp(66px, 8vw, 112px);
}

.dz-container {
  width: min(var(--dz-max), calc(100vw - 44px));
  margin: 0 auto;
}

.dz-container--narrow {
  width: min(1040px, calc(100vw - 44px));
}

.dz-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--dz-orange);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}

.dz-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: .85;
}

.dz-title {
  margin: 0;
  max-width: 900px;
  color: var(--dz-text);
  font-size: clamp(30px, 3.8vw, 58px);
  line-height: .98;
  letter-spacing: -.025em;
  font-weight: 900;
  text-transform: uppercase;
}

.dz-title--xl {
  max-width: 920px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: .94;
  letter-spacing: -.03em;
}

.dz-lead {
  margin: 0;
  max-width: 700px;
  color: rgba(255,255,255,.78);
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 500;
}

.dz-text {
  margin: 0;
  max-width: 660px;
  color: var(--dz-muted);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
}

/* CTA wrapper: samo razmak */
.dz-actions,
.dz-service-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

/* CTA linkovi su kod tebe tekst + klasa.
   Zato vraćamo samo tipografiju iz WPBakery podešavanja,
   bez menjanja backgrounda, bordera, paddinga, radiusa ili hovera. */
/*.dz-page .dz-actions a.animated-iz-ideje-services,
.dz-page .dz-actions a.wpex-lightbox.animated-iz-ideje-services,
.dz-page .dz-service-cta a.animated-iz-ideje-services,
.dz-page .dz-service-cta a.wpex-lightbox.animated-iz-ideje-services {
  font-family: Poppins, sans-serif !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.035em !important;
  line-height: 1 !important;
}*/

/* =========================================================
   Hero
========================================================= */

.dz-editorial-hero {
  min-height: auto;
  display: flex;
  align-items: center;
}

.dz-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1120px;
}

.dz-hero-copy {
  position: relative;
  z-index: 2;
}

.dz-hero-statement {
  margin-top: 30px;
}

/* Desni hero box uklonjen */
.dz-hero-aside {
  display: none !important;
}


/* =========================================================
   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;
}


/* =========================================================
   SEO page accents
========================================================= */

.dz-page--seo {
  background: none !important;
}

.dz-search-map {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
}

.dz-search-cell {
  min-height: 190px;
  grid-column: span 4;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid var(--dz-line-soft);
  background:
    radial-gradient(circle at 14% 20%, rgba(255,102,0,.09), transparent 32%),
    rgba(255,255,255,.05);
  position: relative;
  overflow: hidden;
  transition:
    transform .35s ease,
    border-color .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.dz-search-cell: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-search-cell--wide {
  grid-column: span 8;
}

.dz-search-cell h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 52px);
  line-height: 1;
  letter-spacing: -.02em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-search-cell p {
  margin: 18px 0 0;
  color: var(--dz-muted);
  font-size: 14px;
  line-height: 1.55;
}

/* =========================================================
   Neon border animation - subtle
========================================================= */

@property --dz-neon-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes dzNeonSpin {
  to {
    --dz-neon-angle: 360deg;
  }
}

.dz-studio-board,
.dz-offer--featured,
.dz-search-cell--wide,
.dz-readmore,
.dz-signal-panel,
.dz-feature-panel,
.dz-service-proof,
.dz-story-panel {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

/* Mekši spoljašnji glow */
.dz-studio-board::after,
.dz-offer--featured::after,
.dz-search-cell--wide::after,
.dz-readmore::after,
.dz-signal-panel::after,
.dz-feature-panel::after,
.dz-service-proof::after,
.dz-story-panel::after {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  opacity: .18;
  filter: blur(7px);
  background:
    conic-gradient(
      from var(--dz-neon-angle, 0deg),
      rgba(255,102,0,0) 0deg,
      rgba(255,102,0,.34) 42deg,
      rgba(255,255,255,.12) 72deg,
      rgba(54,231,255,.30) 116deg,
      rgba(140,80,255,.24) 160deg,
      rgba(255,63,143,.16) 205deg,
      rgba(255,102,0,0) 260deg,
      rgba(255,102,0,0) 360deg
    );
  animation: dzNeonSpin 11s linear infinite;
}

/* Tanki diskretni border */
.dz-studio-board::before,
.dz-offer--featured::before,
.dz-search-cell--wide::before,
.dz-readmore::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  border-radius: inherit;
  padding: 1px;
  pointer-events: none;
  opacity: .22;
  background:
    conic-gradient(
      from var(--dz-neon-angle, 0deg),
      rgba(255,102,0,0) 0deg,
      rgba(255,102,0,.38) 40deg,
      rgba(255,255,255,.14) 74deg,
      rgba(54,231,255,.34) 120deg,
      rgba(140,80,255,.24) 176deg,
      rgba(255,63,143,.18) 218deg,
      rgba(255,102,0,0) 276deg,
      rgba(255,102,0,0) 360deg
    );
  animation: dzNeonSpin 11s linear infinite;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.dz-signal-panel,
.dz-feature-panel,
.dz-service-proof,
.dz-story-panel {
  box-shadow:
    0 0 0 1px rgba(255,255,255,.05),
    0 26px 80px rgba(0,0,0,.22),
    0 0 38px rgba(54,231,255,.04);
}

/* =========================================================
   Page-specific color mood
========================================================= */

.dz-page--production {
  --dz-service-accent: #ff6600;
}

.dz-page--seo {
  --dz-service-accent: #36e7ff;
}

.dz-page--seo .dz-kicker,
.dz-page--seo .dz-board-row__num,
.dz-page--seo .dz-production-tile__top,
.dz-page--seo .dz-manifest-item__num,
.dz-page--seo .dz-offer__label {
  color: var(--dz-orange);
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 1180px) {
  .dz-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-production-strip,
  .dz-offer-levels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-intent-lane {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-manifest-item {
    grid-template-columns: 54px minmax(0, 1fr);
  }

  .dz-manifest-item > div:last-child {
    grid-column: 2;
  }

  .dz-board-row {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 18px;
  }

  .dz-board-row > span {
    grid-column: 2;
    margin-top: 4px;
  }

  .dz-signal-grid {
    grid-template-columns: 1fr;
  }

  .dz-signal-panel {
    min-height: 360px;
  }
}

@media (max-width: 900px) {
  .dz-service-intro,
  .dz-service-block,
  .dz-hero-grid,
  .dz-editorial-split,
  .dz-pricing-clean__intro,
  .dz-readmore__head {
    grid-template-columns: 1fr;
  }

  .dz-service-block__aside,
  .dz-sticky-note {
    position: relative;
    top: auto;
  }

  .dz-board-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dz-board-row > span {
    grid-column: auto;
    margin-top: 0;
  }

  .dz-search-cell,
  .dz-search-cell--wide {
    grid-column: span 12;
  }
}

@media (max-width: 680px) {
  .dz-container,
  .dz-container--narrow {
    width: min(100% - 28px, var(--dz-max));
  }

  .dz-section {
    padding: 54px 0;
  }

  .dz-title--xl {
    font-size: clamp(38px, 11vw, 52px);
  }

  .dz-title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .dz-process,
  .dz-production-strip,
  .dz-offer-levels,
  .dz-intent-lane {
    grid-template-columns: 1fr;
  }

  .dz-production-tile {
    min-height: 190px;
  }

  .dz-intent-card {
    min-height: 220px;
  }

  .dz-manifest-item {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .dz-manifest-item > div:last-child {
    grid-column: auto;
  }

  .dz-signal-panel {
    min-height: auto;
    padding: 26px;
  }

  .dz-signal-panel h2 {
    font-size: clamp(34px, 10vw, 52px);
  }

  .dz-signal-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dz-question button {
    font-size: 24px;
  }

  .dz-post-link {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dz-studio-board::after,
  .dz-offer--featured::after,
  .dz-search-cell--wide::after,
  .dz-readmore::after,
  .dz-signal-panel::after,
  .dz-feature-panel::after,
  .dz-service-proof::after,
  .dz-story-panel::after {
    opacity: .12;
    filter: blur(6px);
  }

  .dz-studio-board::before,
  .dz-offer--featured::before,
  .dz-search-cell--wide::before,
  .dz-readmore::before {
    opacity: .16;
  }
}


/* Animation 01: subtle breathing glow */
.dz-studio-board,
.dz-signal-panel,
.dz-readmore,
.dz-offer--featured {
  animation: dzSoftGlow 7s ease-in-out infinite;
}

@keyframes dzSoftGlow {
  0%, 100% {
    box-shadow:
      0 0 0 1px rgba(255,255,255,.05),
      0 24px 80px rgba(0,0,0,.22),
      0 0 22px rgba(255,102,0,.035),
      0 0 34px rgba(54,231,255,.025);
  }

  50% {
    box-shadow:
      0 0 0 1px rgba(255,255,255,.08),
      0 28px 90px rgba(0,0,0,.26),
      0 0 38px rgba(255,102,0,.075),
      0 0 54px rgba(54,231,255,.055);
  }
}


/* Animation 03: soft floating top tiles */
.dz-production-tile {
  animation: dzTileFloat 8s ease-in-out infinite;
}

.dz-production-tile:nth-child(2) {
  animation-delay: .8s;
}

.dz-production-tile:nth-child(3) {
  animation-delay: 1.6s;
}

.dz-production-tile:nth-child(4) {
  animation-delay: 2.4s;
}

@keyframes dzTileFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-4px);
  }
}

.dz-production-tile:hover {
  animation-play-state: paused;
}

/* Animation 04: accent pulse */
.dz-board-row__num,
.dz-manifest-item__num,
.dz-production-tile__top span:first-child,
.dz-offer__label {
  animation: dzAccentPulse 5.5s ease-in-out infinite;
}

@keyframes dzAccentPulse {
  0%, 100% {
    opacity: .78;
    text-shadow: 0 0 0 rgba(255,102,0,0);
  }

  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(255,102,0,.28);
  }
}


/* =========================================================
   Digitizer Service Pages — Production page
   Uses shared editorial/service components from core/components.
========================================================= */

.dz-page--production {
  --dz-service-accent: #ff6600;
}


/* =========================================================
   Digitizer Service Pages — Graphic Design page
   Clean final version for approved graphic design HTML
========================================================= */

/* =========================================================
   Graphic Design page v2
   Isolated with dg2-* classes
========================================================= */

.dz-page--graphic {
  --dg2-gold: #d6a93d;
  --dg2-cream: #f4ead2;
  --dg2-orange: #ff6600;
  --dg2-cyan: #36e7ff;
  --dg2-dark: #101010;
  --dg2-line: rgba(255,255,255,.12);
  --dg2-soft: rgba(255,255,255,.065);
  background: none !important;
}

/* Serbian word protection */
.dz-page--graphic h1,
.dz-page--graphic h2,
.dz-page--graphic h3,
.dz-page--graphic strong,
.dz-page--graphic .dz-title,
.dz-page--graphic .dg2-title,
.dz-page--graphic .dg2-price-card h3 {
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
  text-wrap: balance;
}

/* Different mood than SEO / Production */
.dz-page--graphic .dz-section::before {
  opacity: .9;
  background:
    radial-gradient(circle at 10% 18%, rgba(214,169,61,.18), transparent 30%),
    radial-gradient(circle at 88% 20%, rgba(255,102,0,.11), transparent 30%),
    radial-gradient(circle at 52% 92%, rgba(140,80,255,.10), transparent 34%);
}

.dz-page--graphic .dz-section:nth-of-type(even)::before {
  background:
    radial-gradient(circle at 84% 12%, rgba(244,234,210,.10), transparent 28%),
    radial-gradient(circle at 16% 78%, rgba(214,169,61,.12), transparent 30%),
    radial-gradient(circle at 62% 46%, rgba(54,231,255,.075), transparent 28%);
}

/* Hero */
.dg2-hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.dg2-hero-copy {
  position: relative;
  z-index: 2;
}

.dg2-hero-copy .dz-title--xl {
  max-width: 860px;
}

.dg2-hero-lab {
  position: relative;
  min-height: 620px;
  perspective: 1200px;
}

.dg2-logo-mock {
  position: absolute;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 12%, rgba(214,169,61,.18), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  box-shadow:
    0 32px 90px rgba(0,0,0,.34),
    0 0 46px rgba(214,169,61,.055);
  animation: dg2Float 8s ease-in-out infinite;
}

.dg2-logo-mock img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.32));
}

.dg2-logo-mock--hero-main {
  width: 430px;
  height: 430px;
  right: 56px;
  top: 28px;
  border-radius: 36px;
}

.dg2-logo-mock--hero-wide {
  width: 540px;
  height: 170px;
  left: 0;
  top: 255px;
  animation-delay: .8s;
}

.dg2-logo-mock--hero-small {
  width: 240px;
  height: 190px;
  right: 0;
  bottom: 34px;
  animation-delay: 1.5s;
}

.dg2-logo-mock--hero-card {
  width: 260px;
  height: 170px;
  left: 80px;
  bottom: 28px;
  animation-delay: 2.1s;
}

@keyframes dg2Float {
  0%, 100% {
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
  }

  50% {
    transform: translateY(-10px) rotateX(1deg) rotateY(-1.2deg);
  }
}

/* Capability map */
.dg2-capabilities {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
  margin-top: 36px;
}

.dg2-capability {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 18%, rgba(214,169,61,.13), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.022));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dg2-capability b {
  color: var(--dg2-gold);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.dg2-capability strong {
  display: block;
  color: #fff;
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.04;
  text-transform: uppercase;
  font-weight: 900;
}

.dg2-capability span {
  display: block;
  color: rgba(255,255,255,.62);
  font-size: 12px;
  line-height: 1.45;
}

/* Process */
.dg2-process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dg2-process-step {
  min-height: 230px;
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dg2-process-step b {
  color: var(--dg2-gold);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.dg2-process-step h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(20px, 1.6vw, 27px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
}

.dg2-process-step p {
  margin: 18px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.55;
}

/* Pricing */
.dg2-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.dg2-price-card {
  min-height: 330px;
  padding: clamp(26px, 3vw, 40px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.11);
  background:
    radial-gradient(circle at 20% 0%, rgba(214,169,61,.12), transparent 40%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  display: flex;
  flex-direction: column;
}

.dg2-price-card--featured {
  border-color: rgba(214,169,61,.34);
  box-shadow:
    0 0 0 1px rgba(214,169,61,.08),
    0 26px 80px rgba(0,0,0,.22),
    0 0 34px rgba(214,169,61,.07);
}

.dg2-price-card b {
  color: var(--dg2-gold);
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.dg2-price-card h3 {
  margin: 28px 0 0;
  color: #fff;
  font-size: clamp(30px, 2.6vw, 46px);
  line-height: 1.02;
  text-transform: uppercase;
  font-weight: 900;
}

.dg2-price-card p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255,255,255,.64);
  font-size: 14px;
  line-height: 1.65;
}

.dg2-price-card strong {
  display: block;
  margin-top: auto;
  padding-top: 36px;
  color: #fff;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 1;
  font-weight: 900;
}

.dg2-price-card small {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,.46);
  font-size: 12px;
  line-height: 1.45;
}


/* Responsive */
@media (max-width: 1180px) {
  .dg2-hero,
  .dg2-portfolio-head {
    grid-template-columns: 1fr;
  }

  .dg2-hero-lab {
    min-height: 540px;
  }

  .dg2-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dg2-hero-lab {
    min-height: auto;
    display: grid;
    gap: 12px;
  }

  .dg2-logo-mock,
  .dg2-logo-mock--hero-main,
  .dg2-logo-mock--hero-wide,
  .dg2-logo-mock--hero-small,
  .dg2-logo-mock--hero-card {
    position: relative;
    inset: auto;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    min-height: 220px;
    height: 220px;
    transform: none;
    animation: none;
    display: flex;
  }

  .dg2-capabilities,
  .dg2-process,
  .dg2-price-grid {
    grid-template-columns: 1fr;
  }

  .dg2-price-card h3 {
    font-size: clamp(28px, 9vw, 40px);
  }
}

/* =========================================================
   GRAPHIC DESIGN – BRAND BOOK + MOCKUP SECTIONS
   ========================================================= */

.dg3-shell{
  width:min(1280px, calc(100% - 48px));
  margin:0 auto;
}

.dg3-shell--mockup{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(320px, .92fr);
  gap:28px;
  align-items:stretch;
}

.dg3-brandbook-section,
.dg3-mockup-section{
  position:relative;
  padding:40px 0 10px;
}

.dg3-kicker{
  display:flex;
  align-items:center;
  gap:12px;
  margin:0 0 16px;
  color:#ff7a00;
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.dg3-kicker::before{
  content:"";
  width:28px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg, #ff7a00 0%, rgba(255,122,0,.3) 100%);
}

.dg3-title{
  margin:0;
  color:#fff;
  font-family:"Poppins", sans-serif;
  font-weight:900;
  letter-spacing:-0.045em;
  text-transform:uppercase;
  line-height:.94;
}

.dg3-title--wide{
  max-width:1100px;
  font-size:clamp(40px, 7vw, 86px);
}

.dg3-copy{
  color:rgba(255,255,255,.78);
  font-size:16px;
  line-height:1.8;
}

.dg3-copy p{
  margin:0 0 18px;
}

.dg3-copy p:last-child{
  margin-bottom:0;
}

.dg3-copy--wide{
  max-width:none;
  margin:22px 0 0;
}

.dg3-brandbook-visual{
  position:relative;
  min-height:540px;
  margin-top:34px;
}

.dg3-brandbook-card{
  position:absolute;
  border-radius:28px;
  background:rgba(244,239,228,.92);
  box-shadow:
    0 28px 60px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.55);
  color:#111;
  overflow:hidden;
}

.dg3-brandbook-card--front{
  z-index:2;
  width:min(760px, 90%);
  left:5%;
  top:32px;
  padding:42px 38px 34px;
  transform:rotate(-3deg);
}

.dg3-brandbook-card--back{
  z-index:1;
  width:min(640px, 84%);
  right:6%;
  top:58px;
  padding:42px 34px 34px;
  transform:rotate(4deg);
  opacity:.88;
  background:rgba(244,239,228,.82);
}

.dg3-brandbook-mini{
  display:block;
  margin-bottom:22px;
  color:#b07b13;
  font-size:13px;
  line-height:1;
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.dg3-brandbook-card h3{
  margin:0 0 18px;
  max-width:560px;
  font-family:"Poppins", sans-serif;
  font-size:clamp(40px, 5.2vw, 78px);
  line-height:.94;
  font-weight:900;
  letter-spacing:-0.05em;
  text-transform:uppercase;
  color:#0b0c10;
}

.dg3-brandbook-card--back h3{
  max-width:460px;
  color:rgba(17,17,17,.88);
}

.dg3-brandbook-card p{
  max-width:520px;
  margin:0 0 22px;
  color:rgba(17,17,17,.72);
  font-size:17px;
  line-height:1.75;
}

.dg3-brandbook-lines{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.dg3-brandbook-lines span{
  display:block;
  height:8px;
  border-radius:999px;
  background:rgba(24,24,24,.12);
}

.dg3-brandbook-lines span:nth-child(1){ width:52%; }
.dg3-brandbook-lines span:nth-child(2){ width:68%; }
.dg3-brandbook-lines span:nth-child(3){ width:60%; }

.dg3-brandbook-palette{
  display:flex;
  gap:12px;
  margin-top:28px;
}

.dg3-brandbook-palette span{
  width:74px;
  height:46px;
  border-radius:12px;
  box-shadow:inset 0 0 0 1px rgba(0,0,0,.08);
}

.dg3-brandbook-palette .is-black{ background:#0b0d11; }
.dg3-brandbook-palette .is-gold{ background:#d9af43; }
.dg3-brandbook-palette .is-ivory{ background:#efe5ce; }
.dg3-brandbook-palette .is-orange{ background:#ff7600; }

/* ---------- 1. Brand book: manje preklapanja, čitljivije kartice ---------- */

.dz-page--graphic .dg3-brandbook-visual {
  min-height: auto !important;
  margin-top: 44px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 18px;
  align-items: stretch;
}

.dz-page--graphic .dg3-brandbook-card,
.dz-page--graphic .dg3-brandbook-card--front,
.dz-page--graphic .dg3-brandbook-card--back {
  position: relative !important;
  inset: auto !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  width: 100% !important;
  min-height: 430px;
  opacity: 1 !important;
}

.dz-page--graphic .dg3-brandbook-card--front {
  transform: rotate(-1.5deg) !important;
  z-index: 2;
}

.dz-page--graphic .dg3-brandbook-card--back {
  transform: rotate(1.5deg) !important;
  z-index: 1;
  background: rgba(244,239,228,.84);
}

.dz-page--graphic .dg3-brandbook-card h3 {
  max-width: 100%;
  font-size: clamp(36px, 4.2vw, 66px);
  line-height: .95;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.dz-page--graphic .dg3-brandbook-card--back h3 {
  color: rgba(17,17,17,.86);
}

/* =========================================================
   Graphic design final corrections
   Primena identiteta + Portfolio mockup images
========================================================= */

/* Primena identiteta: stabilno, jedno ispod drugog */
.dz-page--graphic .dgf-application-section {
  position: relative;
  padding: clamp(62px, 7vw, 110px) 0;
}

.dz-page--graphic .dgf-application-shell {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.dz-page--graphic .dgf-application-head {
  max-width: 1120px;
  margin-bottom: 38px;
}

.dz-page--graphic .dgf-application-head .dz-title {
  max-width: 1040px;
}

.dz-page--graphic .dgf-application-text {
  max-width: 940px;
  margin-top: 26px;
  color: rgba(255,255,255,.72);
  font-size: 16px;
  line-height: 1.8;
}

.dz-page--graphic .dgf-application-text p {
  margin: 0 0 18px;
}

.dz-page--graphic .dgf-application-text p:last-child {
  margin-bottom: 0;
}

.dz-page--graphic .dgf-application-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.dz-page--graphic .dgf-application-stage {
  position: relative;
  min-height: 620px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(214,169,61,.15), transparent 34%),
    radial-gradient(circle at 86% 78%, rgba(54,231,255,.08), transparent 32%),
    linear-gradient(145deg, rgba(255,255,255,.072), rgba(255,255,255,.024));
}

.dz-page--graphic .dgf-application-stage-text {
  position: relative;
  z-index: 4;
  padding: clamp(30px, 5vw, 56px);
  max-width: 760px;
}

.dz-page--graphic .dgf-application-stage-text h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: .96;
  letter-spacing: -.035em;
  text-transform: uppercase;
  font-weight: 900;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.dz-page--graphic .dgf-application-stage-text p {
  max-width: 600px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  line-height: 1.65;
}

/* CSS mockup u Primena identiteta, bez slika */
.dz-page--graphic .dgf-paper {
  position: absolute;
  right: 42px;
  bottom: -56px;
  width: 410px;
  min-height: 480px;
  padding: 34px;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  color: #111;
  transform: rotate(4deg);
  box-shadow: 0 36px 110px rgba(0,0,0,.38);
}

.dz-page--graphic .dgf-paper::before {
  content: "";
  display: block;
  width: 140px;
  height: 22px;
  border-radius: 999px;
  background: #111;
  margin-bottom: 46px;
}

.dz-page--graphic .dgf-paper span {
  display: block;
  height: 8px;
  margin: 12px 0;
  border-radius: 999px;
  background: rgba(0,0,0,.13);
}

.dz-page--graphic .dgf-paper span:nth-child(1) { width: 90%; }
.dz-page--graphic .dgf-paper span:nth-child(2) { width: 74%; }
.dz-page--graphic .dgf-paper span:nth-child(3) { width: 84%; }
.dz-page--graphic .dgf-paper span:nth-child(4) { width: 58%; }

.dz-page--graphic .dgf-card-stack {
  position: absolute;
  left: 42px;
  bottom: 56px;
  width: 320px;
  height: 190px;
  z-index: 5;
}

.dz-page--graphic .dgf-business-card {
  position: absolute;
  inset: 0;
  padding: 24px;
  border-radius: 22px;
  background: #111;
  color: #fff;
  box-shadow: 0 24px 80px rgba(0,0,0,.32);
}

.dz-page--graphic .dgf-business-card:first-child {
  transform: rotate(-8deg) translate(-18px, 10px);
  background: #f4ead2;
  color: #111;
}

.dz-page--graphic .dgf-business-card:last-child {
  transform: rotate(3deg);
}

.dz-page--graphic .dgf-business-card strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-page--graphic .dgf-business-card span {
  display: block;
  margin-top: 44px;
  opacity: .64;
  font-size: 12px;
  line-height: 1.5;
}

.dz-page--graphic .dgf-application-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.dz-page--graphic .dgf-application-item {
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 20% 0%, rgba(214,169,61,.10), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.065), rgba(255,255,255,.02));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.dz-page--graphic .dgf-application-item b {
  color: #d6a93d;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 900;
}

.dz-page--graphic .dgf-application-item h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(19px, 1.5vw, 26px);
  line-height: 1.05;
  text-transform: uppercase;
  font-weight: 900;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: none !important;
}

.dz-page--graphic .dgf-application-item p {
  margin: 14px 0 0;
  color: rgba(255,255,255,.62);
  font-size: 13px;
  line-height: 1.6;
}

/* Portfolio identiteta: ovde idu nove mockup slike */
.dz-page--graphic .dgf-portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 46px;
}

.dz-page--graphic .dgf-portfolio-mockup {
  position: relative;
  min-height: 300px;
  grid-column: span 4;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  box-shadow:
    0 28px 90px rgba(0,0,0,.30),
    0 0 38px rgba(214,169,61,.035);
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.dz-page--graphic .dgf-portfolio-mockup:hover {
  transform: translateY(-5px);
  border-color: rgba(214,169,61,.34);
  box-shadow:
    0 34px 115px rgba(0,0,0,.42),
    0 0 48px rgba(214,169,61,.09);
}

.dz-page--graphic .dgf-portfolio-mockup img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.dz-page--graphic .dgf-portfolio-mockup--large {
  grid-column: span 6;
  min-height: 430px;
}

.dz-page--graphic .dgf-portfolio-caption {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(12px);
  font-size: 11px;
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}

@media (max-width: 1180px) {
  .dz-page--graphic .dgf-application-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dz-page--graphic .dgf-portfolio-mockup,
  .dz-page--graphic .dgf-portfolio-mockup--large,
  .dz-page--graphic .dgf-portfolio-mockup--wide,
  .dz-page--graphic .dgf-portfolio-mockup--tall {
    grid-column: span 6;
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .dz-page--graphic .dgf-application-shell {
    width: min(100%, calc(100% - 28px));
  }

  .dz-page--graphic .dgf-application-stage {
    min-height: 660px;
  }

  .dz-page--graphic .dgf-paper {
    width: calc(100% - 44px);
    right: 22px;
  }

  .dz-page--graphic .dgf-card-stack {
    left: 22px;
    width: calc(100% - 44px);
  }

  .dz-page--graphic .dgf-application-list {
    grid-template-columns: 1fr;
  }

  .dz-page--graphic .dgf-portfolio-gallery {
    grid-template-columns: 1fr;
  }

  .dz-page--graphic .dgf-portfolio-mockup,
  .dz-page--graphic .dgf-portfolio-mockup--large,
  .dz-page--graphic .dgf-portfolio-mockup--wide,
  .dz-page--graphic .dgf-portfolio-mockup--tall {
    grid-column: span 1;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .dz-page--graphic .dgf-portfolio-mockup img {
    min-height: 0;
    height: 100%;
  }
}

/* =========================================================
   Graphic design portfolio gallery - final crop/fill polish
========================================================= */

/* Portfolio grid: slike moraju da pune kartice */
.dz-page--graphic .dgf-portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  margin-top: 46px;
  align-items: stretch;
}

/* Osnovna kartica */
.dz-page--graphic .dgf-portfolio-mockup {
  position: relative;
  grid-column: span 4;
  min-height: 330px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  box-shadow:
    0 26px 80px rgba(0,0,0,.30),
    0 0 34px rgba(214,169,61,.035);
  cursor: zoom-in;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

/* Slike u gridu seku se planski i pune prostor */
.dz-page--graphic .dgf-portfolio-mockup img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover !important;
  object-position: center center;
  padding: 0 !important;
  transform: scale(1.001);
  transition:
    transform .45s ease,
    filter .35s ease;
}

/* Hover */
.dz-page--graphic .dgf-portfolio-mockup:hover {
  transform: translateY(-5px);
  border-color: rgba(214,169,61,.34);
  box-shadow:
    0 34px 110px rgba(0,0,0,.42),
    0 0 48px rgba(214,169,61,.09);
}

.dz-page--graphic .dgf-portfolio-mockup:hover img {
  transform: scale(1.045);
  filter: brightness(1.05) contrast(1.03);
}

/* Caption tekst ne treba preko slika */
.dz-page--graphic .dgf-portfolio-caption {
  display: none !important;
}

/* Horizontal portfolio cards only */
.dz-page--graphic .dgf-portfolio-mockup--large {
  grid-column: span 6;
  min-height: 430px;
}

/* Fino podešavanje konkretnih slika ako neka ima bitan logo gore/dole */
.dz-page--graphic .dgf-portfolio-mockup:nth-child(1) img {
  object-position: center center;
}

.dz-page--graphic .dgf-portfolio-mockup:nth-child(2) img {
  object-position: center center;
}

.dz-page--graphic .dgf-portfolio-mockup:nth-child(3) img {
  object-position: center center;
}

.dz-page--graphic .dgf-portfolio-mockup:nth-child(4) img {
  object-position: center center;
}

.dz-page--graphic .dgf-portfolio-mockup:nth-child(5) img,
.dz-page--graphic .dgf-portfolio-mockup:nth-child(6) img,
.dz-page--graphic .dgf-portfolio-mockup:nth-child(7) img,
.dz-page--graphic .dgf-portfolio-mockup:nth-child(8) img,
.dz-page--graphic .dgf-portfolio-mockup:nth-child(9) img,
.dz-page--graphic .dgf-portfolio-mockup:nth-child(10) img,
.dz-page--graphic .dgf-portfolio-mockup:nth-child(11) img,
.dz-page--graphic .dgf-portfolio-mockup:nth-child(12) img {
  object-position: center center;
}

/* Popup mora da prikazuje celu sliku */
.dgf-lightbox__image {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain !important;
}

/* Tablet */
@media (max-width: 1180px) {
  .dz-page--graphic .dgf-portfolio-mockup,
  .dz-page--graphic .dgf-portfolio-mockup--large {
    grid-column: span 6;
    min-height: 360px;
  }
}

/* Mobile */
@media (max-width: 760px) {
  .dz-page--graphic .dgf-portfolio-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dz-page--graphic .dgf-portfolio-mockup,
  .dz-page--graphic .dgf-portfolio-mockup--large {
    grid-column: span 1;
    min-height: auto;
    aspect-ratio: 4 / 3;
  }

  .dz-page--graphic .dgf-portfolio-mockup img {
    min-height: 0;
    height: 100%;
  }
}

/* 3. Lightbox popup za portfolio mockup slike */
.dgf-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 54px);
  background: rgba(0,0,0,.82);
  backdrop-filter: blur(18px);
}

.dgf-lightbox.is-open {
  display: flex;
}

.dgf-lightbox__inner {
  position: relative;
  width: min(1180px, 100%);
  max-height: 92vh;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  background:
    radial-gradient(circle at 20% 0%, rgba(214,169,61,.12), transparent 34%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  box-shadow:
    0 40px 140px rgba(0,0,0,.65),
    0 0 60px rgba(214,169,61,.08);
}

.dgf-lightbox__image {
  display: block;
  width: 100%;
  max-height: 92vh;
  object-fit: contain;
}

.dgf-lightbox__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 999px;
  background: rgba(0,0,0,.56);
  color: #fff;
  font-size: 30px;
  line-height: 42px;
  text-align: center;
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, border-color .25s ease;
}

.dgf-lightbox__close:hover {
  background: rgba(255,102,0,.88);
  border-color: rgba(255,255,255,.34);
  transform: rotate(90deg);
}

@media (max-width: 760px) {
  .dz-page--graphic .dgf-card-stack {
    left: auto !important;
    right: 22px !important;
    bottom: 48px !important;
    width: min(300px, calc(100% - 70px)) !important;
  }

  .dz-page--graphic .dgf-paper {
    right: 22px !important;
    width: calc(100% - 44px) !important;
  }

  .dgf-lightbox {
    padding: 14px;
  }

  .dgf-lightbox__inner {
    border-radius: 22px;
  }

  .dgf-lightbox__close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 28px;
    line-height: 38px;
  }
}

/* =========================================================
   Graphic Design — Primena identiteta mobile/tablet fix
   dgf-paper minimalan na manjim ekranima
========================================================= */

@media (max-width: 991px) {
  .dz-page--graphic .dgf-application-stage {
    min-height: auto !important;
    padding-bottom: 360px !important;
  }

  .dz-page--graphic .dgf-application-stage-text {
    position: relative !important;
    z-index: 10 !important;
    max-width: 100% !important;
    padding-bottom: 0 !important;
  }

  .dz-page--graphic .dgf-application-stage-text p {
    max-width: 100% !important;
  }

  .dz-page--graphic .dgf-paper {
    right: 22px !important;
    bottom: -70px !important;
    width: min(360px, 78%) !important;
    min-height: 340px !important;
    padding: 26px !important;
    opacity: .82 !important;
    transform: rotate(3deg) !important;
    z-index: 2 !important;
  }

  .dz-page--graphic .dgf-card-stack {
    right: 36px !important;
    left: auto !important;
    bottom: 42px !important;
    width: min(280px, 64%) !important;
    height: 160px !important;
    z-index: 4 !important;
  }
}

@media (max-width: 640px) {
  .dz-page--graphic .dgf-application-stage {
    padding-bottom: 300px !important;
  }

  .dz-page--graphic .dgf-application-stage-text {
    padding: 28px 22px 0 !important;
  }

  .dz-page--graphic .dgf-application-stage-text h2 {
    font-size: clamp(34px, 10vw, 52px) !important;
    line-height: .98 !important;
  }

  .dz-page--graphic .dgf-application-stage-text p {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .dz-page--graphic .dgf-paper {
    right: 12px !important;
    bottom: -64px !important;
    width: min(320px, 72%) !important;
    min-height: 270px !important;
    padding: 22px !important;
    opacity: .72 !important;
  }

  .dz-page--graphic .dgf-paper::before {
    width: 110px !important;
    height: 16px !important;
    margin-bottom: 34px !important;
  }

  .dz-page--graphic .dgf-paper span {
    height: 6px !important;
    margin: 10px 0 !important;
  }

  .dz-page--graphic .dgf-card-stack {
    right: 18px !important;
    bottom: 34px !important;
    width: min(250px, 66%) !important;
    height: 138px !important;
  }

  .dz-page--graphic .dgf-business-card {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  .dz-page--graphic .dgf-business-card strong {
    font-size: 17px !important;
  }

  .dz-page--graphic .dgf-business-card span {
    margin-top: 28px !important;
    font-size: 11px !important;
    line-height: 1.35 !important;
  }
}

@media (max-width: 460px) {
  .dz-page--graphic .dgf-application-stage {
    padding-bottom: 260px !important;
  }

  .dz-page--graphic .dgf-paper {
    width: 68% !important;
    min-height: 230px !important;
    opacity: .58 !important;
  }

  .dz-page--graphic .dgf-card-stack {
    width: 64% !important;
    height: 124px !important;
    bottom: 28px !important;
  }
}


/* =========================================================
   GRAPHIC DESIGN — restore final approved layout after split
   MUST stay at the end of this file
========================================================= */

/* Brand book: on tablets and small laptops the two cards must stack, not squeeze side-by-side */
@media (max-width: 1180px) {
  body .dz-page.dz-page--graphic .dg3-brandbook-visual {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    min-height: auto !important;
    margin-top: 32px !important;
  }

  body .dz-page.dz-page--graphic .dg3-brandbook-card,
  body .dz-page.dz-page--graphic .dg3-brandbook-card--front,
  body .dz-page.dz-page--graphic .dg3-brandbook-card--back {
    position: relative !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    padding: 30px 26px 28px !important;
    transform: none !important;
    opacity: 1 !important;
  }

  body .dz-page.dz-page--graphic .dg3-brandbook-card h3 {
    max-width: 100% !important;
    font-size: clamp(32px, 7.2vw, 58px) !important;
    line-height: 1 !important;
    letter-spacing: -0.035em !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
  }

  body .dz-page.dz-page--graphic .dg3-brandbook-card p {
    max-width: 100% !important;
    font-size: 15px !important;
    line-height: 1.65 !important;
  }

  body .dz-page.dz-page--graphic .dg3-brandbook-lines {
    max-width: 320px !important;
  }

  body .dz-page.dz-page--graphic .dg3-brandbook-palette {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 560px) {
  body .dz-page.dz-page--graphic .dg3-brandbook-card,
  body .dz-page.dz-page--graphic .dg3-brandbook-card--front,
  body .dz-page.dz-page--graphic .dg3-brandbook-card--back {
    padding: 24px 20px 22px !important;
    border-radius: 24px !important;
  }

  body .dz-page.dz-page--graphic .dg3-brandbook-card h3 {
    font-size: clamp(28px, 9vw, 44px) !important;
  }

  body .dz-page.dz-page--graphic .dg3-brandbook-mini {
    font-size: 11px !important;
    letter-spacing: .16em !important;
  }
}

/* Poslovna primena: desktop/laptop brand card must sit on the right over the white paper */
@media (min-width: 992px) {
  body .dz-page.dz-page--graphic .dgf-application-stage {
    position: relative !important;
    min-height: 620px !important;
    overflow: hidden !important;
  }

  body .dz-page.dz-page--graphic .dgf-application-stage-text {
    position: relative !important;
    z-index: 10 !important;
    max-width: 56% !important;
  }

  body .dz-page.dz-page--graphic .dgf-application-stage-text p {
    max-width: 560px !important;
  }

  body .dz-page.dz-page--graphic .dgf-paper {
    position: absolute !important;
    left: auto !important;
    right: 46px !important;
    top: auto !important;
    bottom: -54px !important;
    width: min(420px, 36vw) !important;
    min-height: 480px !important;
    opacity: .94 !important;
    transform: rotate(4deg) !important;
    z-index: 2 !important;
  }

  body .dz-page.dz-page--graphic .dgf-card-stack {
    position: absolute !important;
    left: auto !important;
    right: clamp(80px, 10vw, 190px) !important;
    top: auto !important;
    bottom: 74px !important;
    width: 320px !important;
    height: 190px !important;
    z-index: 7 !important;
  }

  body .dz-page.dz-page--graphic .dgf-business-card {
    position: absolute !important;
    inset: 0 !important;
  }

  body .dz-page.dz-page--graphic .dgf-business-card:first-child {
    transform: rotate(-7deg) translate(-26px, 18px) !important;
  }

  body .dz-page.dz-page--graphic .dgf-business-card:last-child {
    transform: rotate(2deg) !important;
  }
}

@media (min-width: 992px) and (max-width: 1280px) {
  body .dz-page.dz-page--graphic .dgf-application-stage-text {
    max-width: 54% !important;
  }

  body .dz-page.dz-page--graphic .dgf-paper {
    right: 30px !important;
    width: 370px !important;
    min-height: 430px !important;
  }

  body .dz-page.dz-page--graphic .dgf-card-stack {
    right: 72px !important;
    width: 285px !important;
    height: 168px !important;
    bottom: 70px !important;
  }

  body .dz-page.dz-page--graphic .dgf-business-card {
    padding: 21px !important;
  }

  body .dz-page.dz-page--graphic .dgf-business-card strong {
    font-size: 18px !important;
  }

  body .dz-page.dz-page--graphic .dgf-business-card span {
    margin-top: 34px !important;
    font-size: 11px !important;
  }
}
/* Standard mobile hero typography for all Digitizer service pages */
@media (max-width: 767px) {
  .dz-page .dz-editorial-hero .dz-title.dz-title--xl {
    font-size: clamp(40px, 10.6vw, 54px) !important;
    line-height: 0.95 !important;
    letter-spacing: -0.055em;
    max-width: 11ch;
  }

  .dz-page .dz-editorial-hero .dz-lead,
  .dz-page .dz-editorial-hero .dz-hero-statement {
    font-size: clamp(16px, 4.25vw, 19px);
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .dz-page .dz-editorial-hero .dz-title.dz-title--xl {
    font-size: clamp(36px, 10.8vw, 46px) !important;
    line-height: 0.96 !important;
    max-width: 10.5ch;
  }
}