/* ==========================================================================
   UZ-MARKET — Биржа готовых сайтов
   Стилистика: тёмный fintech / smart-tech aesthetic
   ========================================================================== */

:root {
  /* Цвета */
  --bg: #0a0d0c;
  --bg-2: #0f1413;
  --bg-3: #151b1a;
  --surface: #131918;
  --surface-2: #1a2120;
  --border: rgba(255, 255, 255, 0.08);
  --border-2: rgba(255, 255, 255, 0.12);
  --text: #e8efed;
  --text-2: #a8b3b0;
  --text-3: #6b7674;
  --accent: #5ee5b9;
  --accent-2: #3dd8a6;
  --accent-soft: rgba(94, 229, 185, 0.12);
  --warm: #f5b366;
  --danger: #ff6b6b;

  /* Типографика */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Радиусы / тени */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 80px rgba(94, 229, 185, 0.15);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* ===== Декоративные фоны ===== */
.bg-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 0%, transparent 70%);
  opacity: 0.5;
}

/* ===== Layout ===== */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; transition: all 0.2s ease; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ===== Кнопки ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  border-radius: 999px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

.btn-primary {
  background: var(--accent);
  color: #042820;
}
.btn-primary:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(94, 229, 185, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  color: var(--text-2);
}
.btn-ghost:hover {
  color: var(--text);
}

/* ===== Шапка ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(10, 13, 12, 0.7);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo-mark {
  width: 32px;
  height: 32px;
  color: var(--accent);
  display: flex;
}

.logo-text {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.logo-dot {
  color: var(--accent);
  margin: 0 2px;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
}
.nav a {
  color: var(--text-2);
  position: relative;
}
.nav a:hover { color: var(--text); }

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(94, 229, 185, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-soft);
  border: 1px solid rgba(94, 229, 185, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--accent);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 400;
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 540px;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
}
.trust-item span {
  font-size: 12px;
  color: var(--text-3);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  height: 520px;
}

.card-stack {
  position: relative;
  width: 100%;
  height: 100%;
}

.float-card {
  position: absolute;
  background: linear-gradient(155deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  animation: float 6s ease-in-out infinite;
}

.float-card-1 {
  top: 30px;
  left: 0;
  width: 290px;
  animation-delay: 0s;
}
.float-card-2 {
  top: 220px;
  right: 0;
  width: 240px;
  animation-delay: 1.5s;
}
.float-card-3 {
  bottom: 20px;
  left: 60px;
  width: 270px;
  animation-delay: 3s;
}

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

.fc-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.fc-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-green { background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.dot-amber { background: var(--warm); box-shadow: 0 0 10px var(--warm); }

.fc-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: 0.02em;
}

.fc-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 4px;
}
.fc-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.fc-trend {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}
.fc-trend.up { color: var(--accent); }

.fc-text {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 16px;
}

.fc-chart {
  width: 100%;
  height: 50px;
}
.fc-chart svg { width: 100%; height: 100%; }

.fc-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 50px;
}
.fc-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--warm), rgba(245, 179, 102, 0.3));
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

.fc-tag {
  display: inline-block;
  padding: 4px 10px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
  margin-bottom: 12px;
}

.fc-domain {
  font-family: var(--font-mono);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.fc-stats-row {
  display: flex;
  gap: 18px;
}
.fc-stats-row > div {
  display: flex;
  flex-direction: column;
}
.fc-stats-row strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.fc-stats-row span {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== Stats Band ===== */
.stats-band {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 16px;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat-label {
  font-size: 13px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

/* ===== Section Heads ===== */
.section-head {
  margin-bottom: 56px;
  max-width: 720px;
}
.section-head.centered {
  margin: 0 auto 56px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 400;
  margin-bottom: 18px;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
  font-weight: 300;
}

.section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-2);
  max-width: 600px;
}
.section-head.centered .section-sub { margin: 0 auto; }

/* ===== CATALOG ===== */
.catalog {
  padding: 100px 0;
}

.filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter {
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-2);
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.filter:hover {
  border-color: var(--border-2);
  color: var(--text);
}
.filter.active {
  background: var(--accent);
  color: #042820;
  border-color: var(--accent);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Site card */
.site-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}

.site-card:hover {
  border-color: rgba(94, 229, 185, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(94, 229, 185, 0.1);
}

.site-card.featured {
  border-color: rgba(94, 229, 185, 0.25);
  background: linear-gradient(180deg, rgba(94, 229, 185, 0.04) 0%, var(--bg-2) 100%);
}

.sc-ribbon {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 4px 10px;
  background: var(--accent);
  color: #042820;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 6px;
  z-index: 2;
}

.sc-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
}

.sc-thumb {
  width: 100%;
  height: 140px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

/* Различные градиенты thumb-карточек для уникальности */
.sc-thumb-1 { background: linear-gradient(135deg, #1a3d35 0%, #0d1f1c 100%); }
.sc-thumb-1::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 40%, rgba(94, 229, 185, 0.2), transparent 50%);
}
.sc-thumb-2 { background: linear-gradient(135deg, #3a2a1a 0%, #1f1610 100%); }
.sc-thumb-2::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(245, 179, 102, 0.25), transparent 50%);
}
.sc-thumb-3 { background: linear-gradient(135deg, #1a2d3d 0%, #0d1820 100%); }
.sc-thumb-3::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(102, 179, 245, 0.2), transparent 60%);
}
.sc-thumb-4 { background: linear-gradient(135deg, #2d1a3d 0%, #1a0d20 100%); }
.sc-thumb-4::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 70%, rgba(179, 102, 245, 0.2), transparent 50%);
}
.sc-thumb-5 { background: linear-gradient(135deg, #1a3d2d 0%, #0d201a 100%); }
.sc-thumb-5::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(94, 229, 185, 0.2), transparent 50%);
}
.sc-thumb-6 { background: linear-gradient(135deg, #3d1a2d 0%, #200d1a 100%); }
.sc-thumb-6::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 60% 60%, rgba(245, 102, 179, 0.2), transparent 50%);
}

.sc-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.sc-cat {
  position: relative;
  z-index: 2;
  padding: 4px 10px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}

.sc-verified {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(94, 229, 185, 0.3);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  z-index: 2;
}

.sc-body {
  padding: 22px 22px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sc-domain {
  font-family: var(--font-mono);
  font-size: 17px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.sc-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 20px;
}

.sc-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 16px;
}

.sc-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sc-stat-label {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}
.sc-stat-val {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  font-family: var(--font-mono);
}
.sc-stat-val em {
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-body);
}

