/* Bizzora — 2026 light brand system (logo #584b98) */

:root {
  --brand: #584b98;
  --brand-deep: #433872;
  --brand-rich: #4a3f85;
  --brand-light: #7568b3;
  --brand-soft: #9d8fd4;
  --brand-pale: #cfc6eb;
  --brand-mist: #ebe7f5;
  --brand-whisper: #f6f4fb;
  --brand-glow: rgba(88, 75, 152, 0.14);
  --brand-ring: rgba(88, 75, 152, 0.22);

  --white: #ffffff;
  --ink: #0f0d14;
  --ink-soft: #2a2638;
  --muted: #64607a;
  --muted-light: #9490a8;
  --line: rgba(88, 75, 152, 0.1);
  --line-strong: rgba(88, 75, 152, 0.18);

  --shadow-xs: 0 1px 2px rgba(15, 13, 20, 0.04);
  --shadow-sm: 0 4px 20px rgba(88, 75, 152, 0.06);
  --shadow-md: 0 12px 40px rgba(88, 75, 152, 0.1);
  --shadow-lg: 0 28px 80px rgba(88, 75, 152, 0.14);
  --shadow-brand: 0 16px 48px rgba(88, 75, 152, 0.28);

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --nav-h: 80px;
  --font: "Varela Round", system-ui, sans-serif;
  --font-body: "Varela Round", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body.bz-landing {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink-soft);
  background: var(--white);
  line-height: 1.65;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .bz-logo {
  font-family: var(--font);
  color: var(--ink);
  letter-spacing: -0.03em;
}

.bz-container {
  width: min(1180px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.bz-container--narrow {
  width: min(760px, calc(100% - 2.5rem));
}

.bz-container--signup {
  width: min(1080px, calc(100% - 2.5rem));
}

/* —— Nav —— */
.bz-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.bz-nav.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.bz-nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.bz-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}

.bz-logo__img {
  display: block;
  width: auto;
  height: 38px;
  max-width: min(180px, 42vw);
  object-fit: contain;
  object-position: left center;
}

.bz-logo__img--light {
  /* Knocks out black matte if PNG is not transparent yet */
  mix-blend-mode: screen;
}

.bz-logo__img--dark {
  height: 34px;
  max-width: 160px;
}

.bz-logo--footer .bz-logo__img {
  height: 36px;
}

.bz-nav__links {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  align-items: center;
}

.bz-nav__links a {
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.bz-nav__links a:hover {
  color: var(--brand);
}

.bz-nav__links a.is-active {
  color: var(--brand);
  font-weight: 600;
}

.bz-nav__links a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.bz-nav__links li {
  position: relative;
}

.bz-nav__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.bz-nav__actions-desktop {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.bz-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.bz-nav__toggle:hover {
  border-color: var(--brand-soft);
  background: var(--brand-whisper);
}

.bz-nav__toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 18px;
  height: 14px;
}

.bz-nav__toggle-bars span {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.28s var(--ease), opacity 0.2s, width 0.2s;
  transform-origin: center;
}

.bz-nav__toggle[aria-expanded="true"] .bz-nav__toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.bz-nav__toggle[aria-expanded="true"] .bz-nav__toggle-bars span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.bz-nav__toggle[aria-expanded="true"] .bz-nav__toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.bz-mobile-menu__backdrop {
  position: fixed;
  inset: 0;
  z-index: 110;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(15, 13, 20, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.bz-mobile-menu__backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bz-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
  visibility: hidden;
}

.bz-mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
}

.bz-mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 100%);
  max-width: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -16px 0 48px rgba(15, 13, 20, 0.12);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease);
  overflow: hidden;
}

.bz-mobile-menu.is-open .bz-mobile-menu__panel {
  transform: translateX(0);
}

.bz-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--nav-h);
  padding: 0 1.15rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.bz-mobile-menu__title {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.bz-mobile-menu__close {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-whisper);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.bz-mobile-menu__close:hover {
  border-color: var(--brand-soft);
  background: var(--white);
}

.bz-mobile-menu__lang {
  padding: 1rem 1.15rem 0.85rem;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.bz-mobile-menu__lang-label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.bz-mobile-menu__lang .bz-lang {
  width: 100%;
  justify-content: center;
}

.bz-mobile-menu__nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.35rem 0.65rem;
}

.bz-mobile-menu__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bz-mobile-menu__nav a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.bz-mobile-menu__nav a:hover,
.bz-mobile-menu__nav a:focus-visible {
  background: var(--brand-whisper);
  color: var(--brand);
}

.bz-mobile-menu__nav a.is-active {
  background: var(--brand-whisper);
  color: var(--brand-deep);
  box-shadow: inset 0 0 0 1px var(--brand-pale);
}

.bz-mobile-menu__cta {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.15rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-whisper) 100%);
  flex-shrink: 0;
}

body.bz-menu-open {
  overflow: hidden;
}

body.bz-menu-open .bz-nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

/* —— Buttons —— */
.bz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.45rem;
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
}

.bz-btn:hover {
  transform: translateY(-2px);
}

.bz-btn--primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-rich) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.bz-btn--primary:hover {
  box-shadow: 0 20px 56px rgba(88, 75, 152, 0.35);
}

.bz-btn--outline {
  background: var(--white);
  color: var(--brand);
  border: 1.5px solid var(--line-strong);
}

.bz-btn--outline:hover {
  background: var(--brand-whisper);
  border-color: var(--brand-soft);
}

.bz-btn--ghost {
  background: transparent;
  color: var(--muted);
  border: none;
  box-shadow: none;
}

.bz-btn--ghost:hover {
  color: var(--brand);
  transform: none;
}

.bz-btn--block {
  width: 100%;
  justify-content: center;
}

.bz-btn--white {
  background: var(--white);
  color: var(--brand);
  box-shadow: var(--shadow-md);
}

.bz-btn--sm {
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem;
}

.bz-btn--lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  border-radius: 14px;
}

/* —— Hero —— */
.bz-hero {
  position: relative;
  padding: calc(var(--nav-h) + 2.5rem) 0 4.5rem;
  overflow: visible;
  background: var(--white);
}

.bz-hero__decor {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bz-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 8% -5%, rgba(88, 75, 152, 0.09) 0%, transparent 58%),
    radial-gradient(ellipse 55% 45% at 92% 15%, rgba(157, 143, 212, 0.12) 0%, transparent 52%);
}

.bz-hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, transparent 75%);
  opacity: 0.45;
}

.bz-hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.bz-hero__copy {
  max-width: 36rem;
}

.bz-hero__visual {
  width: 100%;
  max-width: min(100%, 720px);
  margin-inline: auto;
}

.bz-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 1rem 0.4rem 0.45rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.bz-pill-badge__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--brand-mist);
  color: var(--brand);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
}

.bz-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  line-height: 1.1;
  font-weight: 700;
  margin: 0 0 1.25rem;
  max-width: 18ch;
}

.bz-text-gradient {
  background: linear-gradient(120deg, var(--brand) 0%, var(--brand-light) 50%, var(--brand-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bz-hero__lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 32rem;
  margin: 0 0 2rem;
  line-height: 1.7;
}

.bz-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.bz-hero__metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.bz-metric strong {
  display: block;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
}

.bz-metric span {
  font-size: 0.85rem;
  color: var(--muted-light);
}

/* —— Product preview —— */
.bz-preview {
  position: relative;
  width: 100%;
}

.bz-preview__glow {
  position: absolute;
  inset: 5% 0 5% 0;
  background: radial-gradient(circle at 50% 50%, var(--brand-glow) 0%, transparent 68%);
  filter: blur(36px);
  z-index: 0;
}

.bz-preview__frame {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.bz-preview__chrome {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--brand-whisper);
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.bz-preview__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-pale);
}

.bz-preview__dot:first-child { background: #f0a8a8; }
.bz-preview__dot:nth-child(2) { background: #f0d78a; }
.bz-preview__dot:nth-child(3) { background: #9ed4a8; }

.bz-preview__url {
  flex: 1;
  margin-left: 0.5rem;
  padding: 0.35rem 0.85rem;
  background: var(--white);
  border-radius: 8px;
  font-size: 0.75rem;
  color: var(--muted-light);
  border: 1px solid var(--line);
}

.bz-preview__body {
  padding: 0.85rem 1.1rem 1.15rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
  min-height: 0;
  box-sizing: border-box;
}

/* Preview tabs */
.bz-preview__tabs {
  display: flex;
  gap: 0.35rem;
  padding: 0.2rem;
  margin: 0 0 0.15rem;
  border-radius: 12px;
  background: var(--brand-whisper);
  border: 1px solid var(--line);
}

.bz-preview__tab {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.45rem 0.5rem;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s;
}

.bz-preview__tab:hover {
  color: var(--brand);
}

.bz-preview__tab.is-active {
  background: var(--white);
  color: var(--brand);
  box-shadow: var(--shadow-xs);
}

.bz-preview__screens {
  position: relative;
  min-height: 17.5rem;
}

.bz-preview__screen {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
}

.bz-preview__screen.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
  transform: translateY(0);
}

.bz-preview__table-wrap {
  flex: 1;
  min-height: 0;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.bz-preview__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.62rem;
}

.bz-preview__table th {
  text-align: left;
  padding: 0.45rem 0.55rem;
  font-weight: 700;
  color: var(--muted);
  background: var(--brand-whisper);
  border-bottom: 1px solid var(--line);
}

.bz-preview__table td {
  padding: 0.4rem 0.55rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.bz-preview__table tr:last-child td {
  border-bottom: none;
}

.bz-preview__table tr.is-muted td {
  color: var(--muted-light);
}

.bz-preview__table td:last-child {
  font-weight: 700;
  color: var(--ink);
  text-align: right;
}

.bz-preview__stock-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
  padding: 0.65rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.bz-stock-row__head {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  margin-bottom: 0.25rem;
  color: var(--muted);
}

.bz-stock-row__head strong {
  color: var(--brand);
  font-family: var(--font);
}

.bz-stock-row__bar {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.bz-stock-row__bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.bz-stock-row__bar--muted::after {
  background: #9ca3af;
}

.bz-preview__stat--warn strong {
  color: #c47a12;
}

html[dir="rtl"] .bz-preview__table th,
html[dir="rtl"] .bz-preview__table td {
  text-align: right;
}

html[dir="rtl"] .bz-preview__table td:last-child {
  text-align: left;
}

html[dir="rtl"] .bz-stock-row__bar::after {
  inset: 0 0 0 auto;
}

.bz-preview__toolbar {
  display: flex;
  align-items: center;
  gap: 0.5rem 0.65rem;
  flex-wrap: wrap;
}

.bz-preview__toasts {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  flex: 1;
  justify-content: center;
  min-width: 0;
}

.bz-toast {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  align-self: flex-start;
  padding: 0.28rem 0.55rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 600;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.bz-toast--success {
  border-color: rgba(52, 199, 123, 0.35);
  background: rgba(52, 199, 123, 0.08);
}

.bz-toast--info {
  border-color: rgba(88, 75, 152, 0.25);
  background: var(--brand-whisper);
}

.bz-toast__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #34c77b;
  flex-shrink: 0;
}

.bz-toast--info .bz-toast__dot {
  background: var(--brand);
}

.bz-preview__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin: 0;
}

.bz-preview__stat {
  padding: 0.5rem 0.6rem;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.bz-preview__stat label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-light);
  margin-bottom: 0.15rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bz-preview__stat strong {
  font-family: var(--font);
  font-size: 0.78rem;
  color: var(--ink);
  white-space: nowrap;
}

.bz-preview__chart,
.bz-preview__pnl {
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.bz-preview__chart {
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: linear-gradient(180deg, rgba(88, 75, 152, 0.06) 0%, var(--white) 72%);
}

.bz-preview__chart svg {
  display: block;
  width: calc(100% - 1rem);
  height: 56px;
  margin: 0.15rem 0.5rem 0.6rem;
  flex-shrink: 0;
}

.bz-preview__dash-head {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  min-width: 7rem;
}

.bz-preview__dash-title {
  display: block;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.bz-preview__dash-sub {
  display: block;
  font-size: 0.6rem;
  color: var(--muted-light);
  line-height: 1.2;
}

.bz-preview__dash-period {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: auto;
}

.bz-preview__stat--highlight {
  background: linear-gradient(145deg, rgba(88, 75, 152, 0.12) 0%, rgba(88, 75, 152, 0.04) 100%);
  border-color: rgba(88, 75, 152, 0.22);
  box-shadow: 0 4px 16px rgba(88, 75, 152, 0.1);
}

.bz-preview__stat--highlight strong {
  color: var(--brand);
}

.bz-preview__grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 0.65rem;
  margin: 0;
  flex: 0 0 auto;
  align-items: stretch;
}

.bz-preview__panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.35rem;
  padding: 0.55rem 0.65rem 0.35rem;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}

.bz-preview__panel-meta {
  font-size: 0.58rem;
  font-weight: 600;
  color: #34c77b;
}

.bz-preview__pnl {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.bz-pnl-list {
  list-style: none;
  margin: 0;
  padding: 0.15rem 0.65rem 0.35rem;
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.55rem;
  align-content: start;
}

.bz-pnl-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0.1rem 0.35rem;
  padding: 0.2rem 0;
  border-bottom: none;
}

.bz-pnl-list li:last-child {
  border-bottom: none;
}

.bz-pnl-list__label {
  font-size: 0.58rem;
  color: var(--muted-light);
}

.bz-pnl-list__value {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--ink);
}

.bz-pnl-bar {
  grid-column: 1 / -1;
  display: block;
  height: 3px;
  border-radius: 999px;
  background: var(--line);
  position: relative;
  overflow: hidden;
}

.bz-pnl-bar::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--w, 50%);
  border-radius: inherit;
  background: var(--brand);
}

.bz-pnl-bar--muted::after {
  background: #9ca3af;
}

.bz-pnl-bar--success::after {
  background: #34c77b;
}

.bz-pnl-bar--warn::after {
  background: #e8a838;
}

.bz-preview__pnl-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.65rem;
  margin-top: auto;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--brand-whisper) 0%, rgba(88, 75, 152, 0.04) 100%);
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--muted);
  flex-shrink: 0;
}

