@charset "utf-8";
/* ============================================================
   eFactura DocuHelp — ZEN-style homepage
   Layers on top of editorial.css (unlayered → always wins).

   MOTION CONTRACT (important, do not break):
   Every piece of *content* is fully painted at first render.
   Reveals, tabs, tickers and carousels move things with
   `transform` only — never opacity, visibility or clip.
   Only decorative, aria-hidden glows may fade.
   ============================================================ */

/* ------------------------------------------------------------
   1 · TOKENS
   ------------------------------------------------------------ */
.zh-page {
  --z-teal:        #008080;
  --z-teal-2:      #00a3a3;
  --z-teal-deep:   #004c4c;
  --z-ink:         #06302f;   /* deep teal ground, sampled from the hero wall */
  --z-mint:        #5fe3c0;   /* bright accent for dark bands */
  --z-sand:        #f6f3ec;   /* warm paper */
  --z-sand-2:      #efeade;
  --z-card:        #ffffff;
  --z-text:        #17201f;
  --z-muted:       #566362;
  --z-rule:        #e2ddd0;
  --z-r:           20px;
  --z-r-lg:        30px;
  --z-r-xl:        40px;
  --z-shadow:      0 24px 60px -30px rgb(4 40 38 / .38);
  --z-shadow-lg:   0 44px 90px -40px rgb(4 40 38 / .52);

  background: var(--z-sand);
  color: var(--z-text);
  overflow-x: clip;
}

/* ------------------------------------------------------------
   2 · REVEAL — position only, never opacity
   editorial.css hides .rv with opacity:0; this file is unlayered
   so it wins over that @layer rule regardless of source order.
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  html.js .zh-page .rv,
  html.js .zh-page .rv.on {
    opacity: 1;
    transition: transform .82s cubic-bezier(.22, .8, .28, 1);
    transition-delay: var(--rv-d, 0s);
  }
  html.js .zh-page .rv     { transform: translate3d(0, 26px, 0); }
  html.js .zh-page .rv.on  { transform: translate3d(0, 0, 0); }

  html.js .zh-page .rv-x     { transform: translate3d(26px, 0, 0); }
  html.js .zh-page .rv-x.on  { transform: translate3d(0, 0, 0); }
}

/* ------------------------------------------------------------
   3 · MASTHEAD — transparent over the hero, solid after it
   ------------------------------------------------------------ */
body:has(.zh-page) .masthead {
  position: fixed;
  inset: 0 0 auto;
  background: transparent;
  box-shadow: none;
  transition: background .32s ease, box-shadow .32s ease, transform .32s ease;
}

body:has(.zh-page) .masthead.is-solid {
  background: rgba(255, 255, 255, .93);
  -webkit-backdrop-filter: saturate(1.6) blur(16px);
  backdrop-filter: saturate(1.6) blur(16px);
  box-shadow: 0 1px 0 rgb(4 40 38 / .08), 0 14px 34px -26px rgb(4 40 38 / .5);
}

/* over-photo state: white wordmark + white links */
body:has(.zh-page) .masthead:not(.is-solid) .logo img {
  content: url(../img/logo-white.png?v=3);
}
body:has(.zh-page) .masthead:not(.is-solid) .nav a:not(.btn) {
  color: rgba(255, 255, 255, .88);
}
body:has(.zh-page) .masthead:not(.is-solid) .nav a:not(.btn):hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, .6);
}
body:has(.zh-page) .masthead:not(.is-solid) .nav a[aria-current="page"] {
  color: #fff;
  border-bottom-color: #5fe3c0;
}
body:has(.zh-page) .masthead:not(.is-solid) .burger span {
  background: #fff;
  box-shadow: 0 -6px 0 #fff, 0 6px 0 #fff;
}
body:has(.zh-page) .masthead .nav .btn { --btn-bg: #008080; }
body:has(.zh-page) .masthead:not(.is-solid) .nav .btn {
  --btn-bg: #fff;
  --btn-fg: #06302f;
}

/* an open mobile drawer always reads as solid */
body:has(.zh-page) .masthead:has(.nav-toggle:checked) {
  background: rgba(255, 255, 255, .97);
  box-shadow: 0 1px 0 rgb(4 40 38 / .08);
  transform: none;
}
body:has(.zh-page) .masthead:has(.nav-toggle:checked) .logo img { content: normal; }
body:has(.zh-page) .masthead:has(.nav-toggle:checked) .nav a:not(.btn) { color: var(--ink-2); }
body:has(.zh-page) .masthead:has(.nav-toggle:checked) .burger span {
  background: var(--ink);
  box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink);
}

/* ------------------------------------------------------------
   4 · SCROLL PROGRESS RAIL
   ------------------------------------------------------------ */
.zh-progress {
  position: fixed;
  inset: 0 0 auto;
  height: 3px;
  z-index: 70;
  pointer-events: none;
}
.zh-progress i {
  display: block;
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: 0 50%;
  background: linear-gradient(90deg, #008080, #5fe3c0);
}

/* ------------------------------------------------------------
   5 · HERO
   ------------------------------------------------------------ */
.zh-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--bar-h) + 24px);
  padding-bottom: clamp(36px, 6vw, 86px);
  overflow: hidden;
  isolation: isolate;
  background: var(--z-ink);
  color: #fff;
}

