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