.bz-preview__pnl-total strong {
  font-family: var(--font);
  font-size: 0.72rem;
  color: var(--brand);
}

.bz-preview__pnl-total em {
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 600;
  color: #34c77b;
}

.bz-preview__foot--slim {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  flex-wrap: wrap;
  padding: 0.5rem 0.7rem;
  margin-top: 0.05rem;
  border-radius: 10px;
  background: var(--brand-whisper);
  border: 1px solid var(--line);
  font-size: 0.58rem;
  color: var(--muted-light);
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}

.bz-preview__foot--slim span {
  white-space: nowrap;
}

.bz-preview__foot--slim strong {
  font-family: var(--font);
  font-size: 0.65rem;
  color: var(--ink);
  font-weight: 700;
  margin-left: 0.2rem;
}


/* —— Logo strip —— */
.bz-strip {
  padding: 2.5rem 0;
  border-block: 1px solid var(--line);
  background: var(--brand-whisper);
}

.bz-strip__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1.25rem;
}

.bz-strip__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
}

.bz-tag {
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bz-tag:hover {
  border-color: var(--brand-soft);
  box-shadow: var(--shadow-sm);
}

/* —— Global presence —— */
.bz-global {
  padding: 4.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.bz-global__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.5rem;
}

.bz-global__head h2 {
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
}

.bz-global__head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.bz-global__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
}

@media (min-width: 640px) {
  .bz-global__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .bz-global__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bz-region-card {
  padding: 1.15rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--brand-whisper);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease);
}

.bz-region-card:hover {
  border-color: var(--brand-soft);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.bz-region-card__flag {
  font-size: 1.5rem;
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.bz-region-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.bz-region-card__cities {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  color: var(--muted-light);
  line-height: 1.4;
}

.bz-region-card__currency {
  margin: 0;
  font-size: 0.68rem;
  color: var(--muted);
}

.bz-region-card__currency span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  font-size: 0.58rem;
  margin-bottom: 0.15rem;
}

.bz-region-card__currency strong {
  font-family: var(--font);
  font-size: 0.85rem;
  color: var(--brand);
}

.bz-global__currencies {
  text-align: center;
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.4rem 0.5rem;
}

.bz-currency-chip {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font);
}

.bz-currency-chip--count {
  padding: 0.3rem 0.65rem;
  font-size: 0.8rem;
  color: var(--brand-deep);
  background: var(--brand-whisper);
  border-color: var(--brand-pale);
}

.bz-preview__currency {
  font-size: 0.62rem;
  font-weight: 700;
  font-family: var(--font);
  padding: 0.28rem 0.5rem;
  border-radius: 6px;
  background: var(--brand);
  color: var(--white);
  flex-shrink: 0;
}

.bz-pricing-billing {
  text-align: center;
  margin-bottom: 2.25rem;
}

.bz-pricing-billing__toggle {
  display: inline-flex;
  padding: 0.3rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  gap: 0.25rem;
}

.bz-pricing-billing__btn {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.bz-pricing-billing__btn.is-active {
  background: var(--brand);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}

.bz-pricing-billing__save {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.45rem;
  border-radius: 999px;
  background: rgba(88, 75, 152, 0.12);
  color: var(--brand);
}

.bz-pricing-billing__btn.is-active .bz-pricing-billing__save {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.bz-pricing-billing__note {
  margin: 0.85rem 0 0;
  font-size: 0.85rem;
  color: var(--muted-light);
}

.bz-pricing--plans {
  margin-bottom: 2rem;
}

.bz-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bz-pricing-trial-banner {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  margin-bottom: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(88, 75, 152, 0.22);
  background: linear-gradient(135deg, rgba(88, 75, 152, 0.1) 0%, var(--white) 55%);
  box-shadow: var(--shadow-sm);
}

.bz-pricing-trial-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  flex-shrink: 0;
}

.bz-pricing-trial-banner__copy strong {
  display: block;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-deep);
  margin-bottom: 0.25rem;
}

.bz-pricing-trial-banner__copy p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
}

.bz-pricing-table__trial-pill {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #15803d;
  border: 1px solid rgba(22, 163, 74, 0.25);
}

.bz-pricing-table-wrap {
  margin-bottom: 2rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.bz-pricing-table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bz-pricing-table-wrap--teaser {
  position: relative;
  overflow: hidden;
}

.bz-pricing-table-wrap--teaser .bz-pricing-table-scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.bz-pricing-table-wrap--teaser .bz-pricing-table {
  table-layout: fixed;
}

.bz-pricing-table-wrap--teaser .bz-pricing-table__plan-desc {
  min-height: 0;
  margin-bottom: 0.65rem;
}

.bz-pricing-table-wrap--teaser .bz-pricing-table thead th {
  padding-bottom: 1rem;
}

.bz-pricing-table-wrap--teaser tbody tr:last-child th,
.bz-pricing-table-wrap--teaser tbody tr:last-child td {
  border-bottom: none;
}

.bz-pricing-table-cta {
  position: relative;
  margin-top: -0.5rem;
  padding: 0 1rem 1.15rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--brand-whisper) 0%, var(--white) 100%);
}

.bz-pricing-table-cta__blur {
  height: 2.25rem;
  margin: 0 -1rem 0.65rem;
  background: repeating-linear-gradient(
    180deg,
    rgba(88, 75, 152, 0.06) 0,
    rgba(88, 75, 152, 0.06) 0.65rem,
    rgba(255, 255, 255, 0.4) 0.65rem,
    rgba(255, 255, 255, 0.4) 1.3rem
  );
  filter: blur(6px);
  opacity: 0.85;
  mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 55%, #000 100%);
}

.bz-pricing-table-wrap--teaser .bz-pricing-table__fade-card {
  margin: 0 auto;
  padding: 1.1rem 1.15rem;
}

.bz-pricing-table-wrap--teaser .bz-pricing-table__fade-title {
  font-size: 1.02rem;
  margin-bottom: 0.3rem;
}

.bz-pricing-table-wrap--teaser .bz-pricing-table__fade-desc {
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  line-height: 1.45;
}

.bz-pricing-table__fade-card {
  pointer-events: auto;
  max-width: 24rem;
  width: 100%;
  text-align: center;
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--brand-pale);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.bz-pricing-table__fade-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.bz-pricing-table__fade-title {
  margin: 0 0 0.5rem;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
}

.bz-pricing-table__fade-desc {
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

.bz-pricing-table__fade-list {
  list-style: none;
  margin: 0 0 1.15rem;
  padding: 0;
  text-align: start;
}

.bz-pricing-table__fade-list li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1.15rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.bz-pricing-table__fade-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--brand-soft);
}

html[dir="rtl"] .bz-pricing-table__fade-list li {
  padding: 0.3rem 1.15rem 0.3rem 0;
}

html[dir="rtl"] .bz-pricing-table__fade-list li::before {
  left: auto;
  right: 0;
}

.bz-pricing-table__fade-card .bz-btn {
  width: 100%;
  justify-content: center;
  gap: 0.4rem;
}