.zh-hero__media {
  position: absolute;
  inset: -8% 0;
  z-index: -2;
  will-change: transform;
}

.zh-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
}

/* legibility: dark on the left where the copy sits, soft at the bottom */
.zh-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(96deg, rgba(4, 40, 38, .94) 0%, rgba(4, 40, 38, .82) 26%, rgba(4, 40, 38, .34) 52%, rgba(4, 40, 38, 0) 72%),
    linear-gradient(180deg, rgba(4, 40, 38, .68) 0%, rgba(4, 40, 38, 0) 26%, rgba(4, 40, 38, 0) 58%, rgba(4, 40, 38, .74) 100%);
}

.zh-hero__inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  position: relative;
}

.zh-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .3);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .015em;
  color: #fff;
  margin-bottom: clamp(18px, 2.4vw, 28px);
}

.zh-hero__eyebrow .dot {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--z-mint);
  flex: none;
}
.zh-hero__eyebrow .dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--z-mint);
  animation: zh-ping 2.4s cubic-bezier(.2, .8, .3, 1) infinite;
}
@keyframes zh-ping {
  0%        { transform: scale(1); }
  70%, 100% { transform: scale(3.2); }
}

.zh-hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.6rem, 6.6vw, 5.4rem);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.036em;
  color: #fff;
  text-wrap: balance;
  max-width: 15ch;
}
.zh-hero__title em { font-style: normal; color: var(--z-mint); }

.zh-hero__lede {
  margin-top: clamp(18px, 2.2vw, 26px);
  max-width: 46ch;
  font-size: clamp(1.02rem, 1.25vw, 1.22rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, .9);
}

.zh-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 36px);
}

.zh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--z-mint);
  color: #052e2c;
  border: 1.5px solid transparent;
  font-size: .98rem;
  font-weight: 700;
  letter-spacing: -.008em;
  transition: transform .24s cubic-bezier(.2, .8, .3, 1), background .22s, border-color .22s, box-shadow .24s;
  will-change: transform;
}
.zh-btn .arw { transition: transform .24s cubic-bezier(.2, .8, .3, 1); }
.zh-btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -18px rgba(4, 40, 38, .8); }
.zh-btn:hover .arw { transform: translateX(4px); }
.zh-btn:active { transform: translateY(0); }

.zh-btn--ghost {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .48);
  color: #fff;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.zh-btn--ghost:hover { background: rgba(255, 255, 255, .18); border-color: #fff; }

.zh-btn--ink { background: var(--z-teal); color: #fff; }
.zh-btn--ink:hover { background: var(--z-teal-deep); }

.zh-btn--light { background: #fff; color: var(--z-ink); }

.zh-btn--outline {
  background: transparent;
  border-color: rgba(6, 48, 47, .28);
  color: var(--z-ink);
}
.zh-btn--outline:hover { background: rgba(6, 48, 47, .06); border-color: rgba(6, 48, 47, .5); }

/* hero trust row */
.zh-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3.4vw, 52px);
  margin-top: clamp(30px, 4vw, 52px);
  padding-top: clamp(20px, 2.6vw, 30px);
  border-top: 1px solid rgba(255, 255, 255, .22);
  max-width: 40rem;
}
/* only two items: keep them on one line instead of wrap */
.zh-hero__trust--pair { flex-wrap: nowrap; }
@media (width < 480px) {
  .zh-hero__trust--pair { flex-wrap: wrap; }
}
.zh-hero__trust b {
  display: block;
  font-family: var(--f-display);
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -.028em;
  color: #fff;
  line-height: 1.1;
}
.zh-hero__trust span {
  display: block;
  font-size: .84rem;
  color: rgba(255, 255, 255, .74);
  margin-top: 2px;
}

/* floating app notifications, right side over the photo */
.zh-noti {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: 300px;
  padding: 13px 18px 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(255, 255, 255, .7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 44px -22px rgba(4, 40, 38, .7);
  color: var(--z-ink);
  animation: zh-bob 7s ease-in-out infinite;
  will-change: transform;
}
.zh-noti__ic {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--z-teal);
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  flex: none;
}
.zh-noti__ic--mint { background: var(--z-mint); color: #052e2c; }
.zh-noti__tx { display: grid; gap: 1px; min-width: 0; }
.zh-noti__tx b { font-size: .84rem; font-weight: 700; letter-spacing: -.01em; }
.zh-noti__tx span { font-size: .76rem; color: var(--z-muted); }

/* kept clear of the fixed masthead at the top of the hero */
.zh-noti--1 { top: 16%; right: 3%;  animation-delay: 0s; }
.zh-noti--2 { top: 42%; right: 12%; animation-delay: -2.3s; }
.zh-noti--3 { top: 68%; right: 1%;  animation-delay: -4.6s; }

@keyframes zh-bob {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -14px, 0); }
}

/* scroll cue */
.zh-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(14px, 2vw, 26px);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
}
.zh-cue i {
  display: block;
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .9));
  animation: zh-cue 2.2s ease-in-out infinite;
  transform-origin: 50% 0;
}
@keyframes zh-cue {
  0%, 100% { transform: scaleY(.35); }
  50%      { transform: scaleY(1); }
}

