﻿* {
  box-sizing: border-box;
}
:root {
  --bg: #faf8f2;
  --bg-2: #fffdf8;
  --surface: #ffffff;
  --surface-soft: #f5f1e8;
  --surface-warm: #fff6d8;
  --text: #171717;
  --text-soft: #3d3a34;
  --muted: #706b61;
  --line: #e7dece;
  --line-strong: #d7c8b1;
  --accent: #ffc233;
  --accent-dark: #8a6100;
  --green: #168a55;
  --black: #070707;
  --shadow-sm: 0 8px 24px rgba(33, 27, 18, 0.05);
  --shadow-md: 0 22px 60px rgba(33, 27, 18, 0.09);
  --container: 1168px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #fffdf8 0%, #faf8f2 42%, #ffffff 100%);
  color: var(--text);
  font-family: "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin: 0;
}

input,
select {
  font: inherit;
}

.site-shell {
  width: min(calc(100% - 64px), var(--container));
  margin: 0 auto;
  padding: 26px 0 86px;
}

.site-nav {
  min-height: 62px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 280px;
  align-items: center;
  gap: 24px;
  border: 1px solid rgba(231, 222, 206, 0.78);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-sm);
  padding: 0 18px;
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #0f0f0f;
  font-size: 20px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: grayscale(1) brightness(0);
}

.nav-links,
.nav-actions,
.hero-actions,
.account-actions,
.card-actions {
  display: flex;
  align-items: center;
}

.nav-links {
  justify-content: center;
  gap: clamp(22px, 3vw, 42px);
  color: #2f2b25;
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-links a,
.nav-actions > a:not(.btn) {
  position: relative;
  border-radius: 999px;
  padding: 8px 4px;
  transition: color .18s ease, background .18s ease;
}

.nav-links a::after,
.nav-actions > a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  bottom: 3px;
  height: 2px;
  border-radius: 99px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}

.nav-links a:hover,
.nav-actions > a:not(.btn):hover {
  color: #7b5808;
}

.nav-links a:hover::after,
.nav-actions > a:not(.btn):hover::after {
  transform: scaleX(1);
}

.nav-actions {
  justify-content: flex-end;
  gap: 12px;
  color: #26231f;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.marketplace-carousel {
  margin-top: 18px;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.carousel-label {
  display: none;
}

.carousel-mask {
  position: relative;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.carousel-mask::before,
.carousel-mask::after {
  display: none;
}

.carousel-mask::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 1), rgba(255, 253, 248, .72) 36%, rgba(255, 253, 248, 0));
}

.carousel-mask::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 253, 248, 1), rgba(255, 253, 248, .72) 36%, rgba(255, 253, 248, 0));
}

.carousel-track {
  display: flex;
  width: max-content;
  min-width: max-content;
  will-change: transform;
  animation: marketplaceScroll 30s linear infinite;
}

.marketplace-carousel:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 46px;
  min-width: max-content;
  padding-right: 46px;
}

.marketplace-logo {
  width: 72px;
  height: 72px;
  flex: 0 0 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  color: #151515;
  box-shadow: none;
  transition: transform .18s ease, opacity .18s ease;
}

.marketplace-logo img {
  width: 56px;
  height: 56px;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #ffffff;
  padding: 4px;
  object-fit: contain;
  box-shadow: none;
}

.marketplace-logo span {
  display: none;
}

.marketplace-logo:hover {
  transform: translateY(-3px) scale(1.06);
}

.logo-wb {
  color: #241529;
  border-color: transparent;
  background: transparent;
}

.logo-ozon {
  color: #10204d;
  border-color: transparent;
  background: transparent;
}

.logo-ozon img {
  box-shadow: none;
}

.logo-yandex {
  color: #151515;
  border-color: transparent;
  background: transparent;
}

@keyframes marketplaceScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  background: var(--surface);
  padding: 0 17px;
  color: #17140f;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: #bba987;
  box-shadow: var(--shadow-sm);
}

.btn:active {
  transform: translateY(0) scale(.98);
}

.btn:focus-visible,
.market-chip:focus-visible,
.form-grid input:focus,
.form-grid select:focus {
  outline: 3px solid rgba(255, 194, 51, .35);
  outline-offset: 3px;
}

.btn-primary {
  border-color: var(--black);
  background: var(--black);
  color: #ffffff;
}

.btn-danger {
  border-color: #d4472f;
  background: #d4472f;
  color: #ffffff;
}

.btn-danger:hover {
  border-color: #b93521;
  background: #b93521;
}

.account-logout-row {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-end;
  padding: 4px 2px 0;
}

.account-logout-row a {
  color: #d4472f;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: color .18s ease, transform .18s ease;
}

.account-logout-row a:hover {
  color: #a92d1b;
  transform: translateY(-1px);
}

.btn-accent {
  border-color: #efb427;
  background: var(--accent);
  color: #18140a;
}

.btn-lg {
  min-height: 54px;
  padding: 0 22px;
  border-radius: 15px;
  font-size: 15px;
}

.hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  padding: 6px 0 28px;
}

.hero > *,
.hero-copy,
.product-preview,
.preview-window,
.price-card,
.feature-card,
.account-card,
.payment-card,
.docs-card,
.auth-card,
.workflow-intro,
.workflow-steps,
.step-card,
.cta-panel > * {
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 8px 12px;
  color: #66583b;
  font-size: 13px;
  font-weight: 700;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 194, 51, .18);
}

.hero h1 {
  max-width: 560px;
  margin-top: 0;
  color: #111111;
  font-size: clamp(44px, 4.65vw, 64px);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 470px;
  margin-top: 24px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.58;
  font-weight: 480;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trial-note {
  max-width: 430px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 500px;
  margin-top: 28px;
}

.hero-stats div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .72);
  padding: 15px;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.hero-stats strong {
  display: block;
  color: #151515;
  font-size: 22px;
  line-height: 1;
  font-weight: 760;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
}

.product-preview {
  position: relative;
  border: 1px solid rgba(215, 200, 177, .8);
  border-radius: 30px;
  background: #fffdf8;
  box-shadow: var(--shadow-md);
  padding: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-preview:hover {
  transform: translateY(-4px);
  border-color: #e8c761;
  box-shadow: 0 28px 80px rgba(33, 27, 18, .13);
}

.product-preview::before {
  content: "";
  position: absolute;
  inset: 14px 14px auto auto;
  width: 90px;
  height: 6px;
  border-radius: 99px;
  background: var(--accent);
  opacity: .85;
}

.preview-window {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}

.window-bar {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding: 0 18px;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ddd2bf;
}

.window-status {
  border-radius: 999px;
  background: var(--surface-warm);
  padding: 7px 10px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 780;
}

.preview-body {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 16px;
  padding: 16px;
}

.preview-sidebar,
.reply-panel,
.mini-card,
.feature-card,
.price-card,
.auth-card,
.account-card,
.docs-card,
.payment-card,
.side-menu,
.blog-card,
.cta-panel,
.fact-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
}

.preview-sidebar {
  border-radius: 18px;
  padding: 12px;
  background: #fbf8f1;
}

.market-chip,
.queue-chip,
.status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 31px;
  border-radius: 999px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 760;
}

.market-chip {
  width: 100%;
  justify-content: flex-start;
  margin-bottom: 8px;
  background: #ffffff;
  color: #4a453d;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, border-color .16s ease, color .16s ease;
}

.market-chip.active {
  border-color: #111111;
  background: #111111;
  color: #ffffff;
}

.market-chip:hover {
  transform: translateX(3px);
  border-color: #e4c36a;
  background: #fff7dc;
  color: #1a1712;
}

.market-chip.active:hover {
  background: #111111;
  color: #ffffff;
}

.mini-metrics {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.mini-card {
  border-radius: 16px;
  padding: 12px;
  background: #ffffff;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.mini-card:hover {
  transform: translateY(-2px);
  border-color: #e8c761;
  background: #fffaf0;
}

.mini-card strong {
  display: block;
  font-size: 23px;
  line-height: 1;
  font-weight: 760;
}

.mini-card span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.28;
}

.reply-panel {
  border-radius: 20px;
  padding: 18px;
}

.reply-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.reply-head strong {
  display: block;
  font-size: 17px;
  font-weight: 760;
}

.reply-head span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

.rating {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent);
  font-size: 14px;
  font-weight: 780;
}

.customer-card,
.answer-card,
.queue-item,
.summary-row,
.market-row,
.field-like {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf9;
}

.customer-card,
.answer-card {
  padding: 15px;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.customer-card:hover,
.answer-card:hover {
  transform: translateY(-1px);
  border-color: #e8c761;
  background: #fff9e8;
}

.customer-card p,
.answer-card p {
  color: #4d473d;
  font-size: 14px;
  line-height: 1.48;
}

.answer-card {
  margin-top: 12px;
  background: linear-gradient(180deg, #fff7dc, #ffffff 88%);
}

.answer-card small {
  display: block;
  margin-bottom: 8px;
  color: #795915;
  font-weight: 760;
}

.preview-footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

/* Light hero mockup */
.product-preview {
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 76% 18%, rgba(255, 190, 45, .18), transparent 34%),
    rgba(255, 255, 255, .34);
  box-shadow: none;
  padding: 0;
  perspective: 1200px;
  transition: transform .22s ease;
}

.product-preview:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: none;
}

.product-preview::before {
  display: none;
}

.preview-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(241, 188, 68, .58);
  border-radius: 34px;
  background: rgba(255, 255, 255, .76);
  box-shadow:
    0 34px 90px rgba(236, 178, 52, .16),
    0 18px 60px rgba(31, 27, 20, .08);
  backdrop-filter: blur(12px);
}

.preview-window::before {
  content: "";
  position: absolute;
  inset: -35% -20% auto 26%;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 206, 85, .22), transparent 68%);
  pointer-events: none;
}

.window-bar {
  position: relative;
  z-index: 1;
  min-height: 60px;
  border-bottom-color: rgba(225, 210, 184, .72);
  padding: 0 24px;
}

.window-status {
  background: #fff4ce;
  padding: 8px 13px;
  box-shadow: inset 0 0 0 1px rgba(236, 188, 73, .2);
}

.preview-body {
  position: relative;
  z-index: 1;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 28px;
  padding: 28px;
}

