/* ARNI Centar — Hero Option D · client-aligned (teal header + diagonal) */

/* Playfair Display — headings */
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/playfair-display-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Manrope — UI / body */
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/manrope-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --teal: #008080;
  --teal-deep: #006666;
  --gold: #c8a35c;
  --gold-deep: #a98435;
  --paper: #f2f2ef;
  --ink: #222222;
  --white: #ffffff;
  --font: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  --display: "Playfair Display", Georgia, "Times New Roman", serif;
  --max: 1460px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button { font: inherit; cursor: pointer; }

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip:focus {
  left: 16px;
  top: 16px;
  z-index: 200;
  background: #fff;
  padding: 0.65rem 1rem;
  border-radius: 8px;
}

.od-shell {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 32px;
}
.od-stage {
  padding: 24px 0 48px;
  background: var(--paper);
  overflow: visible;
}

/* —— One hero canvas —— */
.od-hero {
  position: relative;
  background: var(--teal-deep);
  color: #fff;
  border-radius: 30px;
  overflow: hidden;
  min-height: 0;
  box-shadow: inset 0 0 0 1px rgba(200, 163, 92, 0.14);
}

/* Pulse frame context = od-shell (outside hero card) */
.od-hero-wrap {
  position: relative;
  overflow: visible;
}

/* —— Header ON teal (no white bar) —— */
.od-hdr {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 30px 56px 0;
  min-height: 76px;
  background: transparent;
  border: 0;
}
.od-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 0;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  /* Clean logo zone — keeps spacing from eyebrow below */
  margin-right: 8px;
  padding: 0;
  background: none;
  border: 0;
}
.od-logo img {
  height: auto;
  width: 115px;
  max-width: 115px;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
  /* Pure white mark on teal */
  filter: brightness(0) invert(1);
}
.od-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex: 1 1 auto;
  position: relative;
  z-index: 2;
}
.od-nav a {
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(255, 252, 247, 0.96);
  white-space: nowrap;
  transition: color 0.18s ease;
}
.od-nav a:hover,
.od-nav a:focus-visible {
  color: var(--gold);
}
.od-act {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
}
.od-link {
  display: none;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 252, 247, 0.92);
  white-space: nowrap;
  border-bottom: 1px solid rgba(200, 163, 92, 0.45);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
.od-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.od-btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 20px;
  border-radius: 12px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.od-btn-book:hover,
.od-btn-book:focus-visible {
  background: #d4b36e;
  border-color: #d4b36e;
  color: var(--ink);
  transform: translateY(-1px);
}
.od-btn-short { display: none; }
.od-menu {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
}
.od-menu svg { width: 20px; height: 20px; }

@media (min-width: 1100px) {
  .od-nav { display: flex; }
  .od-link { display: inline-flex; }
  .od-menu { display: none; }
}
@media (min-width: 1100px) and (max-width: 1279px) {
  .od-hdr {
    padding: 28px 40px 0;
    gap: 24px;
  }
  .od-nav { gap: 22px; }
  .od-nav a { font-size: 14.5px; }
  .od-logo img { width: 108px; max-width: 108px; max-height: 48px; }
  .od-act { gap: 18px; }
  .od-shell { padding-inline: 28px; }
}

/* —— Media (sibling of body so absolute covers full hero) —— */
.od-media {
  position: relative;
  min-height: 280px;
  background: #0a4545;
  overflow: hidden;
}
.od-media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.od-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  object-position: center 18%;
  will-change: transform;
  transform: translate3d(0, var(--od-py, 0px), 0) scale(1);
}

/* —— Body / copy —— */
.od-body {
  position: relative;
  z-index: 2;
  min-height: 0;
}

.od-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 110px 24px 40px;
  min-width: 0;
  max-width: 540px;
}

.od-eyebrow {
  margin: 0 0 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.od-h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(40px, 4.6vw, 62px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: #fff;
  max-width: none;
}
.od-h1-line {
  display: block;
  overflow: hidden;
}
.od-h1-inner {
  display: block;
}

.od-lead {
  margin: 20px 0 0;
  max-width: 28rem;
  font-size: 17.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.od-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 20px;
  margin-top: 28px;
}

.od-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.od-btn-primary svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s var(--ease);
}
.od-btn-primary:hover {
  background: #d4b36e;
  border-color: #d4b36e;
  color: var(--ink);
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.14);
}
.od-btn-primary:hover svg { transform: translateX(4px); }

.od-text-link {
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 2px;
  background-image: linear-gradient(var(--gold), var(--gold));
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: 55% 1px;
  transition: color 0.2s var(--ease), background-size 0.28s var(--ease);
}
.od-text-link:hover {
  color: #fff;
  background-size: 100% 1px;
}

.od-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  max-width: 420px;
}
.od-avs { display: flex; flex: 0 0 auto; }
.od-avs img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -12px;
  background: rgba(255, 255, 255, 0.15);
}
.od-avs img:first-child { margin-left: 0; }
.od-social p {
  margin: 0;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 600;
  color: #fff;
}
.od-social small {
  display: block;
  margin-top: 2px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
}

/* Gold lines */
.od-gold {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.od-gold-main {
  stroke: #c8a35c;
  stroke-width: 1.75px;
  vector-effect: non-scaling-stroke;
  opacity: 1;
  stroke-dasharray: 112;
  stroke-dashoffset: 0;
}

/* Signature perimeter pulse — thin gold dash just outside hero card */
.od-pulse {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 60;
  overflow: visible;
  opacity: 0;
}
.od-hero-wrap.is-pulse .od-pulse {
  opacity: 1;
  transition: opacity 0.8s var(--ease);
}
.od-pulse-track,
.od-pulse-run {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}
.od-pulse-track {
  stroke: rgba(200, 163, 92, 0.22);
  stroke-width: 1.25px;
}
.od-pulse-run {
  stroke: #c8a35c;
  stroke-width: 1.85px;
  stroke-dasharray: 72 928;
  stroke-dashoffset: 0;
  opacity: 0.78;
  filter: drop-shadow(0 0 4px rgba(200, 163, 92, 0.28));
  transition: opacity 0.35s var(--ease);
}
.od-hero-wrap.is-pulse .od-pulse-run {
  animation:
    od-pulse-travel 8.5s linear infinite,
    od-pulse-beat 8.5s ease-in-out infinite;
}
.od-hero-wrap:hover .od-pulse-run {
  opacity: 0.9;
}
@keyframes od-pulse-travel {
  to { stroke-dashoffset: -1000; }
}
@keyframes od-pulse-beat {
  0%, 68%, 100% {
    filter: drop-shadow(0 0 3px rgba(200, 163, 92, 0.22));
  }
  74% {
    filter: drop-shadow(0 0 5px rgba(200, 163, 92, 0.4));
  }
  78% {
    filter: drop-shadow(0 0 3px rgba(200, 163, 92, 0.24));
  }
  83% {
    filter: drop-shadow(0 0 6px rgba(200, 163, 92, 0.45));
  }
  90% {
    filter: drop-shadow(0 0 3px rgba(200, 163, 92, 0.22));
  }
}

@media (max-width: 959px) {
  .od-pulse-run {
    stroke-width: 1.5px;
    stroke-dasharray: 56 944;
    filter: none;
    opacity: 0.7;
  }
  .od-hero-wrap.is-pulse .od-pulse-run {
    animation:
      od-pulse-travel 11s linear 1 both,
      od-pulse-beat-mobile 11s ease-in-out 1 both;
  }
  .od-hero-wrap:hover .od-pulse-run { opacity: 0.7; }
}
@keyframes od-pulse-beat-mobile {
  0%, 70%, 100% { opacity: 0.62; }
  76% { opacity: 0.82; }
  80% { opacity: 0.65; }
  85% { opacity: 0.88; }
  92% { opacity: 0.62; }
}

@media (prefers-reduced-motion: reduce) {
  .od-pulse { display: none; }
  .od-hero-wrap.is-pulse .od-pulse-run {
    animation: none;
  }
}

/* ============================================================
   Hero premium motion (entrance + micro-interactions)
   Layout / crop / copy unchanged — transform & opacity only
   ============================================================ */
html.od-js .od-hero:not(.od-ready) {
  opacity: 0;
  transform: translateY(10px);
}
html.od-js .od-hero.od-ready {
  opacity: 1;
  transform: none;
  transition: opacity 0.58s var(--ease), transform 0.58s var(--ease);
}

html.od-js .od-hero:not(.od-ready) .od-hdr {
  opacity: 0;
  transform: translateY(-8px);
}
html.od-js .od-hero.od-ready .od-hdr {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease) 90ms, transform 0.5s var(--ease) 90ms;
}
html.od-js .od-hero:not(.od-ready) .od-nav a {
  opacity: 0;
  transform: translateY(-6px);
}
html.od-js .od-hero.od-ready .od-nav a {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), color 0.18s ease;
}
html.od-js .od-hero.od-ready .od-nav a:nth-child(1) { transition-delay: 110ms; }
html.od-js .od-hero.od-ready .od-nav a:nth-child(2) { transition-delay: 135ms; }
html.od-js .od-hero.od-ready .od-nav a:nth-child(3) { transition-delay: 160ms; }
html.od-js .od-hero.od-ready .od-nav a:nth-child(4) { transition-delay: 185ms; }
html.od-js .od-hero.od-ready .od-nav a:nth-child(5) { transition-delay: 210ms; }

html.od-js .od-hero:not(.od-ready) .od-eyebrow {
  opacity: 0;
  transform: translateY(10px);
}
html.od-js .od-hero.od-ready .od-eyebrow {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s var(--ease) 160ms, transform 0.45s var(--ease) 160ms;
}

html.od-js .od-hero:not(.od-ready) .od-h1-inner {
  opacity: 0;
  transform: translateY(28px);
}
html.od-js .od-hero.od-ready .od-h1-inner {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
html.od-js .od-hero.od-ready .od-h1-line:nth-child(1) .od-h1-inner { transition-delay: 220ms; }
html.od-js .od-hero.od-ready .od-h1-line:nth-child(2) .od-h1-inner { transition-delay: 300ms; }
html.od-js .od-hero.od-ready .od-h1-line:nth-child(3) .od-h1-inner { transition-delay: 380ms; }

html.od-js .od-hero:not(.od-ready) .od-lead {
  opacity: 0;
  transform: translateY(12px);
}
html.od-js .od-hero.od-ready .od-lead {
  opacity: 1;
  transform: none;
  transition: opacity 0.5s var(--ease) 520ms, transform 0.5s var(--ease) 520ms;
}

html.od-js .od-hero:not(.od-ready) .od-btn-primary,
html.od-js .od-hero:not(.od-ready) .od-btn-outline,
html.od-js .od-hero:not(.od-ready) .od-text-link {
  opacity: 0;
  transform: translateY(12px);
}
html.od-js .od-hero.od-ready .od-btn-outline {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease) 580ms, transform 0.55s var(--ease) 580ms, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
html.od-js .od-hero.od-ready .od-btn-primary {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s var(--ease) 650ms,
    transform 0.5s var(--ease) 650ms,
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
html.od-js .od-hero.od-ready .od-btn-primary:hover {
  transform: translateY(-1px);
}
html.od-js .od-hero.od-ready .od-text-link {
  opacity: 1;
  transform: none;
  transition:
    opacity 0.5s var(--ease) 720ms,
    transform 0.5s var(--ease) 720ms,
    color 0.2s var(--ease),
    background-size 0.28s var(--ease);
}

html.od-js .od-hero:not(.od-ready) .od-avs img {
  opacity: 0;
  transform: translateX(-6px);
}
html.od-js .od-hero.od-ready .od-avs img {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
html.od-js .od-hero.od-ready .od-avs img:nth-child(1) { transition-delay: 760ms; }
html.od-js .od-hero.od-ready .od-avs img:nth-child(2) { transition-delay: 805ms; }
html.od-js .od-hero.od-ready .od-avs img:nth-child(3) { transition-delay: 850ms; }
html.od-js .od-hero.od-ready .od-avs img:nth-child(4) { transition-delay: 895ms; }

html.od-js .od-hero:not(.od-ready) .od-social p {
  opacity: 0;
}
html.od-js .od-hero.od-ready .od-social p {
  opacity: 1;
  transition: opacity 0.5s var(--ease) 900ms;
}

html.od-js .od-hero:not(.od-ready) .od-media-frame img {
  opacity: 0;
  transform: translate3d(0, var(--od-py, 0px), 0) scale(1.035);
}
html.od-js .od-hero.od-ready .od-media-frame img {
  opacity: 1;
  transform: translate3d(0, var(--od-py, 0px), 0) scale(1);
  transition:
    opacity 0.95s var(--ease) 420ms,
    transform 0.95s var(--ease) 420ms;
}

/* After entrance: restore snappy hover transitions (no entrance delays) */
html.od-js .od-hero.od-settled .od-hdr,
html.od-js .od-hero.od-settled .od-nav a,
html.od-js .od-hero.od-settled .od-eyebrow,
/* After reveal, don’t keep clipping long display words */
html.od-js .od-hero.od-settled .od-h1-line {
  overflow: visible;
}
html.od-js .od-hero.od-settled .od-h1-inner,
html.od-js .od-hero.od-settled .od-lead,
html.od-js .od-hero.od-settled .od-avs img,
html.od-js .od-hero.od-settled .od-social p,
html.od-js .od-hero.od-settled .od-media-frame img,
html.od-js .od-hero.od-settled .od-gold-main {
  transition-delay: 0ms !important;
}
html.od-js .od-hero.od-settled .od-btn-outline,
html.od-js .od-hero.od-settled .od-btn-primary {
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease) !important;
}
html.od-js .od-hero.od-settled .od-text-link {
  transition: color 0.2s var(--ease), background-size 0.28s var(--ease) !important;
}
html.od-js .od-hero.od-settled .od-media-frame img {
  transition: transform 0.35s linear !important;
}

html.od-js .od-hero:not(.od-ready) .od-gold-main {
  stroke-dashoffset: 112;
}
html.od-js .od-hero.od-ready .od-gold-main {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1s var(--ease) 420ms;
}

@media (max-width: 959px) {
  html.od-js .od-hero.od-ready .od-eyebrow { transition-delay: 120ms; }
  html.od-js .od-hero.od-ready .od-h1-line:nth-child(1) .od-h1-inner { transition-delay: 180ms; }
  html.od-js .od-hero.od-ready .od-h1-line:nth-child(2) .od-h1-inner { transition-delay: 250ms; }
  html.od-js .od-hero.od-ready .od-h1-line:nth-child(3) .od-h1-inner { transition-delay: 320ms; }
  html.od-js .od-hero.od-ready .od-lead { transition-delay: 420ms; }
  html.od-js .od-hero.od-ready .od-btn-outline {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s var(--ease) 580ms, transform 0.55s var(--ease) 580ms, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
html.od-js .od-hero.od-ready .od-btn-primary { transition-delay: 520ms; }
  html.od-js .od-hero.od-ready .od-text-link { transition-delay: 580ms; }
  html.od-js .od-hero.od-ready .od-avs img:nth-child(1) { transition-delay: 640ms; }
  html.od-js .od-hero.od-ready .od-avs img:nth-child(2) { transition-delay: 680ms; }
  html.od-js .od-hero.od-ready .od-avs img:nth-child(3) { transition-delay: 720ms; }
  html.od-js .od-hero.od-ready .od-avs img:nth-child(4) { transition-delay: 760ms; }
  html.od-js .od-hero.od-ready .od-social p { transition-delay: 780ms; }
  html.od-js .od-hero.od-ready .od-media-frame img {
    transition-delay: 280ms;
    transition-duration: 0.85s;
  }
}

@media (prefers-reduced-motion: reduce) {
  html.od-js .od-hero,
  html.od-js .od-hero .od-hdr,
  html.od-js .od-hero .od-nav a,
  html.od-js .od-hero .od-eyebrow,
  html.od-js .od-hero .od-h1-inner,
  html.od-js .od-hero .od-lead,
  html.od-js .od-hero .od-btn-primary,
  html.od-js .od-hero .od-text-link,
  html.od-js .od-hero .od-avs img,
  html.od-js .od-hero .od-social p,
  html.od-js .od-hero .od-media-frame img,
  html.od-js .od-hero .od-gold-main {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    stroke-dashoffset: 0 !important;
  }
  .od-btn-primary:hover,
  .od-btn-book:hover {
    transform: none;
    box-shadow: none;
  }
}

/* Desktop: teal left + image right, one elegant diagonal */
@media (min-width: 960px) {
  .od-stage { padding: 28px 0 56px; }
  .od-shell { padding-inline: 40px; }
  .od-hero {
    min-height: 680px;
    border-radius: 32px;
    overflow: hidden;
  }
  /* Subtle teal shade across top for nav contrast over photo */
  .od-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
      180deg,
      rgba(0, 45, 45, 0.42) 0%,
      rgba(0, 50, 50, 0.22) 45%,
      rgba(0, 50, 50, 0.08) 70%,
      transparent 100%
    );
    z-index: 3;
    pointer-events: none;
  }
  .od-hdr {
    padding: 30px 64px 0;
    gap: 40px;
  }

  /* Image as full-hero layer, clipped to right of diagonal */
  .od-media {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 100%;
    width: auto;
    /* top ~57% → bottom ~46% — one continuous diagonal */
    clip-path: polygon(
      57% 0%,
      100% 0%,
      100% 100%,
      46% 100%
    );
  }
  .od-media img {
    position: absolute;
    inset: 0;
    min-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
    /* Balanced crop — faces clear, no aggressive zoom */
    object-position: 58% 18%;
    transform: translate3d(0, var(--od-py, 0px), 0) scale(1);
  }
  /* Extra shade on photo side under laptop nav */
  .od-media::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 130px;
    background: linear-gradient(
      180deg,
      rgba(0, 40, 40, 0.45) 0%,
      rgba(0, 50, 50, 0.22) 50%,
      transparent 100%
    );
    z-index: 2;
    pointer-events: none;
  }

  .od-body {
    display: flex;
    align-items: stretch;
    min-height: 680px;
  }
  .od-copy {
    /* Clear gap under logo zone so eyebrow never collides */
    padding: 132px 40px 56px 64px;
    max-width: 780px;
  }
  .od-h1 {
    font-size: clamp(42px, 3.05vw, 52px);
    line-height: 1.05;
    max-width: none;
  }
  /* Exactly 3 lines on laptop — no mid-line wrap */
  .od-h1-line {
    display: block;
    white-space: nowrap;
  }
  .od-lead { max-width: 520px; }

  .od-gold { display: block; }
}