/* ------------------------------------------------------------
   6 · TICKER STRIP (below hero)
   ------------------------------------------------------------ */
.zh-ticker {
  background: var(--z-ink);
  color: #fff;
  padding-block: 15px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, .08);
}
.zh-ticker__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 54px);
  width: max-content;
  animation: zh-slide 42s linear infinite;
}
.zh-ticker:hover .zh-ticker__track { animation-play-state: paused; }
.zh-ticker__track span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.006em;
  color: rgba(255, 255, 255, .9);
  white-space: nowrap;
}
.zh-ticker__track span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--z-mint);
  flex: none;
}
@keyframes zh-slide {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

/* ------------------------------------------------------------
   7 · SECTION SHELLS
   ------------------------------------------------------------ */
.zh-section { padding-block: clamp(56px, 7.4vw, 116px); position: relative; }
.zh-section--soft  { background: var(--z-sand-2); }
.zh-section--white { background: #fff; }
.zh-section--dark  { background: var(--z-ink); color: #fff; }
.zh-section--tight { padding-block: clamp(40px, 5vw, 74px); }

/* rounded band edges */
.zh-round-t { border-radius: var(--z-r-xl) var(--z-r-xl) 0 0; }
.zh-round-b { border-radius: 0 0 var(--z-r-xl) var(--z-r-xl); }

/* --- section heading, with the sticky variant --- */
.zh-lay {
  display: grid;
  grid-template-columns: minmax(0, 4.6fr) minmax(0, 7fr);
  gap: clamp(28px, 4.6vw, 72px);
  align-items: start;
}

/* --zh-sticky-gap lets a page with a sticky sub-nav push its headings clear */
.zh-sticky {
  position: sticky;
  top: calc(var(--bar-h) + var(--zh-sticky-gap, 34px));
  align-self: start;
}

.zh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--z-teal);
  margin-bottom: 16px;
}
.zh-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.zh-section--dark .zh-eyebrow { color: var(--z-mint); }

.zh-title {
  font-family: var(--f-display);
  font-size: clamp(1.95rem, 3.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.032em;
  text-wrap: balance;
  color: var(--z-ink);
}
.zh-section--dark .zh-title { color: #fff; }
.zh-title em { font-style: normal; color: var(--z-teal); }
.zh-section--dark .zh-title em { color: var(--z-mint); }

.zh-lede {
  margin-top: 18px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.62;
  color: var(--z-muted);
  max-width: 46ch;
}
.zh-section--dark .zh-lede { color: rgba(255, 255, 255, .8); }
.zh-lede a { color: var(--z-teal); text-decoration: underline; text-underline-offset: 3px; }
.zh-section--dark .zh-lede a { color: var(--z-mint); }

/* ------------------------------------------------------------
   8 · STORY STEPS (paired with a sticky heading)
   ------------------------------------------------------------ */
.zh-steps { display: grid; gap: clamp(14px, 1.6vw, 20px); }

.zh-step {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(22px, 2.6vw, 34px);
  border-radius: var(--z-r-lg);
  background: var(--z-card);
  border: 1px solid var(--z-rule);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s, border-color .3s;
}
.zh-step.is-active {
  transform: translateY(-4px);
  border-color: rgba(0, 128, 128, .42);
  box-shadow: var(--z-shadow);
}
.zh-step__n {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: var(--z-sand-2);
  color: var(--z-teal);
  font-family: var(--f-display);
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: -.02em;
  transition: background .3s, color .3s, transform .3s cubic-bezier(.2, .8, .3, 1);
}
.zh-step.is-active .zh-step__n {
  background: var(--z-teal);
  color: #fff;
  transform: scale(1.06);
}
.zh-step h3 {
  font-family: var(--f-display);
  font-size: clamp(1.12rem, 1.5vw, 1.36rem);
  font-weight: 700;
  letter-spacing: -.022em;
  line-height: 1.2;
}
.zh-step p {
  margin-top: 9px;
  color: var(--z-muted);
  font-size: .96rem;
  line-height: 1.6;
}
.zh-step__meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--z-sand);
  border: 1px solid var(--z-rule);
  font-size: .78rem;
  font-weight: 600;
  color: var(--z-teal-deep);
}

/* ------------------------------------------------------------
   9 · FEATURE CARDS
   ------------------------------------------------------------ */
.zh-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
}

.zh-card {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--z-r-lg);
  background: var(--z-card);
  border: 1px solid var(--z-rule);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s, border-color .3s;
  overflow: hidden;
  position: relative;
}
.zh-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--z-teal), var(--z-mint));
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform .38s cubic-bezier(.2, .8, .3, 1);
}
.zh-card:hover { transform: translateY(-6px); box-shadow: var(--z-shadow); border-color: rgba(0, 128, 128, .3); }
.zh-card:hover::after { transform: scaleX(1); }