.preview-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  border: 0;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 250, 239, .9), rgba(255, 255, 255, .52));
  box-shadow: none;
  padding: 0;
}

.market-chip {
  min-height: 58px;
  gap: 12px;
  margin: 0;
  padding: 0 16px;
  border: 1px solid rgba(223, 208, 181, .7);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 10px 28px rgba(38, 28, 12, .04);
}

.market-chip img {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  border-radius: 7px;
  object-fit: cover;
}

.market-chip span {
  white-space: nowrap;
}

.market-chip.active {
  color: #17140e;
  border-color: rgba(246, 184, 45, .72);
  background: linear-gradient(90deg, rgba(255, 247, 218, .94), rgba(255, 255, 255, .82));
  box-shadow: inset 0 0 0 1px rgba(255, 205, 83, .22), 0 12px 30px rgba(226, 172, 43, .1);
}

.market-chip:hover {
  transform: translateX(3px);
  border-color: #e8c761;
  background: #fffaf0;
  color: #1a1712;
}

.market-chip.active:hover {
  color: #17140e;
  background: linear-gradient(90deg, rgba(255, 247, 218, .94), rgba(255, 255, 255, .82));
}

.mini-metrics {
  display: none;
}

.reply-panel {
  display: grid;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.review-card,
.answer-card {
  border: 1px solid rgba(223, 208, 181, .78);
  border-radius: 22px;
  background: rgba(255, 255, 255, .78);
  box-shadow: 0 18px 48px rgba(38, 28, 12, .07);
}

.review-card {
  padding: 22px 24px 20px;
}

.reply-head {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(225, 210, 184, .62);
}

.reply-head strong {
  font-size: 20px;
}

.reply-head span {
  font-size: 12px;
}

.rating {
  width: 46px;
  height: 34px;
  border-radius: 16px;
  background: #fff7df;
  color: #d38b00;
  box-shadow: inset 0 0 0 1px rgba(245, 190, 62, .32);
  font-size: 18px;
}

.customer-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.customer-card:hover {
  transform: none;
  border-color: transparent;
  background: transparent;
}

.avatar-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0ebe3;
  box-shadow: inset 0 0 0 1px rgba(224, 210, 185, .7);
}

.stars {
  margin: 0 0 12px;
  color: #f5ad21;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 2px;
}

.answer-card {
  margin-top: 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(255, 248, 224, .92), rgba(255, 255, 255, .78));
}

.answer-card small {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #17140e;
  font-size: 20px;
}

.answer-card small span {
  color: #f4ad22;
  font-size: 24px;
}

.answer-ready {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  margin-top: 18px;
}

.answer-ready span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d8ccb9;
}

.answer-ready i {
  width: 46px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(238, 177, 46, .55);
  border-radius: 13px;
  background: #fffdf7;
  color: #d49108;
  font-style: normal;
  font-weight: 900;
}

.preview-footer {
  margin-top: 0;
  padding: 0 2px;
  font-size: 11px;
  opacity: .76;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.signal-row span {
  min-height: 58px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .78);
  padding: 0 17px;
  color: #2e2a24;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.signal-row span:hover,
.hero-stats div:hover {
  transform: translateY(-2px);
  border-color: #e8c761;
  background: #fff9e8;
  box-shadow: var(--shadow-sm);
}

.section {
  padding-top: 104px;
}

.section-kicker {
  color: #8a6a17;
  font-size: 13px;
  font-weight: 760;
}

.section.center {
  text-align: center;
}

.section h2 {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: clamp(34px, 3.55vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.section-subtitle {
  max-width: 640px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 42px;
  text-align: left;
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 226px;
  border-radius: 24px;
  padding: 26px;
  transition: transform .18s ease, box-shadow .18s ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 92px;
  height: 52px;
  border: 1px solid rgba(215, 200, 177, .85);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(255, 194, 51, .28) 0 28%, transparent 28% 100%),
    linear-gradient(#f5f1e8, #f5f1e8);
  opacity: .68;
}

.feature-card:nth-child(1),
.feature-card:nth-child(6) {
  background: linear-gradient(180deg, #fff8df, #ffffff 72%);
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.feature-card:hover::after {
  opacity: 1;
  border-color: #e8c761;
  background:
    linear-gradient(90deg, rgba(255, 194, 51, .55) 0 34%, transparent 34% 100%),
    linear-gradient(#fff6d8, #fff6d8);
}

.feature-icon {
  width: fit-content;
  min-width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--surface-warm);
  color: #7a570a;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 760;
}

.feature-card h3,
.blog-card h3,
.account-card h3,
.docs-card h3,
.payment-card h3,
.auth-card h2 {
  margin-top: 22px;
  color: #151515;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.feature-card p,
.blog-card p,
.account-card p,
.docs-card p,
.payment-card p,
.auth-card p,
.page-head p,
.split p,
.price-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.features-showcase {
  padding-top: 72px;
}

.features-head {
  display: grid;
  grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

.features-head h2 {
  margin: 0;
  max-width: 620px;
}

.features-head .section-subtitle {
  margin: 0;
  max-width: 520px;
}

.features-system {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 26px;
  align-items: stretch;
}

.features-copy-card,
.features-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-sm);
}

.features-copy-card {
  padding: 34px;
  background: linear-gradient(135deg, #fff6d7 0%, #fffdf8 58%, #ffffff 100%);
}

.features-copy-card h3 {
  max-width: 560px;
  color: #151515;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 760;
}

.features-copy-card p {
  max-width: 560px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}

.feature-point-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 28px;
}

.feature-point-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 48px;
}

.feature-point-list span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent);
  color: #151515;
  font-size: 13px;
  font-weight: 800;
}

.feature-point-list strong {
  color: #171717;
  font-size: 16px;
  line-height: 1.35;
}

.features-visual-card {
  min-height: 520px;
  padding: 34px;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 194, 51, .12), transparent 26%),
    linear-gradient(180deg, #ffffff, #fffdf8);
}

.features-visual-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 112px;
  bottom: 74px;
  width: 2px;
  transform: translateX(-50%);
  background: repeating-linear-gradient(to bottom, rgba(255, 194, 51, .88) 0 7px, transparent 7px 15px);
  opacity: .68;
}

.market-mini-tabs,
.mini-review-card,
.mini-answer-card,
.mini-route {
  position: relative;
  z-index: 1;
}

.market-mini-tabs {
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  padding: 10px 12px;
  box-shadow: var(--shadow-sm);
}

.market-mini-tabs span {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 14px;
  padding: 6px 10px;
  color: #4d473d;
  font-size: 13px;
  font-weight: 800;
}

.market-mini-tabs span.active {
  background: #fff7dd;
  box-shadow: inset 0 0 0 1px rgba(239, 180, 39, .72);
}

.market-mini-tabs img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  object-fit: contain;
}

.mini-review-card,
.mini-answer-card {
  width: min(100%, 520px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
}

.mini-review-card {
  margin: 46px auto 0;
  padding: 26px;
}

.mini-answer-card {
  margin: 126px auto 0;
  padding: 24px 26px;
}

.mini-review-card > span,
.mini-answer-card > span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  background: var(--surface-warm);
  padding: 0 12px;
  color: #72520a;
  font-size: 12px;
  font-weight: 800;
}

.mini-review-card h3 {
  margin-top: 18px;
  color: #151515;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 760;
}

.mini-stars {
  margin-top: 8px;
  color: var(--accent);
  letter-spacing: 2px;
  font-size: 16px;
}

.mini-review-card p,
.mini-answer-card p {
  margin-top: 14px;
  color: #2e2a24;
  font-size: 15px;
  line-height: 1.5;
}

.mini-answer-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 18px;
  align-items: start;
}

.mini-answer-card p {
  grid-column: 1 / -1;
}

.mini-answer-card strong {
  justify-self: end;
  border-radius: 999px;
  background: #eaf8ef;
  padding: 8px 12px;
  color: #078447;
  font-size: 12px;
}

.mini-process-dot {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 51%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(102, 132, 255, .72);
  border-radius: 50%;
  background: #ffffff;
  color: #7992ff;
  font-size: 20px;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, .8);
}

.mini-process-dot::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid rgba(102, 132, 255, .36);
  border-radius: 50%;
}

.mini-route {
  width: fit-content;
  margin: 20px auto 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, .92);
  padding: 10px 18px;
  color: #4b4439;
  font-size: 14px;
  font-weight: 760;
  box-shadow: var(--shadow-sm);
}

.work-rail {
  padding-top: 54px;
}

.work-rail-head {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 56px;
  text-align: center;
}

.work-rail-head h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: 0;
}

.work-rail-head p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.work-rail-head span {
  width: 42px;
  height: 2px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--accent);
}

.work-rail-list {
  position: relative;
  display: grid;
}

.work-rail-list::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 84px;
  bottom: 84px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(226, 202, 154, .75), transparent);
}

.work-step {
  position: relative;
  min-height: 255px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(226, 202, 154, .38);
}

.work-rail.is-animated .work-step {
  opacity: 0;
  transform: translateY(38px);
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    transform .72s cubic-bezier(.22, 1, .36, 1);
  transition-delay: calc(var(--step-delay, 0) * 90ms);
}

.work-rail.is-animated .work-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-step:first-child {
  border-top: 0;
}

.work-ghost {
  position: relative;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  width: min(100%, 330px);
}

.work-ghost span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(239, 180, 39, .28);
  font-size: clamp(96px, 12vw, 160px);
  line-height: .86;
  font-weight: 800;
  letter-spacing: -5px;
  transition:
    opacity .72s cubic-bezier(.22, 1, .36, 1),
    -webkit-text-stroke-color .72s ease;
}

.work-ghost i {
  position: absolute;
  width: 58px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  color: #856108;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
  box-shadow: 0 16px 34px rgba(64, 48, 18, .12);
  overflow: hidden;
  text-indent: -999px;
  transform: translateY(0) scale(.96);
  transition:
    transform .72s cubic-bezier(.22, 1, .36, 1),
    box-shadow .72s ease,
    border-color .72s ease;
}

.work-ghost i::before,
.work-ghost i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.work-step.is-visible .work-ghost span {
  -webkit-text-stroke-color: rgba(239, 180, 39, .42);
}

.work-step.is-visible .work-ghost i {
  border-color: rgba(239, 180, 39, .58);
  transform: translateY(-2px) scale(1);
  box-shadow: 0 20px 40px rgba(64, 48, 18, .16);
}