html[dir="rtl"] .bz-pricing-table__fade-card .bz-btn svg {
  transform: scaleX(-1);
}

.bz-pricing-details {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .bz-pricing-details {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

.bz-pricing-detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.35rem 1.25rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}

.bz-pricing-detail-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.bz-pricing-detail-card__head h3 {
  margin: 0;
  font-size: 1.1rem;
}

.bz-pricing-detail-card__desc {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.bz-pricing-detail-card__cols {
  display: grid;
  gap: 1rem;
  flex: 1;
  margin-bottom: 1rem;
}

@media (min-width: 600px) {
  .bz-pricing-detail-card__cols {
    grid-template-columns: 1fr 1fr;
  }
}

.bz-pricing-detail-card__cols h4 {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted-light);
}

.bz-pricing-detail-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bz-pricing-detail-card__list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.bz-pricing-detail-card__list--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.bz-pricing-detail-card__list--no li::before {
  content: "×";
  position: absolute;
  left: 0;
  color: #b45309;
  font-weight: 700;
}

html[dir="rtl"] .bz-pricing-detail-card__list li {
  padding: 0.35rem 1.2rem 0.35rem 0;
}

html[dir="rtl"] .bz-pricing-detail-card__list--yes li::before,
html[dir="rtl"] .bz-pricing-detail-card__list--no li::before {
  left: auto;
  right: 0;
}

.bz-pricing-page .bz-head h1 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
}

.bz-pricing-table {
  width: 100%;
  min-width: 52rem;
  border-collapse: separate;
  border-spacing: 0;
}

.bz-pricing-table caption {
  padding: 0;
}

.bz-pricing-table thead th {
  vertical-align: top;
  padding: 1.35rem 1rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.bz-pricing-table__feature-head {
  width: 28%;
  min-width: 11rem;
  text-align: start;
  position: sticky;
  inset-inline-start: 0;
  z-index: 3;
  background: var(--white);
  border-inline-end: 1px solid var(--line);
}

.bz-pricing-table__feature-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
}

.bz-pricing-table__plan-head {
  width: 24%;
  text-align: center;
  border-inline-start: 1px solid var(--line);
}

.bz-pricing-table__plan-head--featured {
  background: linear-gradient(180deg, var(--brand-whisper) 0%, var(--white) 100%);
  border-inline: 2px solid var(--brand);
  border-block-start: 2px solid var(--brand);
  box-shadow: inset 0 0 0 1px rgba(88, 75, 152, 0.06);
}

.bz-pricing-table__badge {
  display: inline-block;
  margin-bottom: 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--brand-mist);
  color: var(--brand);
}

.bz-pricing-table__plan-name {
  display: block;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.35rem;
}

.bz-pricing-table__plan-desc {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.45;
  margin-bottom: 0.85rem;
  min-height: 2.6rem;
}

.bz-pricing-table__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem 0.35rem;
  margin-bottom: 0.85rem;
  font-family: var(--font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1.1;
}

.bz-pricing-table__price .bz-plan__period {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted-light);
}

.bz-pricing-table__price.is-yearly .bz-plan__period {
  font-size: 0.78rem;
  color: var(--muted);
}

.bz-plan__yearly-note[hidden],
.bz-pricing-table__price .bz-plan__yearly-note[hidden] {
  display: none !important;
}

.bz-pricing-table__price .bz-plan__yearly-note {
  display: inline-block;
  width: auto;
  max-width: 100%;
  margin-top: 0.35rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-deep);
  background: var(--brand-whisper);
  border: 1px solid var(--brand-pale);
}

.bz-pricing-table__plan-head .bz-btn {
  width: 100%;
  justify-content: center;
}

.bz-pricing-table tbody th,
.bz-pricing-table tbody td {
  padding: 0.7rem 1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}

.bz-pricing-table__section-row th {
  padding: 0.65rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  background: var(--brand-whisper);
  border-bottom: 1px solid var(--brand-pale);
  text-align: start;
}

.bz-pricing-table__feature {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  text-align: start;
  line-height: 1.4;
  position: sticky;
  inset-inline-start: 0;
  z-index: 2;
  background: var(--white);
  border-inline-end: 1px solid var(--line);
}

.bz-pricing-table__cell {
  text-align: center;
  border-inline-start: 1px solid var(--line);
}

.bz-pricing-table__cell--featured {
  background: rgba(88, 75, 152, 0.03);
  border-inline-color: var(--brand-pale);
}

.bz-pricing-table__plan-head--featured + .bz-pricing-table__cell--featured,
.bz-pricing-table tbody tr .bz-pricing-table__cell--featured {
  border-inline: 1px solid var(--brand-pale);
}

.bz-pricing-table tbody tr:last-child .bz-pricing-table__cell--featured {
  border-bottom: 2px solid var(--brand);
}

.bz-pricing-table tbody tr:last-child .bz-pricing-table__plan-head--featured {
  border-bottom: 2px solid var(--brand);
}

.bz-pricing-table__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 999px;
}

.bz-pricing-table__mark--yes {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.1);
}

.bz-pricing-table__mark--no {
  color: var(--muted-light);
  font-size: 1.1rem;
  font-weight: 600;
  width: auto;
  height: auto;
  background: none;
}

.bz-pricing-table__text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.bz-pricing-table__text--strong {
  color: var(--brand);
  font-weight: 700;
}

.bz-pricing-table tbody tr:hover .bz-pricing-table__feature,
.bz-pricing-table tbody tr:hover .bz-pricing-table__cell {
  background: rgba(88, 75, 152, 0.04);
}

.bz-pricing-table tbody tr:hover .bz-pricing-table__cell--featured {
  background: rgba(88, 75, 152, 0.07);
}

@media (max-width: 899px) {
  .bz-pricing-table__plan-desc {
    min-height: 0;
  }

  .bz-pricing-table thead th {
    padding: 1rem 0.65rem;
  }

  .bz-pricing-table tbody th,
  .bz-pricing-table tbody td {
    padding: 0.6rem 0.65rem;
  }
}

.bz-pricing-region {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  margin-top: 0.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(88, 75, 152, 0.2);
  background: linear-gradient(135deg, var(--brand-whisper) 0%, var(--white) 100%);
  box-shadow: var(--shadow-sm);
}

.bz-pricing-region__icon {
  font-size: 1.75rem;
  line-height: 1;
}

.bz-pricing-region h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.bz-pricing-region p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 767px) {
  .bz-pricing-region {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .bz-pricing-region .bz-btn {
    width: 100%;
    justify-content: center;
  }
}

.bz-plan__price-label {
  display: block;
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand);
}

.bz-plan__price-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-light);
  letter-spacing: 0.04em;
}

/* —— Sections —— */
.bz-section {
  padding: 6rem 0;
}

.bz-section--tint {
  background: var(--brand-whisper);
}

.bz-section--brand {
  background: linear-gradient(165deg, var(--brand-deep) 0%, var(--brand) 45%, #6b5cad 100%);
  color: #fff;
}

.bz-section--brand h2,
.bz-section--brand h3,
.bz-section--brand .bz-eyebrow {
  color: #fff;
}

.bz-section--brand p {
  color: rgba(255, 255, 255, 0.78);
}

.bz-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3.5rem;
}

.bz-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 0.85rem;
}

.bz-section--brand .bz-eyebrow {
  color: var(--brand-pale);
}

.bz-head h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.65rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
  line-height: 1.15;
}

.bz-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

/* —— Bento features —— */
.bz-bento {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.bz-bento-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.bz-bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md), 0 0 0 1px var(--brand-pale);
  border-color: var(--brand-soft);
}

.bz-bento-card--accent {
  background: linear-gradient(145deg, var(--brand-whisper) 0%, var(--white) 100%);
  border-color: var(--brand-pale);
}

.bz-bento-card--wide {
  grid-column: 1 / -1;
}

.bz-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--brand-mist);
  color: var(--brand);
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
}

.bz-icon svg {
  width: 24px;
  height: 24px;
}

.bz-bento-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 650;
}

.bz-bento-card p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.6;
}

.bz-bento-card--currency {
  background: linear-gradient(160deg, var(--brand-whisper) 0%, var(--white) 72%);
  border-color: var(--brand-pale);
}

.bz-feature-currency {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bz-feature-currency__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.45rem 0.55rem;
}

.bz-feature-currency__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--brand-deep);
  background: var(--white);
  border: 1px solid var(--brand-pale);
  box-shadow: var(--shadow-xs);
}

.bz-feature-currency__lead {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.4;
}

.bz-feature-currency__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.bz-feature-currency__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: 0.04em;
  color: var(--brand);
  background: var(--white);
  border: 1px solid var(--line);
}

.bz-feature-currency__note {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (min-width: 768px) {
  .bz-bento {
    grid-template-columns: repeat(3, 1fr);
  }

  .bz-bento-card--wide {
    grid-column: span 2;
  }

  .bz-bento-card--tall {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* —— Split / checklist —— */
.bz-split {
  display: grid;
  gap: 3rem;
  align-items: start;
}

.bz-checklist {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.bz-checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.bz-checklist li::before {
  content: "";
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  border-radius: 8px;
  background: var(--brand-mist) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23584b98' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E") center / 14px no-repeat;
}

.bz-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-md);
}

.bz-panel--purple {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-deep) 100%);
  border: none;
  color: #fff;
}

.bz-panel--purple h3 {
  color: #fff;
}

.bz-panel--purple .bz-checklist li {
  color: rgba(255, 255, 255, 0.88);
}

.bz-panel--purple .bz-checklist li::before {
  background-color: rgba(255, 255, 255, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.5'%3E%3Cpath d='M5 12l5 5L19 7'/%3E%3C/svg%3E");
}

/* —— Steps —— */
.bz-steps {
  display: grid;
  gap: 1.25rem;
}

.bz-step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.bz-step-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand), var(--brand-soft));
}

.bz-step-card__num {
  font-family: var(--font);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--brand-mist);
  margin-bottom: 0.75rem;
}

.bz-step-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.bz-step-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 900px) {
  .bz-steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .bz-split {
    grid-template-columns: 1fr 1fr;
  }

  .bz-hero__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.28fr);
    gap: 2.5rem 1.75rem;
  }

  .bz-hero__visual {
    margin-inline: 0;
    margin-left: auto;
    max-width: 100%;
    width: 100%;
  }

  .bz-preview__body {
    padding: 1rem 1.15rem 1.2rem;
    gap: 0.75rem;
  }

  .bz-preview__grid {
    gap: 0.7rem;
  }

  .bz-preview__toolbar .bz-preview__dash-period {
    margin-left: 0;
  }

  .bz-hero h1 {
    max-width: 14ch;
  }
}

