/* ЗамУвр · connect.css — Tilda: Подключаемые модули → Пользовательские CSS-стили */
:root {
  --ink: #101612;
  --ink-soft: #1c261f;
  --olive: #3f5240;
  --olive-deep: #2c3a2e;
  --sage: #7fa88a;
  --mint: #6fbf8f;
  --mint-bright: #8fd9ad;
  --sand: #e6e1d6;
  --paper: #f4f6f3;
  --white: #ffffff;
  --muted: #5c6b60;
  --line: rgba(16, 22, 18, 0.1);
  --shadow: 0 24px 60px rgba(16, 22, 18, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --nav-h: 78px;
  --font-display: "Unbounded", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 85% -10%, rgba(111, 191, 143, 0.18), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(63, 82, 64, 0.12), transparent 50%),
    linear-gradient(180deg, #eef2ee 0%, var(--paper) 35%, #f7f8f5 100%);
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: min(1180px, calc(100% - 2.4rem)); margin-inline: auto; }

/* Noise atmosphere */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
}
main, .site-footer { position: relative; z-index: 1; }

/* Header */
.site-header {
  height: var(--nav-h);
  backdrop-filter: blur(16px);
  background: rgba(244, 246, 243, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px rgba(16, 22, 18, 0.06);
  background: rgba(244, 246, 243, 0.94);
}
.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.logo img {
  width: auto;
  height: 52px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
@media (min-width: 981px) {
  .logo img { height: 58px; }
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  background: rgba(63, 82, 64, 0.08);
}
.nav-actions { display: flex; align-items: center; gap: 0.6rem; }
.nav-menu { display: contents; }
.nav-toggle { display: none; }
.burger {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255,255,255,0.7);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: 0.3s var(--ease);
}

/* Tilda: ошибки формы заявки (должно быть до лимита ~2633 строк) */
.t-form .t-input-error:not(:empty) {
  display: block !important;
  color: #ffb4b4 !important;
  margin-top: 0.4rem;
  font-weight: 600;
  line-height: 1.35;
}
.t-form .js-error-control-box .t-input-block,
.t-form .t-input-group:has(.t-input-error:not(:empty)) .t-input-block,
.t-form .t-input-group:has(.t-input-error:not(:empty)) .t-checkboxes__wrapper {
  box-shadow: 0 0 0 1px #ff6b6b inset;
}
.reveal { opacity: 1 !important; transform: none !important; }
.site-footer {
  display: block;
  width: 100%;
  clear: both;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--olive) 0%, var(--olive-deep) 100%);
  color: #fff;
  box-shadow: 0 14px 30px rgba(44, 58, 46, 0.28);
}
.btn-primary:hover { box-shadow: 0 18px 36px rgba(44, 58, 46, 0.36); }
.btn-mint {
  background: linear-gradient(135deg, var(--mint) 0%, #4ea978 100%);
  color: #072214;
  box-shadow: 0 14px 30px rgba(111, 191, 143, 0.35);
}
.btn-ghost {
  background: rgba(255,255,255,0.55);
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover { background: #fff; }
.btn-dark {
  background: var(--ink);
  color: #fff;
}
.btn-sm { padding: 0.65rem 1rem; font-size: 0.92rem; }
.btn-block { width: 100%; }

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: grid;
  align-items: center;
  padding: 0.25rem 0 2.25rem;
  overflow: hidden;
}
.zm-landing--hero-benefits > section.hero {
  padding-top: 0.75rem !important;
  padding-bottom: 3rem !important;
  margin-top: 0 !important;
}
.zm-landing--hero-benefits .hero-inner {
  align-items: start;
}
.zm-landing--hero-benefits .benefits {
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}
.zm-landing--hero-benefits {
  --hero-schedule-w: 400px;
  --hero-side-w: 272px;
  --hero-dino-w: 220px;
  --hero-stage-gap: clamp(0.65rem, 1.2vw, 1rem);
  --hero-stage-w: calc(var(--hero-side-w) + var(--hero-schedule-w) + var(--hero-dino-w) + 2 * var(--hero-stage-gap));
  --hero-head-w: calc(var(--hero-side-w) + var(--hero-schedule-w) + var(--hero-stage-gap));
}
.zm-landing--hero-benefits .hero-visual {
  align-self: start;
  min-height: auto;
  padding-bottom: 0;
  justify-content: flex-start;
}
.zm-landing--hero-benefits .hero-analysis {
  width: var(--hero-stage-w);
  max-width: 100%;
  margin-inline: auto;
}
.zm-landing--hero-benefits .hero-analysis__head {
  width: var(--hero-head-w);
  max-width: var(--hero-head-w);
  justify-self: start;
  margin-inline: 0;
  text-align: left;
}
.zm-landing--hero-benefits .hero-analysis__badge {
  align-self: stretch;
  justify-self: stretch;
  justify-content: center;
  width: 100%;
  padding: 0.32rem 0.85rem;
}
.zm-landing--hero-benefits .hero-analysis__title {
  font-size: clamp(1rem, 2.1vw, 1.32rem);
  max-width: none;
}
.zm-landing--hero-benefits .hero-analysis__stage {
  position: relative;
  display: flex !important;
  align-items: flex-end;
  justify-content: flex-start;
  gap: var(--hero-stage-gap);
  width: 100% !important;
  min-height: 0 !important;
  margin-inline: 0;
}
.zm-landing--hero-benefits .hero-analysis__col--left {
  flex: 0 0 var(--hero-side-w);
  width: var(--hero-side-w);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding-bottom: 0.35rem;
}
.zm-landing--hero-benefits .hero-analysis__col--center {
  flex: 0 0 var(--hero-schedule-w);
  width: var(--hero-schedule-w);
}
.zm-landing--hero-benefits .hero-analysis__col--right {
  flex: 0 0 var(--hero-dino-w);
  width: var(--hero-dino-w);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: calc(var(--hero-schedule-w) * 3 / 4);
}
.zm-landing--hero-benefits .hero-alert {
  position: relative !important;
  width: 100%;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
  animation: none !important;
}
.zm-landing--hero-benefits .hero-analysis__hint {
  position: relative !important;
  left: auto !important;
  bottom: auto !important;
  max-width: none;
  margin: 0;
}
.zm-landing--hero-benefits .hero-schedule {
  position: relative;
  width: 100%;
  margin-inline: 0;
  aspect-ratio: 4 / 3;
}
.zm-landing--hero-benefits .hero-schedule__frame {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: none;
}
.zm-landing--hero-benefits .hero-schedule__toolbar {
  flex-shrink: 0;
  padding: 0.55rem 0.75rem;
}
.zm-landing--hero-benefits .hero-schedule__day {
  padding: 0.24rem 0.5rem;
  font-size: 0.64rem;
}
.zm-landing--hero-benefits .hero-schedule__status {
  font-size: 0.6rem;
}
.zm-landing--hero-benefits .hero-schedule__grid {
  flex: 1;
  min-height: 0;
  grid-template-columns: 3rem repeat(3, 1fr);
  gap: 0.28rem;
  padding: 0.5rem 0.6rem 0.55rem;
  overflow: hidden;
}
.zm-landing--hero-benefits .hero-schedule__head {
  font-size: 0.58rem;
  padding-bottom: 0;
}
.zm-landing--hero-benefits .hero-schedule__time {
  font-size: 0.54rem;
  padding-right: 0;
}
.zm-landing--hero-benefits .hero-schedule__cell {
  border-radius: 8px;
  padding: 0.28rem 0.36rem;
  min-height: 0;
  gap: 0.08rem;
}
.zm-landing--hero-benefits .hero-schedule__cell strong {
  font-size: 0.56rem;
}
.zm-landing--hero-benefits .hero-schedule__cell span {
  font-size: 0.5rem;
}
.zm-landing--hero-benefits .hero-dino {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  max-width: var(--hero-dino-w);
  margin: 0;
}

/* Hero split for Tilda (zamuvr.ru main page: 2 blocks) */
.zm-landing--hero-split-a,
.zm-landing--hero-split-b {
  --hero-split-overlap: clamp(520px, 42vw, 620px);
}
.zm-landing--hero-split-a {
  margin-bottom: 0;
}
.zm-landing--hero-split-a .hero--head {
  padding-top: 0 !important;
  padding-bottom: var(--hero-split-overlap) !important;
  overflow: hidden;
}
.zm-landing--hero-split-a .hero-inner--head {
  grid-template-columns: 1fr;
  align-items: start;
}
.zm-landing--hero-split-a .hero-content {
  max-width: min(640px, 100%);
}
.zm-landing--hero-split-b {
  position: relative;
  z-index: 2;
  margin-top: calc(-1 * var(--hero-split-overlap));
}
.zm-landing--hero-split-b .hero--rest {
  padding: 0.25rem 0 0 !important;
  background: transparent;
  overflow: visible;
}
.zm-landing--hero-split-b .hero-inner--rest {
  grid-template-columns: 1fr;
  justify-items: end;
}
.zm-landing--hero-split-b .hero-visual {
  width: min(100%, var(--hero-stage-w));
  max-width: 100%;
}
.zm-landing--hero-split-b .hero-analysis {
  width: 100%;
  margin-inline: 0;
}
.zm-landing--hero-benefits .hero-analysis__head {
  display: grid;
  gap: 0.45rem;
}
@media (min-width: 981px) {
  .zm-landing--hero-split-a .hero-inner--head {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
  .zm-landing--hero-split-a .hero-content {
    grid-column: 1;
  }
  .zm-landing--hero-split-b .hero-inner--rest {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  }
  .zm-landing--hero-split-b .hero-visual {
    grid-column: 2;
  }
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 78% 55%, rgba(111, 191, 143, 0.16), transparent 55%),
    linear-gradient(120deg, #101612 0%, #1a241c 48%, #243028 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(143, 217, 173, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 217, 173, 0.35) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 30% 40%, #000 20%, transparent 70%);
  animation: gridDrift 18s linear infinite;
}
.hero-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 217, 173, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 217, 173, 0.18) 1px, transparent 1px);
  background-size: 128px 128px;
  mask-image: radial-gradient(circle at 70% 60%, #000 10%, transparent 55%);
  animation: gridDrift 28s linear infinite reverse;
  opacity: 0.7;
}
@keyframes gridDrift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 64px 64px, 64px 64px; }
}