@media (min-width: 1280px) {
  .od-hdr {
    padding: 30px 68px 0;
    gap: 44px;
  }
  .od-copy {
    padding-left: 72px;
    padding-top: 136px;
  }
  .od-nav { gap: 32px; }
  .od-logo img { width: 120px; max-width: 120px; max-height: 54px; }
  .od-act { gap: 20px; }
}

@media (min-width: 1366px) {
  .od-nav { gap: 34px; }
}

@media (min-width: 1440px) {
  .od-hdr { padding-inline: 70px; }
  .od-logo img { width: 122px; max-width: 122px; }
}

/* —— Sheet (mobile full-screen · footer visual system) —— */
.od-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(8, 18, 18, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.od-sheet.is-open {
  opacity: 1;
  pointer-events: auto;
}
.od-sheet-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  height: 100dvh;
  background: #0d1c1c;
  color: rgba(242, 242, 239, 0.88);
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease);
}
.od-sheet.is-open .od-sheet-panel {
  opacity: 1;
  transform: none;
}

.od-sheet-top {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  padding: 12px 24px;
  background: #0d1c1c;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
}
.od-sheet-brand {
  display: flex;
  align-items: center;
  justify-self: start;
  line-height: 0;
}
.od-sheet-brand img {
  height: 34px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.od-sheet-kicker {
  margin: 0;
  justify-self: center;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(242, 242, 239, 0.48);
}
.od-sheet-close {
  justify-self: end;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(242, 242, 239, 0.9);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease;
}
.od-sheet-close:hover,
.od-sheet-close:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.od-sheet-close svg { width: 18px; height: 18px; }

.od-sheet-scroll {
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 28px 26px 28px;
  padding-bottom: calc(28px + 72px + env(safe-area-inset-bottom, 0px));
}

.od-sheet-hero {
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.od-sheet-help {
  margin: 0 0 18px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 5.5vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: rgba(242, 242, 239, 0.96);
}
.od-sheet-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}
.od-sheet-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 14.5px;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.od-sheet-btn-gold {
  width: 100%;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
}
.od-sheet-btn-gold:hover {
  background: #d4b46d;
  border-color: #d4b46d;
  color: var(--ink);
}
.od-sheet-btn-line {
  background: transparent;
  border: 1px solid rgba(242, 242, 239, 0.28);
  color: rgba(242, 242, 239, 0.92);
}
.od-sheet-btn-line:hover {
  border-color: rgba(242, 242, 239, 0.55);
  color: #fff;
}

.od-sheet-sec {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.od-sheet-nav {
  display: flex;
  flex-direction: column;
}
.od-sheet-quick {
  margin: 0 0 36px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.od-sheet-quick a,
.od-sheet-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 54px;
  padding: 12px 0;
  text-decoration: none;
  font-size: 15.5px;
  font-weight: 500;
  color: rgba(242, 242, 239, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.18s ease, transform 0.18s ease;
}
.od-sheet-quick a i,
.od-sheet-list a i {
  font-style: normal;
  color: rgba(200, 163, 92, 0.7);
  font-size: 14px;
}
.od-sheet-quick a:hover,
.od-sheet-list a:hover,
.od-sheet-quick a:focus-visible,
.od-sheet-list a:focus-visible {
  color: #fff;
}
.od-sheet-quick a.is-active,
.od-sheet-list a.is-active {
  color: var(--gold);
}
.od-sheet-quick a.is-active span {
  box-shadow: inset 0 -1px 0 var(--gold);
}

.od-sheet-acc {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.od-sheet-acc:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 36px;
}
.od-sheet-acc-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(242, 242, 239, 0.94);
  font-family: var(--font);
  font-size: 15.5px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}
.od-sheet-acc-btn:hover,
.od-sheet-acc-btn:focus-visible {
  color: #fff;
}
.od-sheet-chev {
  width: 10px;
  height: 10px;
  border-right: 1.6px solid rgba(242, 242, 239, 0.55);
  border-bottom: 1.6px solid rgba(242, 242, 239, 0.55);
  transform: rotate(45deg);
  transition: transform 0.28s var(--ease);
  flex: 0 0 auto;
  opacity: 0.75;
}
.od-sheet-acc.is-open .od-sheet-chev {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.od-sheet-panel-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.od-sheet-acc.is-open .od-sheet-panel-body {
  grid-template-rows: 1fr;
}
.od-sheet-panel-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
  pointer-events: none;
  visibility: hidden;
}
.od-sheet-acc.is-open .od-sheet-panel-inner {
  opacity: 1;
  transform: none;
  pointer-events: auto;
  visibility: visible;
}
.od-sheet-label {
  margin: 8px 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 163, 92, 0.78);
}
.od-sheet-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.od-sheet-list a {
  min-height: 48px;
  font-size: 15px;
  color: rgba(242, 242, 239, 0.68);
}
.od-sheet-more {
  display: inline-flex;
  margin: 10px 0 14px;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--gold);
  text-decoration: none;
}
.od-sheet-more:hover { color: #e0c07a; }
.od-sheet-more-muted {
  color: rgba(242, 242, 239, 0.62);
  font-weight: 600;
}
.od-sheet-more-muted:hover { color: #fff; }

.od-sheet-contact {
  margin-bottom: 32px;
  padding-top: 4px;
}
.od-sheet-citem {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 0;
  text-decoration: none;
  color: rgba(242, 242, 239, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.18s ease;
}
.od-sheet-citem:hover { color: #fff; }
.od-sheet-ico {
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--gold);
}
.od-sheet-citem em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 242, 239, 0.42);
  margin-bottom: 2px;
}
.od-sheet-hours {
  margin: 14px 0 0;
  font-size: 13px;
  color: rgba(242, 242, 239, 0.48);
}

.od-sheet-meta {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.od-sheet-soc {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}
.od-sheet-soc a,
.od-sheet-privacy {
  font-size: 14px;
  font-weight: 600;
  color: rgba(242, 242, 239, 0.62);
  text-decoration: none;
}
.od-sheet-soc a:hover,
.od-sheet-privacy:hover {
  color: var(--gold);
}
.od-sheet-privacy {
  display: inline-block;
  margin-bottom: 12px;
}
.od-sheet-copy {
  margin: 0;
  font-size: 12.5px;
  color: rgba(242, 242, 239, 0.4);
}

.od-sheet-dock {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 12px 26px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 28, 28, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.od-sheet-dock-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 11px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}
.od-sheet-dock-cta:hover {
  background: #d4b46d;
  color: var(--ink);
}

body.od-sheet-open .zx-mbar {
  visibility: hidden;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .od-sheet,
  .od-sheet-panel,
  .od-sheet-panel-body,
  .od-sheet-panel-inner,
  .od-sheet-chev {
    transition: none;
  }
}

/* legacy helpers retained */
.od-sheet-cta { display: none; }
.od-link-dark {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.od-sheet-cta .od-btn-book {
  width: 100%;
  height: 48px;
}

/* —— Mobile: stacked teal → image, no desktop diagonal —— */
@media (max-width: 959px) {
  .od-shell { padding-inline: 20px; }
  .od-stage { padding: 12px 0 16px; }
  .od-hero {
    border-radius: 22px;
    display: flex;
    flex-direction: column;
  }
  .od-hdr {
    padding: 16px 16px 0;
    gap: 10px;
  }
  .od-logo img {
    width: 120px;
    max-width: 120px;
  }
  .od-btn-book {
    height: 40px;
    padding: 0 12px;
    font-size: 13.5px;
  }
  .od-btn-full { display: none; }
  .od-btn-short { display: inline; }

  /* On mobile media comes after copy in visual order */
  .od-media {
    order: 2;
    margin: 0;
    min-height: 0;
    border-radius: 0;
  }
  .od-body {
    order: 1;
  }
  .od-copy {
    padding: 92px 20px 32px;
    max-width: none;
    clip-path: polygon(0 0, 100% 0, 100% 96%, 0 100%);
    text-align: center;
    align-items: center;
  }
  .od-h1 {
    font-size: clamp(36px, 8.5vw, 44px);
    line-height: 1.04;
    max-width: none;
  }
  .od-h1-line {
    text-align: center;
  }
  .od-lead {
    font-size: 16.5px;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
  .od-cta-row {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 22rem;
  }
  .od-btn-primary {
    width: 100%;
    min-height: 50px;
  }
  .od-text-link {
    align-self: center;
  }
  .od-social {
    margin-top: 24px;
    margin-inline: auto;
    justify-content: center;
    text-align: left;
  }
  .od-avs img {
    width: 36px;
    height: 36px;
    margin-left: -10px;
  }
  /* Header: optically centered logo (asset has uneven right padding) */
  .od-act {
    display: none !important;
  }
  .od-nav {
    display: none !important;
  }
  .od-hdr {
    justify-content: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  .od-logo {
    margin: 0;
    flex: 0 0 auto;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 16px;
    transform: translateX(-50%);
  }
  .od-logo img {
    width: 120px;
    max-width: 120px;
    object-position: center center;
    /* padL=8 padR=25 on 175px source → ~+6px at 120px display */
    transform: translateX(6px);
  }
  .od-media img {
    min-height: 0;
    aspect-ratio: 4 / 3;
    object-position: center 15%;
  }
  /* Mild gold hairline at teal→image join */
  .od-media::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 1.5px;
    background: linear-gradient(90deg, transparent 6%, var(--gold) 28%, var(--gold) 72%, transparent 94%);
    opacity: 0.85;
    z-index: 2;
  }
}

/* ============================================================
   BELOW HERO · Digitalni Zen Editorijal
   Namespace: .zx*  — nothing here targets .od* (hero/header)
   ============================================================ */

body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 900px) { body { padding-bottom: 0; } }

.zx-in {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 32px;
}
@media (min-width: 1280px) { .zx-in { padding-inline: 40px; } }
@media (min-width: 1100px) and (max-width: 1279px) { .zx-in { padding-inline: 28px; } }
@media (max-width: 959px) { .zx-in { padding-inline: 20px; } }

.zx { padding: 112px 0; }
@media (max-width: 1279px) { .zx { padding: 88px 0; } }
@media (max-width: 700px) { .zx { padding: 72px 0; } }
.zx-ivory { background: var(--paper); }
.zx-white { background: #fff; }
.zx-warm { background: linear-gradient(180deg, #f6f4ef 0%, #f2f2ef 100%); }
.zx-tint { background: linear-gradient(180deg, #ecf3f3 0%, #f4f6f4 100%); }
.zx-deep { background: #05403f; color: #fff; }

/* Type scale */
.zx-eb {
  margin: 0 0 16px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.zx-eb-gold, .zx-deep .zx-eb { color: var(--gold); }
.zx-h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 3.7vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 22ch;
}
.zx-deep .zx-h2, .zx-cta .zx-h2 { color: #fff; }
.zx-h3 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(23px, 2vw, 29px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.zx-sub {
  margin: 16px 0 0;
  max-width: 34rem;
  font-size: 17px;
  line-height: 1.68;
  color: rgba(34, 34, 34, 0.6);
}
.zx-deep .zx-sub { color: rgba(255, 255, 255, 0.74); }
.zx-head { margin-bottom: 52px; }
@media (max-width: 700px) { .zx-head { margin-bottom: 36px; } }

.zx-arr { display: inline-block; font-style: normal; transition: transform .4s var(--ease); }
.zx-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15.5px;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--gold);
}
.zx-link:hover { color: var(--teal); border-color: var(--teal); }
.zx-link:hover .zx-arr { transform: translateX(3px); }
.zx-deep .zx-link { color: #fff; }
.zx-deep .zx-link:hover { color: var(--gold); border-color: var(--gold); }

.zx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  background: var(--gold);
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 650;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.zx-btn:hover { background: #d7b872; border-color: #d7b872; }
.zx-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.zx-btn-ghost:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; color: #fff; }
.zx-btn-block { width: 100%; }

/* ============================================================
   02 · ONLINE PROCJENA — two editorial CTA modules
   ============================================================ */
.zx-tests { display: grid; gap: 22px; }
@media (min-width: 1000px) { .zx-tests { grid-template-columns: 1fr 1fr; gap: 26px; } }

.zx-t {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color .45s var(--ease), transform .45s var(--ease);
}
@media (min-width: 620px) {
  .zx-t { grid-template-columns: 65% 35%; min-height: 212px; }
  .zx-t-rev { grid-template-columns: 35% 65%; }
  .zx-t-rev .zx-t-body { order: 2; }
  .zx-t-rev .zx-t-media { order: 1; }
}
.zx-t-teal:hover { border-color: rgba(0, 128, 128, 0.55); }
.zx-t-gold:hover { border-color: rgba(200, 163, 92, 0.75); }
.zx-t:hover { transform: translateY(-2px); }

.zx-t-body {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 28px;
}
.zx-t-idx {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.45);
}
.zx-t-no {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0;
  color: var(--teal);
}
.zx-t-gold .zx-t-no { color: var(--gold-deep); }
.zx-t-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.14;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.zx-t-copy {
  margin: 12px 0 0;
  max-width: 30rem;
  font-size: 16.5px;
  line-height: 1.58;
  color: rgba(34, 34, 34, 0.6);
}
.zx-t-foot {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: auto;
  padding-top: 24px;
}
.zx-t-dur {
  font-size: 13.5px;
  font-weight: 550;
  letter-spacing: 0.05em;
  color: rgba(34, 34, 34, 0.5);
}
.zx-t-media { position: relative; background: var(--paper); min-height: 160px; align-self: stretch; }
.zx-t-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.28), transparent 55%);
}
.zx-t-rev .zx-t-media::after { background: linear-gradient(270deg, rgba(255, 255, 255, 0.28), transparent 55%); }
.zx-t-media picture,
.zx-t-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.zx-t-media img {
  object-fit: cover;
  object-position: center 35%;
}
.zx-t-teal .zx-t-media img { object-position: center 40%; }
.zx-t-gold .zx-t-media img { object-position: center 30%; }

/* Buttons inside assessments */
.zx-t .zx-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 26px;
}
.zx-t .zx-btn-ico {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  display: block;
  transition: transform 200ms ease;
}
.zx-t .zx-btn:hover .zx-btn-ico { transform: translateX(3px); }
.zx-btn-teal {
  min-height: 48px;
  padding: 0 26px;
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}
.zx-btn-teal:hover { background: var(--teal-deep); border-color: var(--teal-deep); color: #fff; }
.zx-btn-gold {
  min-height: 48px;
  padding: 0 26px;
  background: rgba(200, 163, 92, 0.12);
  border-color: var(--gold);
  color: var(--gold-deep);
}
.zx-btn-gold:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* Whole module clickable, single accessible link */
.zx-stretch::after { content: ""; position: absolute; inset: 0; z-index: 1; }

/* ============================================================
   03 · DISCOVERY — featured full-width + two equal gateways
   ============================================================ */
#podrucja .zx-head-disc { margin-bottom: 56px; }
@media (max-width: 700px) { #podrucja .zx-head-disc { margin-bottom: 36px; } }

.zx-disc {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Shared card shell */
.zx-d {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 22px;
  overflow: hidden;
}
.zx-d-media {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  flex: 0 0 auto;
}
.zx-d-media picture,
.zx-d-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.zx-d-media img {
  object-fit: cover;
  object-position: center 42%;
}
.zx-d-media::after {
  content: "";
  position: absolute;
  inset: 45% 0 0 0;
  background: linear-gradient(180deg, transparent, rgba(5, 46, 46, 0.48));
  pointer-events: none;
}
.zx-d-no {
  position: absolute;
  z-index: 1;
  left: 22px;
  bottom: 12px;
  font-family: var(--display);
  font-size: 30px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.95);
}

/* —— ROW 1: horizontal featured —— */
.zx-d-feat {
  display: grid;
  grid-template-columns: 1fr;
}
.zx-d-feat .zx-d-media {
  aspect-ratio: 16 / 8;
  max-height: 220px;
}
@media (min-width: 1040px) {
  .zx-d-feat {
    grid-template-columns: 42% 58%;
    align-items: stretch;
  }
  .zx-d-feat .zx-d-media {
    position: relative;
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
    height: auto;
    align-self: stretch;
  }
  .zx-d-feat .zx-d-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
  }
}

.zx-d-feat .zx-d-body {
  display: flex;
  flex-direction: column;
  padding: 24px 24px 26px;
  flex: 0 0 auto;
}
@media (min-width: 1040px) {
  .zx-d-feat .zx-d-body {
    padding: 28px 32px 30px;
    justify-content: flex-start;
  }
}

.zx-d-intro { margin-bottom: 4px; }
.zx-d-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.zx-d-claim {
  margin: 10px 0 18px;
  max-width: 38rem;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(34, 34, 34, 0.6);
}

.zx-d-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px 28px;
}
@media (min-width: 700px) {
  .zx-d-cols { grid-template-columns: 1fr 1fr; gap: 12px 36px; }
}
.zx-d-col .zx-d-progs-l { margin-bottom: 6px; }

/* —— ROW 2: two equal gateways —— */
.zx-disc-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}
@media (min-width: 1040px) {
  .zx-disc-row {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}

.zx-d-sec .zx-d-media {
  aspect-ratio: 16 / 7.2;
  max-height: 228px;
}
.zx-d-sec .zx-d-body {
  display: flex;
  flex-direction: column;
  padding: 18px 20px 20px;
  flex: 0 0 auto;
}
.zx-d-sec .zx-d-title { font-size: clamp(21px, 1.7vw, 24px); }
.zx-d-sec .zx-d-claim { font-size: 15px; margin: 8px 0 12px; }
.zx-d-sec .zx-d-no { font-size: 28px; left: 18px; bottom: 10px; }

/* Accent variation without changing structure */
.zx-d-teal { border-color: rgba(0, 128, 128, 0.18); }
.zx-d-gold { border-color: rgba(200, 163, 92, 0.32); }
.zx-d-teal .zx-d-progs-l { color: var(--teal); }
.zx-d-gold .zx-d-progs-l { color: var(--gold-deep); }
.zx-d-teal .zx-q a:hover { color: var(--teal); border-color: var(--teal); }
.zx-d-gold .zx-q a:hover { color: var(--gold-deep); border-color: var(--gold); }
.zx-d-gold .zx-d-media img { object-position: center 28%; }
.zx-d-teal .zx-d-media img { object-position: center 35%; }

/* Compact editorial link rows */
.zx-q { margin: 0; padding: 0; list-style: none; }
.zx-q a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 3px 2px;
  font-size: 16.5px;
  font-weight: 550;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  transition: color .25s ease, border-color .25s ease;
}
.zx-d-sec .zx-q a { min-height: 42px; font-size: 15.5px; }
.zx-q li:first-child a { border-top: 1px solid rgba(34, 34, 34, 0.1); }
.zx-q a .zx-arr {
  color: rgba(34, 34, 34, 0.24);
  transition: transform .2s ease, color .25s ease;
}
.zx-q a:hover { color: var(--teal); border-color: var(--gold); }
.zx-q a:hover .zx-arr { color: var(--gold-deep); transform: translateX(3px); }
.zx-q-more a {
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  min-height: 40px;
  border-bottom: 0;
}
.zx-q-more a:hover { color: var(--teal); border-bottom: 0; }

/* Program labels + lists */
.zx-d-progs {
  margin: 14px 0 0;
  padding: 12px 0 0;
  border-top: 1px solid rgba(200, 163, 92, 0.32);
}
.zx-d-progs-l {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.zx-d-proglist { margin: 0; padding: 0; list-style: none; }
.zx-d-proglist a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 40px;
  padding: 2px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(34, 34, 34, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  transition: color .25s ease, border-color .25s ease;
}
.zx-d-proglist a .zx-arr {
  color: var(--gold-deep);
  opacity: 0.55;
  transition: transform .2s ease, opacity .25s ease;
}
.zx-d-proglist a:hover { color: var(--teal); border-color: var(--gold); }
.zx-d-proglist a:hover .zx-arr { opacity: 1; transform: translateX(3px); }
.zx-d-proglist li:last-child a { border-bottom: 0; }

/* CTA — natural flow, no flex push */
.zx-d-cta {
  margin-top: 26px;
  align-self: flex-start;
}
.zx-d-sec .zx-d-cta { margin-top: 20px; }
.zx-d-cta:hover .zx-arr { transform: translateX(3px); }

/* ============================================================
   04 · TRI STUBA — editorial 3-pillar manifesto (no cards)
   ============================================================ */
#rjesenja.zx-warm {
  background: #f4f1ea;
}
#rjesenja .zx-head-pils {
  margin-bottom: 56px;
  max-width: 42rem;
}
#rjesenja .zx-head-pils::after {
  content: "";
  display: block;
  width: 56px;
  height: 1.5px;
  margin-top: 28px;
  background: var(--gold);
}
@media (max-width: 700px) {
  #rjesenja .zx-head-pils { margin-bottom: 40px; }
  #rjesenja .zx-head-pils::after { margin-top: 22px; }
}

.zx-pils {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 1040px) {
  .zx-pils {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.zx-pil {
  display: flex;
  flex-direction: column;
  padding: 36px 0;
  border: 0;
  background: transparent;
  border-top: 1px solid rgba(34, 34, 34, 0.12);
}
.zx-pil:first-child { border-top: 0; padding-top: 8px; }
@media (min-width: 1040px) {
  .zx-pil {
    padding: 8px 36px 0;
    border-top: 0;
    border-left: 1px solid rgba(34, 34, 34, 0.12);
    transition: border-color .3s ease;
  }
  .zx-pil:first-child {
    padding-left: 0;
    border-left: 0;
  }
  .zx-pil:last-child { padding-right: 0; }
  .zx-pil:hover { border-left-color: var(--gold); }
  .zx-pil:first-child:hover { border-left-color: transparent; }
  .zx-pil:first-child:hover + .zx-pil { border-left-color: var(--gold); }
}

.zx-pil-mark {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 44px;
  height: 44px;
  margin: 0 0 22px;
  color: var(--gold-deep);
}
.zx-pil-mark svg {
  display: block;
  width: 100%;
  height: 100%;
}
.zx-pil:nth-child(1) .zx-pil-mark { color: var(--teal); }
.zx-pil:nth-child(2) .zx-pil-mark { color: var(--gold-deep); }
.zx-pil:nth-child(3) .zx-pil-mark { color: var(--teal-deep); }
.zx-pil-lab {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}
.zx-pil:nth-child(2) .zx-pil-lab { color: var(--gold-deep); }
.zx-pil-res {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 2.2vw, 34px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 16ch;
}
.zx-pil-copy {
  margin: 16px 0 0;
  max-width: 30rem;
  font-size: 16.5px;
  line-height: 1.62;
  color: rgba(34, 34, 34, 0.58);
}
.zx-pil-acts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 26px;
}
.zx-pil-sub {
  font-size: 14px;
  font-weight: 600;
  color: rgba(34, 34, 34, 0.52);
  text-decoration: none;
  border-bottom: 1px solid rgba(34, 34, 34, 0.18);
  padding-bottom: 1px;
}
.zx-pil-sub:hover { color: var(--teal); border-color: var(--teal); }


/* ============================================================
   05 · NAJČEŠĆI PROBLEMI — premium category navigation hub
   ============================================================ */
#problemi.zx-tint {
  background: linear-gradient(180deg, #eef4f3 0%, #f3f2ee 100%);
}
#problemi .zx-head-prob {
  margin-bottom: 52px;
  max-width: 36rem;
}
@media (max-width: 700px) { #problemi .zx-head-prob { margin-bottom: 36px; } }

.zx-probs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
}
@media (min-width: 760px) and (max-width: 1039px) {
  .zx-probs {
    grid-template-columns: 1fr 1fr;
  }
  .zx-prob-feat { grid-column: 1 / -1; }
}
@media (min-width: 1040px) {
  .zx-probs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }
}

.zx-prob {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 22px;
  padding: 28px 26px 26px;
  transition: border-color .35s ease;
}
.zx-prob:hover { border-color: rgba(0, 128, 128, 0.28); }

.zx-prob-feat {
  background: linear-gradient(180deg, #f7fbfb 0%, #ffffff 48%);
  border-color: rgba(0, 128, 128, 0.22);
  box-shadow: 0 10px 28px rgba(0, 64, 64, 0.04);
}
.zx-prob-feat:hover { border-color: rgba(0, 128, 128, 0.4); }

.zx-prob-head { margin-bottom: 8px; }
.zx-prob-badge {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(200, 163, 92, 0.16);
  color: var(--gold-deep);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.zx-prob-lab {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.zx-prob-feat .zx-prob-lab { color: var(--teal); }
.zx-prob-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.zx-prob-help {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(34, 34, 34, 0.58);
  max-width: 28rem;
}

.zx-prob-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}
.zx-prob-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 6px 2px;
  text-decoration: none;
  color: var(--ink);
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  transition: color .25s ease, border-color .25s ease, padding-left .3s var(--ease);
}
.zx-prob-list li:first-child a { border-top: 1px solid rgba(34, 34, 34, 0.1); }
.zx-prob-list a span {
  font-size: 16.5px;
  font-weight: 550;
  line-height: 1.3;
}
.zx-prob-list a .zx-arr {
  color: rgba(34, 34, 34, 0.24);
  transition: transform .2s ease, color .25s ease;
}
.zx-prob-list a:hover {
  color: var(--teal);
  border-color: var(--gold);
  padding-left: 4px;
}
.zx-prob-list a:hover .zx-arr {
  color: var(--gold-deep);
  transform: translateX(3px);
}

.zx-prob-cta {
  margin-top: 24px;
  align-self: flex-start;
}
.zx-probs-foot {
  margin: 40px 0 0;
  text-align: center;
}
@media (min-width: 1040px) {
  .zx-probs-foot { margin-top: 48px; }
}

/* ---------- 06 Programs — typography-led editorial directory ---------- */
#programi .zx-head-prog {
  margin-bottom: 48px;
  max-width: 40rem;
}
@media (max-width: 700px) { #programi .zx-head-prog { margin-bottom: 36px; } }

.zx-dir {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(34, 34, 34, 0.08);
}
@media (min-width: 1040px) {
  .zx-dir {
    grid-template-columns: 52fr 48fr;
  }
}

.zx-dir-half {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 32px;
}
@media (max-width: 700px) {
  .zx-dir-half { padding: 28px 22px 26px; }
}

.zx-dir-prog {
  background: var(--teal);
  color: #fff;
}
.zx-dir-exam {
  background: var(--paper);
  color: var(--ink);
}

.zx-dir-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 18px;
}
.zx-dir-prog .zx-dir-head {
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.zx-dir-exam .zx-dir-head {
  border-bottom: 1px solid rgba(34, 34, 34, 0.12);
}
.zx-dir-no {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(30px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--gold);
}
.zx-dir-exam .zx-dir-no { color: var(--gold-deep); }
.zx-dir-lab {
  margin: 4px 0 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.zx-dir-prog .zx-dir-lab { color: rgba(255, 255, 255, 0.92); }
.zx-dir-exam .zx-dir-lab { color: var(--teal); }
.zx-dir-note {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 28rem;
}
.zx-dir-prog .zx-dir-note { color: rgba(255, 255, 255, 0.68); }
.zx-dir-exam .zx-dir-note { color: rgba(34, 34, 34, 0.55); }

.zx-dir-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.zx-dir-list a {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 60px;
  padding: 18px 8px;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background .2s ease, padding-left .2s ease, border-color .2s ease;
}
.zx-dir-exam .zx-dir-list a {
  border-bottom-color: rgba(34, 34, 34, 0.1);
  color: var(--ink);
}
.zx-dir-prog .zx-dir-list a { color: #fff; }
.zx-dir-list li:last-child a { border-bottom: 0; }

.zx-dir-txt {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}
.zx-dir-name {
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.25;
  transition: transform .2s ease;
}
.zx-dir-desc {
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 450;
}
.zx-dir-prog .zx-dir-desc { color: rgba(255, 255, 255, 0.68); }
.zx-dir-exam .zx-dir-desc { color: rgba(34, 34, 34, 0.55); }

.zx-dir-list a .zx-arr {
  flex: 0 0 auto;
  margin-top: 2px;
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease;
}
.zx-dir-prog .zx-dir-list a .zx-arr { color: var(--gold); }
.zx-dir-exam .zx-dir-list a .zx-arr { color: var(--teal); }

.zx-dir-prog .zx-dir-list a:hover {
  background: rgba(255, 255, 255, 0.06);
  padding-left: 12px;
  border-color: rgba(200, 163, 92, 0.55);
}
.zx-dir-exam .zx-dir-list a:hover {
  background: rgba(0, 128, 128, 0.04);
  padding-left: 12px;
  border-color: var(--gold);
}
.zx-dir-list a:hover .zx-dir-name { transform: translateX(3px); }
.zx-dir-list a:hover .zx-arr { transform: translateX(4px); }

@media (max-width: 700px) {
  .zx-dir { border-radius: 22px; }
  .zx-dir-name { font-size: 17px; }
  .zx-dir-list a {
    min-height: 64px;
    padding: 16px 4px;
  }
}

/* ---------- 07 Online — premium healthcare service showcase ---------- */
.zx-online {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 1040px) {
  .zx-online {
    grid-template-columns: 56fr 44fr;
    gap: 48px;
  }
}

.zx-online-main .zx-h2 {
  max-width: 18ch;
}
.zx-online-lead {
  margin: 16px 0 28px;
  max-width: 36rem;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

/* Featured ivory card */
.zx-on-feat {
  background: var(--paper);
  color: var(--ink);
  border-radius: 22px;
  padding: 28px 28px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.zx-on-feat-tag {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.zx-on-feat-t {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.18;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.zx-on-feat-c {
  margin: 12px 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.62);
  max-width: 34rem;
}
.zx-on-feat-acts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.zx-on-feat-acts .zx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
}
.zx-on-feat-acts .zx-btn-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}
.zx-on-feat-acts .zx-btn-gold:hover {
  background: #d7b872;
  border-color: #d7b872;
  color: var(--ink);
}
.zx-on-feat-acts .zx-btn-ghost {
  background: transparent;
  border-color: rgba(34, 34, 34, 0.22);
  color: var(--ink);
}
.zx-on-feat-acts .zx-btn-ghost:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(0, 128, 128, 0.05);
}
.zx-on-feat-acts .zx-btn:hover .zx-arr { transform: translateX(3px); }

.zx-on-feat-pts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 20px 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}
.zx-on-feat-pts li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  font-weight: 550;
  color: rgba(34, 34, 34, 0.62);
}
.zx-on-feat-pts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.zx-on-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.zx-on-trust li {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  font-size: 12.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
}
.zx-on-note {
  margin: 16px 0 0;
  max-width: 34rem;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.58);
}

/* Right: secondary online service cards */
.zx-on-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 620px) and (max-width: 1039px) {
  .zx-on-grid { grid-template-columns: 1fr 1fr; }
  .zx-on-card-wide { grid-column: 1 / -1; }
}
@media (min-width: 1040px) {
  .zx-on-grid { grid-template-columns: 1fr; gap: 12px; }
}

.zx-on-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  text-decoration: none;
  color: #fff;
  transition: background .22s ease, border-color .22s ease, transform .22s ease;
}
.zx-on-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(200, 163, 92, 0.55);
  transform: translateY(-1px);
}
.zx-on-card-t {
  font-family: var(--display);
  font-size: clamp(18px, 1.5vw, 21px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.zx-on-card-c {
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
}
.zx-on-card-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 13.5px;
  font-weight: 650;
  color: var(--gold);
}
.zx-on-card:hover .zx-arr { transform: translateX(3px); }

@media (max-width: 700px) {
  .zx-online { gap: 28px; }
  .zx-online-lead { margin-bottom: 22px; font-size: 16px; }
  .zx-on-feat { padding: 24px 20px 22px; }
  .zx-on-feat-acts .zx-btn { flex: 1 1 100%; }
  .zx-on-card { padding: 18px 18px; min-height: 48px; }
  .zx-on-trust li { font-size: 12px; }
}

/* —— ARNI PRISTUP — scroll editorial methodology —— */
.zx-apx {
  background: linear-gradient(180deg, #ecf3f3 0%, #f2f5f4 55%, #f4f6f4 100%);
  position: relative;
  overflow: hidden;
}
.zx-apx::after {
  content: "";
  position: absolute;
  right: -8%;
  top: 18%;
  width: min(46vw, 520px);
  height: min(70vh, 640px);
  background:
    radial-gradient(ellipse at 40% 30%, rgba(0, 128, 128, 0.06), transparent 60%),
    radial-gradient(ellipse at 70% 70%, rgba(200, 163, 92, 0.05), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.zx-ap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 40px;
  align-items: start;
}

@media (min-width: 1000px) {
  .zx-ap {
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: 72px 96px;
  }
  .zx-ap-lead {
    position: sticky;
    top: 96px;
    align-self: start;
    padding-bottom: 24px;
  }
}

.zx-ap-lead .zx-eb { margin-bottom: 14px; }
.zx-ap-lead .zx-h2 {
  max-width: 11ch;
  margin: 0;
}
.zx-ap-lead .zx-sub {
  margin-top: 18px;
  max-width: 28rem;
  font-size: 16.5px;
  line-height: 1.65;
}
.zx-ap-note {
  margin: 14px 0 0;
  max-width: 26rem;
  font-size: 14.5px;
  line-height: 1.5;
  color: rgba(34, 34, 34, 0.52);
}
.zx-ap-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 15.5px;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.2s ease;
}
.zx-ap-cta .zx-arr {
  transition: transform 0.25s var(--ease);
}
.zx-ap-cta:hover {
  color: var(--teal);
}
.zx-ap-cta:hover .zx-arr {
  transform: translateX(4px);
}

/* Steps + rail */
.zx-ap-steps {
  position: relative;
  min-width: 0;
}
.zx-ap-rail {
  display: none;
}
.zx-ap-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.zx-ap-step {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: stretch;
}
.zx-ap-dot {
  width: 10px;
  height: 10px;
  margin-top: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 128, 128, 0.35);
  background: transparent;
  justify-self: center;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.zx-ap-step.is-active .zx-ap-dot,
.zx-ap-step.is-done .zx-ap-dot {
  background: var(--teal);
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.12);
}
.zx-ap-step.is-done .zx-ap-dot {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(200, 163, 92, 0.14);
}

.zx-ap-panel {
  padding: 22px 22px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(34, 34, 34, 0.07);
  transition:
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    opacity 0.35s var(--ease),
    transform 0.35s var(--ease);
  opacity: 0.62;
}
.zx-ap-step.is-active .zx-ap-panel {
  opacity: 1;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(0, 128, 128, 0.18);
  box-shadow: 0 12px 32px rgba(5, 64, 63, 0.06);
}
.zx-ap-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.zx-ap-n {
  font-family: var(--display);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  color: rgba(0, 128, 128, 0.22);
  transition: color 0.3s ease;
}
.zx-ap-step.is-active .zx-ap-n {
  color: var(--teal);
}
.zx-ap-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--teal);
  opacity: 0.55;
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}
.zx-ap-ico svg {
  width: 28px;
  height: 28px;
}
.zx-ap-step.is-active .zx-ap-ico {
  opacity: 1;
  transform: translateY(-2px);
}
.zx-ap-t {
  margin: 0 0 8px;
  font-size: clamp(19px, 1.6vw, 23px);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: rgba(34, 34, 34, 0.72);
  transition: color 0.3s ease;
}
.zx-ap-step.is-active .zx-ap-t {
  color: var(--ink);
}
.zx-ap-c {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(34, 34, 34, 0.55);
  max-width: 36rem;
  transition: color 0.3s ease;
}
.zx-ap-step.is-active .zx-ap-c {
  color: rgba(34, 34, 34, 0.68);
}
.zx-ap-m {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 550;
  letter-spacing: 0.02em;
  color: rgba(200, 163, 92, 0.95);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.zx-ap-step.is-active .zx-ap-m {
  opacity: 0.9;
  transform: none;
}

/* Desktop: editorial rows + vertical progress rail */
@media (min-width: 1000px) {
  .zx-ap-steps {
    padding-left: 28px;
  }
  .zx-ap-rail {
    display: block;
    position: absolute;
    left: 3px;
    top: 36px;
    bottom: 36px;
    width: 2px;
    z-index: 0;
  }
  .zx-ap-rail-track {
    position: absolute;
    inset: 0;
    background: rgba(0, 128, 128, 0.14);
    border-radius: 2px;
  }
  .zx-ap-rail-fill {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 0%;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--teal), var(--gold-deep));
    transition: height 0.35s var(--ease);
  }
  .zx-ap-list {
    gap: 0;
  }
  .zx-ap-step {
    grid-template-columns: 1fr;
    padding: 8px 0;
  }
  .zx-ap-dot {
    position: absolute;
    left: -28px;
    top: 42px;
    margin: 0;
    z-index: 2;
    background: #ecf3f3;
  }
  .zx-ap-panel {
    padding: 28px 8px 28px 12px;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(34, 34, 34, 0.08);
    box-shadow: none;
    opacity: 0.5;
    transform: translateY(10px);
  }
  .zx-ap-step:last-child .zx-ap-panel {
    border-bottom: 0;
  }
  .zx-ap-step.is-active .zx-ap-panel {
    opacity: 1;
    transform: none;
    background: linear-gradient(90deg, rgba(0, 128, 128, 0.05), transparent 55%);
    border-bottom-color: rgba(0, 128, 128, 0.12);
    box-shadow: none;
  }
  .zx-ap-step.is-done .zx-ap-panel {
    opacity: 0.72;
    transform: none;
  }
  .zx-ap-n {
    font-size: clamp(52px, 4.2vw, 64px);
  }
  .zx-ap-panel-top {
    margin-bottom: 14px;
  }
  .zx-ap-t {
    font-size: clamp(22px, 1.8vw, 28px);
    font-family: var(--display);
    font-weight: 400;
  }
  .zx-ap-c {
    font-size: 16.5px;
    max-width: 34rem;
  }
}