/* —— Pricing —— */
.bz-pricing {
  display: grid;
  gap: 1.25rem;
}

.bz-plan {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}

.bz-plan:hover {
  box-shadow: var(--shadow-md);
}

.bz-plan--featured {
  border: 2px solid var(--brand);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}

.bz-plan__badge {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--brand-mist);
  color: var(--brand);
  margin-bottom: 1rem;
}

.bz-plan h3 {
  margin: 0 0 0.35rem;
}

.bz-plan__desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
}

.bz-plan__price {
  font-family: var(--font);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand);
  margin-bottom: 1rem;
  line-height: 1.1;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.5rem;
}

.bz-plan__amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.bz-plan__period {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-light);
}

.bz-plan__yearly-note[hidden] {
  display: none !important;
}

.bz-plan__yearly-note {
  display: inline-block;
  width: auto;
  max-width: 100%;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--brand-deep);
  margin-top: 0.35rem;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  background: var(--brand-whisper);
  border: 1px solid var(--brand-pale);
}

.bz-plan__price small {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted-light);
}

.bz-plan__limits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.15rem;
}

.bz-plan__limit-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--brand-whisper);
  color: var(--brand);
  border: 1px solid var(--brand-pale);
}

.bz-plan__lists {
  flex: 1;
  margin-bottom: 1rem;
}

.bz-plan__list-label {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
}

.bz-plan__list {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.bz-plan__list li {
  padding: 0.4rem 0 0.4rem 1.35rem;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
  position: relative;
  border-bottom: none;
}

.bz-plan__list--yes li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #16a34a;
  font-size: 0.8rem;
  font-weight: 700;
}

.bz-plan__list--no li {
  color: var(--muted-light);
}

.bz-plan__list--no li::before {
  content: "×";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: #b45309;
  font-size: 0.9rem;
  font-weight: 700;
}

.bz-plan__support {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 1.25rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  background: var(--brand-whisper);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brand-deep);
  line-height: 1.45;
}

.bz-plan__support-icon {
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
}

.bz-plan--tier .bz-btn {
  margin-top: auto;
}

.bz-plan ul {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  flex: 1;
}

.bz-plan li {
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-left: 1.5rem;
  position: relative;
}

.bz-plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand-soft);
}

@media (min-width: 900px) {
  .bz-pricing {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

/* —— FAQ —— */
.bz-faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 0.65rem;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bz-faq details[open] {
  border-color: var(--brand-pale);
  box-shadow: var(--shadow-sm);
}

.bz-faq summary {
  cursor: pointer;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  padding: 1.15rem 1.35rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.bz-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--brand);
  transition: transform 0.2s;
}

.bz-faq details[open] summary::after {
  transform: rotate(45deg);
}

.bz-faq summary::-webkit-details-marker {
  display: none;
}

.bz-faq p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* —— CTA —— */
.bz-cta {
  text-align: center;
  padding: 4.5rem 2rem;
  border-radius: var(--radius-xl);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.bz-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 0%, var(--brand-glow), transparent 55%);
  pointer-events: none;
}

.bz-cta > * {
  position: relative;
}

.bz-cta h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
}

.bz-cta p {
  color: var(--muted);
  max-width: 34rem;
  margin: 0 auto 1.75rem;
  font-size: 1.05rem;
}

.bz-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* —— Footer —— */
.bz-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.72);
  padding: 4rem 0 2rem;
}

.bz-footer .bz-logo {
  color: #fff;
}

.bz-footer h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 1rem;
  font-family: var(--font);
}

.bz-footer p {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.bz-footer a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color 0.2s;
}

.bz-footer a:hover {
  color: var(--brand-pale);
}

.bz-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.bz-footer__social a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.bz-footer__social a:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}

.bz-footer__grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.bz-footer__bottom {
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

@media (max-width: 1023px) {
  :root {
    --nav-h: 68px;
  }

  .bz-nav .bz-container {
    width: 100%;
    max-width: none;
    padding-inline: 1rem;
  }

  .bz-nav__actions-desktop {
    display: none;
  }

  .bz-nav__toggle {
    display: inline-flex;
  }

  .bz-logo__img {
    height: 34px;
    max-width: min(150px, 38vw);
  }
}

@media (min-width: 1024px) {
  .bz-nav__links {
    display: flex;
    gap: 1.35rem;
  }

  .bz-nav__toggle {
    display: none;
  }

  .bz-mobile-menu,
  .bz-mobile-menu__backdrop {
    display: none !important;
  }

  .bz-footer__grid {
    grid-template-columns: 1.6fr 1fr 1fr;
  }
}

/* —— Modal —— */
.bz-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 13, 20, 0.45);
  backdrop-filter: blur(8px);
}

.bz-modal.is-open {
  display: flex;
}

.bz-modal__panel {
  width: min(440px, 100%);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 1px solid var(--line);
}

.bz-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: var(--brand-whisper);
  color: var(--muted);
  font-size: 1.35rem;
  cursor: pointer;
  line-height: 1;
}

.bz-field {
  margin-bottom: 1.15rem;
}

.bz-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 0.45rem;
}

.bz-field input {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--brand-whisper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bz-field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-glow);
  background: var(--white);
}

.bz-form-msg {
  font-size: 0.88rem;
  margin-top: 0.75rem;
  min-height: 1.2rem;
}

.bz-form-msg.is-error { color: #c53d3d; }
.bz-form-msg.is-success { color: #1d8a56; }

.bz-shake {
  animation: bz-shake 0.45s ease;
}

@keyframes bz-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

.bz-link {
  color: var(--brand);
  font-weight: 600;
  text-decoration: none;
}

.bz-link:hover {
  text-decoration: underline;
}

@media (max-width: 899px) {
  body.bz-landing {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 767px) {
  .bz-hero {
    padding-bottom: 3.5rem;
  }

  .bz-hero__metrics {
    gap: 1.25rem 1.75rem;
  }

  .bz-preview__body {
    padding: 0.9rem 0.95rem 1rem;
    gap: 0.65rem;
  }

  .bz-preview__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .bz-preview__grid {
    grid-template-columns: 1fr;
  }

  .bz-pnl-list {
    grid-template-columns: 1fr;
  }

  .bz-preview__toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .bz-preview__toolbar .bz-preview__dash-period {
    margin-left: 0;
  }

  .bz-preview__toasts {
    justify-content: flex-start;
  }

  .bz-plan--featured {
    transform: none;
  }

  .bz-lang__name {
    display: none;
  }
}

/* —— Language switcher —— */
.bz-lang {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  padding: 3px;
  border-radius: 999px;
  background: var(--brand-whisper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

.bz-lang__btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font);
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s var(--ease);
  white-space: nowrap;
}

.bz-lang__btn:hover {
  color: var(--brand);
}

.bz-lang__btn.is-active {
  color: var(--brand);
}

.bz-lang__label {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}

.bz-lang__name {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.85;
}

.bz-lang__slider {
  position: absolute;
  top: 3px;
  bottom: 3px;
  left: 3px;
  width: calc(50% - 3px);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(88, 75, 152, 0.15);
  transition: transform 0.28s var(--ease);
  pointer-events: none;
}

.bz-landing--ar .bz-lang__slider {
  transform: translateX(100%);
}

html[dir="rtl"] .bz-mobile-menu__panel {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid var(--line);
  box-shadow: 16px 0 48px rgba(15, 13, 20, 0.12);
  transform: translateX(-100%);
}

html[dir="rtl"] .bz-mobile-menu.is-open .bz-mobile-menu__panel {
  transform: translateX(0);
}

/* —— RTL (Arabic) —— */
html[dir="rtl"] {
  --font: "IBM Plex Sans Arabic", system-ui, sans-serif;
  --font-body: "IBM Plex Sans Arabic", system-ui, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] .bz-logo {
  letter-spacing: 0;
}

html[dir="rtl"] .bz-nav__inner {
  direction: rtl;
}

html[dir="rtl"] .bz-hero__layout {
  direction: rtl;
}

html[dir="rtl"] .bz-split,
html[dir="rtl"] .bz-global__head,
html[dir="rtl"] .bz-head,
html[dir="rtl"] .bz-cta {
  text-align: right;
}

html[dir="rtl"] .bz-strip__label,
html[dir="rtl"] .bz-global__currencies {
  text-align: center;
}

html[dir="rtl"] .bz-checklist li {
  padding-right: 1.35rem;
  padding-left: 0;
}

html[dir="rtl"] .bz-checklist li::before {
  right: 0;
  left: auto;
}

html[dir="rtl"] .bz-pricing-region {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .bz-preview__toolbar .bz-preview__dash-period {
  margin-left: 0;
  margin-right: auto;
}

@media (min-width: 900px) {
  html[dir="rtl"] .bz-hero h1 {
    max-width: 22ch;
  }
}

/* —— Motion & UX enhancements —— */
@keyframes bz-fade-up {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bz-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes bz-chart-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes bz-pnl-grow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes bz-pulse-glow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.bz-hero-reveal {
  opacity: 0;
}

body.bz-ready .bz-hero-reveal {
  animation: bz-fade-up 0.75s var(--ease) forwards;
  animation-delay: calc(var(--d, 0) * 1ms);
}

.bz-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
  transition-delay: calc(var(--d, 0) * 1ms);
}

.bz-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bz-hero__trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-bottom: 1.75rem;
}

.bz-hero__trust-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bz-hero__trust-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.bz-hero__trust-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  font-size: 1.1rem;
  box-shadow: var(--shadow-xs);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  cursor: default;
}

.bz-hero__trust-flag:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: var(--shadow-sm);
}

.bz-preview--live .bz-preview__frame {
  animation: bz-float 7s ease-in-out infinite;
}

.bz-preview__glow {
  animation: bz-pulse-glow 4s ease-in-out infinite;
}

.bz-chart-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

body.bz-ready .bz-chart-line {
  animation: bz-chart-draw 1.8s var(--ease) 0.6s forwards;
}

.bz-toast {
  opacity: 0.45;
  transform: scale(0.96);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), box-shadow 0.35s;
}

.bz-toast.is-live {
  opacity: 1;
  transform: scale(1);
  box-shadow: var(--shadow-md);
}

.bz-pnl-bar--animate::after {
  width: 0 !important;
  transition: width 0.85s var(--ease);
}

body.bz-ready .bz-pnl-bar--animate::after,
.bz-reveal.is-visible .bz-pnl-bar--animate::after {
  width: var(--w, 50%) !important;
}