/* Dynamic hero FX */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.fx-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: orbFloat 12s ease-in-out infinite;
}
.fx-orb-1 {
  width: 280px; height: 280px;
  left: 8%; top: 18%;
  background: radial-gradient(circle, rgba(111,191,143,0.55), transparent 70%);
  animation-duration: 14s;
}
.fx-orb-2 {
  width: 360px; height: 360px;
  right: 12%; bottom: 8%;
  background: radial-gradient(circle, rgba(143,217,173,0.35), transparent 70%);
  animation-duration: 18s;
  animation-delay: -4s;
}
.fx-orb-3 {
  width: 180px; height: 180px;
  left: 42%; top: 10%;
  background: radial-gradient(circle, rgba(255,255,255,0.12), transparent 70%);
  animation-duration: 10s;
  animation-delay: -2s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(24px, -18px) scale(1.08); }
  66% { transform: translate(-16px, 14px) scale(0.94); }
}
.fx-ring {
  position: absolute;
  right: 12%;
  bottom: 18%;
  width: min(420px, 48vw);
  height: min(420px, 48vw);
  border: 1px solid rgba(143, 217, 173, 0.22);
  border-radius: 50%;
  animation: ringPulse 6s ease-out infinite;
}
.fx-ring-2 {
  width: min(300px, 36vw);
  height: min(300px, 36vw);
  right: 17%;
  bottom: 26%;
  animation-delay: 1.5s;
  border-color: rgba(111, 191, 143, 0.18);
}
@keyframes ringPulse {
  0% { transform: scale(0.82); opacity: 0.7; }
  70% { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}
.fx-cell {
  position: absolute;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(143, 217, 173, 0.28);
  color: rgba(255,255,255,0.78);
  font-size: 0.78rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  animation: cellDrift 9s ease-in-out infinite;
  white-space: nowrap;
}
.fx-cell-1 { right: 8%; top: 28%; left: auto; animation-delay: 0s; }
.fx-cell-2 { right: 10%; top: 16%; left: auto; animation-delay: -2s; }
.fx-cell-4 { right: 42%; bottom: 28%; left: auto; animation-delay: -1.5s; }
.hero-visual .fx-cell-1 { top: 4%; left: 0; right: auto; }
.hero-visual .fx-cell-2 { top: 14%; right: 0; left: auto; }
.hero-visual .fx-cell-4 { bottom: 42%; left: 8%; right: auto; }
@keyframes cellDrift {
  0%, 100% { transform: translateY(0) rotate(-2deg); opacity: 0.85; }
  50% { transform: translateY(-16px) rotate(2deg); opacity: 1; }
}
.fx-dot {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(143, 217, 173, 0.85);
  box-shadow: 0 0 12px rgba(111, 191, 143, 0.7);
  animation: dotTwinkle 4s ease-in-out infinite;
}
.zm-landing--hero-benefits .fx-dot-1,
.zm-landing--hero-benefits .fx-dot-2,
.zm-landing--hero-benefits .fx-dot-3,
.zm-landing--hero-benefits .fx-line-1,
.zm-landing--hero-benefits .fx-line-2,
.zm-landing--hero-benefits .fx-plus-1 {
  display: none;
}
.fx-dot-1 { left: 22%; top: 20%; animation-delay: 0s; }
.fx-dot-2 { left: 48%; top: 34%; animation-delay: 0.7s; }
.fx-dot-3 { left: 12%; top: 72%; animation-delay: 1.4s; }
.fx-dot-4 { right: 28%; top: 16%; animation-delay: 0.3s; }
.fx-dot-5 { right: 8%; top: 48%; animation-delay: 1.1s; }
.fx-dot-6 { left: 58%; bottom: 18%; animation-delay: 1.8s; }
@keyframes dotTwinkle {
  0%, 100% { transform: scale(1); opacity: 0.35; }
  50% { transform: scale(1.8); opacity: 1; }
}
.fx-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(143,217,173,0.55), transparent);
  transform-origin: left center;
  animation: lineSweep 7s ease-in-out infinite;
}
.fx-line-1 {
  width: 180px;
  left: 20%;
  top: 36%;
  transform: rotate(18deg);
}
.fx-line-2 {
  width: 140px;
  left: 40%;
  top: 62%;
  transform: rotate(-12deg);
  animation-delay: -2.5s;
}
@keyframes lineSweep {
  0%, 100% { opacity: 0.15; filter: blur(0); }
  50% { opacity: 0.85; filter: blur(0.2px); }
}
.fx-plus {
  position: absolute;
  color: rgba(143, 217, 173, 0.45);
  font-size: 1.4rem;
  font-weight: 300;
  animation: plusSpin 12s linear infinite;
}
.fx-plus-1 { left: 30%; top: 16%; }
.fx-plus-2 { right: 36%; bottom: 30%; animation-direction: reverse; }
@keyframes plusSpin {
  from { transform: rotate(0deg); opacity: 0.3; }
  50% { opacity: 0.7; }
  to { transform: rotate(360deg); opacity: 0.3; }
}
.fx-spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  opacity: 0;
  animation: sparkRise 8s linear infinite;
}
.fx-spark-1 { left: 15%; bottom: 10%; animation-delay: 0s; }
.fx-spark-2 { left: 55%; bottom: 5%; animation-delay: 2.5s; }
.fx-spark-3 { left: 70%; bottom: 12%; animation-delay: 5s; }
@keyframes sparkRise {
  0% { transform: translateY(0) scale(1); opacity: 0; }
  10% { opacity: 0.8; }
  100% { transform: translateY(-70vh) scale(0.4); opacity: 0; }
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 2.4rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  min-height: auto;
}
.hero-content {
  color: #fff;
  padding-bottom: 0;
  max-width: 640px;
  position: relative;
  z-index: 4;
}
.brand-mark {
  display: flex;
  align-items: flex-end;
  gap: clamp(0.25rem, 1.2vw, 0.65rem);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
  font-weight: 700;
}
.brand-mark__text {
  display: inline-block;
  background: linear-gradient(120deg, #fff 20%, var(--mint-bright) 55%, #fff 90%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1rem;
  max-width: 18ch;
  position: relative;
  z-index: 2;
}
.hero p.lead {
  margin: 0 0 1.8rem;
  color: rgba(255,255,255,0.82);
  font-size: 1.08rem;
  max-width: 38ch;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

/* Hero analysis + warning cards */
.hero-analysis {
  width: 100%;
  display: grid;
  gap: 0.85rem;
}
.hero-analysis__head {
  display: grid;
  gap: 0.45rem;
  max-width: 34rem;
  margin-inline: auto;
  text-align: center;
}
.hero-analysis__badge {
  display: inline-flex;
  align-self: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(111, 191, 143, 0.14);
  border: 1px solid rgba(143, 217, 173, 0.28);
  color: rgba(143, 217, 173, 0.95);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.hero-analysis__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}
.hero-analysis__stage {
  position: relative;
  width: min(580px, 100%);
  min-height: 480px;
  margin-inline: auto;
}
.hero-alert {
  position: absolute;
  width: min(290px, 78%);
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 22px 48px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(16, 22, 18, 0.08);
  overflow: hidden;
  z-index: 5;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.hero-alert__bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.65rem;
  background: linear-gradient(180deg, #f8faf8 0%, #eef2ee 100%);
  border-bottom: 1px solid rgba(16, 22, 18, 0.08);
}
.hero-alert__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8dee3;
}
.hero-alert__dot:nth-child(1) { background: #ff6b5a; }
.hero-alert__dot:nth-child(2) { background: #ffbe3d; }
.hero-alert__dot:nth-child(3) { background: #57c978; }
.hero-alert__label {
  margin-left: 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #6a756d;
}
.hero-alert__body {
  padding: 0.8rem 0.85rem 0.9rem;
  font-size: 0.74rem;
  line-height: 1.45;
  color: #243028;
}
.hero-alert__problem {
  display: block;
  margin-bottom: 0.45rem;
  font-weight: 600;
  color: #1a241c;
}
.hero-alert__action {
  display: block;
  padding-top: 0.45rem;
  border-top: 1px solid rgba(16, 22, 18, 0.08);
  color: #3f5240;
}
.hero-alert__action strong {
  color: #2c7a4b;
  font-weight: 700;
}
.hero-alert--teacher {
  top: 2%;
  left: -4%;
  animation-name: alertFloatTeacher;
  animation-delay: 0s;
}
.hero-alert--room {
  bottom: 16%;
  right: -5%;
  animation-name: alertFloatRoom;
  animation-delay: -2.5s;
}
@keyframes alertFloatTeacher {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes alertFloatRoom {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50% { transform: translateY(-8px) rotate(1.5deg); }
}
.hero-analysis__hint {
  position: absolute;
  left: 0;
  bottom: 20%;
  z-index: 4;
  max-width: 15rem;
  margin: 0;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(16, 22, 18, 0.42);
  border: 1px solid rgba(143, 217, 173, 0.24);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  line-height: 1.45;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
}
.hero-analysis__hint::before {
  content: "";
  display: block;
  width: 1.75rem;
  height: 2px;
  margin-bottom: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint-bright), transparent);
}
.hero-analysis__lead {
  margin: 0;
  max-width: 42rem;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.92rem, 1.8vw, 1.02rem);
  line-height: 1.55;
}
.hero-analysis__stage--triple {
  min-height: 540px;
  width: min(620px, 100%);
}
.hero-alert--frame {
  top: 34%;
  left: -8%;
  animation-name: alertFloatFrame;
  animation-delay: -1.2s;
}
@keyframes alertFloatFrame {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

/* Preanalysis standalone block */
.preanalysis-promo {
  position: relative;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}
.preanalysis-promo__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 600px at 78% 55%, rgba(111, 191, 143, 0.16), transparent 55%),
    linear-gradient(120deg, #101612 0%, #1a241c 48%, #243028 100%);
}
.preanalysis-promo .container {
  position: relative;
  z-index: 1;
}
.zm-landing--preanalysis .hero-analysis__title {
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  max-width: 28rem;
  margin-inline: auto;
}
.zm-landing--preanalysis .hero-analysis__head {
  max-width: 44rem;
  gap: 0.65rem;
  margin-bottom: 0.35rem;
}

/* Hero visual: schedule infographic */
.hero-visual {
  position: relative;
  width: 100%;
  min-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: clamp(1rem, 4vw, 2rem);
  pointer-events: none;
}
.hero-dino {
  position: absolute;
  right: clamp(-0.5rem, 0vw, 0.5rem);
  bottom: -2.5rem;
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  width: min(220px, 42%);
  pointer-events: none;
}
.hero-dino--title {
  position: relative;
  width: clamp(3rem, 10vw, 5.25rem);
  margin-bottom: 0.12em;
  align-self: flex-end;
}
.hero-dino img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.4));
  animation: floatY 5.5s ease-in-out infinite;
  transform-origin: center bottom;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero schedule infographic */
.hero-schedule {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(480px, calc(100% - 2rem));
  margin-inline: auto;
  pointer-events: none;
}
.hero-schedule__frame {
  width: min(480px, calc(100% - 3.5rem));
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(22, 30, 24, 0.96) 0%, rgba(14, 20, 16, 0.98) 100%);
  border: 1px solid rgba(111, 191, 143, 0.22);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  animation: scheduleFloat 6s ease-in-out infinite;
}
@keyframes scheduleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-schedule__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(143, 217, 173, 0.12);
  background: rgba(255, 255, 255, 0.03);
}
.hero-schedule__days {
  display: flex;
  gap: 0.35rem;
}
.hero-schedule__day {
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  border: 1px solid transparent;
}
.hero-schedule__day.is-active {
  color: #0d1812;
  background: linear-gradient(135deg, var(--mint-bright), var(--mint));
  border-color: rgba(255, 255, 255, 0.12);
}
.hero-schedule__status {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(143, 217, 173, 0.75);
}
.hero-schedule__grid {
  display: grid;
  grid-template-columns: 3.4rem repeat(3, 1fr);
  gap: 0.35rem;
  padding: 0.65rem 0.75rem 0.8rem;
}
.hero-schedule__head {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.42);
  text-align: center;
  padding-bottom: 0.15rem;
}
.hero-schedule__time {
  font-size: 0.58rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  padding-right: 0.25rem;
  line-height: 1.2;
}
.hero-schedule__cell {
  border-radius: 10px;
  padding: 0.42rem 0.48rem;
  min-height: 2.85rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(143, 217, 173, 0.1);
  display: grid;
  gap: 0.12rem;
  align-content: center;
}
.hero-schedule__cell strong {
  font-size: 0.62rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.2;
}
.hero-schedule__cell span {
  font-size: 0.54rem;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.2;
}
.hero-schedule__cell--accent {
  background: linear-gradient(135deg, rgba(111, 191, 143, 0.22), rgba(63, 82, 64, 0.28));
  border-color: rgba(111, 191, 143, 0.28);
}
.hero-schedule__cell--soft {
  background: rgba(111, 191, 143, 0.08);
}
.hero-schedule__cell--break {
  grid-column: span 3;
  min-height: auto;
  padding: 0.3rem 0.45rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.02);
}
.hero-schedule__cell--break strong {
  font-size: 0.56rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

/* Sections */
section { padding: 5rem 0; }
.section-head {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 2.4rem;
  max-width: 720px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--olive);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--mint);
}
.section-head h2,
.page-hero h1,
.legal-wrap h1 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}
.section-head p { margin: 0; color: var(--muted); font-size: 1.05rem; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Benefits strip */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}
.benefit {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 10px 30px rgba(16,22,18,0.05);
}
.benefit strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
.benefit p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* Audience */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.audience-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 320px;
  color: #fff;
  isolation: isolate;
  transition: transform 0.35s var(--ease);
}
.audience-item:hover { transform: translateY(-6px); }
.audience-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,22,18,0.15), rgba(16,22,18,0.88));
  z-index: 1;
}
.audience-item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.audience-item:hover img { transform: scale(1.06); }
.audience-body {
  position: relative;
  z-index: 2;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.6rem;
}
.audience-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0;
}
.audience-body ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.audience-body p { margin: 0; color: rgba(255,255,255,0.85); }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: start;
}
.step-list { display: grid; gap: 0.85rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  transition: 0.3s var(--ease);
}
.step.is-active,
.step:hover {
  background: #fff;
  border-color: var(--line);
  box-shadow: 0 12px 28px rgba(16,22,18,0.06);
}
.step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--mint-bright);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
}
.step h3 { margin: 0 0 0.2rem; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.step-visual-wrap {
  width: 100%;
}
.step-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 1680 / 980;
  cursor: zoom-in;
}
.step-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  display: block;
  pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.step-visual img.is-active {
  opacity: 1;
  z-index: 1;
}

/* Features / marquee */
.marquee-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.2rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  font-weight: 700;
  white-space: nowrap;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Split promo */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}
.split-copy h2 { margin-bottom: 1rem; }
.split-copy p { color: var(--muted); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin: 1.5rem 0;
}
.stat {
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(63, 82, 64, 0.08);
}
.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.stat span { color: var(--muted); font-size: 0.88rem; }
.media-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: #fff;
}
.media-frame img { width: 100%; }

/* Video promo */
.video-promo {
  background:
    radial-gradient(circle at 85% 20%, rgba(184, 212, 176, 0.35), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.4), rgba(238,241,238,0.9));
}
.video-block { display: grid; gap: 0.9rem; }
.video-frame {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  background: #101612;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(16,22,18,0.14);
  aspect-ratio: 16 / 9;
}
.video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-caption {
  display: grid;
  gap: 0.2rem;
  padding: 0 0.2rem;
}
.video-caption strong {
  font-family: var(--font-display);
  font-size: 1rem;
}
.video-caption span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

/* Pricing */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.price-card {
  position: relative;
  padding: 1.6rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.price-card.featured {
  background: linear-gradient(165deg, var(--ink) 0%, var(--olive-deep) 100%);
  color: #fff;
  border-color: transparent;
}
.price-card.featured p,
.price-card.featured li { color: rgba(255,255,255,0.78); }
.price-card h3 {
  font-family: var(--font-display);
  margin: 0;
  font-size: 1.25rem;
}
.price-card .amount {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: -0.03em;
}
.price-card .amount small {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.75;
}
.price-card .amount .price-card__promo {
  margin: 1rem 0 0;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink-soft);
}
.price-card.featured .amount .price-card__promo {
  color: rgba(255, 255, 255, 0.88);
}
.price-card ul {
  margin: 0;
  padding-left: 1.1rem;
  flex: 1;
  display: grid;
  gap: 0.45rem;
}
.badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--mint);
  color: #072214;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}

/* FAQ */
.faq-list { display: grid; gap: 0.75rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.72);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1.15rem 1.25rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--olive);
  transition: transform 0.3s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), padding 0.3s var(--ease);
  color: var(--muted);
  padding: 0 1.25rem;
}
.faq-item.open .faq-a {
  max-height: 280px;
  padding: 0 1.25rem 1.2rem;
}

/* Forms */
.form-shell {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}
.form-aside {
  border-radius: var(--radius);
  padding: 2rem;
  background:
    linear-gradient(160deg, rgba(16,22,18,0.92), rgba(63,82,64,0.88)),
    url("https://static.tildacdn.com/tild3361-3666-4830-b636-323063656665/5b1cd2e3014811f1ab09.jpg") center / cover;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
}
.form-aside h2 { font-family: var(--font-display); margin: 0 0 0.7rem; }
.form-aside p { margin: 0; color: rgba(255,255,255,0.8); }
.form-box {
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 16px 40px rgba(16,22,18,0.06);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.field { display: grid; gap: 0.35rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 0.9rem; }
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--mint);
  box-shadow: 0 0 0 4px rgba(111, 191, 143, 0.2);
}
.field textarea { min-height: 110px; resize: vertical; }
.check {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.88rem;
  color: var(--muted);
}
.check input { margin-top: 0.25rem; }
.form-note {
  display: none;
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(111, 191, 143, 0.15);
  color: var(--olive-deep);
  font-weight: 600;
}
.form-note.show { display: block; }
.form-note.is-error {
  background: rgba(220, 53, 69, 0.12);
  color: #9b1c2c;
}
.form-choice-group { gap: 0.55rem; }
.form-choice-title {
  margin: 0;
  font-weight: 700;
  font-size: 0.95rem;
}
.form-choice-hint {
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
}
.form-choice-list {
  display: grid;
  gap: 0.65rem;
}
.choice-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.choice-card:hover {
  border-color: rgba(13, 118, 17, 0.35);
}
.choice-card:has(input:checked) {
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(111, 191, 143, 0.18);
}
.choice-card input {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin: 0;
}
.choice-card span {
  font-size: 0.92rem;
  line-height: 1.35;
}
.form-after-notice {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--ink);
}
.form-after-notice p {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  line-height: 1.45;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.contact-card {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
}
.contact-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.contact-card p, .contact-card a { color: var(--muted); }
.contact-card a:hover { color: var(--olive); }

/* Page hero */
.page-hero {
  padding: 3.5rem 0 2rem;
}
.page-hero p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.08rem;
}
.price-nowrap { white-space: nowrap; }