/* Entrance motion */
html.zx-js .zx-ap-step:not(.is-active):not(.is-done) .zx-ap-panel {
  /* kept muted via opacity above */
}
html.zx-js #pristup:not(.is-in) .zx-ap-step .zx-ap-panel {
  opacity: 0.35;
}

@media (max-width: 999px) {
  .zx-ap-lead .zx-h2 { max-width: none; }
  .zx-ap-cta { margin-top: 22px; }
  /* connector line between stacked cards */
  .zx-ap-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 42px;
    bottom: -14px;
    width: 1.5px;
    background: rgba(0, 128, 128, 0.16);
    z-index: 0;
  }
  .zx-ap-step.is-done:not(:last-child)::after,
  .zx-ap-step.is-active:not(:last-child)::after {
    background: linear-gradient(180deg, var(--teal), rgba(200, 163, 92, 0.7));
  }
  .zx-ap-dot { z-index: 1; position: relative; background: #ecf3f3; }
}

@media (prefers-reduced-motion: reduce) {
  .zx-ap-panel,
  .zx-ap-ico,
  .zx-ap-m,
  .zx-ap-rail-fill,
  .zx-ap-dot {
    transition: none !important;
  }
  .zx-ap-panel {
    transform: none !important;
    opacity: 1 !important;
  }
  .zx-ap-m { opacity: 0.85 !important; transform: none !important; }
}