.zh-card__ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--z-ink);
  color: var(--z-mint);
  font-family: var(--f-display);
  font-size: .92rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.zh-card__tag {
  align-self: flex-start;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(0, 128, 128, .1);
  color: var(--z-teal-deep);
  font-size: .71rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.zh-card h3 {
  font-family: var(--f-display);
  font-size: clamp(1.16rem, 1.5vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.18;
}
.zh-card p {
  margin-top: 10px;
  color: var(--z-muted);
  font-size: .95rem;
  line-height: 1.58;
}
.zh-card__more {
  margin-top: auto;
  padding-top: 20px;
  font-size: .88rem;
  font-weight: 700;
  color: var(--z-teal);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.zh-card__more .arw { transition: transform .24s cubic-bezier(.2, .8, .3, 1); }
.zh-card:hover .zh-card__more .arw { transform: translateX(4px); }

/* ------------------------------------------------------------
   10 · TABS + APP MOCKUP
   ------------------------------------------------------------ */
.zh-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 38px);
}
.zh-tab {
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid var(--z-rule);
  background: #fff;
  color: var(--z-muted);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: -.008em;
  cursor: pointer;
  transition: transform .24s cubic-bezier(.2, .8, .3, 1), background .22s, color .22s, border-color .22s;
}
.zh-tab:hover { transform: translateY(-2px); border-color: rgba(0, 128, 128, .4); color: var(--z-teal-deep); }
.zh-tab[aria-selected="true"] {
  background: var(--z-ink);
  border-color: var(--z-ink);
  color: #fff;
}

.zh-viewport { overflow: hidden; border-radius: var(--z-r-lg); }
.zh-track {
  display: flex;
  width: 100%;
  transition: transform .58s cubic-bezier(.22, .8, .28, 1);
  will-change: transform;
}
.zh-panel { flex: 0 0 100%; min-width: 0; }

.zh-panel__in {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(24px, 3.4vw, 54px);
  align-items: center;
  padding: clamp(24px, 3vw, 42px);
  border-radius: var(--z-r-lg);
  background: #fff;
  border: 1px solid var(--z-rule);
}
.zh-panel h3 {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 2.1vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -.028em;
  line-height: 1.1;
}
.zh-panel > .zh-panel__in > div > p {
  margin-top: 14px;
  color: var(--z-muted);
  font-size: 1rem;
  line-height: 1.62;
}
.zh-checks { display: grid; gap: 11px; margin-top: 22px; }
.zh-checks li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  font-size: .94rem;
  color: var(--z-text);
}
.zh-checks li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 128, 128, .12);
  color: var(--z-teal);
  font-size: .72rem;
  font-weight: 800;
}
.zh-panel .zh-btn { margin-top: 26px; }

/* device frame */
.zh-device {
  position: relative;
  border-radius: 26px;
  background: linear-gradient(180deg, #0a3d3c, #052624);
  padding: 12px;
  box-shadow: var(--z-shadow-lg);
}
.zh-device__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 2px 6px 12px;
}
.zh-device__bar i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
}
.zh-device__bar i:first-child { background: var(--z-mint); }
.zh-device__bar b {
  margin-left: auto;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
  letter-spacing: .02em;
}
.zh-device img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

/* a synthetic screen, used where we have no screenshot */
.zh-screen {
  border-radius: 16px;
  background: #fff;
  padding: clamp(16px, 1.8vw, 22px);
  display: grid;
  gap: 10px;
}
.zh-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border-radius: 13px;
  background: var(--z-sand);
  border: 1px solid var(--z-rule);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1);
}
.zh-row:hover { transform: translateX(5px); }
.zh-row i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--z-ink);
  color: var(--z-mint);
  font-size: .66rem;
  font-weight: 800;
  font-style: normal;
}
.zh-row__tx { display: grid; gap: 1px; min-width: 0; }
.zh-row__tx b { font-size: .86rem; font-weight: 700; letter-spacing: -.012em; }
.zh-row__tx span { font-size: .76rem; color: var(--z-muted); }
.zh-row em {
  font-style: normal;
  padding: 5px 11px;
  border-radius: 999px;
  background: rgba(0, 128, 128, .12);
  color: var(--z-teal-deep);
  font-size: .71rem;
  font-weight: 700;
  white-space: nowrap;
}
.zh-row em.is-warn { background: rgba(200, 80, 31, .12); color: #a8451c; }

/* ------------------------------------------------------------
   11 · STATS BAND
   ------------------------------------------------------------ */
.zh-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
.zh-stat {
  padding: clamp(20px, 2.4vw, 30px);
  border-radius: var(--z-r);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .13);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), background .3s;
}
.zh-stat:hover { transform: translateY(-5px); background: rgba(255, 255, 255, .1); }
.zh-stat b {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: var(--f-display);
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--z-mint);
}
.zh-stat b .unit {
  font-size: .34em;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.zh-stat.is-risk b { color: #ff9f7a; }
/* direct child only — the spans inside <b> keep the display size */
.zh-stat > span {
  display: block;
  margin-top: 12px;
  font-size: .9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, .78);
}

/* ------------------------------------------------------------
   12 · MODULES GRID
   ------------------------------------------------------------ */
.zh-mods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.3vw, 16px);
}
.zh-mod {
  display: block;
  padding: clamp(20px, 2.2vw, 26px);
  border-radius: var(--z-r);
  background: #fff;
  border: 1px solid var(--z-rule);
  transition: transform .28s cubic-bezier(.2, .8, .3, 1), box-shadow .28s, border-color .28s;
}
.zh-mod:hover { transform: translateY(-5px); box-shadow: var(--z-shadow); border-color: rgba(0, 128, 128, .32); }
.zh-mod__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.zh-mod__n {
  font-family: var(--f-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--z-teal);
}
.zh-mod__arr {
  color: var(--z-teal);
  font-weight: 800;
  transform: translateX(-6px);
  transition: transform .24s cubic-bezier(.2, .8, .3, 1);
}
.zh-mod:hover .zh-mod__arr { transform: translateX(0); }
.zh-mod h3 {
  font-family: var(--f-display);
  font-size: 1.04rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.22;
}
.zh-mod p { margin-top: 7px; font-size: .88rem; line-height: 1.5; color: var(--z-muted); }

