:root {
  --bg: #070705;
  --bg-2: #10100c;
  --card: #16140f;
  --card-2: #1c1913;
  --line: rgba(212, 175, 55, 0.18);
  --gold: #d4af37;
  --gold-2: #f0d78c;
  --ink: #f6f1e4;
  --muted: #b7aa8e;
  --red: #e35d5d;
  --green: #3dcb8b;
  --blue: #5aa7ff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Outfit", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 5vw;
  background: rgba(7, 7, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-2);
}

.logo svg { width: 28px; height: 28px; }
.logo span { color: var(--gold); }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.nav a:hover, .nav a.active { color: var(--gold-2); }

.nav-actions { display: flex; gap: 10px; align-items: center; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  color: var(--gold-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  background: transparent;
  cursor: pointer;
}

.btn.solid, button.btn.solid {
  background: linear-gradient(180deg, #f0d78c, #c49a2c);
  color: #1a1408;
  border-color: transparent;
}

.btn.ghost { border-color: var(--line); color: var(--ink); }
.btn.tiny { padding: 6px 10px; font-size: 0.72rem; margin: 0; }

.hero-pro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 64px 5vw 48px;
  background:
    radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.16), transparent 32%),
    linear-gradient(180deg, #0c0b08 0%, #070705 100%);
  overflow: hidden;
}

.hero-kicker {
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.74rem;
  margin-bottom: 16px;
}

.hero-pro h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 500;
  line-height: 0.98;
  max-width: 12ch;
}

.hero-pro p.lead {
  margin-top: 18px;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.trust-row strong { color: var(--gold-2); display: block; font-size: 1.05rem; }

.device {
  background: #0b0b09;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,.55), 0 0 0 1px rgba(212,175,55,.12);
  transform: perspective(1200px) rotateY(-8deg);
}

.device-top {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.mini-kpi {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
  font-size: 0.72rem;
  color: var(--muted);
}

.mini-kpi b { display: block; color: var(--gold-2); font-size: 0.92rem; margin-top: 4px; }

.device-mid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 8px;
  min-height: 170px;
}

.mini-chart, .mini-list {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.section { padding: 78px 5vw; }
.section.dim { background: var(--bg-2); }

.section-head { margin-bottom: 34px; }
.section-head h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
}

.section-head p { color: var(--muted); max-width: 38rem; margin-top: 8px; }

.feature-grid, .blog-grid, .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card, .feature, .price, .post {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}

.feature:hover, .post:hover, .price:hover { border-color: var(--gold); transform: translateY(-3px); transition: .2s ease; }

.ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(212,175,55,.12);
  color: var(--gold);
  margin-bottom: 14px;
}

.feature h3, .post h3, .price h3, .card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.feature p, .post p, .card p, .intro { color: var(--muted); }
.meta { color: var(--gold); font-size: 0.78rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 8px; }
.read { color: var(--gold-2); display: inline-block; margin-top: 14px; }

.post.featured {
  grid-column: span 2;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(7,7,5,.2), rgba(7,7,5,.82)),
    radial-gradient(circle at 80% 20%, rgba(212,175,55,.35), transparent 40%),
    #1a160e;
  display: flex; flex-direction: column; justify-content: end;
}

.price .amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  color: var(--gold-2);
  margin: 8px 0 14px;
}