/* Feature list */
.feature-rows { display: grid; gap: 1rem; }
.feature-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--line);
  transition: box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.feature-row:hover {
  border-color: rgba(78, 169, 120, 0.35);
  box-shadow: 0 10px 28px rgba(16, 22, 18, 0.06);
}
.feature-row__icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8f5ec 0%, #f4faf6 100%);
  border: 1px solid rgba(78, 169, 120, 0.22);
  color: #3b5042;
  flex-shrink: 0;
}
.feature-row__icon svg {
  width: 34px;
  height: 34px;
}
.feature-row h3 { margin: 0 0 0.35rem; font-size: 1.05rem; font-family: var(--font-display); }
.feature-row p { margin: 0; color: var(--muted); font-size: 0.95rem; line-height: 1.5; }

/* Social strip */
.social-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.social-strip--single {
  grid-template-columns: 1fr;
}
.social-card {
  padding: 1.6rem;
  border-radius: var(--radius);
  color: #fff;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease);
}
.social-card:hover { transform: translateY(-4px); }
.social-card.max { background: linear-gradient(135deg, #1d2a20, #4a6b4d); }
.social-card.max-qr {
  background:
    radial-gradient(circle at 85% 20%, rgba(77, 183, 255, 0.18), transparent 42%),
    linear-gradient(135deg, #17171f 0%, #252836 52%, #1a1f2b 100%);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 2.4rem;
  min-height: auto;
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(16, 22, 18, 0.14);
}
.social-card.max-qr .social-card__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.social-card.max-qr h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.social-card.max-qr p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 42ch;
}
.social-card.max-qr .btn {
  margin-top: 1.1rem;
  align-self: flex-start;
}
.social-card__qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  flex: 0 0 auto;
}
.social-card__hint {
  display: block;
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  line-height: 1.3;
}
.social-card__qr {
  flex: 0 0 auto;
  padding: 0.7rem;
  background: linear-gradient(180deg, #ffffff 0%, #f4f6f8 100%);
  border-radius: 20px;
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.65) inset;
}
.social-card__qr img {
  display: block;
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 12px;
}
.social-card.tg { background: linear-gradient(135deg, #1a2f45, #2a6ea8); }
.social-card h3 { font-family: var(--font-display); margin: 0 0 0.5rem; }
.social-card p { margin: 0 0 1rem; color: rgba(255,255,255,0.8); }

/* Legal */
.legal-wrap {
  background: rgba(255,255,255,0.8);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  white-space: pre-wrap;
  color: var(--muted);
  line-height: 1.7;
}
.legal-wrap h1 { color: var(--ink); margin-bottom: 1rem; white-space: normal; }

/* Footer */
.site-footer {
  margin-top: 0;
  background: #111714;
  color: rgba(255,255,255,0.72);
  padding: 3.2rem 0 2.6rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.05fr) minmax(150px, 0.95fr) minmax(170px, 1fr) minmax(220px, 1.2fr);
  gap: 2rem 2.5rem;
  align-items: start;
}
.footer-brand { display: grid; gap: 1rem; }
.footer-logo {
  display: inline-flex;
  width: fit-content;
}
.footer-logo img {
  width: 118px;
  height: auto;
  display: block;
}
.footer-icon-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.footer-icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #23893c;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.footer-icon:hover {
  color: var(--mint-bright);
  transform: translateY(-2px);
}
.footer-icon svg {
  width: 25px;
  height: 25px;
  display: block;
}
.footer-copy {
  margin: 0;
  color: rgba(255,255,255,0.34);
  font-size: 0.82rem;
  line-height: 1.4;
}
.footer-label {
  margin: 0 0 0.85rem;
  color: rgba(255,255,255,0.42);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer a { color: rgba(255,255,255,0.72); text-decoration: none; }
.site-footer a:hover { color: var(--mint-bright); }
.footer-links {
  display: grid;
  gap: 0.55rem;
  font-size: 0.92rem;
  line-height: 1.45;
}
.footer-links--nav { padding-top: 0.15rem; }
.footer-links span { color: rgba(255,255,255,0.72); }

/* CTA band */
.cta-band {
  border-radius: calc(var(--radius) + 6px);
  padding: 2.4rem;
  background: linear-gradient(120deg, #4a6350 0%, #5f7d66 55%, #6f8f76 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
}
.cta-band p { margin: 0; color: rgba(255,255,255,0.8); max-width: 42ch; }

.cta-band--light {
  background: linear-gradient(120deg, #e8f3eb 0%, #d4e8dc 55%, #c5ddd0 100%);
  color: var(--ink);
  border: 1px solid rgba(63, 82, 64, 0.12);
}
.cta-band--light h2 { color: var(--ink-soft); }
.cta-band--light p { color: var(--muted); }

/* Tariff infographic strip */
.tariff-info-section {
  padding: 1.5rem 0 2rem;
}
.tariff-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.tariff-info-card {
  position: relative;
  padding: 1.35rem 1.15rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  box-shadow: 0 10px 28px rgba(16, 22, 18, 0.05);
  display: grid;
  gap: 0.65rem;
  overflow: hidden;
}
.tariff-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--olive-deep), var(--mint));
}
.tariff-info-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8f5ec, #f4faf6);
  border: 1px solid rgba(78, 169, 120, 0.22);
  color: var(--olive-deep);
}
.tariff-info-card__icon svg {
  width: 24px;
  height: 24px;
}
.tariff-info-card__value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.tariff-info-card__label {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}
.cta-section {
  padding: 1.25rem 0;
}
.cta-band__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.5rem;
  align-items: center;
  width: 100%;
}
.cta-band__main {
  display: grid;
  gap: 1.1rem;
}
.cta-band__visual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
.cta-stat {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  display: grid;
  gap: 0.2rem;
}
.cta-stat b {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
}
.cta-stat span {
  font-size: 0.78rem;
  line-height: 1.35;
  opacity: 0.88;
}
.cta-band--light .cta-stat {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(63, 82, 64, 0.1);
}
.cta-band--light .cta-stat span {
  color: var(--muted);
  opacity: 1;
}

/* Gallery strip */
.gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 0.9rem;
}
.gallery figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  position: relative;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  color: #fff;
  font-weight: 700;
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

/* UI showcase */
.ui-section {
  background:
    radial-gradient(800px 400px at 10% 0%, rgba(111,191,143,0.12), transparent 60%),
    radial-gradient(700px 380px at 90% 100%, rgba(63,82,64,0.08), transparent 55%);
}
.browser-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0.7rem 0.9rem 0.35rem;
  background: #eef1ee;
  border-bottom: 1px solid var(--line);
}
.browser-chrome span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c9d2cb;
}
.browser-chrome span:nth-child(1) { background: #ff5f57; }
.browser-chrome span:nth-child(2) { background: #febc2e; }
.browser-chrome span:nth-child(3) { background: #28c840; }
.ui-shot {
  overflow: hidden;
  padding: 0;
  line-height: 0;
}
.ui-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  display: block;
  cursor: zoom-in;
  background: #fff;
}
.ui-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1rem;
  align-items: stretch;
}
.ui-card {
  margin: 0;
  grid-column: span 3;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(16,22,18,0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.ui-card:nth-child(n + 5) {
  grid-column: span 4;
}
.ui-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(16,22,18,0.12);
}
.ui-card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1680 / 980;
  overflow: hidden;
  background: #fff;
  flex: 0 0 auto;
}
.ui-card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  cursor: zoom-in;
}
.ui-card figcaption {
  padding: 0.85rem 1rem 1rem;
  display: grid;
  gap: 0.15rem;
  line-height: 1.35;
  margin-top: auto;
}
.ui-card figcaption strong {
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.ui-card figcaption span {
  color: var(--muted);
  font-size: 0.88rem;
}
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 14, 12, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  cursor: zoom-out;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1200px, 96vw);
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
  background: #fff;
}

/* How it works timeline */
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.timeline-item {
  padding: 1.4rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
}
.timeline-item::before {
  counter-increment: step;
  content: "0" counter(step);
  font-family: var(--font-display);
  color: var(--mint);
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.6rem;
}
.timeline-item h3 { margin: 0 0 0.4rem; }
.timeline-item p { margin: 0; color: var(--muted); }

/* Mobile */
@media (max-width: 980px) {
  .benefits,
  .audience-grid,
  .price-grid,
  .contact-grid,
  .footer-grid,
  .timeline,
  .social-strip,
  .form-shell,
  .split,
  .steps,
  .gallery,
  .ui-bento {
    grid-template-columns: 1fr;
  }
  .social-card.max-qr {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .social-card.max-qr .social-card__text {
    align-items: center;
  }
  .social-card.max-qr .btn {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
  }
  .social-card.max-qr .social-card__qr-wrap {
    align-self: center;
  }
  .ui-card,
  .ui-card:nth-child(n + 5) {
    grid-column: auto;
  }
  .step-visual-wrap,
  .step-visual {
    aspect-ratio: 1680 / 980;
  }
  .hero {
    min-height: auto;
    padding-top: 0.35rem;
    padding-bottom: 2.5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    align-items: start;
    gap: 1.25rem;
    display: flex;
    flex-direction: column;
  }
  .zm-landing--hero-benefits {
    --hero-schedule-w: min(100%, 420px);
    --hero-side-w: 100%;
    --hero-dino-w: min(160px, 48%);
  }
  .zm-landing--hero-benefits > section.hero {
    padding-top: calc(var(--nav-h) + 0.35rem) !important;
  }
  .zm-landing--hero-benefits .hero-analysis {
    width: 100%;
    max-width: 420px;
  }
  .zm-landing--hero-benefits .hero-analysis__stage {
    flex-direction: column;
    align-items: stretch;
  }
  .zm-landing--hero-benefits .hero-analysis__col--left,
  .zm-landing--hero-benefits .hero-analysis__col--center,
  .zm-landing--hero-benefits .hero-analysis__col--right {
    flex: none;
    width: 100%;
    min-height: 0;
  }
  .zm-landing--hero-benefits .hero-analysis__col--right {
    order: -3;
    align-items: center;
    min-height: 0;
  }
  .zm-landing--hero-benefits .hero-analysis__head {
    order: -2;
    width: 100%;
    max-width: none;
    text-align: center;
  }
  .zm-landing--hero-benefits .hero-analysis__badge {
    align-self: center;
    justify-self: center;
  }
  .zm-landing--hero-benefits .hero-analysis__col--left {
    order: 0;
  }
  .zm-landing--hero-benefits .hero-analysis__col--center {
    order: 1;
  }
  .zm-landing--hero-benefits .hero-dino {
    width: min(160px, 48%);
    margin: 0 auto 0.25rem;
  }
  .zm-landing--hero-benefits .hero-dino img {
    animation: none;
  }
  .zm-landing--hero-benefits .hero-analysis__hint {
    text-align: center;
  }
  .hero-analysis__stage {
    min-height: auto;
    padding-bottom: 0;
  }
  .hero-alert {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transform: none;
    animation: none;
  }
  .hero-analysis__hint {
    position: relative;
    bottom: auto;
    left: auto;
    max-width: none;
    text-align: center;
  }
  .zm-landing--preanalysis .hero-analysis__stage {
    display: grid;
    gap: 0.85rem;
  }
  .zm-landing--preanalysis .hero-analysis__stage--triple {
    min-height: auto;
  }
  .preanalysis-promo {
    padding: 3rem 0 2.5rem;
  }
  .hero-dino--title {
    width: clamp(2.4rem, 13vw, 3.75rem);
    margin-bottom: 0.08em;
  }
  .zm-landing--hero-benefits .benefits {
    margin-top: -1.25rem;
  }
  .zm-landing--hero-split-a,
  .zm-landing--hero-split-b {
    --hero-split-overlap: 0px;
  }
  .zm-landing--hero-split-a .hero--head {
    padding-bottom: 2.5rem !important;
  }
  .zm-landing--hero-split-b {
    margin-top: 0;
  }
  .zm-landing--hero-split-b .hero-inner--rest {
    justify-items: stretch;
  }
  .hero-visual {
    flex-direction: column;
    position: relative;
    max-width: 420px;
    margin-inline: auto;
    padding-bottom: 0;
  }
  .hero-schedule {
    max-height: none;
    margin: 0 auto;
    padding-top: 0;
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .hero-schedule__frame {
    width: min(100%, 400px);
    animation: none;
  }
  .hero-content {
    padding-bottom: 0;
    text-align: center;
    margin-inline: auto;
  }
  .hero-content .brand-mark {
    justify-content: center;
  }
  .hero-cta {
    justify-content: center;
  }
  .fx-cell,
  .fx-line,
  .fx-plus {
    display: none;
  }
  .hero-float { display: none; }
  .feature-row { grid-template-columns: 60px 1fr; gap: 1rem; padding: 1rem; }
  .feature-row__icon { width: 60px; height: 60px; border-radius: 14px; }
  .feature-row__icon svg { width: 28px; height: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .burger { display: flex; }
  .nav { position: relative; }
  .nav-links,
  .nav-actions .btn-ghost { display: none; }
  .nav-toggle:checked ~ .nav-links,
  .nav-links.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(var(--nav-h) + 0.5rem);
    left: 1.2rem;
    right: 1.2rem;
    z-index: 200;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }
  .stat-row { grid-template-columns: 1fr; }
  :root { --nav-h: 64px; }
  .container { width: min(1180px, calc(100% - 1.25rem)); }
  .logo img { height: 44px; }
  .nav-actions .btn-primary {
    font-size: 0.82rem;
    padding: 0.55rem 0.85rem;
    white-space: nowrap;
  }
  .page-hero { padding: 2rem 0 1.25rem; }
  .page-hero h1 { font-size: clamp(1.6rem, 6vw, 2.2rem); }
  .cta-band {
    padding: 1.75rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  .cta-band .btn { width: 100%; justify-content: center; }
  .tariff-info-grid,
  .cta-band__layout,
  .cta-band__visual {
    grid-template-columns: 1fr;
  }
  .cta-band__main .btn {
    width: 100%;
    justify-content: center;
  }
  .section { padding: 2.5rem 0; }
  .hero-copy h1 { font-size: clamp(1.85rem, 7vw, 2.6rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .legal-doc { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .legal-doc table { min-width: 520px; }
  body.nav-open { overflow: hidden; }
}

/* Hero bullets */
.hero-bullets {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  max-width: 52rem;
}
.hero-bullets li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--muted);
  font-size: 0.98rem;
}
.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}
.hero-bullets strong { color: var(--ink-soft); }

/* Windows case */
.windows-case-section {
  padding: 0 0 3rem;
}
.windows-case {
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: #eef1ed;
  border: 1px solid rgba(16, 22, 18, 0.06);
}
.windows-case__head {
  text-align: center;
  max-width: 46rem;
  margin: 0 auto 2.25rem;
}
.windows-case__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.8vw, 2.35rem);
  margin: 0 0 1rem;
  line-height: 1.15;
  color: var(--ink);
}
.windows-case__intro {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
}
.windows-cycle {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 3.5rem minmax(0, 1fr);
  grid-template-rows: auto 3.5rem auto;
  gap: 0.75rem 0.5rem;
  align-items: stretch;
}
.windows-cell {
  background: #fff;
  border-radius: 20px;
  padding: 1.35rem 1.25rem 1.5rem;
  border: 1px solid rgba(16, 22, 18, 0.07);
  box-shadow: 0 10px 30px rgba(16, 22, 18, 0.05);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.windows-cell--student { grid-column: 1; grid-row: 1; }
.windows-cell--teacher { grid-column: 3; grid-row: 1; }
.windows-cell--result { grid-column: 1; grid-row: 3; text-align: left; align-items: flex-start; }
.windows-cell--room { grid-column: 3; grid-row: 3; }
.windows-cell__img {
  width: min(100%, 200px);
  height: 200px;
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  border-radius: 14px;
  overflow: hidden;
}
.windows-cell__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.windows-cell__img--room {
  background: #fff;
}
.windows-cell h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.3;
  color: var(--ink);
}
.windows-cell p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}
.windows-cell__note {
  margin-top: 0.55rem !important;
  font-size: 0.82rem !important;
  color: var(--olive-deep) !important;
}
.windows-cell__list {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}
.windows-cell__list li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.15rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--ink-soft);
  border-top: 1px solid #f2f2f2;
}
.windows-cell__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: #4ea978;
  font-weight: 700;
  font-size: 0.8rem;
}
.windows-arrow {
  display: grid;
  place-items: center;
  color: #4ea978;
}
.windows-arrow svg {
  width: 2.5rem;
  max-width: 2.5rem;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(78, 169, 120, 0.2));
}
.windows-arrow--down svg { transform: rotate(90deg); }
.windows-arrow--right { grid-column: 2; grid-row: 1; }
.windows-arrow--down { grid-column: 3; grid-row: 2; justify-self: center; }
.windows-arrow--left { grid-column: 2; grid-row: 3; }
.windows-case__cta {
  margin-top: 2rem;
  text-align: center;
}