/* ---------- 09 Team — premium editorial carousel ---------- */
#tim.zx {
  background: var(--paper);
}
.zx-teamx {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 1040px) {
  .zx-teamx {
    grid-template-columns: minmax(0, 0.36fr) minmax(0, 0.64fr);
    gap: 56px 64px;
  }
  .zx-teamx-lead { position: sticky; top: 96px; }
}
.zx-teamx-lead .zx-eb { margin-bottom: 12px; }
.zx-teamx-lead .zx-h2 { max-width: 14ch; margin: 0; }
.zx-teamx-lead .zx-sub {
  margin-top: 16px;
  max-width: 28rem;
  font-size: 16.5px;
  line-height: 1.65;
}
.zx-teamx-lead .zx-link { margin-top: 28px; }

.zx-teamx-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}
.zx-teamx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(34, 34, 34, 0.14);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    transform 0.25s var(--ease);
}
.zx-teamx-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}
.zx-teamx-btn:hover:not(:disabled) {
  border-color: var(--teal);
  color: var(--teal);
}
.zx-teamx-btn[data-team-prev]:hover:not(:disabled) svg {
  transform: translateX(-3px);
}
.zx-teamx-btn[data-team-next]:hover:not(:disabled) svg {
  transform: translateX(3px);
}
.zx-teamx-btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.zx-teamx-prog {
  margin: 0;
  min-width: 4.5ch;
  text-align: center;
  font-size: 13.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  color: rgba(34, 34, 34, 0.55);
}
.zx-teamx-prog span { color: var(--ink); }

.zx-teamx-progress {
  display: block;
  width: 100%;
  max-width: 180px;
  height: 1.5px;
  margin-top: 18px;
  background: rgba(34, 34, 34, 0.1);
  border-radius: 2px;
  overflow: hidden;
}
.zx-teamx-progress > span {
  display: block;
  height: 100%;
  width: 8.333%;
  background: linear-gradient(90deg, var(--teal), var(--gold-deep));
  border-radius: 2px;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.zx-teamx-stage { min-width: 0; }
.zx-teamx-viewport {
  overflow: hidden;
  cursor: grab;
  outline: none;
  touch-action: pan-y;
  padding-bottom: 8px;
}
.zx-teamx-viewport.is-dragging { cursor: grabbing; }
.zx-teamx-track {
  display: flex;
  gap: 20px;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.zx-teamx-viewport.is-dragging .zx-teamx-track { transition: none; }

.zx-teamx-slide {
  flex: 0 0 78%;
  max-width: 420px;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 24px;
  overflow: hidden;
  opacity: 0.42;
  transform: translateY(0) scale(0.94);
  transform-origin: center center;
  box-shadow: none;
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
  user-select: none;
}
.zx-teamx-slide.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 128, 128, 0.2);
  box-shadow: 0 14px 36px rgba(5, 64, 63, 0.07);
}
.zx-teamx-slide.is-near {
  opacity: 0.68;
  transform: scale(0.96);
}
@media (hover: hover) and (pointer: fine) {
  .zx-teamx-slide.is-active:hover {
    transform: translateY(-4px) scale(1);
  }
  .zx-teamx-slide.is-active:hover .zx-teamx-photo img {
    transform: scale(1.02);
  }
  .zx-teamx-slide.is-active:hover .zx-teamx-tags li {
    border-color: rgba(200, 163, 92, 0.45);
    background: rgba(200, 163, 92, 0.1);
    color: var(--gold-deep);
  }
}

.zx-teamx-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--paper);
  overflow: hidden;
}
.zx-teamx-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  pointer-events: none;
  transform: scale(1);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.zx-teamx-slide.is-active .zx-teamx-photo img {
  transform: scale(1);
}

.zx-teamx-body {
  padding: 22px 24px 24px;
}
.zx-teamx-name {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(21px, 1.8vw, 26px);
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.zx-teamx-role {
  margin: 10px 0 0;
  font-size: 14.5px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.58);
}
.zx-teamx-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.zx-teamx-tags li {
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(0, 128, 128, 0.16);
  background: rgba(0, 128, 128, 0.05);
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.03em;
  color: var(--teal);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.zx-teamx-bio {
  margin: 14px 0 0;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(34, 34, 34, 0.6);
}

/* Body content stagger on active change */
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-name,
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-role,
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-tags,
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-bio {
  animation: zx-teamx-in 0.45s var(--ease) both;
}
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-name { animation-delay: 40ms; }
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-role { animation-delay: 90ms; }
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-tags { animation-delay: 130ms; }
html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-bio { animation-delay: 170ms; }
@keyframes zx-teamx-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1039px) {
  .zx-teamx-slide { flex-basis: 74%; max-width: 380px; }
  .zx-teamx-nav { margin-top: 24px; }
  .zx-teamx-progress { margin-top: 16px; }
}
@media (max-width: 700px) {
  .zx-teamx { gap: 26px; }
  .zx-teamx-slide {
    flex-basis: 88%;
    max-width: none;
    border-radius: 20px;
  }
  .zx-teamx-photo { aspect-ratio: 5 / 6; max-height: 360px; }
  .zx-teamx-body { padding: 18px 18px 20px; }
  .zx-teamx-name { font-size: 20px; }
  .zx-teamx-role { margin-top: 8px; font-size: 14px; }
  .zx-teamx-tags { margin-top: 12px; gap: 6px; }
  .zx-teamx-tags li:nth-child(n + 4) { display: none; }
  .zx-teamx-bio { margin-top: 12px; font-size: 14px; }
  .zx-teamx-nav { margin-top: 20px; }
  .zx-teamx-lead .zx-link { margin-top: 20px; }
  .zx-teamx-lead .zx-h2 { max-width: none; }
}

@media (prefers-reduced-motion: reduce) {
  .zx-teamx-track,
  .zx-teamx-slide,
  .zx-teamx-photo img,
  .zx-teamx-progress > span,
  .zx-teamx-btn,
  .zx-teamx-btn svg {
    transition: none !important;
  }
  html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-name,
  html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-role,
  html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-tags,
  html.zx-js .zx-teamx-slide.is-active.is-reveal .zx-teamx-bio {
    animation: none !important;
  }
}

/* ---------- 10 Trust band ---------- */
.zx.zx-trust-sec {
  padding: 88px 0 96px;
  min-height: 0;
}
.zx-trustx {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.zx-trustx-intro {
  max-width: 720px;
}
.zx-trustx-intro .zx-eb { margin-bottom: 12px; }
.zx-trustx-intro .zx-h2 {
  max-width: 18ch;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.08;
}
.zx-trustx-sub {
  margin: 14px 0 0;
  max-width: 40rem;
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.74);
}

.zx-trustx-spread {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
}

.zx-trustx-media {
  margin: 0;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
  min-height: 420px;
}
.zx-trustx-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}
.zx-trustx-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent 0%, rgba(5, 28, 28, 0.55) 100%);
  pointer-events: none;
}
.zx-trustx-cap {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 1;
  margin: 0;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.zx-trustx-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
  padding: 48px 44px 44px;
  border-radius: 24px;
  background: var(--paper);
  color: var(--ink);
  box-sizing: border-box;
}
.zx-trustx-stat { min-width: 0; }
.zx-trustx-n {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(72px, 6.2vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.zx-trustx-l {
  margin: 10px 0 0;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.zx-trustx-note {
  margin: 12px 0 0;
  max-width: 22ch;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.58);
}
.zx-trustx-hr {
  margin: 28px 0;
  border: 0;
  border-top: 1px solid rgba(34, 34, 34, 0.12);
}
.zx-trustx-cta {
  margin-top: 32px;
  align-self: flex-start;
  color: var(--ink);
}
.zx-deep .zx-trustx-panel .zx-link {
  color: var(--ink);
  border-bottom-color: var(--gold);
}
.zx-deep .zx-trustx-panel .zx-link:hover {
  color: var(--teal);
  border-color: var(--teal);
}

@media (max-width: 1100px) {
  .zx.zx-trust-sec { padding: 80px 0 88px; }
  .zx-trustx { gap: 34px; }
  .zx-trustx-spread { gap: 18px; }
  .zx-trustx-panel { padding: 40px 34px 36px; }
  .zx-trustx-media { min-height: 380px; }
  .zx-trustx-n { font-size: clamp(64px, 7vw, 84px); }
}

@media (max-width: 900px) {
  .zx.zx-trust-sec { padding: 72px 0 80px; }
  .zx-trustx { gap: 28px; }
  .zx-trustx-spread {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .zx-trustx-media {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }
  .zx-trustx-panel { padding: 36px 28px 32px; }
  .zx-trustx-intro .zx-h2 { max-width: none; font-size: clamp(30px, 7vw, 40px); }
  .zx-trustx-n { font-size: clamp(62px, 14vw, 72px); }
  .zx-trustx-hr { margin: 24px 0; }
  .zx-trustx-cta { margin-top: 28px; }
}

/* ---------- 11 Knowledge / Magazine rail ---------- */
.zx.zx-mag-sec {
  padding: 108px 0 112px;
}
.zx-mag-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px 40px;
  margin-bottom: 56px;
}
.zx-mag-head-copy { max-width: 720px; min-width: 0; }
.zx-mag-head .zx-eb { margin-bottom: 12px; }
.zx-mag-head .zx-h2 { max-width: 18ch; }
.zx-mag-sub {
  margin: 14px 0 0;
  max-width: 40rem;
  font-size: 16.5px;
  line-height: 1.55;
  color: rgba(34, 34, 34, 0.62);
}
.zx-mag-head-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  margin-bottom: 4px;
}
.zx-mag-nav { display: flex; gap: 8px; }
.zx-mag-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(34, 34, 34, 0.14);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
  transition: border-color .25s var(--ease), color .25s var(--ease), background .25s var(--ease);
}
.zx-mag-btn svg { width: 18px; height: 18px; }
.zx-mag-btn:hover {
  border-color: var(--gold);
  color: var(--teal);
}
.zx-mag-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.zx-mag-topcta { white-space: nowrap; }