/* ------------------------------------------------------------
   13 · SPLIT (mockup + text)
   ------------------------------------------------------------ */
.zh-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4.4vw, 70px);
  align-items: center;
}
.zh-split__visual { position: relative; }

.zh-float {
  position: absolute;
  display: grid;
  gap: 2px;
  padding: 13px 18px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--z-rule);
  box-shadow: var(--z-shadow);
  animation: zh-bob 8s ease-in-out infinite;
  will-change: transform;
}
.zh-float b { font-size: .86rem; font-weight: 800; color: var(--z-teal-deep); letter-spacing: -.014em; }
.zh-float span { font-size: .75rem; color: var(--z-muted); }
.zh-float--a { left: -18px; top: 14%; animation-delay: 0s; }
.zh-float--b { right: -14px; bottom: 12%; animation-delay: -3.4s; }

/* spec list on dark */
.zh-spec { display: grid; gap: 10px; }
.zh-spec > div {
  display: grid;
  grid-template-columns: minmax(0, 12ch) minmax(0, 1fr);
  gap: clamp(14px, 2vw, 30px);
  padding: 18px clamp(16px, 2vw, 24px);
  border-radius: var(--z-r);
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  transition: transform .28s cubic-bezier(.2, .8, .3, 1), background .28s;
}
.zh-spec > div:hover { transform: translateX(6px); background: rgba(255, 255, 255, .09); }
.zh-spec dt { font-weight: 700; font-size: .92rem; color: var(--z-mint); letter-spacing: -.012em; }
.zh-spec dd { font-size: .92rem; line-height: 1.58; color: rgba(255, 255, 255, .8); }
.zh-spec dd strong { color: #fff; font-weight: 700; }

/* ------------------------------------------------------------
   14 · QUOTES CAROUSEL
   ------------------------------------------------------------ */
.zh-rail {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.zh-rail__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: zh-slide 58s linear infinite;
}
.zh-rail:hover .zh-rail__track { animation-play-state: paused; }

.zh-quote {
  width: min(84vw, 380px);
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: var(--z-r-lg);
  background: #fff;
  border: 1px solid var(--z-rule);
  display: flex;
  flex-direction: column;
}
.zh-quote__stars { color: var(--z-teal); font-size: .86rem; letter-spacing: .16em; margin-bottom: 14px; }
.zh-quote p {
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: -.012em;
  color: var(--z-text);
}
.zh-quote cite {
  margin-top: auto;
  padding-top: 20px;
  font-style: normal;
  font-size: .82rem;
  font-weight: 700;
  color: var(--z-muted);
}

/* ------------------------------------------------------------
   15 · PRICING TEASER
   ------------------------------------------------------------ */
.zh-plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}
/* four tiers (archive page) — collapses to 2 then 1 via the queries below */
.zh-plans--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.zh-plan {
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 34px);
  border-radius: var(--z-r-lg);
  background: #fff;
  border: 1px solid var(--z-rule);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s;
}
.zh-plan:hover { transform: translateY(-6px); box-shadow: var(--z-shadow); }
.zh-plan--hi {
  background: var(--z-ink);
  border-color: var(--z-ink);
  color: #fff;
}
.zh-plan__badge {
  align-self: flex-start;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--z-mint);
  color: #052e2c;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.zh-plan h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -.022em;
}
.zh-plan__price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 14px;
  font-family: var(--f-display);
  font-size: clamp(2rem, 3vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--z-ink);
}
.zh-plan--hi .zh-plan__price { color: var(--z-mint); }
.zh-plan__price small { font-size: .34em; font-weight: 700; color: var(--z-muted); letter-spacing: 0; }
.zh-plan--hi .zh-plan__price small { color: rgba(255, 255, 255, .7); }
.zh-plan__note { margin-top: 12px; font-size: .93rem; line-height: 1.55; color: var(--z-muted); }
.zh-plan--hi .zh-plan__note { color: rgba(255, 255, 255, .8); }
.zh-plan ul { display: grid; gap: 9px; margin-top: 20px; }
.zh-plan li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  font-size: .9rem;
  line-height: 1.45;
}
.zh-plan li::before { content: "✓"; color: var(--z-teal); font-weight: 800; font-size: .82rem; }
.zh-plan--hi li::before { color: var(--z-mint); }
.zh-plan .zh-btn { margin-top: 26px; align-self: stretch; justify-content: center; }

/* ------------------------------------------------------------
   16 · FAQ (reuses editorial .faq, tuned for the sand ground)
   ------------------------------------------------------------ */