@media (max-width: 820px) {
  .windows-cycle {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }
  .windows-cell--student { order: 1; }
  .windows-arrow--right { order: 2; }
  .windows-cell--teacher { order: 3; }
  .windows-arrow--down { order: 4; }
  .windows-cell--room { order: 5; }
  .windows-arrow--left { order: 6; }
  .windows-cell--result { order: 7; text-align: center; align-items: center; }
  .windows-arrow { padding: 0.15rem 0; }
  .windows-arrow--right svg,
  .windows-arrow--left svg {
    transform: rotate(90deg);
    max-width: 2rem;
  }
  .windows-cell__list { text-align: left; }
}

/* Tariff cards (zm-tariffs) */
.zm-tariffs-section {
  padding: 2rem 0 3rem;
}
.zm-tariffs {
  padding: 0;
}
.zm-tariffs__header {
  text-align: center;
  margin-bottom: 3rem;
}
.zm-tariffs__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
  color: var(--ink-soft);
}
.zm-tariffs__subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 44rem;
  margin: 0 auto;
  line-height: 1.6;
}
.zm-tariffs__note {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}
.zm-tariffs__note a {
  color: var(--olive-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.zm-tariffs__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: start;
  max-width: 56rem;
  margin: 0 auto;
}
.zm-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 2rem 1.75rem 1.75rem;
  background: #fff;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.zm-card:hover { transform: translateY(-6px); }
.zm-card:not(.zm-card--accent):hover {
  border: 2px solid #4ea978;
  box-shadow: 0 20px 48px rgba(78, 169, 120, 0.18);
}
.zm-card--accent {
  border: 2px solid #4ea978;
  box-shadow: 0 8px 32px rgba(78, 169, 120, 0.14);
}
.zm-card--accent:hover {
  box-shadow: 0 20px 48px rgba(78, 169, 120, 0.22);
}
.zm-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.zm-card__img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.zm-card__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--ink);
}
.zm-card__audience {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}
.zm-card__price-wrap {
  margin-bottom: 1.5rem;
  padding: 1rem 0;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
}
.zm-card__price {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
}
.zm-card__price-period {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
}
.zm-card__price-note {
  font-size: 0.82rem;
  color: #999;
  margin-top: 0.25rem;
}
.zm-card__promo-title {
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--ink-soft);
}
.zm-card__promo-price {
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.1;
}
.zm-price-divider {
  border: none;
  height: 1px;
  background: var(--line);
  margin: 0.75rem 0;
}
.zm-card__features {
  list-style: none;
  flex: 1;
  margin-bottom: 1.75rem;
}
.zm-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.88rem;
  line-height: 1.45;
  padding: 0.45rem 0;
  color: #444;
}
.zm-card__features li + li { border-top: 1px solid #fafafa; }
.zm-feat-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-top: 1px;
}
.zm-feat-icon--yes { background: #dcfce7; color: #16a34a; }
.zm-feat-icon--no { background: #f3f4f6; color: #bbb; }
.zm-feat-text--no { color: #bbb; }
.zm-card__cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.9rem 0;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.zm-card__cta:hover { transform: scale(1.02); }
.zm-card__cta--outline {
  background: #f0faf4;
  color: #3b5042;
  border: 1.5px solid #8fd9ad;
}
.zm-card__cta--outline:hover { background: #e3f5ea; }
.zm-card__cta--fill {
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff !important;
}
.zm-card__cta--fill:hover {
  background: linear-gradient(135deg, #2f4034, #3b5042);
  color: #fff !important;
}
.zm-card__cta--warm {
  background: #f4faf6;
  color: #3b5042;
  border: 1.5px solid #b8e0c8;
}
.zm-card__cta--warm:hover { background: #e8f5ec; }
.zm-card__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

@media (max-width: 960px) {
  .zm-tariffs__grid {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin: 0 auto;
  }
}

/* Tariff store pages (Tilda t776) — в стиле zm-card */
#allrecords[data-tilda-page-alias="tariftimetable"] #rec1913862241 {
  padding-top: calc(var(--nav-h, 72px) + 2rem) !important;
  padding-bottom: 1.25rem !important;
}
#allrecords[data-tilda-page-alias="tariftimetable"] #rec1913862241 .t015__title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
  color: var(--ink-soft) !important;
}
#allrecords[data-tilda-page-alias="tariftimetable"] #rec1913862241 .t015__title span {
  color: inherit !important;
}
#allrecords[data-tilda-page-alias="tariftimetable"] #rec1913831631 {
  padding-top: 0 !important;
  padding-bottom: 3rem !important;
}
#allrecords[data-tilda-page-alias="tarifclassic"] #rec1913201421 {
  padding-top: calc(var(--nav-h, 72px) + 2rem) !important;
  padding-bottom: 1.25rem !important;
}
#allrecords[data-tilda-page-alias="tarifclassic"] #rec1913201421 .t015__title {
  font-family: var(--font-display) !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  font-weight: 700 !important;
  letter-spacing: -0.5px;
  color: var(--ink-soft) !important;
}
#allrecords[data-tilda-page-alias="tarifclassic"] #rec1913201421 .t015__title span {
  color: inherit !important;
}
#allrecords[data-tilda-page-alias="tarifclassic"] #rec2038321351 {
  padding-top: 0 !important;
  padding-bottom: 3rem !important;
}
.zm-timetable-store .t776__scroll-icon-wrapper,
.zm-t776-store .t776__scroll-icon-wrapper {
  display: none !important;
}
.zm-timetable-store .t776__parent,
.zm-t776-store .t776__parent {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
}
.zm-timetable-store.zm-t776-store--single .t776__parent,
.zm-t776-store--single .t776__parent {
  grid-template-columns: 1fr;
  max-width: 16rem;
}
.zm-timetable-store .js-product.t-col,
.zm-t776-store .js-product.t-col {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.zm-store-section-header {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-align: center;
  margin: 0.15rem 0 0;
  padding-top: 0.65rem;
}
.zm-store-section-header:first-child {
  margin-top: 0;
  padding-top: 0;
}
.zm-timetable-store .js-product,
.zm-t776-store .js-product {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.5rem 1.5rem;
  background: #fff;
  box-shadow: 0 4px 18px rgba(16, 22, 18, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  font-family: "TildaSans", Arial, sans-serif;
}
.zm-timetable-store .js-product:hover,
.zm-t776-store .js-product:hover {
  transform: translateY(-6px);
  border: 2px solid #4ea978;
  box-shadow: 0 10px 28px rgba(78, 169, 120, 0.14);
}
.zm-timetable-store .zm-store-card--accent,
.zm-t776-store .zm-store-card--accent {
  border: 2px solid #4ea978;
  box-shadow: 0 4px 18px rgba(78, 169, 120, 0.1);
}
.zm-timetable-store .zm-store-card--accent::before,
.zm-t776-store .zm-store-card--accent::before {
  content: attr(data-zm-badge);
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 14px;
  white-space: nowrap;
}
.zm-timetable-store .js-product-link,
.zm-t776-store .js-product-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.zm-timetable-store .t776__content,
.zm-t776-store .t776__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
}
.zm-timetable-store .t776__imgwrapper,
.zm-t776-store .t776__imgwrapper {
  padding-bottom: 56.25% !important;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}
.zm-timetable-store .t776__bgimg,
.zm-t776-store .t776__bgimg {
  border-radius: 12px;
  background-size: cover !important;
  background-position: center !important;
}
.zm-timetable-store .t776__title,
.zm-t776-store .t776__title {
  font-family: "TildaSans", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
  line-height: 1.3 !important;
  margin-bottom: 0.25rem !important;
  text-align: center;
}
.zm-timetable-store .t776__descr,
.zm-t776-store .t776__descr {
  display: block;
  font-family: "TildaSans", Arial, sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 400 !important;
  color: var(--muted) !important;
  line-height: 1.35;
  text-align: center;
}
.zm-timetable-store .zm-store-descr--note,
.zm-t776-store .zm-store-descr--note {
  font-size: 0.75rem !important;
  margin-bottom: 0.25rem;
}
.zm-timetable-store .t776__price-wrapper,
.zm-t776-store .t776__price-wrapper {
  margin: 0.75rem 0 0 !important;
  padding: 0.75rem 0 !important;
  border-top: 1px solid #f0f0f0;
  border-bottom: 1px solid #f0f0f0;
  text-align: center;
}
.zm-timetable-store .t776__price,
.zm-t776-store .t776__price {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 0.25rem !important;
}
.zm-timetable-store .t776__price-value,
.zm-t776-store .t776__price-value {
  font-family: "TildaSans", Arial, sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--ink) !important;
}
.zm-timetable-store .t776__price-currency,
.zm-t776-store .t776__price-currency {
  font-family: "TildaSans", Arial, sans-serif !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--muted) !important;
}
.zm-store-save {
  font-size: 0.68rem;
  color: #4ea978;
  font-weight: 500;
  margin-top: 0.35rem;
  line-height: 1.3;
  text-align: center;
}
.zm-store-monthly-note {
  font-family: "TildaSans", Arial, sans-serif;
  font-size: 0.68rem;
  color: var(--muted);
  font-weight: 400;
  margin-top: 0.35rem;
  line-height: 1.3;
  text-align: center;
}
.zm-timetable-store .t776__btn-wrapper,
.zm-t776-store .t776__btn-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.5rem !important;
  margin-top: 1rem !important;
  padding: 0 !important;
  width: 100% !important;
}
.zm-timetable-store .t776__content .t776__btn-wrapper,
.zm-t776-store .t776__content .t776__btn-wrapper {
  margin-top: auto !important;
}
.zm-timetable-store .t776__btn,
.zm-t776-store .t776__btn {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  text-align: center !important;
  padding: 0.7rem 0.85rem !important;
  border-radius: 12px !important;
  font-family: "TildaSans", Arial, sans-serif !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transition: background 0.2s, transform 0.15s, border-color 0.2s !important;
}
.zm-timetable-store .t776__btn:not(.t776__btn_second),
.zm-t776-store .t776__btn:not(.t776__btn_second) {
  display: none !important;
}
.zm-timetable-store .t776__btn_second,
.zm-t776-store .t776__btn_second {
  background: linear-gradient(135deg, #3b5042, #4ea978) !important;
  color: #fff !important;
  border: none !important;
}
.zm-timetable-store .t776__btn_second:hover,
.zm-t776-store .t776__btn_second:hover {
  background: linear-gradient(135deg, #2f4034, #3b5042) !important;
  transform: scale(1.02);
}
.zm-timetable-store .t776__btn style,
.zm-t776-store .t776__btn style {
  display: none !important;
}
@media (max-width: 520px) {
  .zm-timetable-store .t776__parent,
  .zm-t776-store .t776__parent {
    grid-template-columns: 1fr;
    max-width: 16rem;
  }
}

/* DB setup offer landing block (T123) */
.zm-db-offer {
  --db-orange: #ff8c2a;
  --db-orange-bright: #ffb347;
  --db-orange-deep: #e86f00;
  --db-orange-glow: rgba(255, 140, 42, 0.28);
}
.zm-db-offer section { padding: 4rem 0; }
.zm-db-offer__hero {
  position: relative;
  padding: calc(var(--nav-h, 72px) + 1.5rem) 0 3.5rem !important;
  overflow: hidden;
}
.zm-db-offer__hero-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.zm-db-offer__deco-clock {
  position: absolute;
  top: 12%;
  right: 8%;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px dashed rgba(255, 140, 42, 0.45);
  opacity: 0.55;
}
.zm-db-offer__deco-clock::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 2px solid rgba(255, 179, 71, 0.5);
}
.zm-db-offer__deco-arrow {
  position: absolute;
  width: 48px;
  height: 48px;
  border-top: 3px solid rgba(255, 140, 42, 0.35);
  border-right: 3px solid rgba(255, 140, 42, 0.35);
  transform: rotate(45deg);
}
.zm-db-offer__deco-arrow--1 { bottom: 18%; left: 6%; opacity: 0.4; }
.zm-db-offer__deco-arrow--2 { top: 42%; right: 22%; width: 32px; height: 32px; opacity: 0.3; }
.zm-db-offer__save-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-deep));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px var(--db-orange-glow);
}
.zm-db-offer__save-badge svg { flex-shrink: 0; }
.zm-db-offer__highlight--orange {
  border-color: rgba(255, 179, 71, 0.55) !important;
  background: linear-gradient(135deg, rgba(255, 140, 42, 0.14), rgba(255, 255, 255, 0.06)) !important;
}
.zm-db-offer__eyebrow--orange { color: var(--db-orange-deep) !important; }
.zm-db-offer__eyebrow--orange::before { background: var(--db-orange) !important; }
.zm-db-offer__visual-badge--orange {
  background: linear-gradient(135deg, rgba(255, 140, 42, 0.18), rgba(255, 179, 71, 0.28)) !important;
  color: var(--db-orange-deep) !important;
}
.zm-db-offer__hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 55% at 92% 8%, rgba(255, 179, 71, 0.16), transparent 52%),
    radial-gradient(ellipse 60% 50% at 0% 88%, rgba(184, 212, 176, 0.42), transparent 50%),
    linear-gradient(180deg, #fffefb 0%, #fff 45%, #f6f9f6 100%);
}
.zm-db-offer__hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.zm-db-offer__hero .zm-db-offer__title {
  color: var(--ink);
}
.zm-db-offer__hero .zm-db-offer__subtitle {
  color: var(--ink-soft);
}
.zm-db-offer__hero .zm-db-offer__lead,
.zm-db-offer__hero .zm-db-offer__text {
  color: var(--muted);
}
.zm-db-offer__hero .zm-db-offer__highlight {
  background: #fff;
  border: 1px solid rgba(78, 169, 120, 0.28);
  box-shadow: 0 8px 28px rgba(16, 22, 18, 0.06);
}
.zm-db-offer__hero .zm-db-offer__highlight p {
  color: var(--ink-soft);
}
.zm-db-offer__hero .zm-db-offer__highlight--orange {
  background: linear-gradient(135deg, #fffaf5 0%, #fff 100%) !important;
  border-color: rgba(255, 140, 42, 0.38) !important;
}
.zm-db-offer__hero .zm-db-offer__tagline {
  color: var(--ink);
}
.zm-db-offer__deco-clock {
  border-color: rgba(255, 140, 42, 0.55);
  opacity: 0.7;
}
.zm-db-offer__deco-arrow {
  border-color: rgba(255, 140, 42, 0.45);
}
.zm-db-offer__deco-arrow--1 { opacity: 0.55; }
.zm-db-offer__deco-arrow--2 { opacity: 0.45; }
.zm-db-offer__eyebrow--light {
  color: var(--mint-bright) !important;
}
.zm-db-offer__eyebrow--light::before {
  background: var(--mint-bright) !important;
}
.zm-db-offer__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 0.75rem;
}
.zm-db-offer__subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--ink-soft);
  margin: 0 0 1rem;
  line-height: 1.35;
}
.zm-db-offer__lead,
.zm-db-offer__text {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0 0 1rem;
}
.zm-db-offer__highlight {
  padding: 1rem 1.15rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  margin: 1.25rem 0;
}
.zm-db-offer__highlight p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.55;
  font-size: 0.98rem;
}
.zm-db-offer__highlight p + p { margin-top: 0.5rem; }
.zm-db-offer__tagline {
  color: var(--ink);
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
.zm-db-offer__visual-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  box-shadow: 0 20px 48px rgba(16, 22, 18, 0.1), 0 0 0 1px rgba(255, 140, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.zm-db-offer__visual-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
}
.zm-db-offer__visual-badge {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(78, 169, 120, 0.14);
  color: var(--olive-deep);
}
.zm-db-offer__visual-steps {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}
.zm-db-offer__visual-steps li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--muted);
  padding: 0.55rem 0.65rem;
  border-radius: 10px;
  background: #f7faf8;
}
.zm-db-offer__visual-steps li span {
  width: 1.5rem;
  height: 1.5rem;
  margin-top: 0.1em;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  background: #e8ece9;
  color: var(--muted);
  flex-shrink: 0;
}
.zm-db-offer__visual-steps li.is-done { color: var(--ink-soft); }
.zm-db-offer__visual-steps li.is-done span {
  background: #dcfce7;
  color: #16a34a;
}
.zm-db-offer__visual-steps li.is-active {
  background: linear-gradient(135deg, rgba(63, 82, 64, 0.08), rgba(78, 169, 120, 0.12));
  color: var(--ink);
  font-weight: 600;
  border: 1px solid rgba(78, 169, 120, 0.35);
}
.zm-db-offer__visual-steps li.is-active span {
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
}
.zm-db-offer__visual-btn {
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: #072214;
  background: linear-gradient(135deg, var(--mint) 0%, #4ea978 100%);
  box-shadow: 0 12px 28px rgba(111, 191, 143, 0.35);
}

/* Infographic: time savings — light certificate style */
.zm-db-offer__infographic {
  position: relative;
  padding: 3rem 0 3.25rem !important;
  overflow: hidden;
  background:
    radial-gradient(ellipse 55% 70% at 0% 0%, rgba(184, 212, 176, 0.35), transparent 58%),
    radial-gradient(ellipse 50% 65% at 100% 100%, rgba(184, 212, 176, 0.28), transparent 55%),
    linear-gradient(180deg, #fffefb 0%, #fff 45%, #f8faf7 100%);
}
.zm-db-offer__info-deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.zm-db-offer__info-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
}
.zm-db-offer__info-blob--tl {
  width: 220px;
  height: 220px;
  top: -60px;
  left: -40px;
  background: radial-gradient(circle, rgba(184, 212, 176, 0.45), transparent 68%);
}
.zm-db-offer__info-blob--br {
  width: 260px;
  height: 260px;
  bottom: -80px;
  right: -50px;
  background: radial-gradient(circle, rgba(184, 212, 176, 0.38), transparent 68%);
}
.zm-db-offer__info-grid {
  position: absolute;
  width: 56px;
  height: 56px;
  background-image:
    linear-gradient(90deg, var(--db-orange) 0 5px, transparent 5px 11px),
    linear-gradient(var(--db-orange) 0 5px, transparent 5px 11px),
    linear-gradient(90deg, #c8d4c8 0 5px, transparent 5px 11px),
    linear-gradient(#c8d4c8 0 5px, transparent 5px 11px);
  background-size: 11px 11px;
  opacity: 0.85;
}
.zm-db-offer__info-grid--tl { top: 1.25rem; left: 1.5rem; }
.zm-db-offer__info-grid--tr {
  top: 1.5rem;
  right: 1.75rem;
  background-image:
    linear-gradient(90deg, #c8d4c8 0 5px, transparent 5px 11px),
    linear-gradient(#c8d4c8 0 5px, transparent 5px 11px),
    linear-gradient(90deg, var(--db-orange) 0 5px, transparent 5px 11px),
    linear-gradient(var(--db-orange) 0 5px, transparent 5px 11px);
}
.zm-db-offer__info-squares {
  position: absolute;
  width: 34px;
  height: 34px;
}
.zm-db-offer__info-squares::before,
.zm-db-offer__info-squares::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 4px;
}
.zm-db-offer__info-squares::before {
  border: 2px solid #3b5042;
  top: 0;
  left: 0;
}
.zm-db-offer__info-squares::after {
  border: 2px solid var(--db-orange);
  bottom: 0;
  right: 0;
}
.zm-db-offer__info-squares--tl { top: 5.5rem; left: 2rem; }
.zm-db-offer__info-squares--br { bottom: 2rem; right: 2.25rem; }
.zm-db-offer__info-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 2rem;
  width: 72px;
  height: 14px;
  background:
    radial-gradient(circle, var(--db-orange) 0 3px, transparent 3px 100%) 0 50% / 14px 100% repeat-x;
  opacity: 0.75;
}
.zm-db-offer__info-dots--right {
  left: auto;
  right: 2.5rem;
  width: 56px;
  background:
    radial-gradient(circle, #4ea978 0 3px, transparent 3px 100%) 0 50% / 14px 100% repeat-x;
  opacity: 0.55;
}
.zm-db-offer__infographic .container {
  position: relative;
  z-index: 1;
}
.zm-db-offer__info-flow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.25rem;
  align-items: center;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0.5rem 0;
}
.zm-db-offer__info-flow::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.25rem;
  transform: translateX(-50%);
  width: min(72%, 28rem);
  height: 3px;
  background: repeating-linear-gradient(
    90deg,
    var(--db-orange) 0 6px,
    transparent 6px 12px
  );
  opacity: 0.55;
  pointer-events: none;
}
.zm-db-offer__info-card {
  position: relative;
  padding: 1.5rem 1.35rem 1.35rem;
  border-radius: 18px;
  background: #fff;
  border: 2px solid #e8ece9;
  text-align: center;
  box-shadow: 0 10px 32px rgba(16, 22, 18, 0.06);
}
.zm-db-offer__info-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.zm-db-offer__info-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--muted);
}
.zm-db-offer__info-card--slow {
  border-color: rgba(255, 140, 42, 0.35);
  background: linear-gradient(180deg, #fff 0%, #fffaf5 100%);
}
.zm-db-offer__info-card--fast {
  border-color: rgba(78, 169, 120, 0.4);
  background: linear-gradient(180deg, #fff 0%, #f4faf6 55%, #fff8f0 100%);
  box-shadow:
    0 12px 36px rgba(78, 169, 120, 0.1),
    0 0 0 1px rgba(255, 140, 42, 0.12) inset;
}
.zm-db-offer__info-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 0.75rem;
  padding: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff3e6, #ffe8cc);
  color: var(--db-orange-deep);
  box-shadow: 0 6px 18px rgba(255, 140, 42, 0.18);
}
.zm-db-offer__info-icon--rocket {
  background: linear-gradient(135deg, #e8f5ec, #f0faf4);
  color: #3b5042;
  box-shadow: 0 6px 18px rgba(78, 169, 120, 0.15);
}
.zm-db-offer__info-icon svg { width: 100%; height: 100%; }
.zm-db-offer__info-arrow {
  color: var(--db-orange);
  width: 64px;
  filter: drop-shadow(0 2px 6px rgba(255, 140, 42, 0.25));
}
.zm-db-offer__info-arrow svg { width: 100%; height: auto; display: block; }
.zm-db-offer__info-tag {
  display: inline-block;
  margin-top: 0.85rem;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-deep));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  box-shadow: 0 8px 20px var(--db-orange-glow);
}