.sc-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: auto;
}
.tag {
  padding: 3px 9px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-2);
}

.sc-foot {
  padding: 16px 22px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.015);
}

.sc-price {
  display: flex;
  flex-direction: column;
}
.sc-price-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.sc-price-mult {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.02em;
}

.catalog-foot {
  margin-top: 48px;
  text-align: center;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  position: relative;
  transition: all 0.3s ease;
}

.step:hover {
  border-color: rgba(94, 229, 185, 0.3);
  transform: translateY(-3px);
}

.step-num {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}

.step p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.55;
}

/* ===== GUARANTEES ===== */
.guarantees {
  padding: 100px 0;
}

.g-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.g-list {
  list-style: none;
  margin-top: 32px;
}

.g-list li {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.g-list li:last-child { border-bottom: 1px solid var(--border); }

.g-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.g-list h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}

.g-list p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.5;
}

/* g-visual */
.g-visual {
  position: relative;
}

.g-card {
  background: linear-gradient(165deg, var(--surface) 0%, var(--bg-2) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.g-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(94, 229, 185, 0.1) 0%, transparent 60%);
}

.g-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
  font-family: var(--font-mono);
  font-size: 12px;
}
.g-status {
  color: var(--accent);
  font-weight: 600;
}
.g-id {
  color: var(--text-3);
}

.g-card-amount {
  margin-bottom: 24px;
}
.g-amt-label {
  display: block;
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.g-amt-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}

.g-progress {
  height: 4px;
  background: var(--surface-2);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 16px;
}
.g-progress-bar {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 999px;
  position: relative;
}
.g-progress-bar::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  animation: shimmer 2s infinite;
}
@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.g-stages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
  font-size: 11px;
}
.g-stage {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-3);
  font-weight: 500;
}
.g-stage span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface-2);
}
.g-stage.done {
  color: var(--accent);
}
.g-stage.done span { background: var(--accent); }
.g-stage.active {
  color: var(--text);
}
.g-stage.active span {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse 1.5s infinite;
}

.g-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.g-meta > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.g-meta span {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.g-meta strong {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-mono);
}

/* ===== SELL CTA ===== */
.sell-cta {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.sell-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--bg-3) 100%);
  border: 1px solid var(--border-2);
  border-radius: var(--r-xl);
  position: relative;
  overflow: hidden;
}

.sell-inner::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(94, 229, 185, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.sell-inner > div { position: relative; z-index: 1; }

.sell-formula {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.formula-item {
  padding: 18px 20px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.formula-item span {
  font-size: 13px;
  color: var(--text-2);
}
.formula-item strong {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border-top: 1px solid var(--border);
  transition: all 0.2s ease;
}
.faq-item:last-child { border-bottom: 1px solid var(--border); }

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
  transition: color 0.2s ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s ease;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text);
  border-radius: 1px;
  transition: all 0.3s ease;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.faq-icon::before {
  width: 10px;
  height: 1.5px;
}
.faq-icon::after {
  width: 1.5px;
  height: 10px;
}

.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.faq-item[open] .faq-icon::before { background: #042820; }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq-content {
  padding: 0 0 24px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.65;
  max-width: 620px;
}

/* ===== ФУТЕР ===== */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  margin: 18px 0 24px;
  color: var(--text-2);
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-2);
  transition: all 0.2s ease;
}
.socials a:hover {
  background: var(--accent-soft);
  border-color: var(--accent);
  color: var(--accent);
}

.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: var(--text-2);
  font-size: 14px;
}
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-3);
}

/* ===== Адаптив ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 480px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .g-grid { grid-template-columns: 1fr; gap: 50px; }
  .sell-inner { grid-template-columns: 1fr; gap: 40px; padding: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); padding-bottom: 24px; }
  .stat:nth-child(3), .stat:nth-child(4) { padding-top: 24px; }
}

@media (max-width: 720px) {
  .container { padding: 0 18px; }
  .nav { display: none; }
  .header-actions .btn-ghost { display: none; }
  .hero { padding: 50px 0 70px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-trust { gap: 18px; }
  .trust-divider { display: none; }
  .hero-visual { height: 460px; }
  .float-card-1 { width: 240px; left: -10px; }
  .float-card-2 { width: 200px; right: -10px; }
  .float-card-3 { width: 220px; left: 20px; bottom: 0; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .sell-inner { padding: 28px; }
  .section-head, .section-head.centered { margin-bottom: 36px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border); padding: 18px; }
  .stat:last-child { border-bottom: none; }
  .header-inner { padding: 14px 18px; gap: 12px; }
  .logo-text { font-size: 14px; }
  .how, .guarantees, .sell-cta, .faq, .catalog { padding: 70px 0; }
  .faq-item summary { font-size: 17px; padding: 20px 0; }
}