.zh-page .faq details {
  background: #fff;
  border-color: var(--z-rule);
  border-radius: var(--z-r);
}
.zh-page .faq summary:hover { color: var(--z-teal); }
.zh-page .faq details[open] summary::after { background: var(--z-teal); color: #fff; }

/* ------------------------------------------------------------
   17 · CTA BAND
   ------------------------------------------------------------ */
.zh-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(26px, 4vw, 60px);
  align-items: center;
  padding: clamp(34px, 5vw, 72px);
  border-radius: var(--z-r-xl);
  background: var(--z-ink);
  color: #fff;
  isolation: isolate;
}
.zh-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 60vw;
  aspect-ratio: 1;
  right: -18vw;
  top: -60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(95, 227, 192, .3), transparent 62%);
  animation: zh-drift 18s ease-in-out infinite alternate;
}
@keyframes zh-drift {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-7%, 9%, 0); }
}
.zh-cta h2 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.034em;
  text-wrap: balance;
}
.zh-cta p {
  margin-top: 16px;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .84);
  max-width: 52ch;
}
.zh-cta__btns { display: flex; flex-direction: column; gap: 12px; }
.zh-cta__btns .zh-btn { justify-content: center; }

/* ------------------------------------------------------------
   18 · SMALL BITS
   ------------------------------------------------------------ */
.zh-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.zh-chip {
  font-family: var(--f-mono);
  font-size: .72rem;
  letter-spacing: .02em;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--z-rule);
  background: #fff;
  color: var(--z-muted);
}
.zh-page .logo-tile { background: #fff; border-color: var(--z-rule); }
.zh-mt   { margin-top: clamp(28px, 3.4vw, 48px); }
.zh-mt-s { margin-top: clamp(16px, 2vw, 26px); }
.zh-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: .93rem;
  color: var(--z-teal);
}
.zh-link .arw { transition: transform .24s cubic-bezier(.2, .8, .3, 1); }
.zh-link:hover .arw { transform: translateX(4px); }
.zh-section--dark .zh-link { color: var(--z-mint); }

/* ============================================================
   SUB-PAGE COMPONENTS
   Shared by the inner pages (functionalitati, etc.)
   ============================================================ */

/* ---- 19 · SPLIT HERO ---------------------------------------
   Shorter than the homepage hero: deep teal ground, copy left,
   a portrait photo card right. No full-bleed photo.
   ------------------------------------------------------------ */
.zh-hero--split {
  min-height: 0;
  align-items: center;
  padding-top: calc(var(--bar-h) + clamp(38px, 5vw, 76px));
  padding-bottom: clamp(48px, 6.5vw, 100px);
}

.zh-hero__glow {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 32%, rgba(0, 128, 128, .46), transparent 70%),
    radial-gradient(46% 60% at 12% 86%, rgba(95, 227, 192, .16), transparent 72%);
}

.zh-hero__inner--split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
}

.zh-hero--split .zh-hero__title {
  font-size: clamp(2.1rem, 4.2vw, 3.7rem);
  line-height: 1.02;
  max-width: 17ch;
}
.zh-hero--split .zh-hero__lede { max-width: 52ch; }

.zh-hero__shot { position: relative; }

/* personalizare.html only — the animated logo point-cloud sits
   near the top of the hero instead of vertically centered like
   the photo cards on other split-hero pages */
.zh-hero__shot--logo { align-self: start; margin-top: clamp(24px, 4vw, 64px); }

/* touch devices never get the point-cloud effect (hero-logo.js skips
   it there too) — a static logo on its own doesn't earn the space */
@media (hover: none), (pointer: coarse) {
  .zh-hero__shot--logo { display: none; }
}

.zh-shot {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--z-r-xl);
  overflow: hidden;
  background: #04302f;
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--z-shadow-lg);
}
.zh-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* floating cards pinned to the photo card's corners */
.zh-noti--f1 { top: 6%;    left: -7%;  animation-delay: 0s; }
.zh-noti--f2 { bottom: 3%; right: 35%; animation-delay: -3.5s; }

/* ---- 20 · STICKY SUB-NAV ---------------------------------- */
.zh-subnav {
  position: sticky;
  top: var(--bar-h);
  z-index: 40;
  background: rgba(246, 243, 236, .93);
  -webkit-backdrop-filter: saturate(1.4) blur(14px);
  backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid var(--z-rule);
}
.zh-subnav__track {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 12px;
  -webkit-overflow-scrolling: touch;
  /* soft right edge: signals there are more chips to scroll to */
  mask-image: linear-gradient(90deg, #000 0 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, #000 0 94%, transparent 100%);
}
.zh-subnav__track::-webkit-scrollbar { display: none; }

.zh-subnav a {
  flex: none;
  padding: 9px 17px;
  border-radius: 999px;
  border: 1px solid var(--z-rule);
  background: #fff;
  color: var(--z-muted);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: -.008em;
  white-space: nowrap;
  transition: transform .22s cubic-bezier(.2, .8, .3, 1), background .2s, color .2s, border-color .2s;
}
.zh-subnav a:hover {
  transform: translateY(-2px);
  color: var(--z-teal-deep);
  border-color: rgba(0, 128, 128, .42);
}
.zh-subnav a.is-current {
  background: var(--z-ink);
  border-color: var(--z-ink);
  color: #fff;
}

/* ---- 21 · PROBLEM / SOLUTION CARD ------------------------- */
.zh-ps-list { display: grid; gap: clamp(14px, 1.6vw, 18px); }

.zh-ps {
  padding: clamp(22px, 2.5vw, 32px);
  border-radius: var(--z-r-lg);
  background: var(--z-card);
  border: 1px solid var(--z-rule);
  transition: transform .3s cubic-bezier(.2, .8, .3, 1), box-shadow .3s, border-color .3s;
}
.zh-ps:hover {
  transform: translateY(-4px);
  box-shadow: var(--z-shadow);
  border-color: rgba(0, 128, 128, .3);
}
.zh-ps > h3 {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.45vw, 1.32rem);
  font-weight: 700;
  letter-spacing: -.024em;
  line-height: 1.2;
  color: var(--z-ink);
}