/* Promo hero banner */
.zm-db-offer__promo-banner {
  padding: 2rem 0 !important;
  background: #f7f9f7;
}
.zm-promo-banner {
  position: relative;
  border: 2px solid #101612;
  background:
    radial-gradient(ellipse 55% 80% at 88% 50%, rgba(184, 212, 176, 0.35), transparent 58%),
    linear-gradient(180deg, #f0f2f0 0%, #e8ebe8 100%);
  overflow: hidden;
  min-height: clamp(140px, 16vw, 190px);
  width: 100%;
}
.zm-promo-banner__logo-corner {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: clamp(118px, 14vw, 156px);
  height: clamp(52px, 7vw, 68px);
  padding: 0.85rem 1rem 0.95rem 1.1rem;
  background: #1c261f;
  border-bottom-right-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.zm-promo-banner__logo-corner img {
  width: 100%;
  max-width: 118px;
  height: auto;
  display: block;
}
.zm-promo-banner__dots {
  position: absolute;
  z-index: 1;
  display: grid;
  gap: 5px;
  pointer-events: none;
  transform: scale(0.72);
  transform-origin: top left;
}
.zm-promo-banner__dots--green-tr,
.zm-promo-banner__dots--mint-br {
  transform-origin: top right;
}
.zm-promo-banner__dots--orange-bl,
.zm-promo-banner__dots--mint-br {
  transform-origin: bottom left;
}
.zm-promo-banner__dots--mint-br {
  transform-origin: bottom right;
}
.zm-promo-banner__dots--gray-tl {
  top: 0.65rem;
  left: 0.85rem;
  grid-template-columns: repeat(4, 7px);
}
.zm-promo-banner__dots--gray-tl::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #b8c4bc;
  border-radius: 1px;
  box-shadow:
    12px 0 0 #b8c4bc,
    24px 0 0 #b8c4bc,
    36px 0 0 #b8c4bc,
    0 12px 0 #b8c4bc,
    12px 12px 0 #b8c4bc,
    24px 12px 0 #b8c4bc,
    36px 12px 0 #b8c4bc,
    0 24px 0 #b8c4bc,
    12px 24px 0 #b8c4bc,
    24px 24px 0 #b8c4bc,
    36px 24px 0 #b8c4bc;
}
.zm-promo-banner__dots--orange-bl {
  left: 0.85rem;
  bottom: 0.75rem;
  grid-template-columns: repeat(3, 7px);
}
.zm-promo-banner__dots--orange-bl::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #e87820;
  border-radius: 1px;
  box-shadow:
    12px 0 0 #e87820,
    24px 0 0 #e87820,
    0 12px 0 #e87820,
    12px 12px 0 #e87820,
    24px 12px 0 #e87820,
    0 24px 0 #e87820,
    12px 24px 0 #e87820,
    24px 24px 0 #e87820;
}
.zm-promo-banner__dots--green-tr {
  top: 1rem;
  right: 1.25rem;
  grid-template-columns: repeat(4, 7px);
}
.zm-promo-banner__dots--green-tr::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #2c3a2e;
  border-radius: 50%;
  box-shadow:
    12px 0 0 #2c3a2e,
    24px 0 0 #2c3a2e,
    36px 0 0 #2c3a2e,
    0 12px 0 #2c3a2e,
    12px 12px 0 #2c3a2e,
    24px 12px 0 #2c3a2e,
    36px 12px 0 #2c3a2e,
    0 24px 0 #2c3a2e,
    12px 24px 0 #2c3a2e,
    24px 24px 0 #2c3a2e,
    36px 24px 0 #2c3a2e;
}
.zm-promo-banner__dots--mint-br {
  right: 1.25rem;
  bottom: 1.1rem;
  grid-template-columns: repeat(3, 7px);
}
.zm-promo-banner__dots--mint-br::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #8fd9ad;
  border-radius: 50%;
  box-shadow:
    12px 0 0 #8fd9ad,
    24px 0 0 #8fd9ad,
    0 12px 0 #8fd9ad,
    12px 12px 0 #8fd9ad,
    24px 12px 0 #8fd9ad,
    0 24px 0 #8fd9ad,
    12px 24px 0 #8fd9ad,
    24px 24px 0 #8fd9ad;
}
.zm-promo-banner__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr) minmax(0, 0.62fr);
  align-items: stretch;
  min-height: inherit;
}
.zm-promo-banner__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.45rem, 1.2vw, 0.65rem);
  padding:
    clamp(0.85rem, 2vw, 1.15rem)
    clamp(0.75rem, 2vw, 1.25rem)
    clamp(0.85rem, 2vw, 1.15rem)
    clamp(4.2rem, 11vw, 5.75rem);
}
.zm-promo-banner__headline {
  display: flex;
  align-items: stretch;
  gap: clamp(0.55rem, 1.2vw, 0.75rem);
}
.zm-promo-banner__rule {
  flex-shrink: 0;
  width: 3px;
  border-radius: 999px;
  background: var(--db-orange, #ff8c2a);
}
.zm-promo-banner__title {
  margin: 0 0 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(0.92rem, 1.55vw, 1.28rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--db-orange, #ff8c2a);
}
.zm-promo-banner__subtitle {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.64rem, 1.05vw, 0.8rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #3f5240;
}
.zm-promo-banner__prices {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem clamp(0.65rem, 2vw, 1.25rem);
  margin: 0;
  padding: 0;
  list-style: none;
}
.zm-promo-banner__prices li {
  font-family: var(--font-body);
  font-size: clamp(0.64rem, 1vw, 0.78rem);
  color: #3f5240;
  line-height: 1.3;
}
.zm-promo-banner__prices strong {
  font-weight: 800;
  color: #1c261f;
}
.zm-promo-banner__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin-left: calc(3px + clamp(0.65rem, 1.4vw, 0.9rem));
  margin-top: 0.1rem;
  padding: clamp(0.42rem, 1vw, 0.5rem) clamp(0.8rem, 2vw, 1rem) clamp(0.42rem, 1vw, 0.5rem) clamp(0.6rem, 1.5vw, 0.75rem);
  border-radius: 999px;
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-family: var(--font-body);
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(78, 169, 120, 0.28);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  max-width: calc(100% - 3px - clamp(0.65rem, 1.4vw, 0.9rem));
}
.zm-promo-banner__cta:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #2f4034, #3b5042);
  box-shadow: 0 10px 22px rgba(78, 169, 120, 0.32);
}
.zm-promo-banner__cta-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}
.zm-promo-banner__cta-icon svg {
  width: 14px;
  height: 14px;
}
.zm-promo-banner__cta-arrow {
  font-size: 0.92rem;
  line-height: 1;
  opacity: 0.9;
}
.zm-promo-banner__flow {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.4rem, 0.9vw, 0.55rem);
  padding: clamp(0.75rem, 1.6vw, 1rem) clamp(0.35rem, 1vw, 0.65rem);
  align-self: center;
  width: 100%;
}
.zm-promo-banner__flow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(0.58rem, 0.85vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--db-orange, #ff8c2a);
}
.zm-promo-banner__flow-tag-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 42, 0.35));
}
.zm-promo-banner__steps {
  display: flex;
  align-items: center;
  gap: clamp(0.15rem, 0.5vw, 0.3rem);
}
.zm-promo-banner__step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: clamp(0.45rem, 0.9vw, 0.58rem) clamp(0.3rem, 0.65vw, 0.42rem);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(16, 22, 18, 0.08);
  box-shadow: 0 4px 14px rgba(16, 22, 18, 0.06);
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.zm-promo-banner__step--win {
  background: linear-gradient(145deg, rgba(255, 140, 42, 0.14), rgba(255, 255, 255, 0.92));
  border-color: rgba(255, 140, 42, 0.38);
  box-shadow: 0 6px 18px rgba(255, 140, 42, 0.18);
}
.zm-promo-banner__step-badge {
  display: grid;
  place-items: center;
  width: clamp(20px, 2.2vw, 24px);
  height: clamp(20px, 2.2vw, 24px);
  border-radius: 50%;
  background: var(--db-orange, #ff8c2a);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(0.62rem, 0.85vw, 0.7rem);
  font-weight: 700;
  line-height: 1;
}
.zm-promo-banner__step--win .zm-promo-banner__step-badge {
  background: linear-gradient(135deg, #ff8c2a, #e87820);
  box-shadow: 0 2px 8px rgba(255, 140, 42, 0.42);
}
.zm-promo-banner__step-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}
.zm-promo-banner__step-text strong {
  font-family: var(--font-body);
  font-size: clamp(0.56rem, 0.88vw, 0.72rem);
  font-weight: 800;
  line-height: 1.15;
  color: #1c261f;
}
.zm-promo-banner__step-text small {
  font-size: clamp(0.48rem, 0.72vw, 0.6rem);
  color: #5c6b60;
  line-height: 1.2;
}
.zm-promo-banner__arrow {
  flex: 0 0 auto;
  color: var(--db-orange, #ff8c2a);
  line-height: 0;
  filter: drop-shadow(0 1px 2px rgba(255, 140, 42, 0.28));
}
.zm-promo-banner__arrow svg {
  display: block;
  width: clamp(16px, 2vw, 24px);
  height: auto;
}
.zm-promo-banner__visual {
  position: relative;
  min-height: clamp(100px, 12vw, 140px);
  overflow: hidden;
}
.zm-promo-banner__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  max-height: clamp(110px, 13vw, 150px);
  margin: auto 0 auto auto;
}
.zm-promo-banner__photo--ref {
  object-fit: cover;
  object-position: 72% center;
  width: 135%;
  right: 0;
  left: auto;
}
.zm-promo-banner--no-logo .zm-promo-banner__copy {
  padding-top: clamp(0.85rem, 2vw, 1.15rem);
}
.zm-promo-banner__logo-corner + .zm-promo-banner__dots--gray-tl,
.zm-promo-banner:not(.zm-promo-banner--no-logo) .zm-promo-banner__dots--gray-tl {
  top: 3.25rem;
  left: 1.25rem;
}
@media (max-width: 1024px) {
  .zm-promo-banner__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.1fr) minmax(0, 0.58fr);
  }
}
@media (max-width: 900px) {
  .zm-promo-banner__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "copy visual"
      "flow flow";
  }
  .zm-promo-banner__copy { grid-area: copy; }
  .zm-promo-banner__flow {
    grid-area: flow;
    padding: 0.35rem 0.75rem 0.85rem;
  }
  .zm-promo-banner__visual {
    grid-area: visual;
    min-height: clamp(88px, 14vw, 120px);
  }
  .zm-promo-banner__photo {
    max-height: clamp(88px, 14vw, 120px);
  }
}
@media (max-width: 760px) {
  .zm-promo-banner {
    min-height: auto;
  }
  .zm-promo-banner__inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "visual"
      "copy"
      "flow";
  }
  .zm-promo-banner__visual {
    grid-area: visual;
    min-height: clamp(92px, 26vw, 128px);
    order: unset;
  }
  .zm-promo-banner__photo {
    max-height: clamp(92px, 26vw, 128px);
    object-position: center bottom;
    margin-inline: auto;
  }
  .zm-promo-banner__copy {
    grid-area: copy;
    padding:
      0.85rem
      1rem
      0.65rem
      clamp(3.5rem, 12.5vw, 4.25rem);
  }
  .zm-promo-banner__flow {
    grid-area: flow;
    padding: 0 1rem 1rem;
  }
  .zm-promo-banner__steps {
    gap: 0.25rem;
  }
  .zm-promo-banner__prices {
    flex-direction: column;
    gap: 0.2rem;
  }
  .zm-promo-banner__dots--green-tr,
  .zm-promo-banner__dots--mint-br {
    display: none;
  }
}
@media (max-width: 480px) {
  .zm-promo-banner__copy {
    padding-left: clamp(3.15rem, 14.5vw, 3.85rem);
  }
  .zm-promo-banner__flow {
    padding-inline: 0.85rem;
  }
  .zm-promo-banner__steps {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }
  .zm-promo-banner__step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 0.65rem;
    padding: 0.5rem 0.65rem;
  }
  .zm-promo-banner__arrow {
    transform: rotate(90deg);
    align-self: center;
  }
  .zm-promo-banner__arrow svg {
    width: 20px;
  }
  .zm-promo-banner__dots {
    transform: scale(0.62);
  }
  .zm-promo-banner__cta {
    width: auto;
    max-width: 100%;
  }
}