body.bz-ready .bz-pnl-list li:nth-child(1) .bz-pnl-bar--animate::after { transition-delay: 0.2s; }
body.bz-ready .bz-pnl-list li:nth-child(2) .bz-pnl-bar--animate::after { transition-delay: 0.35s; }
body.bz-ready .bz-pnl-list li:nth-child(3) .bz-pnl-bar--animate::after { transition-delay: 0.5s; }
body.bz-ready .bz-pnl-list li:nth-child(4) .bz-pnl-bar--animate::after { transition-delay: 0.65s; }

html[dir="rtl"] .bz-pnl-bar::after {
  inset: 0 0 0 auto;
}

/* —— Clients & testimonials (premium) —— */
.bz-clients {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  overflow: hidden;
}

.bz-clients__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, var(--brand-whisper) 0%, var(--white) 42%, var(--white) 100%);
}

.bz-clients__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.bz-clients__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.bz-clients__orb--1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  background: rgba(88, 75, 152, 0.18);
}

.bz-clients__orb--2 {
  width: 280px;
  height: 280px;
  bottom: -40px;
  right: -40px;
  background: rgba(157, 143, 212, 0.22);
}

.bz-clients .bz-container {
  position: relative;
  z-index: 1;
}

.bz-clients__panel {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(88, 75, 152, 0.12);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    var(--shadow-lg),
    0 0 0 1px rgba(88, 75, 152, 0.04);
  backdrop-filter: blur(12px);
}

.bz-clients__panel-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(12rem, 40%);
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--brand-light), transparent);
}

.bz-clients__head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 2.25rem;
}

.bz-clients__head h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.45rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.bz-clients__head > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.bz-clients__count {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1.25rem 0 0;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: var(--brand-whisper);
  border: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.bz-clients__count-num {
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
}

.bz-clients__wall {
  position: relative;
}

.bz-clients__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

@media (min-width: 600px) {
  .bz-clients__track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 900px) {
  .bz-clients__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.1rem;
  }

  /* Center last row when 7 logos (4 + 3) */
  .bz-clients__tile:nth-child(5):nth-last-child(3) {
    grid-column: 2;
  }

  .bz-clients__tile:nth-child(6):nth-last-child(2) {
    grid-column: 3;
  }

  .bz-clients__tile:nth-child(7):last-child {
    grid-column: 4;
  }
}

.bz-clients__tile {
  min-width: 0;
}

.bz-clients__tile-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, var(--white) 0%, var(--brand-whisper) 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  text-decoration: none;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    background 0.35s var(--ease);
}

.bz-clients__tile-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, var(--brand-glow), transparent 70%);
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.bz-clients__tile {
  position: relative;
}

.bz-clients__tile-inner:hover {
  transform: translateY(-4px);
  border-color: var(--brand-pale);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(88, 75, 152, 0.08);
  background: var(--white);
}

.bz-clients__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 150px);
  max-height: 52px;
  object-fit: contain;
  filter: grayscale(0.35) contrast(1.05);
  opacity: 0.88;
  transition: filter 0.4s var(--ease), opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.bz-clients__tile-inner:hover .bz-clients__logo {
  filter: grayscale(0) contrast(1);
  opacity: 1;
  transform: scale(1.04);
}

/* Mobile: horizontal scroll for tight viewports */
@media (max-width: 479px) {
  .bz-clients__wall {
    margin-inline: -0.5rem;
    padding-inline: 0.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .bz-clients__wall::-webkit-scrollbar {
    display: none;
  }

  .bz-clients__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.75rem;
    padding-bottom: 0.25rem;
    width: max-content;
  }

  .bz-clients__tile {
    flex: 0 0 9.5rem;
    scroll-snap-align: start;
  }

  .bz-clients__tile:nth-child(5),
  .bz-clients__tile:nth-child(6),
  .bz-clients__tile:nth-child(7) {
    grid-column: auto;
  }
}

.bz-clients__quotes {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}

@media (min-width: 900px) {
  .bz-clients__quotes {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

.bz-testimonial {
  margin: 0;
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--brand-whisper) 0%, var(--white) 100%);
  border: 1px solid var(--line);
}

.bz-testimonial p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  font-style: italic;
}

.bz-testimonial footer {
  font-size: 0.85rem;
  color: var(--muted);
}

.bz-testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  color: var(--brand);
  font-family: var(--font);
}

.bz-testimonial__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  color: var(--muted-light);
}

html[dir="rtl"] .bz-clients__head {
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .bz-clients__tile-inner:hover,
  .bz-clients__logo {
    transform: none !important;
  }
}

/* Trust band */
.bz-trust-band {
  padding: 2rem 0 2.5rem;
  background: linear-gradient(180deg, var(--brand-whisper) 0%, var(--white) 100%);
  border-block: 1px solid var(--line);
}

.bz-trust-band__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem 1.5rem;
}

@media (min-width: 768px) {
  .bz-trust-band__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bz-trust-stat strong {
  display: block;
  font-family: var(--font);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--brand);
  line-height: 1.2;
}

.bz-trust-stat span {
  font-size: 0.82rem;
  color: var(--muted);
}

.bz-trust-band__security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.5rem 0 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-align: center;
}

.bz-trust-band__security svg {
  color: var(--brand);
  flex-shrink: 0;
}

/* Sticky mobile CTA */
.bz-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px) saturate(1.3);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 32px rgba(88, 75, 152, 0.12);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}

.bz-sticky-cta.is-visible {
  transform: translateY(0);
}

.bz-sticky-cta__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s var(--ease);
}

.bz-sticky-cta__wa:hover {
  transform: scale(1.06);
}

@media (min-width: 900px) {
  .bz-sticky-cta {
    display: none !important;
  }
}

/* —— Product spotlight carousel —— */
.bz-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.bz-spotlight {
  background: linear-gradient(180deg, var(--white) 0%, var(--brand-whisper) 55%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}

.bz-spotlight .bz-container.bz-head-wrap,
.bz-spotlight > .bz-container:first-child {
  margin-bottom: 0;
}

.bz-spotlight-carousel {
  margin-top: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.bz-spotlight-carousel__ambient {
  position: absolute;
  inset: 8% 0 28%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bz-spotlight-carousel__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.bz-spotlight-carousel__orb--1 {
  width: 420px;
  height: 420px;
  top: -10%;
  left: 12%;
  background: rgba(88, 75, 152, 0.2);
}

.bz-spotlight-carousel__orb--2 {
  width: 360px;
  height: 360px;
  bottom: -5%;
  right: 8%;
  background: rgba(157, 143, 212, 0.22);
}

.bz-spotlight-carousel__hint-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 0.85rem;
}

.bz-spotlight-carousel__hint {
  margin: 0;
  text-align: center;
  white-space: nowrap;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-light);
}

@media (max-width: 480px) {
  .bz-spotlight-carousel__hint {
    white-space: normal;
    font-size: 0.72rem;
    line-height: 1.35;
  }
}

.bz-spotlight-carousel__shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  z-index: 1;
}

.bz-spotlight-carousel__viewport {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.bz-spotlight-carousel__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(4rem, 12vw);
  z-index: 3;
  pointer-events: none;
}

.bz-spotlight-carousel__fade--start {
  left: 0;
  background: linear-gradient(90deg, var(--brand-whisper) 35%, transparent);
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}

.bz-spotlight-carousel__fade--end {
  right: 0;
  background: linear-gradient(270deg, var(--white) 35%, transparent);
  opacity: 1;
  transition: opacity 0.35s var(--ease);
}

.bz-spotlight-carousel.is-at-start .bz-spotlight-carousel__fade--start {
  opacity: 0;
}

.bz-spotlight-carousel.is-at-end .bz-spotlight-carousel__fade--end {
  opacity: 0;
}

.bz-spotlight-carousel__track {
  display: flex;
  gap: 1.5rem;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: none;
  padding: 0.75rem 0 2rem;
  padding-inline: max(1.25rem, calc((100vw - min(1180px, 100vw - 2.5rem)) / 2));
  cursor: grab;
  scroll-padding-inline: max(1.25rem, calc((100vw - min(1180px, 100vw - 2.5rem)) / 2));
  direction: ltr;
}

.bz-spotlight-carousel__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.bz-spotlight-carousel__track:active {
  cursor: grabbing;
}

.bz-spotlight-carousel__track::-webkit-scrollbar {
  display: none;
}

.bz-spotlight-carousel__track:focus {
  outline: none;
}

.bz-spotlight-carousel__track:focus-visible {
  outline: 2px solid var(--brand-ring);
  outline-offset: 4px;
  border-radius: var(--radius);
}

.bz-spotlight-carousel {
  --bz-spotlight-aspect: 1900 / 1050;
}

.bz-spotlight-card {
  position: relative;
  flex: 0 0 min(92vw, 52rem);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(88, 75, 152, 0.12);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition:
    border-color 0.45s var(--ease),
    box-shadow 0.45s var(--ease),
    transform 0.45s var(--ease),
    opacity 0.45s var(--ease),
    filter 0.45s var(--ease);
  opacity: 0.62;
  transform: scale(0.96) translateY(4px);
  filter: saturate(0.9);
}

@media (min-width: 768px) {
  .bz-spotlight-card {
    flex-basis: min(88vw, 56rem);
  }
}

@media (min-width: 1200px) {
  .bz-spotlight-card {
    flex-basis: min(64rem, 86vw);
  }
}

.bz-spotlight-card.is-active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: saturate(1);
  border-color: rgba(88, 75, 152, 0.32);
  box-shadow:
    0 24px 60px rgba(88, 75, 152, 0.16),
    0 0 0 1px rgba(88, 75, 152, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

html[dir="rtl"] .bz-spotlight-card__body {
  direction: rtl;
  text-align: right;
}

.bz-spotlight-carousel__btn {
  position: absolute;
  top: 38%;
  z-index: 5;
  pointer-events: auto;
  width: 3.15rem;
  height: 3.15rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 75, 152, 0.15);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--brand);
  box-shadow: 0 8px 28px rgba(88, 75, 152, 0.18);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, border-color 0.25s, opacity 0.25s, box-shadow 0.25s;
}

.bz-spotlight-carousel__btn:hover:not(:disabled) {
  background: var(--white);
  border-color: var(--brand-soft);
  transform: scale(1.06);
}

.bz-spotlight-carousel__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.bz-spotlight-carousel__btn--prev {
  left: max(0.35rem, calc((100vw - min(1180px, 100vw - 2.5rem)) / 2 - 0.25rem));
}

.bz-spotlight-carousel__btn--next {
  right: max(0.35rem, calc((100vw - min(1180px, 100vw - 2.5rem)) / 2 - 0.25rem));
}