.zh-ps__row {
  display: grid;
  grid-template-columns: minmax(0, 8.5ch) minmax(0, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--z-rule);
}
.zh-ps__row p {
  font-size: .94rem;
  line-height: 1.6;
  color: var(--z-muted);
}
.zh-ps__row a { color: var(--z-teal); text-decoration: underline; text-underline-offset: 3px; }

.zh-ps__lbl {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  line-height: 1.7;
}
.zh-ps__row--p .zh-ps__lbl { color: #b3542a; }
.zh-ps__row--s .zh-ps__lbl { color: var(--z-teal); }

/* on the dark band */
.zh-section--dark .zh-ps {
  background: rgba(255, 255, 255, .055);
  border-color: rgba(255, 255, 255, .12);
}
.zh-section--dark .zh-ps:hover { background: rgba(255, 255, 255, .09); border-color: rgba(255, 255, 255, .22); }
.zh-section--dark .zh-ps > h3 { color: #fff; }
.zh-section--dark .zh-ps__row { border-top-color: rgba(255, 255, 255, .14); }
.zh-section--dark .zh-ps__row p { color: rgba(255, 255, 255, .8); }
.zh-section--dark .zh-ps__row--p .zh-ps__lbl { color: #ffa47c; }
.zh-section--dark .zh-ps__row--s .zh-ps__lbl { color: var(--z-mint); }
.zh-section--dark .zh-ps__row a { color: var(--z-mint); }

/* ---- 22 · PROSE BLOCK (long-form paragraph sections) ------ */
.zh-prose {
  padding: clamp(22px, 2.5vw, 32px);
  border-radius: var(--z-r-lg);
  background: var(--z-card);
  border: 1px solid var(--z-rule);
  font-size: 1rem;
  line-height: 1.68;
  color: var(--z-muted);
}
.zh-prose strong { color: var(--z-ink); font-weight: 700; }
.zh-prose a { color: var(--z-teal); text-decoration: underline; text-underline-offset: 3px; }
.zh-prose + .zh-prose { margin-top: 14px; }

/* a row of inline "see also" links under a section */
.zh-seealso {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: clamp(18px, 2.2vw, 26px);
}

/* ---- 23 · CONTACT — FORM CARD IN THE HERO ------------------
   The contact hero's right column *is* the form: a paper card on
   the deep-teal ground, so nothing has to be scrolled past first.
   Field markup stays the shared .form-grid / .field one from
   editorial.css — these rules only re-skin it for the zen ground.
   ------------------------------------------------------------ */
.zh-hero__inner--form {
  grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
  align-items: center;
}

/* the copy column is narrower here, so the three stats would wrap 2 + 1 —
   equal grid columns keep them on one line instead */
.zh-hero__inner--form .zh-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.5vw, 24px);
}
/* one notch down so each stat keeps to a single line in its column */
.zh-hero__inner--form .zh-hero__trust b { font-size: clamp(1.16rem, 1.45vw, 1.42rem); }

.zh-formcard {
  padding: clamp(22px, 2.6vw, 36px);
  border-radius: var(--z-r-lg);
  background: var(--z-card);
  border: 1px solid rgba(255, 255, 255, .16);
  box-shadow: var(--z-shadow-lg);
  color: var(--z-text);
}

.zh-formcard__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(0, 128, 128, .1);
  color: var(--z-teal-deep);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.zh-formcard h2 {
  font-family: var(--f-display);
  font-size: clamp(1.24rem, 1.8vw, 1.56rem);
  font-weight: 800;
  letter-spacing: -.028em;
  line-height: 1.14;
  color: var(--z-ink);
  text-wrap: balance;
}
.zh-formcard > p {
  margin-top: 8px;
  font-size: .93rem;
  line-height: 1.55;
  color: var(--z-muted);
}

.zh-form { margin-top: clamp(20px, 2.4vw, 28px); }

.zh-page .field label { font-weight: 600; font-size: .86rem; color: var(--z-ink); }
.zh-page .field label span { font-weight: 500; color: var(--z-muted); }

.zh-page .field input,
.zh-page .field textarea {
  padding: 12px 15px;
  border: 1.5px solid var(--z-rule);
  border-radius: 14px;
  background: var(--z-sand);
  color: var(--z-text);
  font-size: .94rem;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.zh-page .field input:hover,
.zh-page .field textarea:hover { border-color: rgba(0, 128, 128, .42); }
.zh-page .field input:focus,
.zh-page .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--z-teal);
  box-shadow: 0 0 0 3px rgba(0, 128, 128, .16);
}
.zh-page .field textarea { min-height: 104px; }