/* Promo banners */
.zm-db-offer__banners {
  padding: 2.5rem 0 !important;
  background: #f7f9f7;
}
.zm-db-offer__banners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.zm-db-offer__banner {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1.15rem 1.1rem;
  border-radius: 16px;
  border: 2px solid transparent;
  background: #fff;
  box-shadow: 0 8px 28px rgba(16, 22, 18, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.zm-db-offer__banner:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(16, 22, 18, 0.1);
}
.zm-db-offer__banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.zm-db-offer__banner-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}
.zm-db-offer__banner-icon svg { width: 22px; height: 22px; }
.zm-db-offer__banner--sept {
  border-color: rgba(255, 140, 42, 0.35);
}
.zm-db-offer__banner--sept .zm-db-offer__banner-icon {
  background: linear-gradient(135deg, var(--db-orange), var(--db-orange-deep));
}
.zm-db-offer__banner--help {
  border-color: rgba(78, 169, 120, 0.35);
}
.zm-db-offer__banner--help .zm-db-offer__banner-icon {
  background: linear-gradient(135deg, #4ea978, #3b5042);
}
.zm-db-offer__banner--swap {
  border-color: rgba(255, 140, 42, 0.25);
  background: linear-gradient(135deg, #fff 0%, #fff8f0 100%);
}
.zm-db-offer__banner--swap .zm-db-offer__banner-icon {
  background: linear-gradient(135deg, var(--db-orange-bright), var(--db-orange));
}

/* Schedule showcase */
.zm-db-offer__schedule-showcase {
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 140, 42, 0.08), transparent 40%),
    linear-gradient(180deg, #fff, #f4f7f4);
}
.zm-db-offer__schedule-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.zm-db-offer__schedule-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.zm-db-offer__schedule-copy > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.zm-db-offer__schedule-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}
.zm-db-offer__schedule-points li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.zm-db-offer__schedule-points li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--db-orange);
  font-weight: 700;
}
.zm-db-offer__schedule-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.zm-db-offer__monitor-shot {
  display: block;
  width: min(100%, 380px);
  height: auto;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow:
    0 24px 56px rgba(16, 22, 18, 0.14),
    0 0 0 1px rgba(255, 140, 42, 0.15);
}
.zm-db-offer__phone--sched {
  justify-self: center;
}
.zm-db-offer__phone--sched .zm-db-offer__phone-frame {
  width: 286px;
}
.zm-db-offer__white-sched {
  background: #fff;
}
.zm-db-offer__white-sched-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.55rem 0.65rem;
  border-bottom: 1px solid #e8ece9;
  background: #f8faf8;
}
.zm-db-offer__white-sched-days {
  display: flex;
  gap: 0.25rem;
}
.zm-db-offer__white-sched-days span {
  padding: 0.2rem 0.42rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 700;
  color: var(--muted);
}
.zm-db-offer__white-sched-days span.is-active {
  background: linear-gradient(135deg, var(--mint-bright), var(--mint));
  color: #0d1812;
}
.zm-db-offer__white-sched-meta {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.zm-db-offer__white-sched-grid {
  display: grid;
  grid-template-columns: 2.2rem 1fr 1fr;
  gap: 0.28rem;
  padding: 0.5rem 0.55rem 0.65rem;
}
.zm-db-offer__white-sched-head {
  font-size: 0.55rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  padding-bottom: 0.1rem;
}
.zm-db-offer__white-sched-time {
  font-size: 0.5rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  line-height: 1.2;
}
.zm-db-offer__white-sched-cell {
  border-radius: 8px;
  padding: 0.32rem 0.35rem;
  min-height: 2.1rem;
  background: #f7faf8;
  border: 1px solid #e8ece9;
  display: grid;
  gap: 0.08rem;
  align-content: center;
}
.zm-db-offer__white-sched-cell strong {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.zm-db-offer__white-sched-cell span {
  font-size: 0.46rem;
  color: var(--muted);
}
.zm-db-offer__white-sched-cell.is-accent {
  background: linear-gradient(135deg, #e8f5ec, #f0faf4);
  border-color: rgba(78, 169, 120, 0.35);
}
.zm-db-offer__white-sched-cell.is-soft {
  background: #f4f8f5;
}
.zm-db-offer__mobile-bonus {
  margin: 0 0 0.85rem !important;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fff3e6, #fff8f0);
  border: 1px solid rgba(255, 140, 42, 0.35);
  color: var(--ink) !important;
  font-size: 0.98rem !important;
  line-height: 1.45 !important;
}

/* Mobile phone showcase */
.zm-db-offer__mobile-showcase {
  background:
    radial-gradient(ellipse 50% 55% at 8% 25%, rgba(255, 179, 71, 0.12), transparent 52%),
    radial-gradient(ellipse 55% 60% at 92% 75%, rgba(184, 212, 176, 0.32), transparent 50%),
    linear-gradient(180deg, #fffefb 0%, #fff 48%, #f6f9f6 100%);
  color: var(--ink);
}
.zm-db-offer__mobile-showcase .zm-db-offer__phone-glow {
  background: radial-gradient(circle, rgba(255, 140, 42, 0.14), transparent 68%);
}
.zm-db-offer__mobile-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.zm-db-offer__phone {
  position: relative;
  justify-self: center;
}
.zm-db-offer__phone-body {
  position: relative;
  display: inline-block;
}
.zm-db-offer__phone-btn {
  position: absolute;
  z-index: 2;
  border-radius: 2px;
  background: linear-gradient(90deg, #6a6a6a, #2e2e2e);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.zm-db-offer__phone-btn--power {
  right: -4px;
  top: 34%;
  width: 4px;
  height: 52px;
}
.zm-db-offer__phone-btn--vol {
  left: -4px;
  top: 26%;
  width: 4px;
  height: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 42px 0 0 linear-gradient(90deg, #6a6a6a, #2e2e2e);
}
.zm-db-offer__phone--sched .zm-db-offer__phone-btn {
  background: linear-gradient(90deg, #c5c9cd, #9aa0a6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.zm-db-offer__phone--sched .zm-db-offer__phone-btn--vol {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 42px 0 0 linear-gradient(90deg, #c5c9cd, #9aa0a6);
}
.zm-db-offer__phone-frame {
  position: relative;
  z-index: 1;
  width: 272px;
  padding: 11px 10px 13px;
  border-radius: 40px;
  background: linear-gradient(165deg, #4d4d4d 0%, #1a1a1a 38%, #2d2d2d 100%);
  border: 2px solid #3a3a3a;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
}
.zm-db-offer__phone-bezel {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #0a0a0a;
  padding-bottom: 6px;
}
.zm-db-offer__phone-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 20px;
  border-radius: 999px;
  background: #050505;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}
.zm-db-offer__phone-screen {
  border-radius: 0;
  background: #f8faf8;
  overflow: hidden;
  min-height: 460px;
  padding-top: 34px;
}
.zm-db-offer__phone-home {
  width: 104px;
  height: 4px;
  margin: 10px auto 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
}
.zm-db-offer__phone--sched .zm-db-offer__phone-frame {
  width: 286px;
  padding: 12px 11px 14px;
  border-radius: 42px;
  background: linear-gradient(165deg, #f0f2f4 0%, #c9ced4 42%, #e4e8ec 100%);
  border-color: #b8bec4;
  box-shadow:
    0 28px 56px rgba(16, 22, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}
.zm-db-offer__phone--sched .zm-db-offer__phone-bezel {
  background: #eceff1;
  border-radius: 32px;
}
.zm-db-offer__phone--sched .zm-db-offer__phone-island {
  width: 70px;
  height: 18px;
  background: #111;
}
.zm-db-offer__phone--sched .zm-db-offer__phone-screen {
  min-height: 400px;
  padding-top: 30px;
  padding-bottom: 0;
  background: #fff;
}
.zm-db-offer__phone--sched .zm-db-offer__phone-home {
  background: rgba(0, 0, 0, 0.22);
}
.zm-db-offer__phone-screen--shot {
  padding-top: 28px;
  min-height: auto;
  max-height: none;
  overflow: hidden;
  background: #fff;
}
.zm-db-offer__phone-screenshot {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: top center;
}
.zm-db-offer__phone--light .zm-db-offer__phone-frame {
  width: 252px;
  padding: 11px 10px 13px;
  border-radius: 40px;
  background: linear-gradient(165deg, #f0f2f4 0%, #c9ced4 42%, #e4e8ec 100%);
  border: 2px solid #b8bec4;
  box-shadow:
    0 24px 48px rgba(16, 22, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    inset 0 -1px 0 rgba(0, 0, 0, 0.06);
}
.zm-db-offer__phone--light .zm-db-offer__phone-bezel {
  background: #eceff1;
  border-radius: 30px;
}
.zm-db-offer__phone--light .zm-db-offer__phone-island {
  width: 68px;
  height: 17px;
  background: #111;
}
.zm-db-offer__phone--light .zm-db-offer__phone-home {
  background: rgba(0, 0, 0, 0.22);
}
.zm-db-offer__phone--light .zm-db-offer__phone-btn {
  background: linear-gradient(90deg, #c5c9cd, #9aa0a6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.45);
}
.zm-db-offer__phone--light .zm-db-offer__phone-btn--vol {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 42px 0 0 linear-gradient(90deg, #c5c9cd, #9aa0a6);
}
.zm-db-offer__phone-header {
  padding: 0.75rem 0.85rem;
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
}
.zm-db-offer__phone-lessons {
  list-style: none;
  margin: 0;
  padding: 0.65rem;
  display: grid;
  gap: 0.45rem;
}
.zm-db-offer__phone-lessons li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  padding: 0.55rem 0.6rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e8ece9;
  font-size: 0.72rem;
}
.zm-db-offer__phone-lessons li > span {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e8f5ec;
  color: #3b5042;
  font-weight: 700;
  font-size: 0.65rem;
}
.zm-db-offer__phone-lessons li strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
}
.zm-db-offer__phone-lessons li small {
  color: var(--muted);
  font-size: 0.65rem;
}
.zm-db-offer__phone-lessons li.is-swap {
  border-color: rgba(255, 140, 42, 0.45);
  background: linear-gradient(135deg, #fff8f0, #fff);
}
.zm-db-offer__phone-lessons li.is-swap em {
  display: inline-block;
  margin-top: 0.2rem;
  padding: 0.12rem 0.4rem;
  border-radius: 999px;
  background: var(--db-orange);
  color: #fff;
  font-size: 0.58rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.zm-db-offer__phone-glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle, var(--db-orange-glow), transparent 65%);
  z-index: 0;
}
.zm-db-offer__mobile-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
  color: var(--ink);
  line-height: 1.15;
}
.zm-db-offer__mobile-copy > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.zm-db-offer__mobile-banner {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(78, 169, 120, 0.32);
  box-shadow: 0 8px 24px rgba(16, 22, 18, 0.05);
  color: var(--ink-soft);
}
.zm-db-offer__mobile-banner svg { flex-shrink: 0; color: var(--db-orange); }
.zm-db-offer__mobile-banner p { margin: 0; font-size: 0.92rem; line-height: 1.5; color: var(--ink-soft); }

/* Subscription explanation */
.zm-db-offer__sub-explain {
  padding: 2.5rem 0 !important;
  background: #fff;
}
.zm-db-offer__sub-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  max-width: 52rem;
  margin: 0 auto;
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 4px);
  border: 2px solid rgba(255, 140, 42, 0.35);
  background: linear-gradient(135deg, #fffaf5 0%, #fff 45%, #f4faf6 100%);
  box-shadow: 0 12px 36px rgba(255, 140, 42, 0.1);
}
.zm-db-offer__sub-icon {
  width: 56px;
  color: var(--ink);
}
.zm-db-offer__sub-icon svg { width: 100%; height: auto; }
.zm-db-offer__sub-box h2 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  margin: 0 0 0.65rem;
  line-height: 1.2;
}
.zm-db-offer__sub-box p {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.zm-db-offer__sub-cta-line {
  margin-bottom: 0 !important;
  padding: 0.65rem 0.85rem;
  border-radius: 10px;
  background: rgba(255, 140, 42, 0.1);
  border-left: 4px solid var(--db-orange);
  font-weight: 600;
  color: var(--ink) !important;
}
.zm-db-offer__price-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 140, 42, 0.14), rgba(255, 179, 71, 0.08));
  border: 1px solid rgba(255, 140, 42, 0.3);
  font-size: 0.9rem;
  color: var(--ink-soft);
  text-align: center;
}
.zm-db-offer__price-promo svg { color: var(--db-orange); flex-shrink: 0; }

.zm-db-offer__pricing {
  padding-top: 2rem !important;
  background:
    radial-gradient(circle at 15% 20%, rgba(184, 212, 176, 0.3), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 241, 238, 0.95));
}
.zm-db-offer__price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 44rem;
  margin: 0 auto;
}
.zm-db-offer__price-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.5rem;
  background: #fff;
  text-align: center;
  box-shadow: 0 10px 32px rgba(16, 22, 18, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.zm-db-offer__price-card:hover {
  transform: translateY(-5px);
  border-color: #4ea978;
  box-shadow: 0 18px 44px rgba(78, 169, 120, 0.16);
}
.zm-db-offer__price-card--gov {
  border: 2px solid #4ea978;
  box-shadow: 0 10px 32px rgba(78, 169, 120, 0.12);
}
.zm-db-offer__price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.zm-db-offer__price-value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.35rem;
}
.zm-db-offer__price-value small {
  font-size: 0.55em;
  font-weight: 600;
  color: var(--muted);
}
.zm-db-offer__price-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  line-height: 1.4;
}
.zm-db-offer__cta {
  width: 100%;
  max-width: 18rem;
  margin-top: auto;
}
.zm-db-offer__cta--lg {
  max-width: 22rem;
  font-size: 1.02rem;
  padding: 1rem 1.5rem;
}
.zm-db-offer__steps {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
  margin: 0 auto;
}
.zm-db-offer__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 6px 20px rgba(16, 22, 18, 0.04);
}
.zm-db-offer__step-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--mint-bright);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}
.zm-db-offer__step h3 {
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 0 0 0.35rem;
  color: var(--ink);
}
.zm-db-offer__step p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}
.zm-db-offer__support-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0.85rem 0 0;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: linear-gradient(135deg, #fffaf5, #f7faf8);
  border: 1px solid rgba(255, 140, 42, 0.28);
}
.zm-db-offer__support-contact a {
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: 0.01em;
}
.zm-db-offer__support-contact a:hover { color: var(--db-orange-deep); }
.zm-db-offer__support-max {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 7px;
  background: linear-gradient(135deg, #6f4cff, #3d8bff);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.zm-db-offer__support-hint {
  font-size: 0.82rem;
  color: var(--muted);
}
.zm-db-offer__quote {
  margin-top: 2rem;
  padding: 1.75rem 1.5rem;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, #2c3a2e 0%, #3f5240 55%, #4ea978 140%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(44, 58, 46, 0.2);
}
.zm-db-offer__quote h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}
.zm-db-offer__quote p {
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
}
.zm-db-offer__quote p:last-child { margin-bottom: 0; }
.zm-db-offer__info { padding-top: 0 !important; }
.zm-db-offer__info-box {
  max-width: 52rem;
  margin: 0 auto;
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 8px 28px rgba(16, 22, 18, 0.05);
}
.zm-db-offer__info-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.zm-db-offer__info-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.zm-db-offer__info-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ea978;
}
.zm-db-offer__final {
  padding: 3.5rem 0 4rem !important;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(111, 191, 143, 0.2), transparent 60%),
    linear-gradient(165deg, #1c261f, #2c3a2e 55%, #3b5042);
}
.zm-db-offer__final-inner {
  text-align: center;
  max-width: 40rem;
}
.zm-db-offer__final h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.35rem);
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}
.zm-db-offer__final-lead {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin: 0 0 1.25rem;
  line-height: 1.55;
}
.zm-db-offer__final-lines {
  margin: 0 0 1.75rem;
}
.zm-db-offer__final-lines p {
  margin: 0.25rem 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
}
@media (max-width: 900px) {
  .zm-db-offer__hero-inner {
    grid-template-columns: 1fr;
  }
  .zm-db-offer__info-flow {
    grid-template-columns: 1fr;
    max-width: 20rem;
  }
  .zm-db-offer__info-flow::before { display: none; }
  .zm-db-offer__info-grid,
  .zm-db-offer__info-squares,
  .zm-db-offer__info-dots { opacity: 0.45; transform: scale(0.85); }
  .zm-db-offer__info-arrow {
    justify-self: center;
    transform: rotate(90deg);
    width: 40px;
  }
  .zm-db-offer__banners-grid {
    grid-template-columns: 1fr;
  }
  .zm-db-offer__schedule-inner {
    grid-template-columns: 1fr;
  }
  .zm-db-offer__mobile-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .zm-db-offer__mobile-banner {
    text-align: left;
  }
  .zm-db-offer__sub-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .zm-db-offer__sub-icon { justify-self: center; }
  .zm-db-offer__price-grid {
    grid-template-columns: 1fr;
    max-width: 22rem;
  }
}
@media (max-width: 720px) {
  .zm-db-offer section { padding: 3rem 0; }
  .zm-db-offer__step { grid-template-columns: 1fr; }
  .zm-db-offer__info-box { padding: 1.5rem 1.25rem; }
  .zm-db-offer__phone-frame { width: 248px; }
  .zm-db-offer__phone--sched .zm-db-offer__phone-frame { width: 260px; }
  .zm-db-offer__phone-screen { min-height: 400px; }
}