.bz-spotlight-carousel__btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.bz-spotlight-carousel__footer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  align-items: center;
  gap: 0.65rem 1.25rem;
  padding-top: 0.5rem;
  padding-bottom: 2.75rem;
}

.bz-spotlight-carousel__active-title {
  grid-column: 1 / -1;
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  transition: opacity 0.3s var(--ease);
}

.bz-spotlight-carousel__active-title.is-changing,
.bz-spotlight-carousel__active-desc.is-changing {
  opacity: 0.45;
}

.bz-spotlight-carousel__active-desc {
  grid-column: 1 / -1;
  margin: -0.15rem 0 0;
  max-width: 42rem;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

.bz-spotlight-carousel__progress {
  grid-column: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--brand-mist);
  overflow: hidden;
}

.bz-spotlight-carousel__progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transition: width 0.5s var(--ease);
}

.bz-spotlight-carousel__dots {
  grid-column: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.bz-spotlight-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--brand-pale);
  cursor: pointer;
  transition: width 0.3s var(--ease), background 0.25s;
}

.bz-spotlight-carousel__dot.is-active {
  width: 1.65rem;
  background: var(--brand);
}

.bz-spotlight-carousel__dot:focus-visible {
  outline: 2px solid var(--brand-ring);
  outline-offset: 3px;
}

.bz-spotlight-carousel__counter {
  grid-column: 2;
  grid-row: 2 / 4;
  margin: 0;
  align-self: end;
  padding: 0.4rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  background: var(--brand-whisper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

html[dir="rtl"] .bz-spotlight-carousel__fade--start {
  left: auto;
  right: 0;
  background: linear-gradient(270deg, var(--brand-whisper) 15%, transparent);
}

html[dir="rtl"] .bz-spotlight-carousel__fade--end {
  right: auto;
  left: 0;
  background: linear-gradient(90deg, var(--white) 10%, transparent);
}

html[dir="rtl"] .bz-spotlight-carousel__btn--prev {
  left: auto;
  right: max(0.35rem, calc((100vw - min(1180px, 100vw - 2.5rem)) / 2 - 0.25rem));
}

html[dir="rtl"] .bz-spotlight-carousel__btn--next {
  right: auto;
  left: max(0.35rem, calc((100vw - min(1180px, 100vw - 2.5rem)) / 2 - 0.25rem));
}

html[dir="rtl"] .bz-spotlight-carousel__btn--prev svg {
  transform: scaleX(-1);
}

html[dir="rtl"] .bz-spotlight-carousel__btn--next svg {
  transform: scaleX(-1);
}

.bz-spotlight-card__frame {
  position: relative;
  padding: 0.45rem 0.45rem 0;
  background: linear-gradient(165deg, #ebe8f4 0%, #f6f4fb 48%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}

.bz-spotlight-card__browser {
  display: flex;
  flex-direction: column;
  border-radius: 12px 12px 0 0;
  border: 1px solid rgba(88, 75, 152, 0.14);
  border-bottom: none;
  background: var(--white);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 14px 36px rgba(88, 75, 152, 0.12);
  overflow: hidden;
}

.bz-spotlight-card.is-active .bz-spotlight-card__browser {
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 20px 48px rgba(88, 75, 152, 0.18);
}

.bz-spotlight-card__browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.55rem;
  background: linear-gradient(180deg, #f3f1f8 0%, #ebe8f3 100%);
  border-bottom: 1px solid rgba(88, 75, 152, 0.1);
}

.bz-spotlight-card__browser-dots {
  display: flex;
  flex-shrink: 0;
  gap: 0.32rem;
}

.bz-spotlight-card__browser-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.bz-spotlight-card__browser-dots span:first-child {
  background: #ff5f57;
}

.bz-spotlight-card__browser-dots span:nth-child(2) {
  background: #febc2e;
}

.bz-spotlight-card__browser-dots span:nth-child(3) {
  background: #28c840;
}

.bz-spotlight-card__browser-url {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.32rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--white);
  border: 1px solid rgba(88, 75, 152, 0.1);
  border-radius: 7px;
  box-shadow: inset 0 1px 2px rgba(88, 75, 152, 0.06);
}

.bz-spotlight-card__browser-url svg {
  flex-shrink: 0;
  color: rgba(34, 197, 94, 0.85);
}

.bz-spotlight-card__browser-url span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bz-spotlight-card__browser-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: var(--bz-spotlight-aspect, 1900 / 1050);
  background: #f0eff5;
  overflow: hidden;
}

.bz-spotlight-card__browser-viewport .bz-spotlight-card__zoom,
.bz-spotlight-card__browser-viewport .bz-spotlight-card__img-wrap {
  width: 100%;
  height: 100%;
}

.bz-spotlight-card__img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
}

.bz-spotlight-card__img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}

.bz-spotlight-card__body {
  padding: 1rem 1.35rem 1.25rem;
}

.bz-spotlight-card__body--compact {
  padding: 0.75rem 1.35rem 1rem;
}

.bz-spotlight-card__body-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.bz-spotlight-card__slide-num {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.1rem;
  height: 2.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--brand);
  background: var(--brand-mist);
  border: 1px solid rgba(88, 75, 152, 0.12);
  border-radius: 50%;
}

.bz-spotlight-card__body h3 {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.bz-spotlight-card__body p {
  margin: 0.65rem 0 0;
  padding-left: 2.85rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

html[dir="rtl"] .bz-spotlight-card__body p {
  padding-left: 0;
  padding-right: 2.85rem;
}

html[dir="rtl"] .bz-spotlight-card__body-head {
  flex-direction: row-reverse;
}

/* Spotlight — click to enlarge */
.bz-spotlight-card__zoom {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  text-align: inherit;
  font: inherit;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.bz-spotlight-card__zoom:focus-visible {
  outline: 2px solid var(--brand-ring);
  outline-offset: 3px;
}

.bz-spotlight-card__zoom-badge {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  color: var(--brand);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(88, 75, 152, 0.14);
  box-shadow: 0 6px 18px rgba(88, 75, 152, 0.18);
  opacity: 0;
  transform: translateY(4px) scale(0.92);
  transition:
    opacity 0.28s var(--ease),
    transform 0.28s var(--ease);
  pointer-events: none;
}

.bz-spotlight-card__zoom-badge svg {
  width: 1rem;
  height: 1rem;
}

.bz-spotlight-card__zoom:hover .bz-spotlight-card__zoom-badge,
.bz-spotlight-card__zoom:focus-visible .bz-spotlight-card__zoom-badge,
.bz-spotlight-card.is-active .bz-spotlight-card__zoom-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

html[dir="rtl"] .bz-spotlight-card__zoom-badge {
  right: auto;
  left: 0.65rem;
}

.bz-spotlight-card__browser-viewport:has(.bz-spotlight-card__zoom:hover)::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 50%, rgba(88, 75, 152, 0.08));
  pointer-events: none;
}

/* Spotlight lightbox */
.bz-spotlight-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10050;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  border: none;
  background: transparent;
  overflow: hidden;
}

.bz-spotlight-lightbox::backdrop {
  background: rgba(12, 10, 22, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.bz-spotlight-lightbox[open] {
  display: grid;
  place-items: center;
}

.bz-spotlight-lightbox__panel {
  display: flex;
  flex-direction: column;
  width: min(96vw, 76rem);
  max-height: min(94vh, 56rem);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(165deg, #ffffff 0%, #f8f6fc 100%);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(88, 75, 152, 0.12);
  overflow: hidden;
  animation: bz-lightbox-in 0.38s var(--ease);
}

@keyframes bz-lightbox-in {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.bz-spotlight-lightbox__header {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: 0.85rem 1rem 0.75rem 1.15rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
}

.bz-spotlight-lightbox__eyebrow {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.bz-spotlight-lightbox__title {
  margin: 0;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.bz-spotlight-lightbox__desc {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

.bz-spotlight-lightbox__counter {
  margin: 0;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
  background: var(--brand-whisper);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.bz-spotlight-lightbox__close {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.bz-spotlight-lightbox__close:hover {
  background: var(--brand-mist);
  border-color: var(--brand-soft);
  transform: scale(1.04);
}

.bz-spotlight-lightbox__close svg {
  width: 1.1rem;
  height: 1.1rem;
}

.bz-spotlight-lightbox__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.35rem;
  min-height: 0;
  flex: 1;
  padding: 0.65rem 0.35rem;
  background: #eceaf3;
}

.bz-spotlight-lightbox__viewport {
  position: relative;
  min-width: 0;
  min-height: min(72vh, 42rem);
  overflow: hidden;
  border-radius: var(--radius);
  background: #f0eff5;
  box-shadow: inset 0 0 0 1px rgba(88, 75, 152, 0.08);
}

.bz-spotlight-lightbox__track {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: min(72vh, 42rem);
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  cursor: grab;
}

.bz-spotlight-lightbox__track.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}

.bz-spotlight-lightbox__track::-webkit-scrollbar {
  display: none;
}

.bz-spotlight-lightbox__slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: clamp(0.5rem, 1.5vw, 1rem);
  box-sizing: border-box;
}

.bz-spotlight-lightbox__img {
  display: block;
  max-width: 100%;
  max-height: min(72vh, 40rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 12px 40px rgba(88, 75, 152, 0.2);
}

.bz-spotlight-lightbox__nav {
  flex-shrink: 0;
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(88, 75, 152, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(88, 75, 152, 0.14);
  cursor: pointer;
  transition: transform 0.22s var(--ease), background 0.22s, opacity 0.22s;
}

.bz-spotlight-lightbox__nav:hover:not(:disabled) {
  transform: scale(1.06);
  background: var(--white);
}

.bz-spotlight-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: none;
}

.bz-spotlight-lightbox__nav svg {
  width: 1.15rem;
  height: 1.15rem;
}

.bz-spotlight-lightbox__hint {
  margin: 0;
  padding: 0.55rem 1.15rem 0.85rem;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-align: center;
  color: var(--muted);
  background: var(--white);
  border-top: 1px solid var(--line);
}

html[dir="rtl"] .bz-spotlight-lightbox__header {
  direction: rtl;
}

html[dir="rtl"] .bz-spotlight-lightbox__nav--prev svg,
html[dir="rtl"] .bz-spotlight-lightbox__nav--next svg {
  transform: scaleX(-1);
}

body.bz-spotlight-lightbox-open {
  overflow: hidden;
}

@media (max-width: 640px) {
  .bz-spotlight-lightbox__header {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .bz-spotlight-lightbox__counter {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
  }

  .bz-spotlight-lightbox__close {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: start;
  }

  .bz-spotlight-lightbox__nav {
    width: 2.45rem;
    height: 2.45rem;
  }

  .bz-spotlight-lightbox__stage {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr auto;
    padding: 0.5rem;
  }

  .bz-spotlight-lightbox__nav--prev,
  .bz-spotlight-lightbox__nav--next {
    position: absolute;
    top: 50%;
    z-index: 2;
    transform: translateY(-50%);
  }

  .bz-spotlight-lightbox__nav--prev {
    left: 0.65rem;
  }

  .bz-spotlight-lightbox__nav--next {
    right: 0.65rem;
  }

  html[dir="rtl"] .bz-spotlight-lightbox__nav--prev {
    left: auto;
    right: 0.65rem;
  }

  html[dir="rtl"] .bz-spotlight-lightbox__nav--next {
    right: auto;
    left: 0.65rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bz-spotlight-lightbox__panel {
    animation: none !important;
  }
}

/* Spotlight — Bizzora ERP teaser (slide 13) */
.bz-spotlight-card--teaser.is-active {
  border-color: rgba(88, 75, 152, 0.45);
  box-shadow:
    0 28px 70px rgba(88, 75, 152, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.15) inset;
}

.bz-spotlight-card__browser-viewport--teaser {
  background: #12101c;
}

.bz-spotlight-card__zoom--teaser {
  cursor: pointer;
}

.bz-spotlight-card__zoom--teaser .bz-spotlight-erp-teaser {
  min-height: 100%;
}

.bz-spotlight-erp-teaser {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 1.75rem);
  box-sizing: border-box;
  overflow: hidden;
  text-align: center;
  color: #fff;
}

.bz-spotlight-erp-teaser__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #1a1630 0%, #3d3568 38%, #584b98 72%, #6e5fbd 100%);
}

.bz-spotlight-erp-teaser__grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}

.bz-spotlight-erp-teaser__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
}

.bz-spotlight-erp-teaser__orb--1 {
  width: 12rem;
  height: 12rem;
  top: -2rem;
  right: 8%;
  background: rgba(167, 139, 250, 0.45);
  animation: bz-teaser-float 7s ease-in-out infinite;
}

.bz-spotlight-erp-teaser__orb--2 {
  width: 10rem;
  height: 10rem;
  bottom: -1.5rem;
  left: 5%;
  background: rgba(129, 140, 248, 0.35);
  animation: bz-teaser-float 8s ease-in-out infinite reverse;
}

@keyframes bz-teaser-float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, -10px); }
}

.bz-spotlight-erp-teaser__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 26rem;
}

.bz-spotlight-erp-teaser__logo-shell {
  position: relative;
  margin-bottom: 0.85rem;
}

.bz-spotlight-erp-teaser__logo-ring {
  position: absolute;
  inset: -10px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 0 40px rgba(167, 139, 250, 0.35);
  animation: bz-teaser-pulse 3s ease-in-out infinite;
}

@keyframes bz-teaser-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}