/* Full-bleed rail: cards flush to the left viewport edge */
.zx-mag-rail {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.zx-mag-viewport {
  overflow: hidden;
  cursor: grab;
  outline: none;
}
.zx-mag-viewport.is-dragging,
.zx-mag-viewport:active { cursor: grabbing; }
.zx-mag-track {
  display: flex;
  touch-action: pan-y pinch-zoom;
}
.zx-mag-slide {
  flex: 0 0 min(460px, 85vw);
  min-width: 0;
  padding-right: 24px;
  box-sizing: content-box;
}
/* Soft start: first card sits on the left edge; rest bleed off-screen right */
.zx-mag-slide:first-child {
  padding-left: 0;
}
@media (max-width: 1100px) {
  .zx-mag-slide {
    flex-basis: min(400px, 72vw);
    padding-right: 16px;
  }
}
@media (max-width: 700px) {
  .zx-mag-slide {
    flex-basis: min(320px, 88vw);
    padding-right: 12px;
  }
}

.zx-mag-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.09);
  border-radius: 22px;
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .3s var(--ease);
}
.zx-mag-card:hover { border-color: rgba(200, 163, 92, 0.72); }
.zx-mag-card:hover .zx-mag-title { color: var(--teal); }
.zx-mag-card:hover .zx-arr { transform: translateX(3px); }
.zx-mag-card:hover .zx-mag-media img { transform: scale(1.02); }

.zx-mag-media {
  flex: 0 0 auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--paper);
  border-radius: 21px 21px 0 0;
}
.zx-mag-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s var(--ease);
  pointer-events: none;
}

.zx-mag-body {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 24px 26px 26px;
  min-height: 210px;
}
.zx-mag-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.45);
}
.zx-mag-cat { color: var(--gold-deep); }
.zx-mag-title {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.12;
  letter-spacing: -0.02em;
  transition: color .3s var(--ease);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.zx-mag-x {
  margin: 12px 0 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: rgba(34, 34, 34, 0.58);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.zx-mag-go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--teal);
  min-height: 44px;
}
.zx-mag-go .zx-arr { transition: transform .3s var(--ease); }

.zx-mag-foot {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}
.zx-mag-all { font-size: 16.5px; }

@media (max-width: 900px) {
  .zx.zx-mag-sec { padding: 80px 0 84px; }
  .zx-mag-head {
    flex-wrap: wrap;
    align-items: flex-start;
    margin-bottom: 40px;
  }
  .zx-mag-head .zx-h2 { max-width: none; }
  .zx-mag-title { font-size: clamp(24px, 5.5vw, 28px); min-height: 0; }
  .zx-mag-body { padding: 22px 20px 22px; min-height: 190px; }
}

@media (max-width: 700px) {
  .zx.zx-mag-sec { padding: 72px 0 76px; }
  .zx-mag-nav { display: none; }
  .zx-mag-all { font-size: 15.5px; }
  .zx-mag-foot { margin-top: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .zx-mag-media img,
  .zx-mag-card,
  .zx-mag-title,
  .zx-mag-go .zx-arr { transition: none; }
  .zx-mag-card:hover .zx-mag-media img { transform: none; }
}

/* ---------- 12 FAQ — calm editorial accordion ---------- */
.zx.zx-faq-sec {
  padding: 104px 0 112px;
  background: var(--paper);
}
.zx-faqx {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  .zx-faqx {
    grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
    gap: 56px 72px;
  }
}

.zx-faqx-lead { min-width: 0; }
@media (min-width: 960px) {
  .zx-faqx-lead {
    position: sticky;
    top: 96px;
  }
}
.zx-faqx-lead .zx-eb { margin-bottom: 12px; }
.zx-faqx-lead .zx-h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(32px, 3.1vw, 44px);
}
.zx-faqx-sub {
  margin: 16px 0 0;
  max-width: 28ch;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.6);
}
.zx-faqx-cta {
  display: inline-flex;
  margin-top: 28px;
}

.zx-faqx-main { min-width: 0; }
.zx-faqx-hint {
  margin: 0 0 18px;
  font-size: 12.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.42);
}

.zx-faqx-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zx-faqx-item {
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.zx-faqx-item.is-open {
  background: #fff;
  border-color: rgba(0, 128, 128, 0.22);
  box-shadow: 0 10px 28px rgba(5, 64, 63, 0.05);
}

.zx-faqx-q {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
}
.zx-faqx-btn {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px 18px;
  min-height: 76px;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--font);
  color: var(--ink);
}
.zx-faqx-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
  border-radius: 16px;
}
.zx-faqx-item:not(.is-open) .zx-faqx-btn:hover {
  background: rgba(255, 255, 255, 0.72);
}
.zx-faqx-item:not(.is-open) .zx-faqx-btn:hover .zx-faqx-label {
  color: var(--teal);
}
.zx-faqx-item:not(.is-open) .zx-faqx-btn:hover .zx-faqx-ico {
  color: var(--gold-deep);
  transform: rotate(90deg);
}

.zx-faqx-num {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  color: rgba(169, 132, 53, 0.72);
  min-width: 1.6em;
  transition: color 0.22s var(--ease);
}
.zx-faqx-label {
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
  transition: color 0.22s var(--ease);
}
.zx-faqx-ico {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  color: rgba(34, 34, 34, 0.4);
  transition: color 0.25s var(--ease), transform 0.28s var(--ease);
}
.zx-faqx-ico::before,
.zx-faqx-ico::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  border-radius: 1px;
  transform: translate(-50%, -50%);
}
.zx-faqx-ico::before {
  width: 14px;
  height: 1.5px;
}
.zx-faqx-ico::after {
  width: 1.5px;
  height: 14px;
  transition: transform 0.28s var(--ease), opacity 0.28s var(--ease);
}
.zx-faqx-item.is-open .zx-faqx-num { color: var(--gold-deep); }
.zx-faqx-item.is-open .zx-faqx-label { color: var(--ink); }
.zx-faqx-item.is-open .zx-faqx-ico { color: var(--teal); }
.zx-faqx-item.is-open .zx-faqx-ico::after {
  transform: translate(-50%, -50%) scaleY(0);
  opacity: 0;
}

.zx-faqx-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.28s var(--ease),
    opacity 0.24s ease;
}
.zx-faqx-item.is-open .zx-faqx-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}
.zx-faqx-panel-in {
  overflow: hidden;
  min-height: 0;
}
.zx-faqx-panel-in p {
  margin: 0;
  padding: 0 22px 22px 60px;
  max-width: 42rem;
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(34, 34, 34, 0.62);
  transform: translateY(-4px);
  transition: transform 0.28s var(--ease);
}
.zx-faqx-item.is-open .zx-faqx-panel-in p {
  transform: none;
}
.zx-faqx-panel a {
  color: var(--teal);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 128, 128, 0.28);
  transition: border-color 0.2s ease;
}
.zx-faqx-panel a:hover {
  border-bottom-color: var(--teal);
}

/* Stagger FAQ items on enter */
html.zx-js #faq:not(.is-in) .zx-faqx-item {
  opacity: 0;
  transform: translateY(12px);
}
html.zx-js #faq.is-in .zx-faqx-item {
  animation: zx-faq-in 0.5s var(--ease) both;
}
html.zx-js #faq.is-in .zx-faqx-item:nth-child(1) { animation-delay: 40ms; }
html.zx-js #faq.is-in .zx-faqx-item:nth-child(2) { animation-delay: 90ms; }
html.zx-js #faq.is-in .zx-faqx-item:nth-child(3) { animation-delay: 140ms; }
html.zx-js #faq.is-in .zx-faqx-item:nth-child(4) { animation-delay: 190ms; }
html.zx-js #faq.is-in .zx-faqx-item:nth-child(5) { animation-delay: 240ms; }
html.zx-js #faq.is-in .zx-faqx-item:nth-child(6) { animation-delay: 290ms; }
html.zx-js #faq.is-in .zx-faqx-item:nth-child(7) { animation-delay: 340ms; }
@keyframes zx-faq-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 959px) {
  .zx.zx-faq-sec { padding: 80px 0 84px; }
  .zx-faqx { gap: 28px; }
  .zx-faqx-lead .zx-h2 { max-width: none; }
  .zx-faqx-sub { max-width: 40ch; }
  .zx-faqx-cta { margin-top: 20px; }
  .zx-faqx-hint { margin-bottom: 14px; }
  .zx-faqx-btn {
    min-height: 68px;
    padding: 18px 16px;
    gap: 12px 14px;
  }
  .zx-faqx-label { font-size: 17px; }
  .zx-faqx-panel-in p {
    padding: 0 16px 18px 16px;
    font-size: 15px;
  }
  .zx-faqx-item { border-radius: 14px; }
}

@media (max-width: 520px) {
  .zx-faqx-num { display: none; }
  .zx-faqx-btn { grid-template-columns: 1fr auto; }
  .zx-faqx-panel-in p { padding-left: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .zx-faqx-item,
  .zx-faqx-panel,
  .zx-faqx-panel-in p,
  .zx-faqx-ico,
  .zx-faqx-ico::after,
  .zx-faqx-label,
  .zx-faqx-num {
    transition: none !important;
    animation: none !important;
  }
  html.zx-js #faq:not(.is-in) .zx-faqx-item,
  html.zx-js #faq.is-in .zx-faqx-item {
    opacity: 1;
    transform: none;
    animation: none !important;
  }
}

/* ---------- 13 Final CTA — premium conversion block ---------- */
.zx-cta {
  padding: 8px 0 108px;
  background: var(--paper);
}
@media (max-width: 700px) {
  .zx-cta { padding: 0 0 72px; }
}

.zx-cta-box {
  position: relative;
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(145deg, #063f3e 0%, #05403f 42%, #043534 100%);
  border: 1px solid rgba(200, 163, 92, 0.18);
  box-shadow:
    0 24px 60px rgba(5, 64, 63, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  min-height: 0;
}
@media (min-width: 960px) {
  .zx-cta-box {
    grid-template-columns: minmax(0, 0.55fr) minmax(0, 0.45fr);
    min-height: 520px;
  }
}

.zx-cta-glow {
  position: absolute;
  inset: auto auto -20% -10%;
  width: min(70%, 520px);
  height: min(80%, 480px);
  background:
    radial-gradient(ellipse at 30% 40%, rgba(200, 163, 92, 0.16), transparent 62%),
    radial-gradient(ellipse at 70% 70%, rgba(0, 128, 128, 0.25), transparent 58%);
  pointer-events: none;
  z-index: 0;
}

.zx-cta-copy {
  position: relative;
  z-index: 1;
  padding: 44px 28px 40px;
  color: #fff;
  align-self: center;
}
@media (min-width: 960px) {
  .zx-cta-copy {
    padding: 56px 48px 56px 60px;
  }
}

.zx-cta-eb {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.zx-cta-copy .zx-h2 {
  max-width: 13ch;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.08;
  color: #fff;
}
.zx-cta-lead {
  margin: 18px 0 0;
  max-width: 32rem;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.74);
}

.zx-cta-rule {
  width: 48px;
  height: 1px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.85;
}

.zx-cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: 28px;
}

.zx-cta-primary {
  gap: 10px;
  min-height: 56px;
  padding: 0 32px;
  font-size: 15.5px;
  border-radius: 14px;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  box-shadow: 0 8px 22px rgba(200, 163, 92, 0.22);
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.zx-cta-primary .zx-arr {
  display: inline-block;
  transition: transform 0.28s var(--ease);
}
.zx-cta-primary:hover {
  background: #d7b872;
  border-color: #d7b872;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(200, 163, 92, 0.28);
}
.zx-cta-primary:hover .zx-arr { transform: translateX(4px); }

.zx-cta-secondary {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;
  min-height: 56px;
  padding: 10px 24px;
  line-height: 1.15;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  backdrop-filter: blur(6px);
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease);
}
.zx-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(200, 163, 92, 0.65);
  transform: translateY(-2px);
  color: #fff;
}
.zx-cta-sec-label {
  font-size: 15px;
  font-weight: 650;
}
.zx-cta-sec-tel {
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.68);
}

.zx-cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}
.zx-cta-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.3;
  color: rgba(242, 242, 239, 0.82);
}
.zx-cta-trust-ico {
  display: inline-flex;
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}
.zx-cta-trust-ico svg {
  width: 100%;
  height: 100%;
  display: block;
}

.zx-cta-media {
  position: relative;
  z-index: 1;
  margin: 0;
  min-height: 280px;
  background: rgba(0, 0, 0, 0.2);
  overflow: hidden;
}
@media (min-width: 960px) {
  .zx-cta-media {
    min-height: 100%;
    height: 100%;
  }
}
.zx-cta-media-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.zx-cta-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: saturate(0.9) brightness(0.92) contrast(1.02);
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .zx-cta-box:hover .zx-cta-media img {
    transform: scale(1.05);
  }
}
.zx-cta-media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 42%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 64, 63, 0.55) 0%, transparent 100%);
  pointer-events: none;
}
.zx-cta-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 28, 28, 0.62) 100%);
  pointer-events: none;
}
.zx-cta-cap {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 2;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 28, 28, 0.42);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