.zh-form__actions { margin-top: clamp(20px, 2.4vw, 26px); }
.zh-form__actions .zh-btn { width: 100%; justify-content: center; }

.zh-form__legal {
  margin-top: 14px;
  font-size: .76rem;
  line-height: 1.55;
  color: var(--z-muted);
}
.zh-form__legal a { color: var(--z-teal); text-decoration: underline; text-underline-offset: 3px; }

/* status banner — editorial.css owns the display toggle, we only re-skin */
.zh-page #form-status { border-radius: 14px; font-size: .9rem; }
.zh-page #form-status.ok {
  background: rgba(0, 128, 128, .1);
  border-color: var(--z-teal);
  color: var(--z-teal-deep);
}
.zh-page #form-status.err {
  background: rgba(200, 80, 31, .1);
  border-color: #b3542a;
  color: #a8451c;
}

/* ------------------------------------------------------------
   23b · INTERACTIVE LOGO HERO (point-cloud effect)
   Replaces the portrait photo card in a split hero with the
   brand logo rendered as particles that follow the cursor, on
   one full-hero canvas (aria-hidden) — no card, no border. The
   <img> is the no-JS / no-canvas / reduced-motion fallback.
   ------------------------------------------------------------ */

/* full-hero dot lattice — the DeepSeek-style background layer.
   Painted by hero-logo.js; sits above the hero glow, below content.
   The same canvas also renders the logo point-cloud (no separate
   canvas, no card) — it just samples the <img> below for shape
   and position, then fades that <img> out once it's live. */
.zh-hero__parts {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* plain logo mark, no card/border — sits directly on the hero
   ground; hero-logo.js fades it out once the point-cloud is live */
.zh-logo-mark {
  display: block;
  width: 120%;
  height: auto;
  margin-inline: auto;
}
html.js .zh-logo-mark.is-live {
  opacity: 0;
  transition: opacity .5s ease;
}

/* ------------------------------------------------------------
   24 · RESPONSIVE
   ------------------------------------------------------------ */
@media (width < 1100px) {
  .zh-noti--2 { display: none; }
  .zh-mods { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zh-plans--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (width < 960px) {
  .zh-lay { grid-template-columns: 1fr; }
  .zh-sticky { position: static; }
  .zh-grid-3,
  .zh-plans { grid-template-columns: 1fr; }
  .zh-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .zh-split { grid-template-columns: 1fr; }
  .zh-panel__in { grid-template-columns: 1fr; }
  .zh-cta { grid-template-columns: 1fr; }
  .zh-hero__title { max-width: 18ch; }
  .zh-noti { display: none; }
  .zh-float--a { left: 2px; }
  .zh-float--b { right: 2px; }

  /* split hero stacks: copy first, photo below at a calmer ratio */
  .zh-hero__inner--split { grid-template-columns: 1fr; }
  .zh-hero--split .zh-hero__title { max-width: 20ch; }
  .zh-shot { aspect-ratio: 3 / 2; max-width: 620px; }
}

@media (width < 720px) {
  .zh-hero { min-height: 92svh; }
  .zh-hero__media img { object-position: 74% center; }
  /* the copy sits over the photo on one column, so it needs a heavier veil */
  .zh-hero__scrim {
    background: linear-gradient(180deg, rgba(4, 40, 38, .78) 0%, rgba(4, 40, 38, .34) 26%, rgba(4, 40, 38, .72) 52%, rgba(4, 40, 38, .92) 78%, rgba(4, 40, 38, .97) 100%);
  }
  .zh-cue { display: none; }
  .zh-hero__trust { gap: 18px 28px; }
  /* narrow phones: back to wrapping, three columns get too cramped */
  .zh-hero__inner--form .zh-hero__trust { display: flex; }
  .zh-mods { grid-template-columns: 1fr; }
  .zh-step { grid-template-columns: 1fr; }
  .zh-step__n { width: 50px; height: 50px; border-radius: 16px; font-size: 1.05rem; }
  .zh-spec > div { grid-template-columns: 1fr; gap: 6px; }
  .zh-round-t { border-radius: 26px 26px 0 0; }
  .zh-round-b { border-radius: 0 0 26px 26px; }

  /* label stacks above its paragraph instead of sitting beside it */
  .zh-ps__row { grid-template-columns: 1fr; gap: 5px; }
  .zh-shot { aspect-ratio: 4 / 3; border-radius: 26px; }
  .zh-formcard { border-radius: 26px; }
  .zh-logo-mark { max-width: 380px; }
}

@media (width < 520px) {
  .zh-stats { grid-template-columns: 1fr; }
  .zh-btn { width: 100%; justify-content: center; }
  .zh-hero__cta { gap: 10px; }
}

/* ------------------------------------------------------------
   25 · REDUCED MOTION — kill every loop, keep everything visible
   ------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .zh-hero__media { inset: 0; transform: none !important; }
  .zh-noti,
  .zh-float,
  .zh-cue i,
  .zh-cta::before,
  .zh-hero__eyebrow .dot::after { animation: none; }
  .zh-ticker__track,
  .zh-rail__track { animation: none; width: auto; flex-wrap: wrap; }
  .zh-rail { mask-image: none; -webkit-mask-image: none; }
  .zh-track { transition: none; }
}