/* Case study: profit from windows */
.profit-case-wrap {
  padding: 0 0 4rem;
}
.profit-case {
  max-width: 52rem;
  margin: 0 auto;
}
.profit-case__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.profit-case__crumbs a {
  color: var(--olive-deep);
  text-decoration: none;
}
.profit-case__crumbs a:hover { text-decoration: underline; }
.profit-case__hero {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}
.profit-case__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 1rem;
}
.profit-case__lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 1.25rem;
  max-width: 42rem;
}
.profit-case__utp {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 12px 32px rgba(59, 80, 66, 0.2);
}
.profit-case__utp strong { color: #fde68a; }
.profit-case__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.profit-case__nav a {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  transition: 0.2s var(--ease);
}
.profit-case__nav a:hover {
  color: var(--olive-deep);
  border-color: #8fd9ad;
  background: #f0faf4;
}
.profit-case__section-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--ink-soft);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--line);
}
.profit-case__section-title:first-of-type { margin-top: 0; }
.profit-case p { margin: 0 0 1rem; color: var(--ink-soft); line-height: 1.65; }
.profit-case__steps { display: grid; gap: 0.85rem; margin: 1.25rem 0; }
.profit-case__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.1rem 1.15rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid #4ea978;
  border-radius: var(--radius-sm);
  box-shadow: 0 8px 24px rgba(16, 22, 18, 0.04);
}
.profit-case__step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}
.profit-case__step-title { font-weight: 700; color: var(--ink); margin-bottom: 0.2rem; }
.profit-case__step-text { font-size: 0.92rem; color: var(--muted); line-height: 1.5; }
.profit-case__list {
  list-style: none;
  margin: 0.75rem 0 1.25rem;
  padding: 0;
}
.profit-case__list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.2rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.profit-case__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
}
.profit-case__calc {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 10px 28px rgba(16, 22, 18, 0.05);
  margin: 1.25rem 0;
}
.profit-case__calc-head {
  padding: 0.7rem 1.1rem;
  background: var(--paper);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.profit-case__calc-body { padding: 1.25rem 1.35rem; }
.profit-case__formula {
  display: block;
  padding: 0.9rem 1rem;
  background: #f0faf4;
  border-left: 3px solid #4ea978;
  border-radius: 10px;
  font-family: ui-monospace, monospace;
  font-size: 0.92rem;
  margin-bottom: 1rem;
}
.profit-case__formula strong { color: var(--olive-deep); }
.profit-case__result {
  display: block;
  padding: 0.9rem 1rem;
  background: linear-gradient(90deg, #f0faf4, #fff);
  border: 1px solid #b8e0c8;
  border-radius: 12px;
  font-weight: 700;
  color: var(--olive-deep);
  margin-bottom: 0.65rem;
}
.profit-case__key {
  text-align: center;
  padding: 1.75rem 1.25rem;
  margin: 1.5rem 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #f0faf4, #e8f5ec);
  border: 1px solid #b8e0c8;
}
.profit-case__key-value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: #3b5042;
  line-height: 1.1;
}
.profit-case__key-label {
  margin-top: 0.35rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.profit-case__key-note { font-size: 0.88rem; color: var(--muted); margin-top: 0.25rem; }
.profit-case__nums {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0 1.75rem;
}
.profit-case__num {
  padding: 1.1rem;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid #4ea978;
  border-radius: var(--radius-sm);
}
.profit-case__num--accent { border-top-color: #3b5042; }
.profit-case__num-value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
}
.profit-case__num--accent .profit-case__num-value { color: #3b5042; }
.profit-case__num-label { font-size: 0.78rem; color: var(--muted); margin-top: 0.3rem; }
.profit-case__table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  margin: 1rem 0 1.5rem;
  background: #fff;
}
.profit-case__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.profit-case__table th,
.profit-case__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.profit-case__table th {
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-weight: 600;
}
.profit-case__table th:not(:first-child),
.profit-case__table td:not(:first-child) { text-align: center; }
.profit-case__table tr:last-child td { border-bottom: none; }
.profit-case__table .growth { color: #16a34a; font-weight: 700; }
.profit-case__quote {
  margin: 2rem 0;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  position: relative;
  box-shadow: 0 16px 40px rgba(59, 80, 66, 0.2);
}
.profit-case__quote::before {
  content: "\201C";
  position: absolute;
  top: 0.25rem;
  left: 1rem;
  font-size: 3.5rem;
  line-height: 1;
  opacity: 0.2;
}
.profit-case__quote-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  line-height: 1.65;
  margin: 0;
}
.profit-case__quote-author {
  margin-top: 1rem;
  font-size: 0.88rem;
  opacity: 0.92;
}
.profit-case__quote-author strong { font-style: normal; }
.profit-case__closing {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-sm);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}
.case-back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 28px rgba(59, 80, 66, 0.25);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 90;
}
.case-back-top.is-visible { opacity: 1; visibility: visible; }
.case-back-top:hover { transform: translateY(-2px); }
.case-back-top svg { width: 22px; height: 22px; }