/* Enter motion */
html.zx-js .zx-cta:not(.is-in) [data-cta-stagger] {
  opacity: 0;
  transform: translateY(14px);
}
html.zx-js .zx-cta:not(.is-in) [data-cta-media] {
  opacity: 0;
  transform: translateX(18px);
}
html.zx-js .zx-cta.is-in [data-cta-stagger] {
  animation: zx-cta-up 0.55s var(--ease) both;
}
html.zx-js .zx-cta.is-in [data-cta-stagger]:nth-child(1) { animation-delay: 40ms; }
html.zx-js .zx-cta.is-in [data-cta-stagger]:nth-child(2) { animation-delay: 110ms; }
html.zx-js .zx-cta.is-in [data-cta-stagger]:nth-child(3) { animation-delay: 180ms; }
html.zx-js .zx-cta.is-in [data-cta-stagger]:nth-child(4) { animation-delay: 230ms; }
html.zx-js .zx-cta.is-in [data-cta-stagger]:nth-child(5) { animation-delay: 290ms; }
html.zx-js .zx-cta.is-in [data-cta-stagger]:nth-child(6) { animation-delay: 360ms; }
html.zx-js .zx-cta.is-in [data-cta-media] {
  animation: zx-cta-media 0.7s var(--ease) 160ms both;
}
@keyframes zx-cta-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}
@keyframes zx-cta-media {
  from { opacity: 0; transform: translateX(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 959px) {
  .zx-cta-box {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .zx-cta-copy {
    padding: 40px 24px 32px;
    order: 1;
  }
  .zx-cta-copy .zx-h2 {
    max-width: none;
    font-size: clamp(32px, 7.5vw, 42px);
  }
  .zx-cta-lead { font-size: 16.5px; }
  .zx-cta-btns { flex-direction: column; }
  .zx-cta-primary,
  .zx-cta-secondary {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  .zx-cta-secondary { text-align: center; align-items: center; }
  .zx-cta-trust { gap: 8px; }
  .zx-cta-media {
    order: 2;
    aspect-ratio: 16 / 11;
    min-height: 0;
  }
  .zx-cta-media::before {
    width: 100%;
    height: 30%;
    inset: 0 0 auto;
    background: linear-gradient(180deg, rgba(5, 64, 63, 0.4) 0%, transparent 100%);
  }
  .zx-cta-media img {
    filter: saturate(0.92) brightness(0.95);
  }
  .zx-cta-media-frame {
    position: absolute;
  }
  html.zx-js .zx-cta:not(.is-in) [data-cta-media],
  html.zx-js .zx-cta.is-in [data-cta-media] {
    transform: none;
  }
  html.zx-js .zx-cta.is-in [data-cta-media] {
    animation-name: zx-cta-up;
  }
}

@media (max-width: 700px) {
  .zx-cta-copy { padding: 36px 22px 28px; }
  .zx-cta-trust li {
    padding: 7px 10px 7px 8px;
    font-size: 12.5px;
  }
  .zx-cta-cap {
    left: 16px;
    bottom: 14px;
    font-size: 10.5px;
    padding: 7px 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .zx-cta-primary,
  .zx-cta-secondary,
  .zx-cta-primary .zx-arr,
  .zx-cta-media img {
    transition: none !important;
  }
  .zx-cta-primary:hover,
  .zx-cta-secondary:hover { transform: none; }
  .zx-cta-box:hover .zx-cta-media img { transform: scale(1.02); }
  html.zx-js .zx-cta:not(.is-in) [data-cta-stagger],
  html.zx-js .zx-cta:not(.is-in) [data-cta-media],
  html.zx-js .zx-cta.is-in [data-cta-stagger],
  html.zx-js .zx-cta.is-in [data-cta-media] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ---------- Contact — premium integrated block ---------- */
.zx.zx-contact-sec {
  padding: 104px 0 112px;
  background: var(--paper);
}
.zx-contact {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  .zx-contact {
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    gap: 48px 56px;
  }
}

.zx-contact-main { min-width: 0; }
.zx-contact-head .zx-eb { margin-bottom: 12px; }
.zx-contact-head .zx-h2 {
  margin: 0;
  max-width: 11ch;
}
.zx-contact-lead {
  margin: 14px 0 0;
  max-width: 34rem;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(34, 34, 34, 0.6);
}

/* Primary phone + WhatsApp side-by-side; email quieter */
.zx-contact-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 28px;
}
@media (min-width: 640px) {
  .zx-contact-actions {
    grid-template-columns: 1fr 1fr;
  }
  .zx-cact-mail {
    grid-column: 1 / -1;
  }
}

.zx-cact {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 14px;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(34, 34, 34, 0.09);
  background: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  color: var(--ink);
  transition:
    border-color 0.25s var(--ease),
    background 0.25s var(--ease),
    transform 0.25s var(--ease);
}
.zx-cact-primary {
  background: #fff;
  min-height: 78px;
  padding: 16px 18px;
}
.zx-cact:hover {
  border-color: rgba(200, 163, 92, 0.45);
  background: #fff;
  transform: translateY(-3px);
}
.zx-cact:hover .zx-cact-ico { transform: translateY(-1px); }
.zx-cact:hover .zx-cact-arr {
  transform: translateX(4px);
  color: var(--gold-deep);
}
.zx-cact:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

.zx-cact-ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 128, 128, 0.08);
  color: var(--teal);
  transition: transform 0.25s var(--ease);
}
.zx-cact-ico svg { width: 20px; height: 20px; display: block; }
.zx-cact-copy { display: grid; gap: 3px; min-width: 0; }
.zx-cact-kicker {
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.45);
}
.zx-cact-val {
  font-size: 16.5px;
  font-weight: 650;
  line-height: 1.25;
  color: var(--ink);
  word-break: break-word;
}
.zx-cact-arr {
  font-size: 17px;
  color: var(--gold-deep);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

/* Email: quieter secondary row */
.zx-cact-mail {
  min-height: 58px;
  padding: 12px 16px;
  background: transparent;
  border-color: rgba(34, 34, 34, 0.08);
}
.zx-cact-mail .zx-cact-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(200, 163, 92, 0.1);
  color: var(--gold-deep);
}
.zx-cact-mail .zx-cact-val { font-size: 15.5px; }
.zx-cact-mail:hover {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(200, 163, 92, 0.35);
}

/* Address + hours — typography-led, not heavy cards */
.zx-contact-meta {
  display: grid;
  gap: 22px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
}
@media (min-width: 640px) {
  .zx-contact-meta {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
.zx-cmeta-k {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.zx-cmeta-ico {
  width: 16px;
  height: 16px;
  color: var(--teal);
}
.zx-cmeta-ico svg { width: 100%; height: 100%; display: block; }
.zx-cmeta-v {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink);
}
.zx-cmeta-link {
  margin-top: 12px;
  font-size: 14px;
}
.zx-hours {
  margin: 0;
  display: grid;
  gap: 8px;
}
.zx-hours div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.zx-hours dt {
  margin: 0;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.52);
}
.zx-hours dd {
  margin: 0;
  font-size: 14.5px;
  font-weight: 650;
  color: var(--ink);
  text-align: right;
}

/* Map — integrated */
.zx-map-wrap {
  position: relative;
  margin-top: 26px;
}
.zx-map-mark {
  position: absolute;
  left: 0;
  top: -14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 163, 92, 0.18);
}
.zx-map-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 12px;
}
.zx-map-bar p {
  margin: 0;
  font-size: 13px;
  font-weight: 650;
  color: rgba(34, 34, 34, 0.55);
}
.zx-map-bar a {
  font-size: 13px;
  font-weight: 650;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.zx-map-bar a span {
  display: inline-block;
  transition: transform 0.25s var(--ease);
}
.zx-map-bar a:hover {
  color: var(--gold-deep);
  border-bottom-color: rgba(169, 132, 53, 0.35);
}
.zx-map-bar a:hover span { transform: translateX(3px); }

.zx-map {
  border-radius: 22px;
  overflow: hidden;
  background: #e8e8e3;
  border: 1px solid rgba(34, 34, 34, 0.08);
}
.zx-map iframe {
  width: 100%;
  height: 280px;
  border: 0;
  display: block;
}
.zx-map-ph {
  padding: 52px 20px;
  text-align: center;
  font-size: 14px;
  color: rgba(34, 34, 34, 0.48);
}
.zx-map-dir {
  display: inline-flex;
  margin-top: 12px;
  font-size: 14px;
}

/* Form — compact, secondary to phone/WhatsApp */
.zx-form-wrap {
  position: relative;
  min-width: 0;
}
.zx-form-glow {
  position: absolute;
  inset: 8% -8% -8% 8%;
  background: radial-gradient(ellipse at 60% 40%, rgba(0, 128, 128, 0.1), transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.zx-form {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 26px;
  padding: 32px 24px;
  width: 100%;
  box-shadow: 0 16px 40px rgba(5, 64, 63, 0.05);
}
@media (min-width: 960px) {
  .zx-form {
    padding: 40px 40px;
    position: sticky;
    top: 96px;
  }
}
.zx-form .zx-h3 {
  margin: 0;
  font-size: clamp(24px, 2vw, 28px);
}
.zx-form-sub {
  margin: 8px 0 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(34, 34, 34, 0.56);
}
.zx-form-fast {
  margin: 12px 0 20px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.48);
}
.zx-form-fast a {
  color: var(--teal);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 128, 128, 0.22);
}
.zx-form-fast a:hover { border-bottom-color: var(--teal); }

.zx-form-row {
  display: grid;
  gap: 0;
}
@media (min-width: 720px) {
  .zx-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

.zx-field { margin-bottom: 14px; }
.zx-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13.5px;
  font-weight: 650;
  color: rgba(34, 34, 34, 0.78);
}
.zx-field input,
.zx-field textarea {
  width: 100%;
  box-sizing: border-box;
  font: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fafaf8;
  border: 1px solid rgba(34, 34, 34, 0.12);
  border-radius: 14px;
  padding: 0 15px;
  min-height: 54px;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
}
.zx-field textarea {
  min-height: 148px;
  padding: 13px 15px;
  resize: vertical;
}
.zx-field input:focus,
.zx-field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.12);
}

.zx-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 4px 0 16px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.55);
}
.zx-check input {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  accent-color: var(--teal);
}
.zx-check a {
  color: var(--teal);
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 128, 128, 0.22);
}
.zx-hp {
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  opacity: 0;
}

.zx-form-submit {
  gap: 10px;
  min-height: 54px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(200, 163, 92, 0.18);
  transition:
    background 0.28s var(--ease),
    border-color 0.28s var(--ease),
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
.zx-form-submit .zx-arr { transition: transform 0.25s var(--ease); }
.zx-form-submit:hover {
  background: #d7b872;
  border-color: #d7b872;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(200, 163, 92, 0.24);
}
.zx-form-submit:hover .zx-arr { transform: translateX(4px); }
.zx-form-submit:disabled { opacity: 0.72; cursor: wait; transform: none; }

.zx-note {
  margin: 12px 0 0;
  font-size: 12.5px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.45);
}
.zx-status {
  margin-top: 12px;
  font-size: 14px;
  font-weight: 650;
  display: none;
}
.zx-status.show { display: block; }
.zx-status.ok { color: var(--teal); }
.zx-status.err { color: #9b2c2c; }

/* Enter motion */
html.zx-js #kontakt:not(.is-in) [data-contact-stagger],
html.zx-js #kontakt:not(.is-in) [data-contact-map],
html.zx-js #kontakt:not(.is-in) [data-contact-form] {
  opacity: 0;
  transform: translateY(18px);
}
html.zx-js #kontakt.is-in [data-contact-stagger],
html.zx-js #kontakt.is-in [data-contact-map],
html.zx-js #kontakt.is-in [data-contact-form] {
  animation: zx-contact-in 0.55s var(--ease) both;
}
html.zx-js #kontakt.is-in [data-contact-stagger]:nth-child(1) { animation-delay: 40ms; }
html.zx-js #kontakt.is-in [data-contact-stagger]:nth-child(2) { animation-delay: 110ms; }
html.zx-js #kontakt.is-in [data-contact-stagger]:nth-child(3) { animation-delay: 180ms; }
html.zx-js #kontakt.is-in [data-contact-map] { animation-delay: 250ms; }
html.zx-js #kontakt.is-in [data-contact-form] { animation-delay: 160ms; }
@keyframes zx-contact-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 959px) {
  .zx.zx-contact-sec { padding: 80px 0 84px; }
  .zx-contact { gap: 36px; }
  .zx-contact-head .zx-h2 { max-width: none; }
  .zx-form {
    padding: 28px 22px;
    border-radius: 22px;
    position: static;
  }
  .zx-map iframe { height: 240px; }
  .zx-form-row { grid-template-columns: 1fr; }
}

@media (max-width: 639px) {
  .zx-contact-actions { gap: 10px; }
  .zx-cact-primary { min-height: 70px; }
  .zx-cact-val { font-size: 15.5px; }
  .zx-contact-meta { grid-template-columns: 1fr; gap: 20px; }
  .zx-field input,
  .zx-field textarea { min-height: 52px; }
  .zx-field textarea { min-height: 136px; }
}

@media (prefers-reduced-motion: reduce) {
  .zx-cact,
  .zx-cact-ico,
  .zx-cact-arr,
  .zx-form-submit,
  .zx-form-submit .zx-arr,
  .zx-map-bar a span {
    transition: none !important;
  }
  .zx-cact:hover,
  .zx-form-submit:hover { transform: none; }
  html.zx-js #kontakt:not(.is-in) [data-contact-stagger],
  html.zx-js #kontakt:not(.is-in) [data-contact-map],
  html.zx-js #kontakt:not(.is-in) [data-contact-form],
  html.zx-js #kontakt.is-in [data-contact-stagger],
  html.zx-js #kontakt.is-in [data-contact-map],
  html.zx-js #kontakt.is-in [data-contact-form] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ---------- 14 Footer ---------- */
.zx-foot {
  background: #0d1c1c;
  color: rgba(242, 242, 239, 0.72);
  padding: 0 0 28px;
}
.zx-foot a {
  color: inherit;
  text-decoration: none;
}

/* A · CTA strip */
.zx-foot-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(200, 163, 92, 0.18);
}
.zx-foot-cta-q {
  margin: 0;
  max-width: 28rem;
  font-family: var(--font);
  font-size: clamp(17px, 1.5vw, 19px);
  font-weight: 550;
  line-height: 1.35;
  color: rgba(242, 242, 239, 0.94);
}
.zx-foot-cta-acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}
.zx-foot-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 650;
  letter-spacing: 0.01em;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.zx-foot-btn-gold {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--ink);
}
.zx-foot-btn-gold:hover {
  background: #d4b46d;
  border-color: #d4b46d;
  color: var(--ink);
  transform: translateY(-1px);
}
.zx-foot-btn-line {
  background: transparent;
  border: 1px solid rgba(242, 242, 239, 0.32);
  color: rgba(242, 242, 239, 0.92);
}
.zx-foot-btn-line:hover {
  border-color: rgba(242, 242, 239, 0.7);
  color: #fff;
}
.zx-foot-wa {
  font-size: 14px;
  font-weight: 600;
  color: rgba(200, 163, 92, 0.95);
  margin-left: 2px;
  transition: color 0.18s ease, transform 0.18s ease;
}
.zx-foot-wa:hover {
  color: #e0c07a;
  transform: translateX(2px);
}

/* B · Main */
.zx-foot-main {
  display: grid;
  gap: 40px;
  padding: 56px 0 48px;
}
@media (min-width: 1100px) {
  .zx-foot-main {
    grid-template-columns: minmax(220px, 0.95fr) minmax(0, 2.6fr);
    gap: 48px 56px;
    padding: 64px 0 56px;
    align-items: start;
  }
}

.zx-foot-logo {
  display: inline-flex;
  line-height: 0;
  margin-bottom: 16px;
}
.zx-foot-logo img {
  width: 108px;
  height: auto;
  max-height: 48px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}
.zx-foot-tag {
  margin: 0 0 22px;
  max-width: 22rem;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(242, 242, 239, 0.7);
}
.zx-foot-contact {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.zx-foot-contact a {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(242, 242, 239, 0.86);
  transition: color 0.18s ease, transform 0.18s ease;
}
.zx-foot-contact a:hover {
  color: #fff;
  transform: translateX(2px);
}
.zx-foot-ico {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  color: var(--gold);
}
.zx-foot-contact em {
  display: block;
  font-style: normal;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(242, 242, 239, 0.48);
  margin-bottom: 1px;
}
.zx-foot-contact span {
  font-size: 14.5px;
  line-height: 1.35;
}

.zx-foot-nav {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 760px) and (max-width: 1099px) {
  .zx-foot-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 32px;
  }
}
@media (min-width: 1100px) {
  .zx-foot-nav {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px 20px;
  }
}

.zx-foot-h {
  display: none;
  margin: 0 0 14px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.zx-foot-acc {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0;
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: rgba(242, 242, 239, 0.92);
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}
.zx-foot-col:last-child .zx-foot-acc {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.zx-foot-acc-ico {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.2s var(--ease);
  opacity: 0.7;
}
.zx-foot-col.is-open .zx-foot-acc-ico {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.zx-foot-list {
  margin: 0;
  padding: 0 0 14px;
  list-style: none;
}
.zx-foot-list a {
  display: inline-block;
  padding: 5px 0;
  font-size: 15.5px;
  line-height: 1.35;
  color: rgba(242, 242, 239, 0.68);
  transition: color 0.18s ease, transform 0.18s ease;
}
.zx-foot-list a:hover {
  color: #fff;
  transform: translateX(2px);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(200, 163, 92, 0.55);
}
.zx-foot-more a {
  color: var(--gold);
  font-weight: 600;
  font-size: 14.5px;
}
.zx-foot-sub {
  margin: 0 0 6px;
  padding-top: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(200, 163, 92, 0.75);
}
.zx-foot-split .zx-foot-list + .zx-foot-list {
  margin-top: 14px;
  padding-top: 4px;
}
.zx-foot-split {
  padding-bottom: 14px;
}

/* Mobile: panels closed unless open (only when JS active) */
@media (max-width: 759px) {
  html.zx-js .zx-foot-col [data-foot-panel] {
    display: none;
  }
  html.zx-js .zx-foot-col.is-open [data-foot-panel] {
    display: block;
  }
  .zx-foot-cta {
    padding: 24px 0;
  }
  .zx-foot-cta-acts {
    width: 100%;
  }
  .zx-foot-btn {
    flex: 1 1 auto;
    min-width: calc(50% - 8px);
  }
  .zx-foot-wa {
    width: 100%;
    margin: 4px 0 0;
  }
  .zx-foot-main {
    padding: 36px 0 28px;
    gap: 28px;
  }
}

/* Tablet+: static headings, no accordion chrome */
@media (min-width: 760px) {
  .zx-foot-acc { display: none; }
  .zx-foot-h { display: block; }
  .zx-foot-col [data-foot-panel] { display: block !important; }
  .zx-foot-list { padding-bottom: 0; }
  .zx-foot-list li { margin: 0; }
  .zx-foot-list a { padding: 4px 0; font-size: 15px; }
}

@media (min-width: 1100px) {
  .zx-foot-list a { font-size: 15.5px; }
}

/* C · Bottom bar */
.zx-foot-bot {
  display: grid;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: center;
  font-size: 13px;
  color: rgba(242, 242, 239, 0.55);
}
@media (min-width: 900px) {
  .zx-foot-bot {
    grid-template-columns: auto 1fr auto auto;
    gap: 16px 28px;
  }
}
.zx-foot-copy { margin: 0; }
.zx-foot-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}
.zx-foot-legal a:hover { color: rgba(242, 242, 239, 0.92); }
.zx-foot-soc {
  display: flex;
  align-items: center;
  gap: 10px;
}
.zx-foot-soc a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(242, 242, 239, 0.82);
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}
.zx-foot-soc a:hover {
  color: #fff;
  border-color: rgba(200, 163, 92, 0.55);
  background: rgba(200, 163, 92, 0.08);
}
.zx-foot-soc svg {
  width: 16px;
  height: 16px;
}
.zx-foot-top {
  justify-self: start;
  font-size: 13px;
  font-weight: 600;
  color: rgba(242, 242, 239, 0.7);
  transition: color 0.18s ease, transform 0.18s ease;
}
.zx-foot-top:hover {
  color: var(--gold);
  transform: translateY(-1px);
}
@media (min-width: 900px) {
  .zx-foot-legal { justify-self: center; }
  .zx-foot-top { justify-self: end; }
}

@media (prefers-reduced-motion: reduce) {
  .zx-foot-btn,
  .zx-foot-wa,
  .zx-foot-contact a,
  .zx-foot-list a,
  .zx-foot-top,
  .zx-foot-acc-ico {
    transition: none;
  }
  .zx-foot-btn-gold:hover,
  .zx-foot-wa:hover,
  .zx-foot-contact a:hover,
  .zx-foot-list a:hover,
  .zx-foot-top:hover {
    transform: none;
  }
}

/* ---------- Mobile action bar (ecommerce dock) ---------- */
.zx-mbar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 64px;
  padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
  background: rgba(13, 28, 28, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 28px rgba(0, 0, 0, 0.28);
}
.zx-mbar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-height: 52px;
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: rgba(242, 242, 239, 0.88);
  font-family: var(--font);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: color 0.15s ease, background 0.15s ease;
}
.zx-mbar-item:hover,
.zx-mbar-item:focus-visible {
  color: #fff;
}
.zx-mbar-ico {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
}
.zx-mbar-wa {
  color: rgba(242, 242, 239, 0.92);
}
.zx-mbar-book {
  color: var(--ink);
  background: var(--gold);
  border-radius: 12px;
  margin: 2px 4px;
  min-height: 48px;
}
.zx-mbar-book:hover,
.zx-mbar-book:focus-visible {
  color: var(--ink);
  background: #d4b46d;
}
.zx-mbar-menu[aria-expanded="true"] {
  color: var(--gold);
}
@media (min-width: 900px) {
  .zx-mbar { display: none; }
}