.bz-spotlight-erp-teaser__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: clamp(4.5rem, 14vw, 5.75rem);
  height: auto;
  padding: 0.85rem;
  border-radius: 18px;
  background: #0c0b10;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

.bz-spotlight-erp-teaser__kicker {
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

.bz-spotlight-erp-teaser__headline {
  margin: 0 0 0.5rem;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.bz-spotlight-erp-teaser__lead {
  margin: 0 0 1rem;
  font-size: clamp(0.78rem, 2vw, 0.88rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}

.bz-spotlight-erp-teaser__modules-label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.bz-spotlight-erp-teaser__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

.bz-spotlight-erp-teaser__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.65rem 0.38rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.bz-spotlight-erp-teaser__chip-badge {
  padding: 0.12rem 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2d2654;
  background: linear-gradient(180deg, #fde68a 0%, #fbbf24 100%);
  border-radius: 999px;
}

.bz-spotlight-erp-teaser__cta {
  margin-bottom: 0.65rem;
  padding: 0.65rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}

.bz-spotlight-erp-teaser__note {
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.62);
  max-width: 22rem;
}

.bz-spotlight-erp-teaser--expanded .bz-spotlight-erp-teaser__content {
  max-width: 32rem;
}

.bz-spotlight-erp-teaser--expanded .bz-spotlight-erp-teaser__logo {
  width: clamp(5.5rem, 12vw, 7rem);
  padding: 1rem;
}

.bz-spotlight-erp-teaser--expanded .bz-spotlight-erp-teaser__headline {
  font-size: clamp(1.2rem, 3vw, 1.55rem);
}

.bz-spotlight-lightbox__slide--teaser {
  padding: 0;
  align-items: stretch;
}

.bz-spotlight-lightbox__slide--teaser .bz-spotlight-erp-teaser {
  min-height: min(72vh, 42rem);
  border-radius: var(--radius);
}

@media (prefers-reduced-motion: reduce) {
  .bz-spotlight-erp-teaser__orb--1,
  .bz-spotlight-erp-teaser__orb--2,
  .bz-spotlight-erp-teaser__logo-ring {
    animation: none !important;
  }
}

/* Trader comparison */
.bz-compare {
  position: relative;
  overflow: hidden;
}

.bz-compare::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42rem, 90vw);
  height: min(42rem, 90vw);
  transform: translate(-50%, -48%);
  background: radial-gradient(circle, rgba(88, 75, 152, 0.09) 0%, transparent 68%);
  pointer-events: none;
}

.bz-compare__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 900px) {
  .bz-compare__grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 0 1.15rem;
    align-items: stretch;
  }
}

.bz-compare__vs {
  display: none;
}

@media (min-width: 900px) {
  .bz-compare__vs {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    z-index: 2;
  }

  .bz-compare__vs span {
    display: grid;
    place-items: center;
    width: 3.1rem;
    height: 3.1rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--brand);
    background: var(--white);
    border: 2px solid rgba(88, 75, 152, 0.35);
    border-radius: 50%;
    box-shadow:
      0 10px 28px rgba(88, 75, 152, 0.18),
      0 0 0 6px rgba(255, 255, 255, 0.85);
  }
}

.bz-compare__panel {
  padding: 1.5rem 1.35rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.bz-compare__panel--legacy {
  border-style: dashed;
  border-color: rgba(100, 96, 122, 0.22);
  background: rgba(255, 255, 255, 0.72);
  opacity: 0.92;
}

@media (min-width: 900px) {
  .bz-compare__panel--legacy:hover {
    transform: translateY(-2px);
  }
}

.bz-compare__panel--brand {
  position: relative;
  overflow: hidden;
  border-color: rgba(88, 75, 152, 0.28);
  background:
    linear-gradient(90deg, var(--brand), var(--brand-light)) top / 100% 3px no-repeat,
    linear-gradient(165deg, var(--white) 0%, var(--brand-whisper) 55%, rgba(235, 230, 248, 0.95) 100%);
  box-shadow:
    0 20px 48px rgba(88, 75, 152, 0.14),
    0 0 0 1px rgba(88, 75, 152, 0.08);
}

@media (min-width: 900px) {
  .bz-compare__panel--brand {
    transform: translateY(-6px);
  }

  .bz-compare__panel--brand:hover {
    transform: translateY(-8px);
    box-shadow:
      0 26px 56px rgba(88, 75, 152, 0.2),
      0 0 0 1px rgba(88, 75, 152, 0.12);
  }
}

.bz-compare__panel-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.15rem;
}

.bz-compare__panel-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.bz-compare__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.bz-compare__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.bz-compare__icon--muted {
  background: rgba(100, 96, 122, 0.1);
  color: var(--muted);
}

.bz-compare__icon--brand {
  background: var(--brand-mist);
  color: var(--brand);
}

.bz-compare__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.bz-compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.bz-compare__mark {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.bz-compare__mark--no {
  background: rgba(100, 96, 122, 0.12);
  color: var(--muted);
}

.bz-compare__mark--yes {
  background: rgba(34, 197, 94, 0.15);
  color: #15803d;
}

.bz-compare__cta-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  margin: 0;
  padding-top: 0.25rem;
}

.bz-compare__cta-wrap .bz-btn {
  min-width: min(100%, 18rem);
  box-shadow: 0 12px 32px rgba(88, 75, 152, 0.22);
}

/* —— Integrations strip —— */
.bz-integrations {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.88);
}

.bz-integrations__intro {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.25rem;
}

.bz-integrations__intro .bz-eyebrow {
  color: var(--brand-pale);
}

.bz-integrations__intro h2 {
  color: var(--white);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.bz-integrations__intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.02rem;
  line-height: 1.7;
}

.bz-integrations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .bz-integrations__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bz-integrations__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
  }
}

.bz-integration-card {
  padding: 1.35rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.bz-integration-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(157, 143, 212, 0.45);
  transform: translateY(-2px);
}

.bz-integration-card__icon {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(88, 75, 152, 0.45);
  color: var(--brand-pale);
}

.bz-integration-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.bz-integration-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.bz-integration-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.68);
}

@media (prefers-reduced-motion: reduce) {
  .bz-spotlight-card,
  .bz-spotlight-carousel__track {
    transition: none !important;
  }

  .bz-spotlight-card {
    opacity: 1;
    transform: none;
    filter: none;
  }


  .bz-hero-reveal,
  .bz-reveal,
  .bz-preview--live .bz-preview__frame,
  .bz-preview__glow,
  .bz-chart-line,
  .bz-pnl-bar--animate {
    animation: none !important;
    transition: none !important;
  }

  .bz-hero-reveal,
  .bz-reveal {
    opacity: 1;
    transform: none;
  }

  .bz-chart-line {
    stroke-dashoffset: 0;
  }

  .bz-pnl-bar--animate::after {
    width: var(--w, 50%) !important;
    transition: none !important;
  }

  .bz-toast {
    opacity: 1;
    transform: none;
  }
}

/* ── Signup (world-class trial onboarding) ── */
.bz-page--signup .bz-nav {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.bz-signup-hero {
  position: relative;
  padding: calc(var(--nav-h) + 2.5rem) 0 2.25rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, var(--brand-whisper) 0%, var(--white) 100%);
}

.bz-signup-hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(88, 75, 152, 0.14), transparent 65%),
    radial-gradient(circle at 85% 20%, rgba(157, 143, 212, 0.12), transparent 40%);
  pointer-events: none;
}

.bz-signup-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.bz-signup-hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.bz-signup-hero p {
  margin: 0 auto;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.bz-signup-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
}

.bz-signup-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.bz-signup-trust svg {
  color: #0f7b4a;
  flex-shrink: 0;
}