@media (max-width: 720px) {
  .profit-case__nums { grid-template-columns: 1fr; }
  .profit-case__step { grid-template-columns: 1fr; }
  .profit-case__step-num { width: 34px; height: 34px; font-size: 0.9rem; }
  .windows-case { padding: 1.25rem; }
  .windows-cell__img { width: min(180px, 72vw); margin-inline: auto; }
  .zm-tariffs-section { padding: 1.25rem 0 2rem; }
  .zm-card { padding: 1.5rem 1.25rem; }
  .footer-grid { gap: 1.5rem; }
  .footer-brand { text-align: center; }
  .footer-icon-row { justify-content: center; }
  .footer-col,
  .footer-links--nav { text-align: center; }
}

/* Timetable landing (/timetable) */
#allrecords[data-tilda-page-alias="timetable"] #rec1876023191,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023211,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023231,
#allrecords[data-tilda-page-alias="timetable"] #rec1876037601,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023241,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023251,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023261,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023201 {
  display: none !important;
}
.zm-timetable-page section { padding: 4rem 0; }
.zm-timetable-hero {
  padding-top: calc(var(--nav-h, 72px) + 0.75rem) !important;
  padding-bottom: 2.5rem !important;
}
.zm-timetable-hero__schedule {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}
.zm-timetable-intro {
  padding-top: 0 !important;
  padding-bottom: 2rem !important;
}
.zm-timetable-intro__text {
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}
.zm-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.zm-feature-card {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem 1.35rem;
  background: #fff;
  box-shadow: 0 8px 32px rgba(16, 22, 18, 0.05);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.zm-feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(78, 169, 120, 0.4);
  box-shadow: 0 16px 40px rgba(78, 169, 120, 0.12);
}
.zm-feature-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 999px;
  background: rgba(78, 169, 120, 0.12);
  color: var(--olive-deep);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.zm-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
}
.zm-feature-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}
.zm-step-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.zm-step-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.75rem 1.35rem 1.5rem;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 8px 28px rgba(16, 22, 18, 0.05);
}
.zm-step-card__num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--mint-bright);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.zm-step-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin: 0 0 0.45rem;
}
.zm-step-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--muted);
}
.zm-timetable-stops {
  padding-top: 0 !important;
}
.zm-timetable-stops__inner {
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem 2rem;
  background: linear-gradient(135deg, #2c3a2e 0%, #3f5240 55%, #4ea978 140%);
  color: #fff;
  box-shadow: 0 20px 48px rgba(44, 58, 46, 0.2);
}
.zm-timetable-stops .section-head { margin-bottom: 1.5rem; }
.zm-timetable-stops .section-head h2 { color: #fff; }
.zm-timetable-stops .eyebrow { color: var(--mint-bright); }
.zm-timetable-stops .eyebrow::before { background: var(--mint-bright); }
.zm-stop-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.zm-stop-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}
.zm-stop-list li::before {
  content: "✕";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ffb4b4;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.1rem;
}
.zm-timetable-offer {
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 212, 176, 0.35), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(238, 241, 238, 0.95));
}
.zm-timetable-form-intro {
  padding-top: 2rem !important;
  padding-bottom: 0.5rem !important;
}
.btn-ghost-dark {
  background: #f0faf4;
  border: 1.5px solid #8fd9ad;
  color: #3b5042;
}
.btn-ghost-dark:hover { background: #e3f5ea; }
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 {
  display: block !important;
  padding: 1.5rem 0 4rem !important;
  background: transparent !important;
}
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t1045__input-wrapper {
  max-width: 36rem;
  margin: 0 auto;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-form__inputsbox {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-input-group {
  width: 100% !important;
}
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-input,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-input-phonemask__wrap {
  border-radius: 12px !important;
  border: 1px solid var(--line) !important;
  padding: 0.85rem 1rem !important;
  font-size: 1rem !important;
}
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-submit,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-btnflex {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding: 0.9rem 1.35rem !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  background: linear-gradient(135deg, var(--mint) 0%, #4ea978 100%) !important;
  color: #072214 !important;
  border: none !important;
  box-shadow: 0 14px 30px rgba(111, 191, 143, 0.35) !important;
}
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-checkbox__control {
  border-radius: 6px !important;
}
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-form__errorbox-wrapper,
#allrecords[data-tilda-page-alias="timetable"] #rec1876023221 .t-form__errorbox-middle {
  text-align: center;
}
@media (max-width: 960px) {
  .zm-feature-grid,
  .zm-step-cards {
    grid-template-columns: 1fr;
    max-width: 30rem;
    margin-inline: auto;
  }
  .zm-timetable-stops__inner { padding: 2rem 1.35rem; }
}
@media (max-width: 720px) {
  .zm-timetable-page section { padding: 3rem 0; }
  .zm-timetable-hero .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .hero-schedule__frame,
  .hero-dino img {
    animation: none !important;
  }
}

/* Tilda: отступ под фиксированный хедер на мобильных */
@media (max-width: 980px) {
  main > .hero:first-child,
  main > .zm-timetable-page .zm-timetable-hero:first-child {
    padding-top: calc(var(--nav-h) + 0.15rem);
  }
}

/* ЗамУвр · главная · блок «Две версии» (02-tariffs.html) */
.zm-editions-section {
  padding: 4.5rem 0 5rem;
}

.zm-editions-section .section-head h2,
.zm-editions-section .zm-editions__title,
.zm-editions-section .zm-editions__product,
.zm-editions-section .zm-editions__pipeline-value {
  font-family: "TildaSans", "Tilda Sans", Arial, sans-serif;
}

.zm-editions-section .section-head {
  max-width: 52rem;
}

.zm-editions-section .section-head a {
  color: var(--olive-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.zm-editions__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.zm-editions__card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.35rem 1.35rem 1.25rem;
  border-radius: 22px;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(111, 191, 143, 0.18), transparent 58%),
    linear-gradient(145deg, #e8f5ec 0%, #f0faf4 48%, #f4faf6 100%);
  border: 1px solid rgba(78, 169, 120, 0.2);
  box-shadow: 0 10px 32px rgba(16, 22, 18, 0.05);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.zm-editions__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(16, 22, 18, 0.09);
}

.zm-editions__card--featured {
  border-color: rgba(42, 107, 138, 0.28);
  box-shadow:
    0 12px 36px rgba(42, 107, 138, 0.1),
    inset 3px 0 0 #1a2e24;
  background:
    radial-gradient(120% 90% at 0% 0%, rgba(91, 163, 199, 0.14), transparent 52%),
    radial-gradient(120% 90% at 100% 100%, rgba(111, 191, 143, 0.22), transparent 55%),
    linear-gradient(145deg, #dff0e4 0%, #edf8f0 50%, #f4faf6 100%);
}

.zm-editions__card--pro {
  border-color: rgba(184, 145, 78, 0.38);
  box-shadow:
    0 12px 36px rgba(138, 107, 40, 0.09),
    inset -3px 0 0 #c9a227;
  background:
    radial-gradient(120% 90% at 100% 0%, rgba(228, 203, 159, 0.34), transparent 58%),
    radial-gradient(120% 90% at 0% 100%, rgba(201, 162, 39, 0.1), transparent 52%),
    linear-gradient(145deg, #faf3e6 0%, #fdf8f0 48%, #fffefb 100%);
}

.zm-editions__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 3.75rem;
}

.zm-editions__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 14px;
  color: #1a2e24;
  background: linear-gradient(145deg, rgba(78, 169, 120, 0.22), rgba(78, 169, 120, 0.08));
  border: 1px solid rgba(78, 169, 120, 0.25);
}

.zm-editions__icon svg {
  width: 2rem;
  height: 2rem;
}

.zm-editions__icon--classic {
  color: #7a5e24;
  background: linear-gradient(145deg, rgba(255, 236, 200, 0.75), rgba(228, 203, 159, 0.35));
  border-color: rgba(201, 162, 39, 0.35);
}

.zm-editions__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.75rem;
}

.zm-editions__product {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive-deep);
}

.zm-editions__product--brand {
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1.15;
  text-transform: uppercase;
}

.zm-editions__product-tag {
  display: inline-block;
  padding: 0.12rem 0.45rem;
  margin-left: 0.1rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #8a6b28, #c9a227);
  color: #fff;
  font-size: 0.62em;
  font-weight: 800;
  letter-spacing: 0.04em;
  vertical-align: middle;
  transform: translateY(-0.06em);
}

.zm-editions__badge {
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #3b5042, #4ea978);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.zm-editions__title {
  margin: 0;
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink-soft);
}

.zm-editions__intro {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 5.75rem;
}

.zm-editions__note {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.35;
}

.zm-editions__note--accent {
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 245, 236, 0.95));
  border: 1px solid rgba(78, 169, 120, 0.35);
  box-shadow: 0 6px 18px rgba(78, 169, 120, 0.12);
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.45;
}

.zm-editions__note--accent strong {
  color: #2c7a4b;
  font-weight: 800;
}

.zm-editions__card--featured .zm-editions__note--accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(230, 242, 250, 0.92));
  border-color: rgba(78, 140, 169, 0.38);
  box-shadow: 0 6px 18px rgba(59, 110, 150, 0.1);
}

.zm-editions__card--featured .zm-editions__note--accent strong {
  color: #2a6b8a;
}

.zm-editions__card--featured .zm-editions__note svg {
  color: #5a9ab8;
}

.zm-editions__card--pro .zm-editions__note--accent {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 243, 224, 0.96));
  border-color: rgba(201, 162, 39, 0.42);
  box-shadow: 0 6px 18px rgba(201, 162, 39, 0.12);
}

.zm-editions__card--pro .zm-editions__note--accent strong {
  color: #8a6b28;
}

.zm-editions__card--pro .zm-editions__note svg {
  color: #c9a227;
}

.zm-editions__note svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: var(--sage);
}

.zm-editions__pipeline {
  display: flex;
  align-items: stretch;
  gap: 0.35rem;
  margin-top: 0.15rem;
  padding: 0.85rem 0.75rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(78, 169, 120, 0.14);
}

.zm-editions__pipeline-step--accent {
  padding: 0.35rem 0.25rem;
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(78, 169, 120, 0.16), rgba(78, 169, 120, 0.06));
  border: 1px solid rgba(78, 169, 120, 0.28);
}

.zm-editions__pipeline-step--accent .zm-editions__pipeline-value {
  color: #2c7a4b;
}

.zm-editions__card--pro .zm-editions__pipeline {
  background: rgba(255, 252, 247, 0.85);
  border-color: rgba(201, 162, 39, 0.22);
}

.zm-editions__card--pro .zm-editions__pipeline-step--accent {
  background: linear-gradient(145deg, rgba(255, 236, 200, 0.55), rgba(228, 203, 159, 0.28));
  border-color: rgba(201, 162, 39, 0.38);
}

.zm-editions__card--pro .zm-editions__pipeline-step--accent .zm-editions__pipeline-value {
  color: #8a6b28;
}

.zm-editions__card--pro .zm-editions__pipeline-arrow {
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.58), rgba(201, 162, 39, 0.15));
}

.zm-editions__card--pro .zm-editions__pipeline-arrow::after {
  border-top-color: #c9a227;
  border-right-color: #c9a227;
}

.zm-editions__pipeline-step {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.zm-editions__pipeline-value {
  font-size: clamp(0.78rem, 1.5vw, 0.88rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-soft);
}

.zm-editions__pipeline-label {
  font-size: clamp(0.64rem, 1.2vw, 0.72rem);
  line-height: 1.25;
  color: var(--muted);
}

.zm-editions__pipeline-arrow {
  flex: 0 0 1.1rem;
  align-self: center;
  height: 1px;
  background: linear-gradient(90deg, rgba(78, 169, 120, 0.15), rgba(78, 169, 120, 0.65), rgba(78, 169, 120, 0.15));
  position: relative;
}

.zm-editions__pipeline-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1.5px solid #4ea978;
  border-right: 1.5px solid #4ea978;
  transform: translateY(-50%) rotate(45deg);
}

.zm-editions__cta {
  margin-top: auto;
  align-self: center;
  width: min(88%, 18rem);
  justify-content: center;
  text-align: center;
}

.zm-editions__cta.btn {
  display: inline-flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .zm-editions__pipeline {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .zm-editions__pipeline-step {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 0.75rem;
    padding: 0.35rem 0.15rem;
  }

  .zm-editions__card--pro .zm-editions__pipeline-arrow {
    background: linear-gradient(180deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.58), rgba(201, 162, 39, 0.15));
  }

  .zm-editions__pipeline-arrow {
    width: 1px;
    height: 0.65rem;
    flex: 0 0 auto;
    align-self: center;
    margin-inline: auto;
    background: linear-gradient(180deg, rgba(78, 169, 120, 0.15), rgba(78, 169, 120, 0.65), rgba(78, 169, 120, 0.15));
  }

  .zm-editions__pipeline-arrow::after {
    right: auto;
    left: 50%;
    top: 100%;
    transform: translate(-50%, -50%) rotate(135deg);
  }
}

@media (max-width: 760px) {
  .zm-editions-section {
    padding: 3.5rem 0 4rem;
  }

  .zm-editions__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .zm-editions__cta {
    align-self: stretch;
  }

  .zm-editions__cta.btn {
    width: 100%;
  }
}