/* ---------- Micro-fluidity ---------- */
/* Hidden only when JS is active — prevents blank page if script fails */
html.zx-js [data-rv] {
  opacity: 0;
  transform: translateY(11px);
  transition: opacity .62s var(--ease), transform .62s var(--ease);
}
html.zx-js [data-rv].rv-in { opacity: 1; transform: none; }
[data-rv] { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.zx-js [data-rv],
  [data-rv] { opacity: 1; transform: none; transition: none; }
  .zx-d-media img { transform: none; }
  .zx-d-media img { transition: none; }
  .zx-t, .zx-prob-list a, .zx-arr, .zx-btn-ico { transition: none; }
  .zx-t:hover { transform: none; }
  .zx-t .zx-btn:hover .zx-btn-ico { transform: none; }
}

/* ---------- Mobile pass ---------- */
@media (max-width: 700px) {
  .zx-h2 { font-size: clamp(31px, 8.4vw, 39px); max-width: none; }
  .zx-sub { font-size: 16.5px; }
  .zx-cta-copy { padding: 36px 22px 28px; }
  .zx-cta-btns .zx-btn { flex: 1 1 100%; }
  .zx-form { padding: 30px 22px; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

/* ---------- Overflow safety + mobile density ---------- */
.zx, .zx-cta, .zx-foot { overflow-x: clip; }

@media (max-width: 700px) {
  .zx-foot { padding-bottom: 24px; }
}

/* ============================================================
   Mobile pass · sections 02–05 (430 / 390 / 375)
   ============================================================ */
@media (max-width: 619px) {
  /* 02 — keep images visible; stacked editorial cards */
  .zx-t {
    border-left: 3px solid var(--teal);
    border-radius: 18px;
  }
  .zx-t-gold { border-left-color: var(--gold); }
  .zx-t-body { padding: 22px 20px 18px; }
  .zx-t-title { font-size: 25px; }
  .zx-t-copy { font-size: 16px; }
  .zx-t-foot { padding-top: 18px; }
  .zx-t-foot .zx-btn { flex: 1 1 auto; }
  .zx-t-media {
    display: block;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }
  .zx-t-media::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 50%);
  }
  .zx-t-media img,
  .zx-t-media picture {
    height: 100%;
  }
}

@media (max-width: 1039px) {
  /* Tablet / mobile: stack all three; no horizontal featured layout */
  .zx-d-feat {
    display: flex;
    flex-direction: column;
  }
  .zx-d-feat .zx-d-media {
    aspect-ratio: 16 / 7.5;
    max-height: 200px;
    min-height: 0;
  }
  .zx-d-feat .zx-d-media img {
    position: static;
  }
  .zx-d-feat .zx-d-body { padding: 20px 18px 22px; }
}

@media (max-width: 700px) {
  /* Compact mobile: top 4 problems + Još (hide Bol u vratu) */
  .zx-d-feat .zx-q li:nth-child(5) { display: none; }
  .zx-d-feat .zx-d-media { max-height: 168px; }
  .zx-d-cols { grid-template-columns: 1fr; gap: 16px; }
  .zx-d-sec .zx-d-body { padding: 16px 18px 18px; }
  .zx-d-title { font-size: 24px; }
  .zx-d-sec .zx-d-title { font-size: 22px; }
  .zx-d-no { font-size: 28px; left: 16px; bottom: 10px; }
  .zx-d-claim { font-size: 15.5px; margin-bottom: 12px; }
  .zx-d-cta { margin-top: 18px; }
  .zx-d-sec .zx-d-media { max-height: 168px; }

  /* 04 — editorial stack, not cards */
  .zx-pil {
    padding: 32px 0;
  }
  .zx-pil:first-child { padding-top: 4px; }
  .zx-pil-res { font-size: 25px; max-width: none; }
  .zx-pil-mark {
    width: 40px;
    height: 40px;
    margin-bottom: 18px;
  }

  /* 05 */
  .zx-prob { padding: 24px 20px 22px; }
  .zx-prob-list a { min-height: 50px; }
  .zx-prob-list a span { font-size: 16px; }
  .zx-probs-foot { margin-top: 32px; text-align: left; }
}

/* ========== HOMEPAGE IA v2 — sticky float + USLUGE explorer + about ========== */

/* Hero secondary outline CTA (test funnel) */
.od-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: transparent;
  color: rgba(255, 252, 247, 0.96);
  font-size: 15.5px;
  font-weight: 650;
  text-decoration: none;
  transition: border-color 0.18s ease, background 0.18s ease, color 0.18s ease, transform 0.2s var(--ease);
}
.od-btn-outline:hover,
.od-btn-outline:focus-visible {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(200, 163, 92, 0.08);
}
@media (max-width: 959px) {
  .od-btn-outline {
    width: 100%;
    min-height: 50px;
  }
}

/* Sticky floating header (laptop/desktop) */
.od-float {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 80;
  width: calc(100% - 48px);
  max-width: calc(var(--max) - 80px);
  transform: translateX(-50%) translateY(-12px);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  overflow: visible;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
}
.od-float.is-on {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.od-float-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 10px 18px 10px 22px;
  border-radius: 18px;
  background: rgba(5, 64, 63, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
}
.od-float-logo img {
  display: block;
  width: 96px;
  height: auto;
  filter: brightness(0) invert(1);
}
.od-float-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1 1 auto;
}
.od-float-nav a {
  text-decoration: none;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 252, 247, 0.92);
  white-space: nowrap;
  transition: color 0.15s ease;
}
.od-float-nav a:hover,
.od-float-nav a:focus-visible {
  color: var(--gold);
}
.od-float-act {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}
.od-float-link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 252, 247, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 163, 92, 0.45);
  padding-bottom: 1px;
}
.od-float-link:hover { color: var(--gold); border-color: var(--gold); }
.od-float-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: var(--gold);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}
.od-float-book:hover { background: #d4b36e; }
@media (max-width: 1100px) {
  .od-float-nav { gap: 16px; }
  .od-float-nav a { font-size: 13.5px; }
}
@media (max-width: 959px) {
  .od-float { display: none !important; }
}
@media (prefers-reduced-motion: reduce) {
  .od-float { transition: none; }
}

/* —— USLUGE explorer — premium tiles + showcase panel —— */
#usluge .zx-head-svc {
  margin-bottom: 44px;
}
@media (max-width: 700px) {
  /* Pull Usluge heading closer to hero on mobile only */
  #usluge.zx {
    padding-top: 36px;
    padding-bottom: 64px;
  }
  #usluge .zx-head-svc {
    margin-bottom: 24px;
    text-align: center;
  }
  #usluge .zx-head-svc .zx-h2 {
    margin-inline: auto;
    text-align: center;
  }
}

#usluge .zx-svc {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  position: relative;
}

/* —— Category tiles —— */
#usluge .zx-svc-nav {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}

#usluge .zx-svc-tab {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 18px 18px 16px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  border-radius: 22px;
  background: #fff;
  text-align: left;
  cursor: pointer;
  color: var(--ink);
  box-sizing: border-box;
  position: relative;
  transition:
    transform 0.28s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
#usluge .zx-svc-tab:hover,
#usluge .zx-svc-tab:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(200, 163, 92, 0.55);
  background: #fffcf7;
  box-shadow: 0 14px 32px rgba(5, 64, 63, 0.07);
  outline: none;
}
#usluge .zx-svc-tab.is-active {
  border-color: rgba(0, 128, 128, 0.35);
  background: linear-gradient(180deg, #fff 0%, rgba(0, 128, 128, 0.04) 100%);
  box-shadow: 0 10px 28px rgba(5, 64, 63, 0.06);
  transform: translateY(-2px);
}
#usluge .zx-svc-tab.is-active::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 2px;
  border-radius: 2px 2px 0 0;
  background: var(--gold);
}

#usluge .zx-svc-tab-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
#usluge .zx-svc-tab-plus {
  position: relative;
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  opacity: 0.4;
  color: currentColor;
  transition: opacity 0.25s ease, color 0.25s ease, transform 0.28s var(--ease);
}
#usluge .zx-svc-tab-plus::before,
#usluge .zx-svc-tab-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.2s ease;
}
#usluge .zx-svc-tab-plus::before {
  left: 0; right: 0; top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
#usluge .zx-svc-tab-plus::after {
  top: 0; bottom: 0; left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}
#usluge .zx-svc-tab:hover .zx-svc-tab-plus {
  opacity: 0.85;
  color: var(--gold-deep);
}
#usluge .zx-svc-tab.is-active .zx-svc-tab-plus {
  opacity: 1;
  color: var(--teal);
}
#usluge .zx-svc-tab.is-active .zx-svc-tab-plus::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}

#usluge .zx-svc-tab-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(0, 128, 128, 0.06);
  color: var(--teal);
  transition: background 0.25s ease, color 0.25s ease, transform 0.28s var(--ease);
}
#usluge .zx-svc-tab-icon svg {
  width: 24px;
  height: 24px;
}
#usluge .zx-svc-tab:hover .zx-svc-tab-icon,
#usluge .zx-svc-tab.is-active .zx-svc-tab-icon {
  background: rgba(200, 163, 92, 0.14);
  color: var(--gold-deep);
  transform: scale(1.04);
}

#usluge .zx-svc-tab-l {
  display: block;
  font-family: var(--display);
  font-size: clamp(20px, 1.5vw, 24px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
#usluge .zx-svc-tab-m {
  display: block;
  margin-top: 0;
  font-size: 14.5px;
  line-height: 1.4;
  color: rgba(34, 34, 34, 0.55);
  max-width: 32ch;
}

/* Entrance stagger for tiles — first card always visible (no fade) */
html.zx-js #usluge .zx-svc-tab {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease);
}
html.zx-js #usluge .zx-svc-tab:nth-child(1) {
  opacity: 1;
  transform: none;
  transition:
    border-color 0.28s var(--ease),
    background 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    transform 0.28s var(--ease);
}
html.zx-js #usluge .zx-svc.is-ready .zx-svc-tab {
  opacity: 1;
  transform: none;
}
html.zx-js #usluge .zx-svc.is-ready .zx-svc-tab:nth-child(1) { transition-delay: 0ms; }
html.zx-js #usluge .zx-svc.is-ready .zx-svc-tab:nth-child(2) { transition-delay: 60ms; }
html.zx-js #usluge .zx-svc.is-ready .zx-svc-tab:nth-child(3) { transition-delay: 120ms; }
html.zx-js #usluge .zx-svc.is-ready .zx-svc-tab:nth-child(4) { transition-delay: 180ms; }
html.zx-js #usluge .zx-svc.is-ready .zx-svc-tab:hover,
html.zx-js #usluge .zx-svc-tab:nth-child(1):hover {
  transform: translateY(-4px);
  transition-delay: 0ms;
}
html.zx-js #usluge .zx-svc.is-ready .zx-svc-tab.is-active,
html.zx-js #usluge .zx-svc-tab:nth-child(1).is-active {
  transform: translateY(-2px);
  transition-delay: 0ms;
}

/* —— Stage / expanded explorer (no image) —— */
#usluge .zx-svc-stage {
  display: none;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0;
  padding: 0;
}
#usluge .zx-svc.is-open .zx-svc-stage {
  display: block !important;
  padding-top: 20px;
}

#usluge .zx-svc-panel {
  display: none !important;
  width: 100% !important;
}
#usluge .zx-svc-panel.is-active {
  display: block !important;
  animation: zx-svc-panel-in 0.36s var(--ease);
}
#usluge .zx-svc-panel[hidden] {
  display: none !important;
}
@keyframes zx-svc-panel-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

#usluge .zx-svc-reveal {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0;
  padding: 22px 20px 20px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.92) 0%, #fff 40%),
    radial-gradient(120% 80% at 100% 0%, rgba(0,128,128,0.05), transparent 55%);
  border: 1px solid rgba(34, 34, 34, 0.09);
  box-shadow: 0 12px 32px rgba(5, 64, 63, 0.05);
  box-sizing: border-box;
}

/* Intro */
#usluge .zx-svc-intro {
  margin-bottom: 20px;
}
#usluge .zx-svc-intro-top {
  margin-bottom: 14px;
}
#usluge .zx-svc-intro-copy {
  min-width: 0;
}
#usluge .zx-svc-title {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
#usluge .zx-svc-desc {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(34, 34, 34, 0.6);
  max-width: 42rem;
}
#usluge .zx-svc-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#usluge .zx-svc-chips li {
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 128, 128, 0.16);
  background: rgba(0, 128, 128, 0.05);
  color: var(--teal-deep);
  font-size: 12.5px;
  font-weight: 600;
  transition: background 0.2s ease, border-color 0.2s ease;
}
#usluge .zx-svc-chips li:hover {
  background: rgba(200, 163, 92, 0.12);
  border-color: rgba(200, 163, 92, 0.35);
}

/* Cards grid */
#usluge .zx-svc-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 18px;
}
#usluge .zx-svc-card {
  margin: 0;
  padding: 18px 18px 14px;
  border-radius: 20px;
  border: 1px solid rgba(34, 34, 34, 0.09);
  background: #fff;
  box-sizing: border-box;
  transition:
    transform 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    background 0.25s var(--ease);
}
#usluge .zx-svc-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 128, 128, 0.22);
  box-shadow: 0 10px 26px rgba(5, 64, 63, 0.06);
  background: #fffcf7;
}
#usluge .zx-svc-card-cta {
  background: linear-gradient(165deg, rgba(0,128,128,0.06) 0%, #fff 55%);
  border-color: rgba(0, 128, 128, 0.18);
}
#usluge .zx-svc-card-cta:hover {
  border-color: rgba(200, 163, 92, 0.45);
}
#usluge .zx-svc-card-ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 11px;
  background: rgba(0, 128, 128, 0.07);
  color: var(--teal);
}
#usluge .zx-svc-card-ico svg {
  width: 18px;
  height: 18px;
}
#usluge .zx-svc-card-cta .zx-svc-card-ico {
  background: rgba(200, 163, 92, 0.16);
  color: var(--gold-deep);
}
#usluge .zx-svc-card-lab {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
#usluge .zx-svc-card-t {
  margin: 0 0 6px;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}
#usluge .zx-svc-card-b {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(34, 34, 34, 0.55);
}
#usluge .zx-svc-card-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
}
#usluge .zx-svc-card-list a {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 42px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.3;
  transition: color 0.18s ease;
}
#usluge .zx-svc-card-list li:last-child a {
  border-bottom: 0;
}
#usluge .zx-svc-card-list a i {
  flex: 0 0 auto;
  opacity: 0.4;
  transition: transform 0.22s var(--ease), opacity 0.18s ease, color 0.18s ease;
}
#usluge .zx-svc-card-list a:hover {
  color: var(--teal);
}
#usluge .zx-svc-card-list a:hover i {
  opacity: 1;
  color: var(--gold-deep);
  transform: translateX(5px);
}

/* Footer CTA */
#usluge .zx-svc-foot {
  padding-top: 4px;
}
#usluge .zx-svc-acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
}
#usluge .zx-svc-acts .zx-btn {
  min-height: 46px;
}
#usluge .zx-svc-act-sec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 650;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 163, 92, 0.5);
  padding-bottom: 1px;
  transition: color 0.18s ease, border-color 0.18s ease;
}
#usluge .zx-svc-act-sec .zx-arr {
  transition: transform 0.22s var(--ease);
}
#usluge .zx-svc-act-sec:hover {
  color: var(--teal);
  border-color: var(--teal);
}
#usluge .zx-svc-act-sec:hover .zx-arr {
  transform: translateX(4px);
}
#usluge .zx-svc-hint {
  margin: 12px 0 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(34, 34, 34, 0.5);
  max-width: 40rem;
}