.bz-signup-page {
  padding: 0 0 5rem;
  margin-top: -0.5rem;
}

.bz-signup-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.07), rgba(88, 75, 152, 0.05));
  border: 1px solid rgba(220, 53, 69, 0.2);
  color: #9f1239;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.bz-signup-alert__icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(220, 53, 69, 0.12);
  color: #b42318;
}

.bz-signup-alert__body {
  min-width: 0;
}

.bz-signup-alert__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 900;
  color: #881337;
  margin-bottom: 0.25rem;
}

.bz-signup-alert__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #9f1239;
  word-break: break-word;
}

.bz-signup {
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 640px) {
  .bz-signup {
    padding: 1.35rem 1.15rem 1.75rem;
    border-radius: var(--radius-lg);
  }
}

/* Stepper */
.bz-signup-stepper {
  margin-bottom: 2rem;
}

.bz-signup-stepper__track {
  height: 3px;
  background: var(--brand-mist);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.bz-signup-stepper__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  border-radius: inherit;
  transition: width 0.45s var(--ease);
}

.bz-signup-stepper__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bz-signup-stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  text-align: center;
}

.bz-signup-stepper__dot {
  width: 2.15rem;
  height: 2.15rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--muted-light);
  background: var(--brand-whisper);
  border: 2px solid var(--line);
  transition: all 0.35s var(--ease);
}

.bz-signup-stepper__label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted-light);
  letter-spacing: 0.02em;
  transition: color 0.35s var(--ease);
}

.bz-signup-stepper__item.is-active .bz-signup-stepper__dot {
  color: var(--white);
  background: linear-gradient(145deg, var(--brand), var(--brand-light));
  border-color: transparent;
  box-shadow: 0 6px 20px var(--brand-glow);
}

.bz-signup-stepper__item.is-active .bz-signup-stepper__label {
  color: var(--brand);
}

.bz-signup-stepper__item.is-done .bz-signup-stepper__dot {
  color: var(--brand);
  background: var(--white);
  border-color: var(--brand-soft);
}

.bz-signup-stepper__item.is-done .bz-signup-stepper__label {
  color: var(--ink-soft);
}

/* Panels */
.bz-signup__panel-head {
  margin-bottom: 1.5rem;
}

.bz-signup__panel-head h2 {
  margin: 0 0 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
  font-family: var(--font);
  letter-spacing: -0.02em;
}

.bz-signup__panel-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* Plan cards */
.bz-signup-plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.75rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .bz-signup-plans {
    grid-template-columns: 1fr;
    max-width: 22rem;
    margin-inline: auto;
  }
}

.bz-signup-plan {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto auto 1fr;
  gap: 0;
  min-height: 100%;
  padding: 1.25rem 1.15rem 1.15rem;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  cursor: pointer;
  background: var(--white);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.bz-signup-plan input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bz-signup-plan__check {
  position: absolute;
  top: 0.85rem;
  inset-inline-end: 0.85rem;
  width: 1.65rem;
  height: 1.65rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: var(--white);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.bz-signup-plan.is-selected .bz-signup-plan__check {
  opacity: 1;
  transform: scale(1);
}

.bz-signup-plan__badge-row {
  min-height: 1.65rem;
  display: flex;
  align-items: center;
  margin-bottom: 0.65rem;
}

.bz-signup-plan__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--brand);
  background: var(--brand-mist);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
}

.bz-signup-plan__badge--ghost {
  visibility: hidden;
}

.bz-signup-plan__name {
  font-weight: 700;
  font-size: 1.08rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
  padding-inline-end: 1.75rem;
}

.bz-signup-plan__price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.55rem;
  min-height: 2.1rem;
}

.bz-signup-plan__amount {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
}

.bz-signup-plan__period {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
}

.bz-signup-plan__trial {
  display: inline-flex;
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  color: #0a6e42;
  background: rgba(15, 123, 74, 0.1);
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.bz-signup-plan__desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0;
  align-self: end;
}

.bz-signup-plan:hover {
  border-color: var(--brand-soft);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.bz-signup-plan.is-selected {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-ring), var(--shadow-md);
}

.bz-signup-plan.is-featured {
  border-color: rgba(88, 75, 152, 0.35);
  background: linear-gradient(165deg, rgba(88, 75, 152, 0.05) 0%, var(--white) 55%);
}

.bz-signup-plan.is-featured.is-selected {
  border-color: var(--brand);
}

/* Form fields */
.bz-signup-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.25rem;
}

@media (max-width: 640px) {
  .bz-signup-grid {
    grid-template-columns: 1fr;
  }
}

.bz-field--full {
  grid-column: 1 / -1;
}

.bz-field label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}

.bz-field input,
.bz-field select {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  font: inherit;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.bz-field input::placeholder {
  color: var(--muted-light);
}

.bz-field input:focus,
.bz-field select:focus {
  outline: none;
  border-color: var(--brand-soft);
  box-shadow: 0 0 0 4px var(--brand-ring);
}

.bz-field-hint {
  margin: 0.4rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
}

.bz-field-error {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: #b42318;
}

.bz-field-error--block {
  margin-bottom: 0.5rem;
}

.bz-portal-field {
  display: flex;
  align-items: stretch;
}

.bz-portal-field input {
  flex: 1;
  min-width: 0;
  border-start-end-radius: 0;
  border-end-end-radius: 0;
}

.bz-portal-field__suffix {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  background: var(--brand-whisper);
  border: 1px solid var(--line-strong);
  border-inline-start: 0;
  border-start-end-radius: 12px;
  border-end-end-radius: 12px;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.bz-portal-status.is-success {
  color: #0f7b4a;
  font-weight: 600;
}

.bz-portal-status.is-error {
  color: #b42318;
  font-weight: 600;
}

.bz-signup__actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}

.bz-signup__actions .bz-btn--lg {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 10rem;
  justify-content: center;
}

.bz-signup-terms {
  margin: 1.15rem 0 0;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

.bz-signup-terms a {
  color: var(--brand);
  font-weight: 600;
}

.bz-signup-footer-note {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.bz-signup-footer-note a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.bz-signup-footer-note a:hover {
  text-decoration: underline;
}

/* Success page */
.bz-signup-success-page {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 4rem;
  background: var(--brand-whisper);
  min-height: 60vh;
}

.bz-signup-success {
  text-align: center;
  padding: 2rem 0 3rem;
}

.bz-signup-success__icon {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.25rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(15, 123, 74, 0.12);
  color: #0f7b4a;
  box-shadow: var(--shadow-sm);
}

.bz-signup-success__icon--pending {
  background: rgba(88, 75, 152, 0.12);
  color: var(--brand);
}

.bz-signup-success__lead {
  max-width: 34rem;
  margin: 0.75rem auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.bz-signup-success__card {
  margin: 2rem auto 1rem;
  max-width: 28rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.bz-signup-success__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-light);
  margin-bottom: 0.5rem;
}

.bz-signup-success__url {
  display: block;
  word-break: break-all;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--brand);
  margin-bottom: 1.25rem;
  text-decoration: none;
}

.bz-signup-success__email {
  color: var(--muted);
  font-size: 0.92rem;
}

.bz-signup-success__message {
  margin: 0 0 1.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}

.bz-signup-success__steps {
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: start;
  display: grid;
  gap: 0.85rem;
}

.bz-signup-success__steps li {
  position: relative;
  padding-inline-start: 1.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.bz-signup-success__steps li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--brand);
}

.bz-signup-success__note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--muted-light);
  line-height: 1.5;
}

.bz-signup-success__support {
  margin: 1.5rem 0 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.bz-signup-success__support a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.bz-signup-success__support a:hover {
  text-decoration: underline;
}

/* Compact ERP-style signup success (activation pending) */
.bz-signup-success-head {
  text-align: center;
  padding: 0.25rem 0 0.75rem;
}

.bz-signup-success-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

@media (max-width: 768px) {
  .bz-signup-success-grid {
    grid-template-columns: 1fr;
  }
}

.bz-signup-success-panel {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-strong);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.bz-signup-success-panel__title {
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 0.95rem;
  letter-spacing: 0.01em;
}

.bz-kv__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(88, 75, 152, 0.22);
}

.bz-kv__row:last-child {
  border-bottom: 0;
}

.bz-kv__key {
  color: var(--muted-light);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bz-kv__value {
  color: var(--ink);
  font-size: 0.95rem;
  text-align: right;
}

.bz-kv__value--strong {
  font-weight: 900;
}

.bz-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 75, 152, 0.35);
  background: rgba(88, 75, 152, 0.08);
  color: var(--brand);
  font-weight: 900;
  font-size: 0.9rem;
}

.bz-pill--ghost {
  background: rgba(88, 75, 152, 0.08);
  border-color: rgba(88, 75, 152, 0.3);
}

.bz-status-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(88, 75, 152, 0.12);
  border: 1px solid rgba(88, 75, 152, 0.35);
  color: var(--brand);
  font-weight: 1000;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
}

.bz-signup-success-panel__info {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.bz-signup-success-panel__infoText {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 700;
  font-size: 0.92rem;
}

.bz-activation-progress__bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(88, 75, 152, 0.12);
  overflow: hidden;
  border: 1px solid rgba(88, 75, 152, 0.18);
}

.bz-activation-progress__bar span {
  display: block;
  height: 100%;
  background: var(--brand);
  border-radius: 999px;
}

.bz-activation-progress__meta {
  margin-top: 0.6rem;
  color: var(--muted);
  font-weight: 900;
  font-size: 0.9rem;
}

.bz-activation-steps {
  margin: 1rem 0 0.75rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.bz-activation-steps li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
  line-height: 1.5;
}

.bz-activation-steps__num {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 1000;
  background: rgba(88, 75, 152, 0.10);
  border: 1px solid rgba(88, 75, 152, 0.22);
  color: var(--brand);
  flex: 0 0 auto;
}

.bz-activation-steps li.is-done {
  color: var(--ink);
}

.bz-activation-steps li.is-done .bz-activation-steps__num {
  background: rgba(15, 123, 74, 0.12);
  border-color: rgba(15, 123, 74, 0.25);
  color: #0f7b4a;
}

.bz-signup-success__actions {
  margin-top: 1.25rem;
  text-align: center;
}

html[dir="rtl"] .bz-signup-plan__check {
  inset-inline-end: auto;
  inset-inline-start: 0.85rem;
}

html[dir="rtl"] .bz-signup-plan__name {
  padding-inline-end: 0;
  padding-inline-start: 1.75rem;
}

html[dir="rtl"] .bz-signup__actions {
  flex-direction: row-reverse;
}