.price ul { color: var(--muted); padding-left: 18px; display: grid; gap: 6px; margin-bottom: 18px; }
.price.hot { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

.about-wrap {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 36px;
  align-items: center;
}

.jewel-panel {
  min-height: 280px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 30%, rgba(240,215,140,.35), transparent 28%),
    linear-gradient(160deg, #2a2316, #0d0c09);
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.site-footer {
  padding: 36px 5vw 48px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.page-title { padding: 48px 5vw 0; }
.page-title h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 500;
}
.article { max-width: 46rem; padding: 24px 5vw 80px; color: var(--muted); }
.article h1 { color: var(--ink); }
.article p + p { margin-top: 16px; }

.login-stage {
  min-height: calc(100vh - 80px);
  display: grid;
  place-items: center;
  padding: 40px 16px;
  background:
    radial-gradient(circle at 20% 20%, rgba(212,175,55,.14), transparent 30%),
    var(--bg);
}

.login-card {
  width: min(440px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}

.form-grid, .panel-form { display: grid; gap: 14px; }
.form-grid label, .panel-form label { display: grid; gap: 6px; font-size: .92rem; color: var(--muted); }
.narrow { max-width: 36rem; }

input, select, textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  background: #0f0e0a;
  border-radius: 10px;
}

.check { display: flex !important; align-items: center; gap: 8px; }
.check input { width: auto; }

.alert {
  padding: 12px 14px;
  border: 1px solid var(--gold);
  background: rgba(212,175,55,.1);
  border-radius: 10px;
  margin: 12px 0;
}
.alert.error { border-color: var(--red); background: rgba(227,93,93,.12); }
.alert.success { border-color: var(--green); background: rgba(61,203,139,.12); }

.app-body { background: #0b0b0b; }
.app-shell { display: grid; grid-template-columns: 270px 1fr; min-height: 100vh; }

.app-side {
  background: #10100d;
  border-right: 1px solid var(--line);
  padding: 18px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.side-brand { margin-bottom: 6px; }
.side-shop {
  margin: 0 8px 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--gold-2);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-align: center;
  background: rgba(212,175,55,.08);
}
.side-group { color: var(--gold); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; margin: 14px 8px 6px; }
.side-nav { display: grid; gap: 4px; }
.side-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  color: #d7ccb3;
  font-size: .9rem;
}
.side-nav a.active, .side-nav a:hover { background: rgba(212,175,55,.14); color: var(--gold-2); }

.gold-box {
  margin-top: auto;
  background: #17150f;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  font-size: .8rem;
}
.gold-box h4 { color: var(--gold-2); margin-bottom: 8px; }
.gold-box div { display: flex; justify-content: space-between; padding: 4px 0; color: var(--muted); }
.gold-box small { display: block; margin-top: 8px; color: #8a7d63; font-size: .72rem; }
.up { color: var(--green); }
.down { color: var(--red); }
.flat { color: var(--muted); }

.app-wrap { display: flex; flex-direction: column; min-width: 0; }
.app-top {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  background: #0f0f0c;
}
.app-top h1 { font-size: 1.05rem; font-weight: 500; }
.search {
  flex: 1;
  max-width: 420px;
  background: #16140f;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--muted);
}
.top-right { margin-left: auto; display: flex; align-items: center; gap: 14px; color: var(--muted); }
.who { text-align: right; font-size: .85rem; }
.who b { display: block; color: var(--ink); }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(180deg, #f0d78c, #9a7420);
}

.app-main { padding: 22px 24px 50px; }
.app-title { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2rem; font-weight: 500; margin-bottom: 6px; }
.lede, .muted { color: var(--muted); margin-bottom: 16px; }
.sub { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.5rem; margin: 22px 0 10px; font-weight: 500; }
.hello { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; margin-bottom: 16px; }

.home-stage { display: grid; gap: 18px; }
.shop-ticker {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(90deg, rgba(212,175,55,.08), rgba(240,215,140,.16), rgba(212,175,55,.08)),
    #14120c;
  box-shadow: inset 0 0 40px rgba(212,175,55,.08);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.shop-ticker-track {
  display: flex;
  width: max-content;
  gap: 4rem;
  padding: 18px 0;
  animation: shop-marquee 28s linear infinite;
}
.shop-ticker-track span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-2);
  white-space: nowrap;
}
@keyframes shop-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .shop-ticker-track { animation: none; }
}

.home-card {
  text-align: center;
  padding: 36px 24px 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(212,175,55,.16), transparent 46%),
    var(--card);
}
.home-kicker {
  color: var(--gold);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: .72rem;
  margin-bottom: 10px;
}
.home-shop {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--gold-2);
  line-height: 1.1;
}
.home-hello {
  margin-top: 12px;
  font-size: 1.15rem;
  color: var(--ink);
}
.home-hello strong { color: var(--gold-2); font-weight: 600; }
.home-note {
  margin: 10px auto 0;
  max-width: 36rem;
  color: var(--muted);
}
.home-kpis { margin-bottom: 0; }
.is-home .app-top h1 { color: var(--gold-2); }

.kpi-row, .stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 16px; }
.kpi, .stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.kpi span, .stat span { color: var(--muted); font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.kpi strong, .stat strong { display: block; font-size: 1.25rem; margin: 8px 0 4px; }
.pos { color: var(--green); font-size: .8rem; }
.neg { color: var(--red); font-size: .8rem; }

.dash-mid { display: grid; grid-template-columns: 1.4fr .9fr .8fr; gap: 12px; margin-bottom: 12px; }
.dash-low { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.panel, .panel-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}
.panel h3 { font-size: 1rem; margin-bottom: 12px; color: var(--gold-2); }

.tx { display: flex; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--line); font-size: .88rem; }
.tx:last-child { border: 0; }
.quick { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.quick a {
  background: #1a1812;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 10px;
  text-align: center;
  font-size: .82rem;
}
.quick a:hover { border-color: var(--gold); color: var(--gold-2); }

.table { width: 100%; border-collapse: collapse; background: var(--card); }
.table th, .table td { padding: 11px 12px; border-bottom: 1px solid var(--line); text-align: left; }
.inline { display: flex; gap: 8px; align-items: center; }
.inline input { width: auto; }
.legend { display: grid; gap: 6px; font-size: .82rem; color: var(--muted); margin-top: 10px; }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; margin-right: 6px; }