/* Stagger on open */
html.zx-js #usluge .zx-svc-panel.is-active [data-svc-stagger] {
  animation: zx-svc-stagger 0.4s var(--ease) both;
}
html.zx-js #usluge .zx-svc-panel.is-active .zx-svc-intro { animation-delay: 40ms; }
html.zx-js #usluge .zx-svc-panel.is-active .zx-svc-card:nth-child(1) { animation-delay: 90ms; }
html.zx-js #usluge .zx-svc-panel.is-active .zx-svc-card:nth-child(2) { animation-delay: 130ms; }
html.zx-js #usluge .zx-svc-panel.is-active .zx-svc-card:nth-child(3) { animation-delay: 170ms; }
html.zx-js #usluge .zx-svc-panel.is-active .zx-svc-card:nth-child(4) { animation-delay: 210ms; }
html.zx-js #usluge .zx-svc-panel.is-active .zx-svc-foot { animation-delay: 250ms; }
@keyframes zx-svc-stagger {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

/* Tablet: 2×2 cards + 2×2 category triggers */
@media (min-width: 760px) {
  #usluge .zx-svc-nav {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }
  #usluge .zx-svc.is-open .zx-svc-stage { padding-top: 24px; }
  #usluge .zx-svc-reveal { padding: 28px 28px 24px; }
  #usluge .zx-svc-intro-top { gap: 20px; }
  #usluge .zx-svc-cards {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  #usluge .zx-svc-tab {
    min-height: 0;
    padding: 20px 20px 18px;
  }
}

/* Desktop: 4 triggers + 4 cards */
@media (min-width: 1100px) {
  #usluge .zx-svc-nav {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px;
  }
  #usluge .zx-svc.is-open .zx-svc-stage { padding-top: 28px; }
  #usluge .zx-svc-reveal { padding: 32px 32px 28px; border-radius: 28px; }
  #usluge .zx-svc-title { font-size: clamp(30px, 2.4vw, 38px); }
  #usluge .zx-svc-desc { font-size: 16.5px; }
  #usluge .zx-svc-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }
  #usluge .zx-svc-card { padding: 20px 18px 14px; }
  #usluge .zx-svc-card-t { font-size: 21px; }
  #usluge .zx-svc-tab {
    min-height: 0;
    padding: 22px 20px 18px;
  }
  #usluge .zx-svc-tab-l { font-size: 22px; }
  #usluge .zx-svc-tab-m { font-size: 14px; }
}

@media (min-width: 1100px) and (max-width: 1280px) {
  #usluge .zx-svc-cards {
    grid-template-columns: 1fr 1fr;
  }
  #usluge .zx-svc-tab {
    min-height: 0;
    padding: 18px 16px 16px;
  }
  #usluge .zx-svc-tab-l { font-size: 19px; }
  #usluge .zx-svc-tab-m { font-size: 13.5px; }
}

@media (prefers-reduced-motion: reduce) {
  #usluge .zx-svc-tab,
  #usluge .zx-svc-panel.is-active,
  #usluge .zx-svc-card,
  html.zx-js #usluge .zx-svc-tab,
  html.zx-js #usluge .zx-svc-panel.is-active [data-svc-stagger] {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}


/* —— About ARNI — editorial premium trust —— */
.zx-aboutx {
  position: relative;
  background: var(--paper);
}
.zx-about {
  display: grid;
  gap: 28px;
  align-items: center;
  grid-template-columns: 1fr;
  grid-template-areas:
    "main"
    "visual";
}
.zx-about-visual {
  grid-area: visual;
  position: relative;
  min-width: 0;
}
.zx-about-main {
  grid-area: main;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 960px) {
  .zx-about {
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    grid-template-areas: "visual main";
    gap: 48px 64px;
    align-items: center;
  }
  .zx-about-main { gap: 32px; }
}
@media (min-width: 1200px) {
  .zx-about { gap: 56px 80px; }
}

.zx-about-halo {
  position: absolute;
  inset: 8% -10% -8% -8%;
  background:
    radial-gradient(ellipse at 35% 40%, rgba(0, 128, 128, 0.1), transparent 62%),
    radial-gradient(ellipse at 80% 80%, rgba(200, 163, 92, 0.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.zx-about-fig {
  position: relative;
  z-index: 1;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #0a4545;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(34, 34, 34, 0.06);
  box-shadow: 0 18px 44px rgba(5, 64, 63, 0.08);
}
.zx-about-fig img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 36%;
  transform: scale(1.01);
  transition: transform 0.7s var(--ease);
}
@media (hover: hover) and (pointer: fine) {
  .zx-about-fig:hover img {
    transform: scale(1.035);
  }
  .zx-about-fig:hover .zx-about-badge {
    transform: translateY(-3px);
  }
}

.zx-about-badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.95);
  border: 1px solid rgba(200, 163, 92, 0.22);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.35s var(--ease);
}
.zx-about-badge strong {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--gold-deep);
}
.zx-about-badge span {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(34, 34, 34, 0.55);
  white-space: nowrap;
}

.zx-about-lead .zx-eb { margin-bottom: 10px; }
.zx-about-lead .zx-h2 {
  max-width: 14ch;
  margin: 0;
}
.zx-about-lead .zx-sub {
  margin: 16px 0 0;
  max-width: 34rem;
  font-size: 16.5px;
  line-height: 1.65;
  color: rgba(34, 34, 34, 0.6);
}
.zx-about-lead::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.85;
}

/* Stats — premium trust markers */
.zx-about-trust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 4px 0 0;
  list-style: none;
}
.zx-about-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
  padding: 14px 0;
  border-top: 1px solid rgba(34, 34, 34, 0.08);
}
.zx-about-stat:last-child { border-bottom: 1px solid rgba(34, 34, 34, 0.08); }
.zx-about-stat-v {
  font-family: var(--display);
  font-size: clamp(28px, 4.5vw, 32px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--teal);
}
.zx-about-stat-l {
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(34, 34, 34, 0.5);
  max-width: 18ch;
}

@media (min-width: 700px) {
  .zx-about-trust {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    padding: 8px 0 0;
    border-top: 1px solid rgba(34, 34, 34, 0.08);
  }
  .zx-about-stat {
    padding: 18px 20px 4px 0;
    border-top: 0;
    border-right: 1px solid rgba(34, 34, 34, 0.08);
  }
  .zx-about-stat:last-child {
    border-right: 0;
    border-bottom: 0;
    padding-right: 0;
  }
  .zx-about-stat-v {
    font-size: clamp(28px, 2.4vw, 36px);
  }
}

/* CTA row */
.zx-about-acts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding-top: 4px;
}
.zx-about-cta,
.zx-about-sec {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  text-decoration: none;
  transition: color 0.22s ease;
}
.zx-about-cta {
  font-size: 15.5px;
  font-weight: 650;
  color: var(--ink);
}
.zx-about-cta::after,
.zx-about-sec::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 10px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.28s var(--ease);
}
.zx-about-cta:hover,
.zx-about-cta:focus-visible {
  color: var(--teal);
}
.zx-about-cta:hover::after,
.zx-about-cta:focus-visible::after,
.zx-about-sec:hover::after,
.zx-about-sec:focus-visible::after {
  width: calc(100% - 1.4em);
}
.zx-about-cta .zx-arr,
.zx-about-sec .zx-arr {
  transition: transform 0.25s var(--ease);
}
.zx-about-cta:hover .zx-arr,
.zx-about-sec:hover .zx-arr {
  transform: translateX(4px);
}
.zx-about-sec {
  font-size: 14.5px;
  font-weight: 550;
  color: rgba(34, 34, 34, 0.5);
}
.zx-about-sec:hover,
.zx-about-sec:focus-visible {
  color: var(--teal);
}

/* Motion */
html.zx-js #o-arni:not(.is-in) [data-about-visual] .zx-about-fig {
  opacity: 0;
  transform: translateY(18px);
}
html.zx-js #o-arni:not(.is-in) [data-about-visual] .zx-about-badge {
  opacity: 0;
  transform: translateY(10px);
}
html.zx-js #o-arni:not(.is-in) [data-about-stagger] {
  opacity: 0;
  transform: translateY(16px);
}
html.zx-js #o-arni.is-in [data-about-visual] .zx-about-fig {
  animation: zx-about-up 0.65s var(--ease) both;
}
html.zx-js #o-arni.is-in [data-about-visual] .zx-about-badge {
  animation: zx-about-up 0.5s var(--ease) 220ms both;
}
html.zx-js #o-arni.is-in [data-about-stagger]:nth-child(1) {
  animation: zx-about-up 0.55s var(--ease) 80ms both;
}
html.zx-js #o-arni.is-in [data-about-stagger]:nth-child(2) {
  animation: zx-about-up 0.55s var(--ease) 180ms both;
}
html.zx-js #o-arni.is-in [data-about-stagger]:nth-child(3) {
  animation: zx-about-up 0.55s var(--ease) 280ms both;
}
@keyframes zx-about-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 960px) {
  .zx-about-fig {
    border-radius: 30px;
    aspect-ratio: 4 / 5;
    min-height: 420px;
    max-height: 560px;
  }
  .zx-about-badge {
    left: 18px;
    bottom: 18px;
    padding: 11px 15px;
  }
  .zx-about-badge strong { font-size: 24px; }
  .zx-about-badge span { font-size: 10.5px; }
}

@media (max-width: 959px) {
  .zx-about { gap: 26px; }
  .zx-about-main { gap: 24px; }
  .zx-about-lead .zx-h2 { max-width: none; }
  .zx-about-lead .zx-sub { font-size: 16px; }
  .zx-about-acts {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .zx-about-cta,
  .zx-about-sec {
    min-height: 46px;
  }
}

@media (max-width: 699px) {
  .zx-about-fig {
    aspect-ratio: 4 / 3;
    max-height: 280px;
  }
  .zx-about-stat {
    padding: 12px 0;
  }
  .zx-about-stat-v { font-size: 26px; }
  .zx-about-halo { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .zx-about-fig img,
  .zx-about-badge,
  .zx-about-cta::after,
  .zx-about-sec::after,
  .zx-about-cta .zx-arr,
  .zx-about-sec .zx-arr {
    transition: none !important;
  }
  .zx-about-fig:hover img { transform: scale(1.01); }
  .zx-about-fig:hover .zx-about-badge { transform: none; }
  html.zx-js #o-arni:not(.is-in) [data-about-visual] .zx-about-fig,
  html.zx-js #o-arni:not(.is-in) [data-about-visual] .zx-about-badge,
  html.zx-js #o-arni:not(.is-in) [data-about-stagger],
  html.zx-js #o-arni.is-in [data-about-visual] .zx-about-fig,
  html.zx-js #o-arni.is-in [data-about-visual] .zx-about-badge,
  html.zx-js #o-arni.is-in [data-about-stagger] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* ========== Laptop mega-menu (same IA as footer) ========== */
.od-hdr {
  overflow: visible;
}
.od-nav,
.od-float-nav {
  overflow: visible;
}
.od-nav .nav-item,
.od-float-nav .nav-item {
  position: static;
}
.od-nav .nav-trig,
.od-float-nav .nav-trig {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  padding: 8px 0;
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255, 252, 247, 0.96);
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.18s ease;
}
.od-nav .nav-trig:hover,
.od-nav .nav-trig:focus-visible,
.od-nav .nav-item.is-open > .nav-trig,
.od-float-nav .nav-trig:hover,
.od-float-nav .nav-trig:focus-visible,
.od-float-nav .nav-item.is-open > .nav-trig {
  color: var(--gold);
}
.od-nav .nav-chev,
.od-float-nav .nav-chev {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  opacity: 0.6;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.od-nav .nav-item.is-open > .nav-trig .nav-chev,
.od-float-nav .nav-item.is-open > .nav-trig .nav-chev {
  transform: rotate(180deg);
  opacity: 0.95;
}

.od-nav .mega,
.od-float-nav .mega {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 90;
  width: min(920px, calc(100vw - 64px));
  padding: 26px 28px 20px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(34, 34, 34, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.od-float-nav .mega {
  top: calc(100% + 10px);
}
.od-nav .nav-item.is-open > .mega,
.od-float-nav .nav-item.is-open > .mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.od-nav .mega-sm,
.od-float-nav .mega-sm { width: min(400px, calc(100vw - 64px)); }
.od-nav .mega-md,
.od-float-nav .mega-md { width: min(560px, calc(100vw - 64px)); }
.od-nav .mega-title,
.od-float-nav .mega-title {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.od-nav .mega-grid,
.od-float-nav .mega-grid {
  display: grid;
  gap: 24px 28px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.od-nav .mega-grid-2,
.od-float-nav .mega-grid-2 { grid-template-columns: 1.05fr 1.25fr; }
.od-nav .mega-label,
.od-float-nav .mega-label {
  margin: 0 0 10px;
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
}
.od-nav .mega-group + .mega-group,
.od-float-nav .mega-group + .mega-group { margin-top: 16px; }
.od-nav .mega-list,
.od-float-nav .mega-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2px;
}
.od-nav .mega-problems,
.od-float-nav .mega-problems {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}
.od-nav .mega-link,
.od-float-nav .mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 6px 8px;
  margin: 0 -8px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink) !important;
  line-height: 1.3;
  transition: background 0.15s ease, color 0.15s ease;
}
.od-nav .mega-link::after,
.od-float-nav .mega-link::after {
  content: "→";
  margin-left: auto;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.15s ease, transform 0.15s ease;
  color: var(--teal);
  font-size: 14px;
}
.od-nav .mega-link:hover,
.od-nav .mega-link:focus-visible,
.od-float-nav .mega-link:hover,
.od-float-nav .mega-link:focus-visible {
  background: var(--paper);
  color: var(--teal-deep) !important;
}
.od-nav .mega-link:hover::after,
.od-nav .mega-link:focus-visible::after,
.od-float-nav .mega-link:hover::after,
.od-float-nav .mega-link:focus-visible::after {
  opacity: 1;
  transform: none;
}
.od-nav .mega-link.is-feat,
.od-float-nav .mega-link.is-feat { font-weight: 650; }
.od-nav .mega-link.is-feat::before,
.od-float-nav .mega-link.is-feat::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex: 0 0 auto;
}
.od-nav .mega-badge,
.od-float-nav .mega-badge {
  display: inline-flex;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 999px;
  background: rgba(0, 128, 128, 0.1);
  color: var(--teal);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.od-nav .mega-cta,
.od-float-nav .mega-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink) !important;
  background: rgba(0, 128, 128, 0.08);
  transition: background 0.18s ease, color 0.18s ease;
}
.od-nav .mega-cta span:last-child,
.od-float-nav .mega-cta span:last-child {
  color: var(--teal);
  transition: transform 0.18s ease;
}
.od-nav .mega-cta:hover span:last-child,
.od-float-nav .mega-cta:hover span:last-child {
  transform: translateX(3px);
}
.od-nav .mega-cta-gold,
.od-float-nav .mega-cta-gold { background: rgba(200, 163, 92, 0.14); }
.od-nav .mega-cta-gold span:last-child,
.od-float-nav .mega-cta-gold span:last-child { color: var(--gold-deep); }
.od-nav .mega-cta-neutral,
.od-float-nav .mega-cta-neutral { background: var(--paper); }

/* Keep hero corners clipped; only lift overflow while a mega is open */
@media (min-width: 1100px) {
  .od-hero {
    overflow: hidden;
  }
  .od-hero:has(.nav-item.is-open) {
    overflow: visible;
  }
  .od-media {
    overflow: hidden;
    /* Reinforce right-edge radius under diagonal clip-path */
    border-top-right-radius: 32px;
    border-bottom-right-radius: 32px;
  }
  .od-nav {
    gap: 16px;
    position: relative;
  }
  .od-nav .nav-trig { font-size: 14px; }
  .od-float-in {
    overflow: visible;
    position: relative;
  }
  .od-float-nav {
    position: relative;
    gap: 14px;
  }
  .od-float-nav .nav-trig { font-size: 13px; }
}
@media (min-width: 1280px) {
  .od-nav { gap: 22px; }
  .od-nav .nav-trig { font-size: 14.5px; }
  .od-float-nav { gap: 18px; }
  .od-float-nav .nav-trig { font-size: 14px; }
}
@media (min-width: 1440px) {
  .od-nav { gap: 26px; }
  .od-nav .nav-trig { font-size: 15px; }
}
@media (min-width: 1100px) and (max-width: 1279px) {
  .od-nav .nav-trig { font-size: 13px; }
  .od-nav { gap: 12px; }
}

/* Entrance animation targets mega triggers */
html.od-js .od-hero:not(.od-ready) .od-nav .nav-item {
  opacity: 0;
  transform: translateY(-6px);
}
html.od-js .od-hero.od-ready .od-nav .nav-item {
  opacity: 1;
  transform: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
html.od-js .od-hero.od-ready .od-nav .nav-item:nth-child(1) { transition-delay: 110ms; }
html.od-js .od-hero.od-ready .od-nav .nav-item:nth-child(2) { transition-delay: 135ms; }
html.od-js .od-hero.od-ready .od-nav .nav-item:nth-child(3) { transition-delay: 160ms; }
html.od-js .od-hero.od-ready .od-nav .nav-item:nth-child(4) { transition-delay: 185ms; }
html.od-js .od-hero.od-ready .od-nav .nav-item:nth-child(5) { transition-delay: 210ms; }
html.od-js .od-hero.od-settled .od-nav .nav-item {
  transition-delay: 0ms !important;
}