.work-ghost i[data-work-icon="inbox"]::before {
  width: 24px;
  height: 16px;
  border: 2px solid #a87400;
  border-top: 0;
  border-radius: 0 0 6px 6px;
  top: 53%;
}

.work-ghost i[data-work-icon="inbox"]::after {
  width: 22px;
  height: 12px;
  border: 2px solid #a87400;
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  top: 40%;
}

.work-ghost i[data-work-icon="text"]::before {
  width: 25px;
  height: 18px;
  border: 2px solid #a87400;
  border-radius: 7px;
}

.work-ghost i[data-work-icon="text"]::after {
  width: 13px;
  height: 8px;
  border-top: 2px solid #a87400;
  border-bottom: 2px solid #a87400;
  box-shadow: 0 5px 0 -3px #a87400;
}

.work-ghost i[data-work-icon="check"]::before {
  width: 26px;
  height: 26px;
  border: 2px solid rgba(168, 116, 0, .36);
  border-radius: 50%;
}

.work-ghost i[data-work-icon="check"]::after {
  width: 15px;
  height: 8px;
  border-left: 3px solid #a87400;
  border-bottom: 3px solid #a87400;
  transform: translate(-50%, -56%) rotate(-45deg);
}

.work-ghost i[data-work-icon="api"]::before {
  width: 28px;
  height: 2px;
  background: repeating-linear-gradient(90deg, #a87400 0 5px, transparent 5px 10px);
}

.work-ghost i[data-work-icon="api"]::after {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #a87400;
  box-shadow: -14px 0 0 rgba(168, 116, 0, .42), 14px 0 0 rgba(168, 116, 0, .42);
}

.work-ghost i[data-work-icon="stat"]::before {
  width: 26px;
  height: 24px;
  border-left: 2px solid rgba(168, 116, 0, .35);
  border-bottom: 2px solid rgba(168, 116, 0, .35);
}

.work-ghost i[data-work-icon="stat"]::after {
  width: 22px;
  height: 20px;
  background:
    linear-gradient(#a87400, #a87400) 2px 13px / 4px 7px no-repeat,
    linear-gradient(#a87400, #a87400) 9px 8px / 4px 12px no-repeat,
    linear-gradient(#a87400, #a87400) 16px 3px / 4px 17px no-repeat;
}

.work-ghost i[data-work-icon="time"]::before {
  width: 27px;
  height: 27px;
  border: 2px solid #a87400;
  border-radius: 50%;
}

.work-ghost i[data-work-icon="time"]::after {
  width: 10px;
  height: 10px;
  border-left: 2px solid #a87400;
  border-bottom: 2px solid #a87400;
  transform: translate(-35%, -55%);
}

.work-dot {
  position: relative;
  z-index: 1;
  width: 18px;
  height: 18px;
  display: block;
  justify-self: center;
  border: 2px solid #fff4d2;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 194, 51, .13);
  transform: scale(.76);
  opacity: .48;
  transition:
    transform .48s cubic-bezier(.22, 1, .36, 1),
    opacity .48s ease,
    box-shadow .48s ease,
    background .48s ease;
}

.work-step.is-visible .work-dot {
  opacity: 1;
  transform: scale(1);
  background: #ffc233;
  box-shadow:
    0 0 0 8px rgba(255, 194, 51, .16),
    0 0 24px rgba(255, 194, 51, .7);
  animation: workDotGlow 1.15s ease-out both;
}

@keyframes workDotGlow {
  0% {
    transform: scale(.58);
    box-shadow: 0 0 0 0 rgba(255, 194, 51, .35);
  }
  55% {
    transform: scale(1.14);
    box-shadow:
      0 0 0 13px rgba(255, 194, 51, .18),
      0 0 28px rgba(255, 194, 51, .8);
  }
  100% {
    transform: scale(1);
    box-shadow:
      0 0 0 8px rgba(255, 194, 51, .16),
      0 0 24px rgba(255, 194, 51, .7);
  }
}

.work-copy {
  max-width: 420px;
}

.work-copy small {
  display: block;
  margin-bottom: 12px;
  color: #a77200;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}

.work-copy h3 {
  margin: 0;
  color: #151515;
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.06;
  font-weight: 780;
}

.work-copy p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.work-step.reverse .work-copy {
  justify-self: end;
}

.work-step.reverse .work-ghost {
  grid-column: 3;
  grid-row: 1;
}

.work-step.reverse .work-dot {
  grid-column: 2;
  grid-row: 1;
}

.work-step.reverse .work-copy {
  grid-column: 1;
  grid-row: 1;
}

.workflow {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
  margin-top: 96px;
}

.workflow-intro,
.cta-panel {
  border: 1px solid #e4d4ad;
  border-radius: 28px;
  background: linear-gradient(180deg, #fff6d7, #fffdf8);
  color: var(--text);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}

.workflow-intro h2,
.cta-panel h2 {
  max-width: 520px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.13;
  font-weight: 720;
}

.workflow-intro p,
.cta-panel p {
  max-width: 560px;
  margin-top: 18px;
  color: #5d5548;
  line-height: 1.58;
}

.workflow-steps {
  display: grid;
  gap: 14px;
}

.step-card {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, .9);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.step-card:hover,
.blog-card:hover,
.docs-card:hover,
.auth-card:hover,
.payment-card:hover,
.account-card:hover,
.price-card:hover {
  transform: translateY(-3px);
  border-color: #e4c36a;
  box-shadow: var(--shadow-md);
}

.step-card span {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: var(--accent);
  font-weight: 760;
}

.step-card h3 {
  font-size: 20px;
  line-height: 1.22;
}

.step-card p {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.5;
}

.split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 58px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 62px 0;
  margin-top: 96px;
}

.split h2 {
  margin-top: 16px;
  font-size: clamp(32px, 3.4vw, 46px);
  line-height: 1.14;
  font-weight: 720;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.blog-card {
  min-height: 172px;
  border-radius: 22px;
  padding: 24px;
}

.blog-card span,
.docs-card span {
  color: #8a6a17;
  font-size: 13px;
  font-weight: 760;
}

.page-head {
  max-width: 760px;
  padding-top: 74px;
}

.page-head.center {
  margin: 0 auto;
  text-align: center;
}

.page-head h1 {
  color: #111111;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.08;
  font-weight: 700;
}

.auth-layout,
.payment-layout,
.docs-layout,
.account-layout,
.pricing-grid {
  display: grid;
  gap: 24px;
  margin-top: 42px;
}

.auth-layout {
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: start;
}

.auth-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.fact-card {
  border-radius: 22px;
  padding: 20px;
}

.fact-card strong {
  display: block;
  font-size: 22px;
  font-weight: 740;
}

.fact-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.44;
}

.auth-card,
.payment-card,
.account-card,
.docs-card,
.price-card,
.side-menu {
  border-radius: 24px;
  padding: 26px;
}

.form-grid {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.form-grid label {
  display: grid;
  gap: 8px;
  color: #322e27;
  font-size: 13px;
  font-weight: 720;
}

.form-grid input,
.form-grid select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #ffffff;
  padding: 0 14px;
  color: var(--text);
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.form-grid input:hover,
.form-grid select:hover {
  border-color: #c7ae75;
  background: #fffdf8;
}

.password-control {
  display: block;
  position: relative;
}

.password-control input {
  min-width: 0;
  width: 100%;
  padding-right: 58px;
}

.password-control .password-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #6d665b;
  cursor: pointer;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  transition: background .16s ease, color .16s ease, transform .16s ease;
  appearance: none;
  -webkit-appearance: none;
  z-index: 2;
}

.password-control .password-eye svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.password-control .password-eye .eye-pupil {
  fill: currentColor;
  stroke: none;
  transform-origin: center;
  transition: transform .18s ease, opacity .18s ease;
}

.password-control .password-eye .eye-slash {
  opacity: 1;
  transform-origin: center;
  transition: opacity .18s ease, transform .18s ease;
}

.password-control .password-eye:hover {
  background: #fff4cf;
  color: var(--ink);
  transform: translateY(-50%) scale(1.04);
}

.password-control .password-eye.is-visible {
  color: var(--ink);
}

.password-control .password-eye.is-visible .eye-slash {
  opacity: 0;
  transform: scaleX(.35);
}

.password-control .password-eye.is-visible .eye-pupil {
  transform: scale(1.18);
}

.form-grid input.is-invalid {
  border-color: #d4472f;
  background: #fff7f4;
  box-shadow: 0 0 0 4px rgba(212, 71, 47, .08);
}

.field-message {
  color: #b73524;
  font-size: 12px;
  line-height: 1.32;
  font-weight: 650;
}

.form-grid .btn {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.form-alert {
  border: 1px solid #f0b9aa;
  border-radius: 14px;
  background: #fff7f4;
  color: #9f2f20;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.form-alert-success {
  border-color: #aadfbd;
  background: #f3fff7;
  color: #087f3f;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.price-card.featured {
  background: linear-gradient(180deg, #fff6d8, #ffffff 60%);
  border-color: #e8c761;
}

.price-label {
  width: fit-content;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  padding: 8px 12px;
  color: #695119;
  font-size: 13px;
  font-weight: 760;
}

.price-card h2 {
  margin-top: 28px;
  font-size: 34px;
  line-height: 1.14;
  font-weight: 730;
  overflow-wrap: anywhere;
}

.price {
  margin-top: 25px;
  font-size: 42px;
  line-height: 1;
  font-weight: 760;
}

.price small {
  color: var(--muted);
  font-size: 15px;
  font-weight: 650;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 10px;
  color: #39342c;
  line-height: 1.42;
  font-weight: 600;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: inset 0 0 0 7px #fff5ce;
}

.price-card .btn {
  width: fit-content;
  margin-top: auto;
}

.payment-layout {
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
}

.bank-card-preview {
  width: min(100%, 430px);
  aspect-ratio: 1.586 / 1;
  perspective: 1200px;
  margin-top: 24px;
  color: #ffffff;
}

.bank-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform .48s cubic-bezier(.2, .75, .25, 1);
}

.bank-card-preview.is-flipped .bank-card-inner {
  transform: rotateY(180deg);
}

.bank-card-face {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  box-shadow: 0 24px 54px rgba(22, 24, 32, .18);
  padding: 24px;
  overflow: hidden;
  backface-visibility: hidden;
}

.bank-card-front {
  background:
    radial-gradient(circle at 22% 34%, rgba(255, 194, 51, .2), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(255, 255, 255, .08), transparent 27%),
    linear-gradient(135deg, #151720, #1c2b47 58%, #10141f);
}

.bank-card-back {
  align-content: start;
  gap: 24px;
  background:
    radial-gradient(circle at 78% 88%, rgba(255, 194, 51, .16), transparent 32%),
    linear-gradient(135deg, #10141f, #1d2a43 62%, #151720);
  transform: rotateY(180deg);
}

.bank-card-preview.card-shake {
  animation: cardShake .36s ease;
}

.card-magnetic-line {
  height: 46px;
  margin: 8px -24px 2px;
  background: #08090d;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

.card-signature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 12px;
  align-items: center;
}

.card-signature-row span,
.card-signature-row strong {
  min-height: 42px;
  display: flex;
  align-items: center;
  border-radius: 8px;
}

.card-signature-row span {
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, .78) 0 8px, rgba(231, 222, 206, .78) 8px 16px);
}

.card-signature-row strong {
  justify-content: center;
  background: rgba(255, 255, 255, .92);
  color: #171717;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 18px;
  letter-spacing: 2px;
}

.bank-card-back p {
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

@keyframes cardShake {
  0%,
  100% {
    transform: translateX(0);
  }

  20% {
    transform: translateX(-8px) rotate(-.6deg);
  }

  40% {
    transform: translateX(8px) rotate(.6deg);
  }

  60% {
    transform: translateX(-5px) rotate(-.35deg);
  }

  80% {
    transform: translateX(5px) rotate(.35deg);
  }
}

.bank-card-top,
.bank-card-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 18px;
}

.card-chip {
  width: 48px;
  height: 34px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .12) 50%, transparent 0),
    linear-gradient(180deg, #ffe07a, #bd8a18);
  background-size: 50% 100%, 100% 100%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .26);
}

.card-brand {
  min-width: 76px;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  padding: 0 12px;
  color: rgba(255, 255, 255, .82);
  font-size: 12px;
  font-weight: 760;
}

.preview-card-number {
  margin-top: 26px;
  color: rgba(255, 255, 255, .82);
  font-family: "Consolas", "Courier New", monospace;
  font-size: clamp(18px, 1.85vw, 24px);
  line-height: 1.15;
  letter-spacing: 2px;
}

.bank-card-bottom span {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.bank-card-bottom strong {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, .92);
  font-size: 15px;
  font-weight: 760;
  letter-spacing: .02em;
  max-width: 230px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payment-form {
  width: min(100%, 560px);
}

.payment-card-row {
  display: grid;
  grid-template-columns: 220px 150px;
  gap: 14px;
  align-items: start;
}

.expiry-group {
  display: grid;
  gap: 8px;
}

.field-label {
  color: #322e27;
  font-size: 13px;
  font-weight: 720;
}

.expiry-inputs {
  height: 52px;
  display: grid;
  grid-template-columns: 74px 18px 74px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: #ffffff;
  color: var(--muted);
  padding: 0 10px;
  transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
}

.expiry-inputs:focus-within {
  border-color: #c7ae75;
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(255, 194, 51, .12);
}

.expiry-inputs input {
  height: 50px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 0 8px;
  text-align: center;
}

.expiry-inputs input:focus {
  outline: 0;
  box-shadow: none;
}

.cvc-field input {
  text-align: center;
}

.tabs {
  width: fit-content;
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #ffffff;
  padding: 6px;
  margin-top: 24px;
}

.tab {
  min-height: 40px;
  min-width: 118px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--muted);
  font-weight: 720;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.tab.active {
  background: #111111;
  color: #ffffff;
}

.tab:hover {
  transform: translateY(-1px);
  background: #fff6d8;
  color: #1a1712;
}

.tab.active:hover {
  background: #111111;
  color: #ffffff;
}

.summary-list,
.market-list,
.queue-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.summary-row,
.market-row {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  color: var(--muted);
  font-weight: 620;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.summary-row:hover,
.market-row:hover,
.queue-item:hover {
  transform: translateX(3px);
  border-color: #e4c36a;
  background: #fff9e8;
}

.summary-row strong,
.market-row strong {
  color: var(--text);
  font-weight: 740;
}

.payment-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  border-top: 1px solid var(--line);
  margin-top: 20px;
  padding-top: 22px;
}

.payment-total span {
  color: var(--muted);
  font-weight: 650;
}

.payment-total strong {
  font-size: 34px;
  font-weight: 760;
}

.form-alert-success {
  border-color: rgba(54, 179, 106, .28);
  background: #eefaf2;
  color: #185d34;
}

.payment-provider-box {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(255, 194, 51, .48);
  border-radius: 14px;
  background: #fff8df;
  padding: 18px;
}

.payment-provider-box strong {
  color: var(--text);
  font-size: 17px;
}

.payment-provider-box span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.account-layout {
  grid-template-columns: 244px minmax(0, 1fr);
  align-items: start;
}

.admin-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-top: 42px;
}

.admin-sidebar {
  display: grid;
  gap: 18px;
  position: sticky;
  top: 24px;
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

.admin-avatar {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #111111;
  color: #ffffff;
  font-weight: 760;
}

.admin-profile strong {
  display: block;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.admin-profile p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.admin-menu {
  position: static;
}

.admin-content {
  min-width: 0;
}

.admin-metrics {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.admin-status-tabs {
  width: fit-content;
  display: flex;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #ffffff;
  padding: 6px;
  margin-top: 22px;
}

.admin-status-tabs button {
  min-height: 40px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  padding: 0 16px;
  color: var(--muted);
  font-weight: 760;
  cursor: pointer;
  transition: transform .16s ease, background .16s ease, color .16s ease;
}

.admin-status-tabs button:hover {
  transform: translateY(-1px);
  background: #fff6d8;
  color: #1a1712;
}

.admin-status-tabs button.active {
  background: #111111;
  color: #ffffff;
}

.notification-table {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.notification-row {
  width: 100%;
  display: grid;
  grid-template-columns: 12px 86px minmax(180px, 1.2fr) minmax(150px, .9fr) 110px 62px;
  gap: 14px;
  align-items: center;
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf9;
  padding: 0 16px;
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}

.notification-row:hover,
.notification-row.active {
  transform: translateX(3px);
  border-color: #e8c761;
  background: #fff8df;
  box-shadow: var(--shadow-sm);
}

.notification-row strong {
  font-size: 14px;
}

.notification-row span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.32;
}

.notification-row time {
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.notification-detail-wrap {
  width: 100%;
}

.notification-detail-card {
  border: 1px solid #e8c761;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf9, #ffffff);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin: 2px 0 10px 30px;
}

.notification-detail-card.detail-enter {
  animation: detailReveal .24s ease both;
}

@keyframes detailReveal {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.notification-detail-card .account-actions {
  margin-top: 20px;
}

.compact-detail-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.api-key-list {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.api-key-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
}

.api-key-head h4 {
  margin: 0;
  font-size: 18px;
}

.api-key-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.api-key-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf9;
  padding: 14px;
}

.api-key-row span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.api-key-row strong {
  display: block;
  margin-top: 6px;
  font-family: "Consolas", "Courier New", monospace;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.api-key-row .btn {
  min-width: 132px;
}

.api-key-row .btn:disabled {
  cursor: not-allowed;
  opacity: .45;
  transform: none;
  box-shadow: none;
}

.notification-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 194, 51, .18);
  margin-top: 5px;
}

.muted-dot {
  background: #bdb5a8;
  box-shadow: 0 0 0 4px rgba(189, 181, 168, .14);
}

.empty-state {
  border: 1px dashed var(--line-strong);
  border-radius: 16px;
  background: #fffdf9;
  padding: 22px;
  color: var(--muted);
  font-weight: 680;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.admin-detail-grid > div {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf9;
  padding: 16px;
}

.admin-detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.admin-detail-grid strong {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  overflow-wrap: anywhere;
}

.admin-detail-grid p {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.side-menu {
  display: grid;
  gap: 6px;
  position: sticky;
  top: 24px;
}

.side-menu a {
  border-radius: 13px;
  padding: 13px 14px;
  color: #3b362f;
  font-weight: 700;
  transition: background .16s ease, color .16s ease, transform .16s ease;
}

.side-menu a.active {
  background: #111111;
  color: #ffffff;
}

.side-menu a:hover {
  transform: translateX(3px);
  background: #fff6d8;
  color: #1a1712;
}

.side-menu a.active:hover {
  background: #111111;
  color: #ffffff;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.subscription-grid {
  grid-template-columns: minmax(0, 1fr);
}

.account-content {
  min-width: 0;
}

.account-panel {
  display: none;
}

.account-panel.active {
  display: block;
}

.account-card.wide {
  grid-column: 1 / -1;
}

.settings-form .btn {
  width: fit-content;
}

.api-card .form-grid {
  margin-top: 22px;
}

.api-card .account-actions {
  margin-top: 6px;
}

.api-card .account-actions .btn {
  width: fit-content;
}

.api-card input[type="password"] {
  letter-spacing: .08em;
}

.history-table {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.history-row {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 120px 120px;
  gap: 14px;
  align-items: center;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf9;
  padding: 0 16px;
  color: var(--muted);
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.history-row:hover {
  transform: translateX(3px);
  border-color: #e4c36a;
  background: #fff9e8;
}

.history-row strong {
  color: var(--green);
}

.client-row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(130px, .8fr) minmax(190px, 1.2fr) 120px;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fffdf9;
  padding: 0 18px;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.clients-card .history-table {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

button.client-row {
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
}

.client-row:hover,
.client-row.active {
  transform: translateX(3px);
  border-color: #e4c36a;
  background: #fff9e8;
  box-shadow: var(--shadow-sm);
}

.client-row-name,
.client-row span:first-child {
  color: #141414;
  font-weight: 800;
}

.client-row strong {
  color: var(--green);
  text-align: right;
  white-space: nowrap;
}

.client-detail-card {
  border: 1px solid #e8c761;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffdf9, #ffffff);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  margin: 4px 0 16px 28px;
  overflow: hidden;
}

.client-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.client-detail-head span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.client-detail-head h4 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.1;
}

.client-detail-head strong {
  border-radius: 999px;
  background: #eaf7ef;
  color: var(--green);
  padding: 9px 12px;
  font-size: 13px;
  white-space: nowrap;
}

.client-request-list {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.client-request-row {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 90px 120px;
  gap: 12px;
  align-items: center;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fffdf9;
  padding: 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.client-request-row span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.client-request-row strong {
  color: var(--green);
}

.client-request-head {
  min-height: 36px;
  background: transparent;
  color: #332f28;
  font-size: 13px;
  font-weight: 800;
}

.history-head {
  min-height: 42px;
  background: transparent;
  color: #332f28;
  font-size: 13px;
  font-weight: 700;
}

.account-headline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
}

.status-chip {
  background: #eaf7ef;
  color: var(--green);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fffdf9;
  padding: 18px;
}

.metric-card strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  font-weight: 760;
}

.metric-card span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.account-actions,
.card-actions {
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.queue-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  transition: transform .16s ease, border-color .16s ease, background .16s ease;
}

.queue-score {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--accent);
  font-weight: 760;
}

.queue-item p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.queue-chip {
  background: var(--surface-soft);
  color: #4d473d;
}

.docs-layout {
  grid-template-columns: 330px minmax(0, 1fr);
  align-items: start;
}

.docs-note {
  border-radius: 24px;
  background: linear-gradient(180deg, #171717, #262017);
  color: #ffffff;
  padding: 26px;
}

.docs-note p {
  margin-top: 12px;
  color: #ded8ce;
  line-height: 1.56;
}

.docs-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.docs-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
}

.docs-card .btn {
  width: fit-content;
  margin-top: auto;
}

.cta-panel {
  margin-top: 88px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  background: #111111;
  border-color: #111111;
  color: #ffffff;
}

.cta-panel p {
  color: #ded8ce;
}

.cta-panel h2,
.cta-panel p {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {
  .site-shell {
    width: min(calc(100% - 32px), 720px);
    padding-top: 18px;
  }

  .site-nav,
  .hero,
  .hero-stats,
  .preview-body,
  .signal-row,
  .feature-grid,
  .features-head,
  .features-system,
  .workflow,
  .split,
  .blog-grid,
  .auth-layout,
  .auth-facts,
  .pricing-grid,
  .payment-layout,
  .admin-layout,
  .admin-grid,
  .account-layout,
  .account-grid,
  .metric-row,
  .docs-layout,
  .docs-grid,
  .form-row,
  .cta-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .features-showcase {
    padding-top: 56px;
  }

  .features-head {
    gap: 18px;
    margin-bottom: 22px;
  }

  .features-copy-card,
  .features-visual-card {
    border-radius: 22px;
    padding: 24px;
  }

  .features-visual-card {
    min-height: auto;
  }

  .features-visual-card::before,
  .mini-process-dot {
    display: none;
  }

  .mini-review-card,
  .mini-answer-card {
    margin-top: 18px;
  }

  .market-mini-tabs {
    width: 100%;
    justify-content: space-between;
    gap: 6px;
  }

  .market-mini-tabs span {
    padding: 6px;
    font-size: 12px;
  }

  .work-rail {
    padding-top: 42px;
  }

  .work-rail-head {
    margin-bottom: 28px;
  }

  .work-rail-list::before {
    left: 24px;
    top: 36px;
    bottom: 36px;
  }

  .work-step,
  .work-step.reverse {
    min-height: auto;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 18px;
    padding: 26px 0;
  }

  .work-step .work-ghost,
  .work-step.reverse .work-ghost {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 92px;
    justify-self: start;
    opacity: .82;
  }

  .work-ghost span {
    font-size: 88px;
    letter-spacing: -3px;
  }

  .work-ghost i {
    width: 48px;
    height: 48px;
    border-radius: 15px;
  }

  .work-step .work-dot,
  .work-step.reverse .work-dot {
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
    align-self: start;
    margin-top: 8px;
  }

  .work-step .work-copy,
  .work-step.reverse .work-copy {
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    max-width: none;
  }

  .site-nav {
    gap: 16px;
    padding: 14px;
  }

  .nav-links,
  .nav-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    gap: 34px;
    padding-top: 46px;
  }

  .hero-copy,
  .product-preview,
  .hero-actions,
  .hero-stats {
    width: 100%;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(34px, 9.1vw, 46px);
    line-height: 1.1;
    overflow-wrap: anywhere;
  }

  h1,
  h2,
  h3,
  p,
  .btn,
  .price,
  .preview-footer span {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }

  .eyebrow {
    align-items: flex-start;
  }

  .section {
    padding-top: 78px;
  }

  .workflow,
  .split {
    margin-top: 72px;
  }

  .queue-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .queue-chip {
    width: fit-content;
    grid-column: 2;
  }

  .history-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 14px;
  }

  .client-row,
  .client-request-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
    padding: 14px;
  }

  .client-detail-card {
    margin-left: 0;
    padding: 18px;
  }

  .history-head {
    display: none;
  }

  .client-request-head {
    display: none;
  }

  .settings-form .btn {
    width: 100%;
  }

  .admin-sidebar {
    position: static;
  }

  .admin-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .compact-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .api-key-head,
  .api-key-row {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr);
  }

  .api-key-head {
    display: grid;
  }

  .api-key-row .btn {
    width: 100%;
  }

  .admin-status-tabs {
    width: 100%;
    flex-wrap: wrap;
  }

  .admin-status-tabs button {
    flex: 1 1 140px;
  }

  .notification-row {
    grid-template-columns: 12px minmax(0, 1fr) auto;
    min-height: auto;
    padding: 14px;
  }

  .notification-row strong {
    grid-column: 2;
  }

  .notification-row span {
    grid-column: 2 / -1;
  }

  .notification-row time {
    grid-column: 3;
    grid-row: 1;
  }

  .notification-detail-card {
    margin-left: 0;
    padding: 18px;
  }

  .bank-card-preview {
    padding: 20px;
  }

  .payment-card-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .cvc-field {
    width: 150px;
  }

  .side-menu {
    position: static;
  }
}

/* Landing refresh from current ЗакупИТ concept */
.tariff-showcase .section-subtitle {
  max-width: 760px;
}

.pricing-benefits {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin: 26px 0 30px;
  color: #2f2a21;
  font-weight: 700;
}

.pricing-benefits span {
  position: relative;
  padding-left: 32px;
}

.pricing-benefits span::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #111;
  transform: translateY(-50%);
  font-size: 13px;
}

.price-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.price-label.filled {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
}

.pricing-note {
  margin-top: 24px;
  color: var(--muted);
  text-align: center;
}

.tariff-showcase {
  text-align: left;
}

.tariff-showcase .section-kicker,
.tariff-showcase > h2,
.tariff-showcase .section-subtitle,
.tariff-showcase .pricing-note {
  text-align: center;
}

.tariff-showcase > h2 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tariff-showcase .section-subtitle {
  max-width: 680px;
}

.tariff-showcase .pricing-benefits {
  margin-bottom: 36px;
}

.tariff-showcase .home-pricing {
  gap: 30px;
  align-items: stretch;
}

.tariff-showcase .price-card {
  min-height: 0;
  padding: 32px;
  border-radius: 22px;
  text-align: left;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 56px rgba(33, 27, 18, .06);
}

.tariff-showcase .price-card.featured {
  background: linear-gradient(180deg, #fff9e7 0%, #ffffff 64%);
  border-color: #efc84c;
}

.tariff-showcase .price-topline {
  margin-bottom: 26px;
}

.tariff-showcase .price-label {
  padding: 7px 13px;
}

.tariff-showcase .price-card h2 {
  max-width: 430px;
  margin-top: 0;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.12;
}

.tariff-showcase .price-card p {
  max-width: 490px;
  min-height: 54px;
  margin-top: 14px;
}

.tariff-showcase .price {
  margin-top: 28px;
  font-size: clamp(34px, 4vw, 48px);
}

.tariff-showcase .check-list {
  gap: 12px;
  margin: 28px 0 34px;
}

.tariff-showcase .check-list li {
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 12px;
  font-weight: 650;
}

.tariff-showcase .check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: .55em;
  border: 5px solid #fff3c9;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: none;
}

.tariff-showcase .price-card .btn {
  margin-top: auto;
}

/* zakypit pricing periods */
.tariff-showcase .billing-options {
  display: grid;
  gap: 10px;
  margin: 22px 0 4px;
}

.tariff-showcase .billing-option {
  display: grid;
  grid-template-columns: minmax(110px, 1fr) auto;
  gap: 4px 14px;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.tariff-showcase .billing-option span {
  font-weight: 800;
  color: var(--text);
}

.tariff-showcase .billing-option strong {
  font-size: 20px;
  line-height: 1.1;
  color: var(--text);
}

.tariff-showcase .billing-option small {
  color: var(--muted);
  font-weight: 700;
}

.tariff-showcase .billing-option em {
  justify-self: end;
  font-style: normal;
  font-weight: 800;
  color: #b87900;
}

@media (max-width: 640px) {
  .tariff-showcase .billing-option {
    grid-template-columns: 1fr;
  }

  .tariff-showcase .billing-option em {
    justify-self: start;
  }
}

.about-story {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 62px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: 96px;
  padding: 66px 0;
}

.about-copy h2 {
  margin-top: 18px;
  font-size: clamp(34px, 3.6vw, 50px);
  line-height: 1.08;
  font-weight: 740;
}

.about-copy p {
  max-width: 560px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.about-points {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.about-points div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-points span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--accent);
  font-size: 12px;
  font-weight: 800;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.api-note {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 650;
}

.api-note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #36b36a;
  transform: translateY(-50%);
}

.about-flow {
  position: relative;
  min-height: 520px;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: 20px 0;
}

.about-market-tabs,
.about-review-card,
.about-answer-card,
.about-route {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--shadow-sm);
}

.about-market-tabs {
  justify-self: end;
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px 18px;
}

.about-market-tabs span {
  min-width: 56px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 760;
}

.about-market-tabs .active {
  border: 1px solid #f1d375;
  color: #111;
  background: #fff9e8;
}

.about-market-tabs span:nth-child(4),
.about-market-tabs span:nth-child(5) {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ef7658;
}

.about-market-tabs span:nth-child(5) {
  background: #61bd78;
}

.about-review-card,
.about-answer-card {
  width: min(420px, 100%);
  padding: 22px;
}

.about-review-card {
  justify-self: center;
}

.about-review-card span,
.about-answer-card span {
  display: inline-flex;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #fff7dd;
  padding: 6px 12px;
  color: #6e540b;
  font-size: 12px;
  font-weight: 760;
}

.about-review-card h3 {
  font-size: 18px;
}

.stars {
  margin: 8px 0 10px;
  color: #ffc32c;
  letter-spacing: 2px;
}

.about-review-card p,
.about-answer-card p {
  color: #242424;
  line-height: 1.48;
}

.about-orbit {
  justify-self: center;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px dashed #9fb3ee;
  border-radius: 50%;
  color: #7f95db;
  background: #fff;
}

.about-answer-card {
  justify-self: end;
}

.answer-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.answer-actions button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  padding: 0 16px;
  font-weight: 700;
}

.answer-actions button:last-child {
  border-color: var(--accent);
  background: var(--accent);
}

.about-route {
  justify-self: end;
  padding: 10px 18px;
  color: #4f493f;
  font-weight: 700;
}

.field-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.field-row a,
.auth-links a {
  color: #2b2b2b;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 700;
}

.icon-fact::before {
  content: "";
  width: 34px;
  height: 34px;
  display: block;
  margin-bottom: 12px;
  border: 2px solid var(--accent);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(255, 196, 46, .28), rgba(255, 255, 255, .8));
}

@media (max-width: 900px) {
  .about-story {
    grid-template-columns: 1fr;
  }

  .about-flow {
    min-height: auto;
  }

  .about-market-tabs,
  .about-answer-card,
  .about-route {
    justify-self: stretch;
  }
}
/* Polished about visual */
.about-flow-polished {
  width: min(560px, 100%);
  justify-self: end;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  justify-items: center;
  gap: 18px;
  padding: 18px 0;
}

.about-flow-polished::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 96px;
  bottom: 74px;
  border-left: 2px dotted #d9d0c2;
  transform: translateX(-50%);
  z-index: 0;
}

.about-flow-polished > * {
  position: relative;
  z-index: 1;
}

.about-flow-polished .about-market-tabs {
  width: 430px;
  max-width: 100%;
  justify-self: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 18px;
}

.about-flow-polished .about-market-tabs span {
  min-width: 76px;
  height: 58px;
  display: grid;
  grid-template-rows: 22px auto;
  place-items: center;
  gap: 4px;
  color: #5f584e;
  font-size: 13px;
  line-height: 1;
}

.about-flow-polished .about-market-tabs span i {
  width: 22px;
  height: 22px;
  display: block;
  border-radius: 50%;
  background: #ffc32c;
}

.about-flow-polished .about-market-tabs span:nth-child(2) i {
  background: #5d86e8;
}

.about-flow-polished .about-market-tabs span:nth-child(3) i {
  background: #8e68dd;
}

.about-flow-polished .about-market-tabs button {
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f6f2eb;
  position: relative;
  cursor: pointer;
}

.about-flow-polished .about-market-tabs button::before {
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2px solid #6d665b;
  border-bottom: 2px solid #6d665b;
  position: absolute;
  left: 14px;
  top: 12px;
  transform: rotate(45deg);
}

.about-flow-polished .flow-thread {
  height: 28px;
  display: grid;
  place-items: center;
  gap: 4px;
}

.about-flow-polished .flow-thread span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc32c;
}

.about-flow-polished .about-review-card,
.about-flow-polished .about-answer-card {
  width: 430px;
  max-width: 100%;
  padding: 20px 22px;
  justify-self: center;
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(44, 35, 18, .09);
}

.about-flow-polished .mini-label,
.about-flow-polished .answer-status span {
  display: inline-flex;
  width: max-content;
  margin: 0 0 12px;
  border-radius: 999px;
  background: #fff7dd;
  color: #6e540b;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 760;
}

.about-flow-polished .review-head {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
}

.about-flow-polished .avatar {
  width: 52px;
  height: 52px;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #efeae2;
}

.about-flow-polished .about-review-card h3 {
  margin: 0;
  font-size: 17px;
}

.about-flow-polished .stars {
  margin: 6px 0 0;
  color: #ffc32c;
  letter-spacing: 1px;
  font-size: 17px;
}

.about-flow-polished .about-review-card p,
.about-flow-polished .about-answer-card p {
  margin-top: 16px;
  color: #242424;
  font-size: 15px;
  line-height: 1.45;
}

.about-flow-polished .about-orbit {
  width: 64px;
  height: 64px;
  color: #7f95db;
  background: #fff;
  box-shadow: 0 8px 22px rgba(90, 111, 200, .12);
}

.about-flow-polished .answer-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-flow-polished .answer-status i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #61bd78;
  position: relative;
}

.about-flow-polished .answer-status i::after {
  content: "";
  width: 9px;
  height: 5px;
  position: absolute;
  left: 7px;
  top: 8px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.about-flow-polished .answer-actions {
  justify-content: flex-end;
}

.about-flow-polished .about-route {
  justify-self: center;
  border-radius: 12px;
  padding: 10px 20px;
  background: #fff;
}

@media (max-width: 900px) {
  .about-flow-polished {
    width: 100%;
    min-height: auto;
    justify-self: stretch;
  }

  .about-flow-polished::before {
    display: none;
  }

  .about-flow-polished .about-market-tabs,
  .about-flow-polished .about-review-card,
  .about-flow-polished .about-answer-card {
    width: 100%;
  }
}
/* Animated about marketplace flow */
.about-flow-polished {
  width: min(520px, 100%);
  min-height: 500px;
  gap: 14px;
  padding: 8px 0 0;
}

.about-flow-polished::before {
  top: 82px;
  bottom: 60px;
  border-left-color: #e2d7c9;
}

.about-flow-polished .about-market-tabs.about-market-switcher {
  width: 420px;
  gap: 10px;
  justify-content: center;
  padding: 12px;
}

.about-flow-polished .about-market-tab {
  min-width: 118px;
  height: 72px;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  padding: 10px 12px;
  color: #4f493f;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.about-flow-polished .about-market-tab:hover {
  transform: translateY(-2px);
  background: #fffaf0;
  border-color: #f2d891;
}

.about-flow-polished .about-market-tab.active {
  background: #fff8df;
  border-color: #f4c84a;
  box-shadow: 0 10px 24px rgba(255, 195, 44, .18);
}

.about-flow-polished .about-market-tab img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
}

.about-flow-polished .about-market-tab span {
  min-width: 0;
  height: auto;
  display: block;
  color: inherit;
  font-size: inherit;
  line-height: 1.1;
}

.about-flow-polished .about-market-tabs span:nth-child(4),
.about-flow-polished .about-market-tabs span:nth-child(5) {
  min-width: 0;
  height: auto;
  background: transparent;
}

.about-flow-polished .about-market-tabs button::before,
.about-flow-polished .about-market-tabs span i {
  display: none;
}

.about-flow-polished .flow-thread {
  height: 36px;
  opacity: .32;
}

.about-flow-polished.is-playing .flow-thread span {
  animation: dotTravel .9s ease both;
}

.about-flow-polished.is-playing .flow-thread span:nth-child(2) { animation-delay: .12s; }
.about-flow-polished.is-playing .flow-thread span:nth-child(3) { animation-delay: .24s; }
.about-flow-polished.is-playing .flow-thread span:nth-child(4) { animation-delay: .36s; }

.about-flow-polished .about-review-card,
.about-flow-polished .about-answer-card {
  width: 420px;
  padding: 18px 20px;
}

.about-flow-polished .about-review-card {
  transform-origin: top center;
}

.about-flow-polished .about-answer-card {
  transform-origin: top center;
}

.about-flow-polished.is-playing .about-review-card {
  animation: cardIn .48s cubic-bezier(.2,.8,.2,1) .45s both;
}

.about-flow-polished.is-playing .about-orbit {
  animation: orbitPulse .88s ease .82s both;
}

.about-flow-polished.is-playing .about-answer-card {
  animation: cardIn .48s cubic-bezier(.2,.8,.2,1) 1.18s both;
}

.about-flow-polished.is-playing .about-route {
  animation: routeIn .4s ease 1.45s both;
}

.about-flow-polished .mini-label,
.about-flow-polished .answer-status span {
  margin-bottom: 10px;
  padding: 5px 11px;
}

.about-flow-polished .review-head {
  grid-template-columns: 46px 1fr;
}

.about-flow-polished .avatar {
  width: 46px;
  height: 46px;
}

.about-flow-polished .about-review-card h3 {
  font-size: 16px;
}

.about-flow-polished .stars {
  font-size: 15px;
}

.about-flow-polished .about-review-card p,
.about-flow-polished .about-answer-card p {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.42;
}

.about-flow-polished .about-orbit {
  width: 56px;
  height: 56px;
  overflow: visible;
}

.about-flow-polished .about-orbit span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.about-flow-polished .about-orbit::after {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px dashed #9fb3ee;
  border-radius: 50%;
}

.about-flow-polished .answer-actions {
  display: none;
}

.about-flow-polished .about-route {
  padding: 9px 18px;
  font-size: 14px;
}

@keyframes dotTravel {
  0% { transform: translateY(-12px) scale(.7); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translateY(12px) scale(1); opacity: 1; }
}

@keyframes cardIn {
  0% { opacity: 0; transform: translateY(18px) scale(.98); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes orbitPulse {
  0% { opacity: 0; transform: scale(.65) rotate(-18deg); }
  50% { opacity: 1; transform: scale(1.12) rotate(10deg); box-shadow: 0 0 0 12px rgba(127,149,219,.10); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes routeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .about-flow-polished .about-market-tabs.about-market-switcher,
  .about-flow-polished .about-review-card,
  .about-flow-polished .about-answer-card {
    width: 100%;
  }

  .about-flow-polished .about-market-tabs.about-market-switcher {
    overflow-x: auto;
    justify-content: flex-start;
  }
}

/* Final about-flow alignment */
@property --orbit-fill {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.about-flow-polished::before {
  display: none;
}

.about-flow-polished .about-market-tabs.about-market-switcher {
  width: 420px;
  min-height: 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: center;
  justify-items: center;
  padding: 12px 18px;
}

.about-flow-polished .about-market-tab {
  width: 100%;
  min-width: 0;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.about-flow-polished .about-market-tab:hover,
.about-flow-polished .about-market-tab.active {
  background: transparent;
  box-shadow: none;
  transform: translateY(-1px);
}

.about-flow-polished .about-market-tab.active {
  border-color: #f4c84a;
}

.about-flow-polished .about-market-tab img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  filter: none;
}

.about-flow-polished .about-market-tab span {
  min-width: 0;
  height: auto;
  display: block;
  font-size: 14px;
  line-height: 1;
}

.about-flow-polished .flow-thread {
  width: 10px;
  height: 34px;
  display: grid;
  place-items: center;
  gap: 4px;
  justify-self: center;
  opacity: 1;
}

.about-flow-polished .flow-thread span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffc32c;
  box-shadow: 0 0 0 3px rgba(255, 195, 44, .16);
}

.about-flow-polished.is-playing .flow-thread span {
  animation: yellowDotDrop .62s ease both;
}

.about-flow-polished.is-playing .flow-thread span:nth-child(2) { animation-delay: .1s; }
.about-flow-polished.is-playing .flow-thread span:nth-child(3) { animation-delay: .2s; }
.about-flow-polished.is-playing .flow-thread span:nth-child(4) { animation-delay: .3s; }

.about-flow-polished .about-orbit {
  --orbit-fill: 0deg;
  width: 62px;
  height: 62px;
  border: 0;
  border-radius: 50%;
  background:
    conic-gradient(#8ea8ff var(--orbit-fill), rgba(142, 168, 255, .14) 0),
    #fff;
  box-shadow: 0 10px 26px rgba(90, 111, 200, .08);
  padding: 2px;
  color: #7f95db;
}

.about-flow-polished .about-orbit::after {
  display: none;
}

.about-flow-polished .about-orbit span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  transform: scale(.72);
}

.about-flow-polished.is-playing .about-orbit {
  animation: orbitFill .95s ease .78s both;
}

.about-flow-polished.is-playing .about-orbit span {
  animation: orbitCore .38s ease .78s both;
}

@keyframes yellowDotDrop {
  0% { transform: translateY(-8px) scale(.74); opacity: 0; }
  45% { opacity: 1; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

@keyframes orbitCore {
  0% { opacity: 0; transform: scale(.28); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes orbitFill {
  0%, 32% { --orbit-fill: 0deg; opacity: 1; transform: scale(.92); }
  100% { --orbit-fill: 360deg; opacity: 1; transform: scale(1); }
}

/* Icon-only marketplace tabs */
.about-flow-polished .about-market-tabs.about-market-switcher {
  width: 260px;
  min-height: 72px;
  grid-template-columns: repeat(3, 54px);
  justify-content: center;
  gap: 22px;
}

.about-flow-polished .about-market-tab,
.about-flow-polished .about-market-tab:hover,
.about-flow-polished .about-market-tab.active {
  width: 54px;
  height: 54px;
  border: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.about-flow-polished .about-market-tab img {
  width: 38px;
  height: 38px;
}

.about-flow-polished .about-market-tab span {
  display: none;
}
/* Final hero reference mockup */
.product-preview{background:transparent!important;border:0!important;box-shadow:none!important;padding:0!important;perspective:none!important}
.product-preview:hover{transform:none!important}
.preview-window{overflow:visible!important;border:0!important;border-radius:0!important;background:transparent!important;box-shadow:none!important;backdrop-filter:none!important}
.preview-window:before,.window-bar{display:none!important}
.preview-body{display:grid!important;grid-template-columns:1fr!important;gap:18px!important;padding:0!important;background:transparent!important}
.preview-sidebar{display:flex!important;flex-direction:row!important;align-items:center!important;gap:12px!important;margin:0 0 6px!important;padding:0!important;background:transparent!important;border:0!important;box-shadow:none!important}
.market-chip{width:58px!important;height:42px!important;min-height:42px!important;display:grid!important;place-items:center!important;padding:0!important;border:1px solid rgba(220,210,193,.9)!important;border-radius:999px!important;background:rgba(255,255,255,.82)!important;box-shadow:0 10px 24px rgba(42,32,14,.05)!important}
.market-chip.active{background:#111!important;border-color:#111!important;box-shadow:0 14px 28px rgba(0,0,0,.12)!important}
.market-chip:hover{transform:translateY(-1px)!important;background:#fffdf7!important}
.market-chip.active:hover{background:#111!important}
.market-chip img{width:28px!important;height:28px!important;object-fit:contain!important;border-radius:8px!important}
.market-chip span{display:none!important}
.reply-panel{display:grid!important;gap:16px!important;padding:0!important;border:0!important;background:transparent!important;box-shadow:none!important}
.review-card,.answer-card{border:1px solid rgba(224,211,189,.72)!important;border-radius:20px!important;background:rgba(255,255,255,.84)!important;box-shadow:0 18px 46px rgba(42,32,14,.08)!important}
.review-card{padding:22px!important}
.customer-card{display:grid!important;grid-template-columns:44px minmax(0,1fr)!important;gap:16px!important;align-items:start!important;padding:0!important;border:0!important;background:transparent!important}
.customer-card:hover{transform:none!important;background:transparent!important;border-color:transparent!important}
.avatar-icon{width:44px!important;height:44px!important;display:grid!important;place-items:center!important;border-radius:50%!important;background:#f0ece4!important;border:0!important;box-shadow:none!important;color:#111!important;font-size:17px!important;font-weight:800!important}
.buyer-line{display:flex!important;align-items:center!important;gap:8px!important;min-width:0!important}
.buyer-line strong{font-size:16px!important;line-height:1.2!important;color:#111!important}
.buyer-line .stars{margin:0!important;color:#f5a51c!important;letter-spacing:2px!important;font-size:13px!important;line-height:1!important;white-space:nowrap!important}
.product-line{display:none!important}
.customer-card p{margin:10px 0 0!important;color:#6f6659!important;font-size:16px!important;line-height:1.5!important}
.generation-status{justify-self:start;display:inline-flex!important;align-items:center!important;gap:8px!important;min-height:34px!important;border-radius:999px!important;background:#fff2d8!important;padding:0 14px!important;color:#b66f00!important;font-size:14px!important;font-weight:760!important}
.generation-status span{width:8px!important;height:8px!important;border-radius:50%!important;background:#f5a51c!important}
.generation-status b{font:inherit!important}
.answer-card{padding:24px!important;background:linear-gradient(90deg,rgba(255,255,255,.9) 0%,rgba(255,255,255,.9) 82%,rgba(255,246,230,.92) 82%,rgba(255,246,230,.92) 100%)!important;border-color:rgba(255,190,71,.7)!important}
.answer-card small{display:flex!important;align-items:center!important;gap:12px!important;margin:0 0 16px!important;color:#111!important;font-size:16px!important;font-weight:800!important}
.answer-card small span{width:34px!important;height:34px!important;display:grid!important;place-items:center!important;border-radius:50%!important;background:#f5a51c!important;color:#fff!important;font-size:18px!important}
.answer-card p{margin:0!important;color:#6f6659!important;font-size:16px!important;line-height:1.55!important}
.answer-ready{display:none!important}
.preview-footer{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:16px!important;margin:8px 0 0!important;padding:0!important;border:0!important;background:transparent!important;color:#111!important}
.preview-footer div{min-height:88px!important;display:grid!important;place-items:center!important;align-content:center!important;border:1px solid rgba(224,211,189,.72)!important;border-radius:18px!important;background:rgba(255,255,255,.84)!important;box-shadow:0 14px 36px rgba(42,32,14,.06)!important}
.preview-footer strong{display:block!important;color:#111!important;font-size:26px!important;line-height:1!important;font-weight:900!important}
.preview-footer span{display:block!important;margin-top:8px!important;color:#6f6659!important;font-size:14px!important;line-height:1.2!important;text-align:center!important}
.rating,.reply-head{display:none!important}
@media(max-width:980px){.preview-sidebar{justify-content:center!important}.preview-footer{grid-template-columns:1fr 1fr!important}}
@media(max-width:620px){.market-chip{width:52px!important;height:40px!important}.review-card,.answer-card{padding:18px!important}.preview-footer{grid-template-columns:1fr!important}.customer-card p,.answer-card p{font-size:14px!important}}
/* Final hero animation polish */
.product-preview .preview-sidebar{gap:14px!important;align-items:center!important}
.product-preview .market-chip{width:72px!important;height:52px!important;min-height:52px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;overflow:hidden!important;line-height:0!important}
.product-preview .market-chip img{display:block!important;width:38px!important;height:38px!important;max-width:none!important;max-height:none!important;object-fit:contain!important;object-position:center center!important;margin:auto!important;transform:translateZ(0) scale(1.08)!important;transform-origin:center!important}
.product-preview .market-chip.active img{filter:none!important}
.product-preview .market-chip[data-market="ozon"] img{width:40px!important;height:40px!important}
.product-preview .market-chip[data-market="wb"] img{width:36px!important;height:36px!important}
.product-preview .market-chip[data-market="ym"] img{width:39px!important;height:39px!important}
.product-preview .preview-footer div{align-content:center!important;gap:0!important}
.product-preview .preview-footer strong{font-size:25px!important;font-weight:720!important;letter-spacing:0!important;color:#171717!important}
.product-preview .preview-footer span{margin-top:7px!important;color:var(--muted)!important;font-size:14px!important;font-weight:520!important;line-height:1.25!important}
.product-preview.is-sequencing .review-card,
.product-preview.is-sequencing .generation-status,
.product-preview.is-sequencing .answer-card,
.product-preview.is-sequencing .preview-footer{opacity:0!important;transform:translateY(12px)!important;transition:opacity .28s ease,transform .28s ease!important}
.product-preview.is-sequencing .review-card.is-visible,
.product-preview.is-sequencing .generation-status.is-visible,
.product-preview.is-sequencing .answer-card.is-visible,
.product-preview.is-sequencing .preview-footer.is-visible{opacity:1!important;transform:translateY(0)!important}
.product-preview [data-preview-question],
.product-preview [data-preview-answer]{min-height:calc(1em * 1.5 * 2)!important}
.product-preview [data-preview-question].is-typing::after,
.product-preview [data-preview-answer].is-typing::after{content:"";display:inline-block;width:2px;height:1em;margin-left:3px;background:#f5a51c;vertical-align:-.14em;animation:previewCaret .72s steps(1,end) infinite}
.product-preview .generation-status.is-visible span{animation:previewPulse .72s ease-in-out infinite alternate}
@keyframes previewCaret{50%{opacity:0}}
@keyframes previewPulse{from{transform:scale(.75);opacity:.65}to{transform:scale(1);opacity:1}}
@media(max-width:620px){.product-preview .market-chip{width:62px!important;height:46px!important;min-height:46px!important}.product-preview .market-chip img{width:34px!important;height:34px!important}.product-preview .preview-footer strong{font-size:24px!important;font-weight:700!important}.product-preview .preview-footer span{font-weight:500!important}}
/* Final hero icon and answer cleanup */
.product-preview .preview-sidebar{justify-content:flex-start!important;gap:18px!important}
.product-preview .market-chip{width:72px!important;height:52px!important;min-height:52px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;border:0!important;outline:0!important;background:transparent!important;box-shadow:none!important;overflow:visible!important}
.product-preview .market-chip.active{background:#111!important;border:0!important;box-shadow:0 14px 28px rgba(0,0,0,.12)!important}
.product-preview .market-chip:hover{background:transparent!important;box-shadow:none!important;transform:translateY(-1px)!important}
.product-preview .market-chip.active:hover{background:#111!important;box-shadow:0 14px 28px rgba(0,0,0,.12)!important}
.product-preview .market-chip img{display:block!important;margin:auto!important;object-fit:contain!important;object-position:center!important;transform:none!important}
.product-preview .market-chip[data-market="ozon"] img{width:42px!important;height:42px!important}
.product-preview .market-chip[data-market="wb"] img{width:40px!important;height:40px!important}
.product-preview .market-chip[data-market="ym"] img{width:42px!important;height:42px!important}
.product-preview .answer-card{background:rgba(255,255,255,.9)!important;background-image:none!important;border-color:rgba(255,190,71,.68)!important}
@media(max-width:620px){.product-preview .preview-sidebar{justify-content:center!important;gap:14px!important}.product-preview .market-chip{width:62px!important;height:46px!important;min-height:46px!important}.product-preview .market-chip[data-market="ozon"] img,.product-preview .market-chip[data-market="ym"] img{width:36px!important;height:36px!important}.product-preview .market-chip[data-market="wb"] img{width:35px!important;height:35px!important}}
/* Final marketplace row and rating states */
.product-preview .preview-sidebar{width:100%!important;display:flex!important;justify-content:space-between!important;align-items:center!important;gap:0!important;margin:0 0 22px!important;padding:0 24px!important;box-sizing:border-box!important}
.product-preview .market-chip,
.product-preview .market-chip.active,
.product-preview .market-chip:hover,
.product-preview .market-chip.active:hover{width:72px!important;height:52px!important;min-height:52px!important;display:flex!important;align-items:center!important;justify-content:center!important;padding:0!important;border:0!important;outline:0!important;background:transparent!important;box-shadow:none!important;overflow:visible!important;line-height:0!important;transform:none!important}
.product-preview .market-chip img{display:block!important;margin:auto!important;object-fit:contain!important;object-position:center!important;transform:none!important;filter:none!important}
.product-preview .market-chip[data-market="ozon"] img{width:42px!important;height:42px!important}
.product-preview .market-chip[data-market="wb"] img{width:40px!important;height:40px!important}
.product-preview .market-chip[data-market="ym"] img{width:42px!important;height:42px!important}
.product-preview[data-preview-kind="question"] .stars,
.product-preview[data-preview-kind="chat"] .stars{display:none!important}
.product-preview[data-preview-kind="question"] .buyer-line,
.product-preview[data-preview-kind="chat"] .buyer-line{gap:0!important}
@media(max-width:620px){.product-preview .preview-sidebar{justify-content:space-between!important;padding:0 28px!important;margin-bottom:18px!important}.product-preview .market-chip,.product-preview .market-chip.active,.product-preview .market-chip:hover,.product-preview .market-chip.active:hover{width:54px!important;height:46px!important;min-height:46px!important}.product-preview .market-chip[data-market="ozon"] img,.product-preview .market-chip[data-market="ym"] img{width:36px!important;height:36px!important}.product-preview .market-chip[data-market="wb"] img{width:35px!important;height:35px!important}}
/* Final carousel-controlled hero */
.hero{align-items:start!important}
.hero-copy{padding-top:0!important}
.product-preview{margin-top:10px!important;align-self:start!important}
.product-preview .preview-sidebar{display:none!important}
.hero-stats,.trial-note{display:none!important}
.marketplace-logo[data-market]{cursor:pointer;user-select:none;transition:transform .18s ease,opacity .18s ease,filter .18s ease}
.marketplace-logo[data-market]:hover{transform:translateY(-2px) scale(1.04)}
.marketplace-logo[data-market].is-selected img{filter:saturate(1.08) contrast(1.04)!important;transform:scale(1.08)!important}
.marketplace-logo[data-market]:focus-visible{outline:2px solid rgba(245,165,28,.75);outline-offset:6px;border-radius:14px}
@media(max-width:980px){.product-preview{margin-top:0!important}.hero{align-items:stretch!important}}
/* Final clickable carousel behavior */
.marketplace-carousel:hover .carousel-track{animation-play-state:paused!important}
.marketplace-carousel.is-click-resuming .carousel-track{animation-play-state:running!important}
.marketplace-logo[data-market]{pointer-events:auto!important}
.marketplace-logo[data-market] img{pointer-events:none!important}
/* Final hero height and next-section spacing */
.hero{min-height:560px!important;gap:82px!important;padding-bottom:0!important}
.product-preview{margin-top:0!important}
.product-preview .reply-panel{gap:23px!important}
.product-preview .review-card{padding:24px 28px!important}
.product-preview .answer-card{padding:27px 30px!important}
.product-preview .preview-footer{margin-top:0!important}
.product-preview .preview-footer div{min-height:100px!important}
.work-rail{padding-top:18px!important}
.work-rail-head{margin-bottom:44px!important}
@media(max-width:980px){.hero{min-height:auto!important;gap:36px!important;padding-bottom:32px!important}.work-rail{padding-top:36px!important}.work-rail-head{margin-bottom:30px!important}}
/* Final hero copy entrance */
.hero-copy h1,
.hero-copy p,
.hero-copy .hero-actions{opacity:0;transform:translateY(16px);animation:heroCopyIn .58s cubic-bezier(.2,.75,.25,1) forwards}
.hero-copy p{animation-delay:.08s}
.hero-copy .hero-actions{animation-delay:.16s}
@keyframes heroCopyIn{to{opacity:1;transform:translateY(0)}}
@media(prefers-reduced-motion:reduce){.hero-copy h1,.hero-copy p,.hero-copy .hero-actions{opacity:1!important;transform:none!important;animation:none!important}}
/* Legal docs and bank requisites */
.legal-summary {
  display: block;
  margin: 32px 0 18px;
}

.legal-panel {
  display: block;
  margin: 0 0 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.legal-panel h2 {
  margin: 0 0 18px;
  max-width: 680px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;
  border-top: 1px solid rgba(224, 211, 189, 0.85);
  color: var(--muted);
}

.legal-list li {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  align-items: start;
  gap: 44px;
  border-bottom: 1px solid rgba(224, 211, 189, 0.85);
  padding: 17px 0;
  line-height: 1.45;
}

.legal-list li:last-child {
  border-bottom: 1px solid rgba(224, 211, 189, 0.85);
}

.legal-list b {
  display: block;
  color: var(--ink);
  font-weight: 850;
}

.legal-list span {
  display: block;
  min-width: 0;
  max-width: 820px;
  overflow-wrap: break-word;
  word-break: normal;
}

.docs-card {
  display: flex;
  flex-direction: column;
}

.docs-card a.btn {
  margin-top: auto;
}

.site-requisites {
  margin: 72px auto 0;
  max-width: 1460px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 18px;
  border-top: 1px solid rgba(224, 211, 189, 0.75);
  padding: 26px 0 34px;
  color: var(--muted);
}

.site-requisites strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  margin-bottom: 6px;
}

.site-requisites span {
  display: block;
  line-height: 1.5;
}

.site-requisites a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
  margin-right: 18px;
}

@media (max-width: 980px) {
  .legal-summary,
  .site-requisites {
    grid-template-columns: 1fr;
  }

  .legal-list li {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
  }
}





.terms-check {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #322e27;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.form-grid .terms-check .terms-checkbox,
.form-grid label.terms-check input[type="checkbox"] {
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  border-radius: 4px !important;
  accent-color: #ffc233;
  cursor: pointer;
}

.terms-docs-link {
  color: #b67600 !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.terms-docs-link:hover {
  color: #111 !important;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 17, 17, .46);
  backdrop-filter: blur(5px);
}

.cookie-modal[hidden] {
  display: none !important;
}

.cookie-modal-open body {
  overflow: hidden;
}

.cookie-dialog {
  width: min(560px, 100%);
  padding: 26px;
  border: 1px solid rgba(224, 211, 189, .95);
  border-radius: 22px;
  background: #fffdf8;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

.cookie-dialog strong {
  display: block;
  margin-bottom: 8px;
  color: #111;
  font-size: 24px;
  line-height: 1.1;
}

.cookie-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.cookie-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.cookie-actions a {
  margin-right: auto;
  color: #b67600;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 0 20px;
}

.cookie-actions .btn-ghost {
  border: 1px solid var(--line-strong);
  background: #fff;
  color: #111;
}

@media (max-width: 620px) {
  .cookie-dialog {
    padding: 22px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-actions a {
    margin-right: 0;
  }
}


/* zakypit force consent fix */
.form-grid label.terms-check {
  display: flex !important;
  align-items: flex-start !important;
  gap: 10px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}
.form-grid label.terms-check input[type="checkbox"],
.form-grid .terms-checkbox {
  width: 16px !important;
  min-width: 16px !important;
  height: 16px !important;
  min-height: 16px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
}
.terms-docs-link {
  color: #b67600 !important;
  font-weight: 850 !important;
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}




/* zakypit footer gap only */
.site-footer {
  padding-bottom: 120px !important;
  margin-bottom: -92px !important;
}