.banners { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 12px; }
.badge-ok, .badge-wait {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .04em;
}
.badge-ok { background: rgba(61,203,139,.16); color: var(--green); }
.badge-wait { background: rgba(227,93,93,.16); color: var(--red); }

@media (max-width: 1100px) {
  .hero-pro, .about-wrap, .dash-mid, .dash-low, .feature-grid, .blog-grid, .price-grid, .kpi-row, .stats, .app-shell, .contact-box, .banners, .pos-grid, .label-grid {
    grid-template-columns: 1fr;
  }
  .post.featured { grid-column: auto; }
  .device { transform: none; }
  .nav { display: none; }
}

.pos-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pos-scan input { font-size: 1.15rem; padding: 14px; letter-spacing: .08em; }
.pos-total { font-family: "Cormorant Garamond", Georgia, serif; font-size: 1.8rem; margin: 14px 0; color: var(--gold-2); }
.found-card { margin-top: 12px; padding: 12px; border: 1px solid var(--gold); border-radius: 12px; background: rgba(212,175,55,.08); }
.label-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.label-card { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.barcode-wrap { overflow-x: auto; margin: 10px 0; background: #fff; border-radius: 8px; padding: 8px; }
.print-body { background: #fff; color: #111; padding: 24px; }
.print-body .muted { color: #555; }
.print-labels { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.print-label { border: 1px dashed #111; padding: 12px; border-radius: 8px; }
.receipt { max-width: 420px; margin: 0 auto; background: #fff; color: #111; padding: 20px; }
.receipt.a4 { max-width: 720px; }
.receipt h1 { font-family: "Cormorant Garamond", Georgia, serif; }
.receipt .table { background: #fff; color: #111; }
@media print {
  .no-print, .app-side, .app-top, .site-header, .site-footer { display: none !important; }
  .print-body, .receipt { background: #fff; }
  .receipt.mm58, .receipt.mm80 { box-shadow: none; }
}

.wizard-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 20%, rgba(212,175,55,.22), transparent 28%),
    radial-gradient(circle at 88% 80%, rgba(212,175,55,.12), transparent 30%),
    #0b0a07;
  display: grid;
  place-items: center;
  padding: 28px 16px;
  font-family: "Outfit", "Segoe UI", sans-serif;
}
.wizard-shell {
  width: min(1080px, 100%);
  min-height: min(720px, calc(100vh - 56px));
  background: #fff;
  border-radius: 28px;
  display: grid;
  grid-template-columns: 250px 1fr;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.45);
}
.wizard-rail {
  background: #f7f4ee;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #ece6d8;
}
.wizard-rail .logo { color: #1c1914; font-size: 1.35rem; }
.wizard-rail .logo span { color: #c49a2c; }
.wz-brand { margin-bottom: 28px; }
.wz-foot { margin-top: auto; margin-bottom: 0; padding-top: 24px; }
.wz-steps { list-style: none; display: grid; gap: 0; position: relative; }
.wz-steps li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: center;
  position: relative;
  padding: 12px 0;
  color: #8a8478;
  font-size: .92rem;
  font-weight: 500;
}
.wz-steps li:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 40px;
  bottom: -4px;
  width: 2px;
  background: #e4dcc8;
}
.wz-steps li.done:not(:last-child)::before,
.wz-steps li.now:not(:last-child)::before { background: #d4af37; }
.wz-num {
  width: 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; color: #8a8478;
  border: 2px solid #e4dcc8;
  font-size: .78rem; font-weight: 700; z-index: 1;
}
.wz-steps li.now { color: #1c1914; font-weight: 600; }
.wz-steps li.now .wz-num { background: #d4af37; border-color: #d4af37; color: #fff; }
.wz-steps li.done { color: #1c1914; }
.wz-steps li.done .wz-num { background: #d4af37; border-color: #d4af37; color: #fff; }

.wizard-pane { position: relative; padding: 36px 48px 28px; background: #fff; color: #1c1914; }
.wz-close {
  position: absolute; top: 18px; right: 22px;
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.5rem; color: #8a8478; line-height: 1;
}
.wz-close:hover { background: #f4efe4; color: #1c1914; }
.wz-head { margin-bottom: 22px; }
.wz-head h1 { font-size: 1.7rem; font-weight: 700; letter-spacing: -.02em; }
.wz-head p { color: #8a8478; margin-top: 4px; }

.wz-form { display: grid; gap: 14px; }
.wz-form label {
  display: grid; gap: 6px;
  font-size: .88rem; font-weight: 600; color: #3a3428;
}
.wz-form label i { color: #d24c4c; font-style: normal; margin-left: 2px; }
.wz-form input, .wz-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #e6e1d6;
  background: #faf8f4;
  color: #1c1914;
  border-radius: 16px;
  font-size: .95rem;
}
.wz-form input::placeholder { color: #b0a898; }
.wz-form input:focus, .wz-form select:focus {
  outline: none;
  border-color: #d4af37;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}

.wz-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 10px; }
.wz-next {
  margin-left: auto;
  border: 0; cursor: pointer;
  background: linear-gradient(180deg, #e8c768, #c49a2c);
  color: #1a1408;
  font-weight: 700;
  letter-spacing: .04em;
  padding: 12px 28px;
  border-radius: 999px;
  text-transform: none;
  font-size: .95rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.wz-next:hover { filter: brightness(1.05); }
.wz-back, .wz-back-link, .wz-resend {
  border: 0; background: none; cursor: pointer;
  color: #8a8478; font-weight: 600; padding: 10px 4px;
}
.wz-resend { justify-self: start; }

.wz-cards, .wz-packs { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wz-pick, .wz-pack {
  display: grid; gap: 6px;
  padding: 16px;
  border: 1px solid #ece6d8;
  border-radius: 16px;
  background: #faf8f4;
  cursor: pointer;
  color: #1c1914;
}
.wz-pick b, .wz-pack strong { font-size: .95rem; }
.wz-pick span, .wz-pack ul { color: #7a7468; font-size: .82rem; font-weight: 400; }
.wz-pick input, .wz-pack input {
  width: auto;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  accent-color: #c49a2c;
}
.wz-pick:has(input:checked), .wz-pack.on {
  border-color: #d4af37;
  background: #fff8e8;
  box-shadow: 0 0 0 1px #d4af37;
}
.wz-pack em { font-style: normal; color: #c49a2c; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
.wz-price { font-size: 1.15rem; font-weight: 700; color: #1c1914; }
.wz-pack ul { padding-left: 16px; display: grid; gap: 3px; }

.wz-legal {
  max-height: 220px; overflow: auto;
  padding: 16px; border: 1px solid #ece6d8; border-radius: 16px;
  color: #5c564c; font-size: .9rem; line-height: 1.6; background: #faf8f4;
}
.wz-check { display: flex !important; align-items: center; gap: 10px; font-weight: 500 !important; }
.wz-check input { width: auto !important; }

.wz-sms-lead { color: #5c564c; }
.wz-demo-code {
  background: #fff8e8; border: 1px dashed #d4af37;
  border-radius: 12px; padding: 12px 14px; color: #6a5a28;
}
.wz-otp { display: flex; gap: 10px; }
.otp-box {
  width: 52px !important; height: 56px; text-align: center;
  font-size: 1.4rem !important; font-weight: 700;
  border-radius: 14px !important;
}
.wz-success { text-align: center; padding: 30px 10px 10px; }
.wz-ok {
  width: 72px; height: 72px; margin: 0 auto 16px;
  border-radius: 50%; background: #d4af37; color: #fff;
  display: grid; place-items: center; font-size: 2rem;
}
.wz-success h2 { font-family: "Cormorant Garamond", Georgia, serif; font-size: 2.2rem; margin-bottom: 8px; }
.wz-success p { color: #5c564c; margin-bottom: 8px; }
.wz-success-actions { display: flex; gap: 16px; justify-content: center; align-items: center; margin-top: 22px; }

.wizard-pane .alert { color: #1c1914; }

@media (max-width: 860px) {
  .wizard-shell { grid-template-columns: 1fr; }
  .wizard-rail { padding: 18px 18px 8px; }
  .wz-steps { grid-template-columns: repeat(6, 1fr); gap: 4px; }
  .wz-steps li { grid-template-columns: 1fr; justify-items: center; text-align: center; font-size: 0; padding: 6px 0; }
  .wz-steps li:not(:last-child)::before { display: none; }
  .wz-foot { display: none; }
  .wizard-pane { padding: 28px 20px 20px; }
  .wz-cards, .wz-packs { grid-template-columns: 1fr; }
}
