/* ═══════════════════════════════════════════════════════
   AVAT — премиум SaaS-студия. Лендинг из 2036 года.
   ═══════════════════════════════════════════════════════ */

:root {
  /* Цвета */
  --bg-void: #08090C;
  --bg-elevated: #0F1115;
  --bg-card: #14171D;
  --bg-card-hover: #1A1E26;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-bright: rgba(255, 255, 255, 0.2);

  --text-primary: #F4F5F7;
  --text-secondary: #8B8F98;
  --text-tertiary: #5A5E68;

  --accent-gold: #E5C77D;
  --accent-gold-soft: rgba(229, 199, 125, 0.15);
  --accent-gold-glow: rgba(229, 199, 125, 0.4);
  --accent-blue: #5B8DEF;
  --accent-blue-soft: rgba(91, 141, 239, 0.15);
  --accent-mint: #00D9A3;
  --accent-mint-soft: rgba(0, 217, 163, 0.15);
  --accent-red: #FF6B6B;

  /* Шрифты */
  --font-display: 'Unbounded', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  /* Размеры */
  --container: 1320px;
  --section-pad: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */

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

html {
  background: var(--bg-void);
  color: var(--text-primary);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

img, svg { display: block; max-width: 100%; }

::selection { background: var(--accent-gold); color: var(--bg-void); }

.mono { font-family: var(--font-mono); font-feature-settings: "ss01", "ss02"; }

/* ═══════════════════════════════════════════════════════
   КАСТОМНЫЙ КУРСОР
   ═══════════════════════════════════════════════════════ */


/* ═══════════════════════════════════════════════════════
   NOISE OVERLAY
   ═══════════════════════════════════════════════════════ */

.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.04;
  z-index: 1;
  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%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ═══════════════════════════════════════════════════════
   КОНТЕЙНЕР И БАЗОВАЯ ТИПОГРАФИКА
   ═══════════════════════════════════════════════════════ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  :root { --section-pad: 96px; }
}

.section-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  margin-bottom: 18px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.section-title em {
  font-style: normal;
}

.accent-gold {
  color: var(--accent-gold);
  font-style: normal;
}

.accent-mono {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.9em;
  color: var(--accent-gold);
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════════════════════
   КНОПКИ
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-gold);
  color: var(--bg-void);
  box-shadow:
    0 0 0 1px rgba(229, 199, 125, 0.3),
    0 8px 24px -8px rgba(229, 199, 125, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(229, 199, 125, 0.6),
    0 12px 40px -8px rgba(229, 199, 125, 0.6),
    0 0 60px -10px rgba(229, 199, 125, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(20px);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-bright);
  transform: translateY(-2px);
}

.btn-large { padding: 18px 32px; font-size: 16px; }
.btn-huge { padding: 24px 40px; font-size: 18px; }

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  pointer-events: none;
}

.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 28px;
  background: rgba(10, 12, 16, 0.65);
  backdrop-filter: blur(60px) saturate(200%) brightness(0.95);
  -webkit-backdrop-filter: blur(60px) saturate(200%) brightness(0.95);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(229,199,125,0.14);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: auto;
  transition: transform 0.4s ease, background 0.3s ease, border-color 0.3s ease;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.05),
    0 8px 32px rgba(0,0,0,0.45),
    0 0 0 1px rgba(229,199,125,0.04);
}

.nav.nav-scrolled .nav-inner {
  background: rgba(8, 9, 12, 0.85);
  border-color: var(--border-medium);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.15em;
  color: var(--text-primary);
}

.logo-mark {
  color: var(--accent-gold);
  display: inline-flex;
  align-items: center;
  animation: rotateMark 14s linear infinite;
  filter: drop-shadow(0 0 8px rgba(229, 199, 125, 0.5));
}

.logo-mark svg { display: block; }

.logo-text { line-height: 1; }

.logo-decode {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  padding-left: 14px;
  margin-left: 6px;
  border-left: 1px solid rgba(229,199,125,0.25);
  line-height: 1.1;
}

.logo-decode > span:first-child {
  color: rgba(255,255,255,0.62);
}

.logo-decode .logo-letter {
  color: var(--accent-gold);
  font-weight: 700;
}

.logo-decode .agency-name {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-decoration: underline;
  text-decoration-color: rgba(229,199,125,0.55);
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.vibe-tip {
  position: relative;
  display: inline;
  cursor: help;
}

.vibe-tip-box {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 280px;
  background: var(--surface-elevated, #1a1a1a);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-secondary);
  line-height: 1.6;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  white-space: normal;
}

.vibe-tip-box strong {
  color: var(--accent-gold);
  font-weight: 600;
}

.vibe-tip-box .tip-note {
  display: block;
  margin-top: 8px;
  font-size: 9.5px;
  color: var(--text-tertiary);
  border-top: 1px solid var(--border-medium);
  padding-top: 7px;
}

.vibe-tip:hover .vibe-tip-box {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rotateMark { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .logo-decode { display: none; }
}

.nav-links {
  display: flex;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.nav-links a {
  color: var(--text-secondary);
  position: relative;
  padding: 7px 14px;
  border-radius: 100px;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%);
  width: 0; height: 1px;
  background: var(--accent-gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 40%; }

.nav-cta { padding: 10px 18px; font-size: 13px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta span { display: none; }
}

/* ═══════════════════════════════════════════════════════
   1. HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100svh;
  min-height: 680px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(229, 199, 125, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 199, 125, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, #000 30%, transparent 80%);
}

.hero-content {
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 56px;
  padding-bottom: 36px;
}

.hero-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 500;
}

.hero-brand-line {
  width: 32px;
  height: 1px;
  background: var(--accent-gold);
  opacity: 0.6;
}

.hero-icp {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(229, 199, 125, 0.1);
  border: 1px solid rgba(229, 199, 125, 0.35);
  border-radius: 100px;
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.07em;
  margin-bottom: 22px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  background: rgba(0, 217, 163, 0.08);
  border: 1px solid rgba(0, 217, 163, 0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent-mint);
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.pulse-dot {
  width: 6px; height: 6px;
  background: var(--accent-mint);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 12px var(--accent-mint);
}

.pulse-dot::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--accent-mint);
  opacity: 0.3;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-typewriter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.3vw, 20px);
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-height: 1.6em;
}

#twText {
  display: inline-block;
  color: var(--accent-gold);
}

#twText::after {
  content: '_';
  display: inline-block;
  color: var(--accent-mint);
  animation: twBlink 0.9s step-end infinite;
  margin-left: 1px;
}

.tw-label {
  color: var(--text-tertiary);
}

.tw-arrow {
  color: var(--accent-mint);
  font-weight: 600;
}

.hero-scarcity {
  font-size: clamp(11px, 0.95vw, 13px);
  color: var(--accent-mint);
  margin-bottom: 18px;
  letter-spacing: 0.04em;
  opacity: 0.75;
}

/* .tw-cursor убран — курсор теперь через #twText::after */

@keyframes twBlink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin-bottom: 28px;
  max-width: 1100px;
}

.hero-title .line {
  display: block;
  overflow: hidden;
}

.hero-title .line em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent-gold), #F8E5B5);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.85em;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(14px, 1.2vw, 17px);
  color: var(--text-secondary);
  max-width: 720px;
  line-height: 1.55;
  margin-bottom: 32px;
}

.hero-subtitle strong {
  color: var(--accent-gold);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 1 !important;
  visibility: visible !important;
}

.hero-cta > * { opacity: 1 !important; }

.hero-proof {
  display: flex;
  align-items: stretch;
  gap: 0;
  padding-top: 24px;
  margin-top: 0;
  border-top: 1px solid var(--border-subtle);
}

.proof-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 28px 0 0;
}

.proof-item:not(:first-child) { padding-left: 28px; }

.proof-divider {
  width: 1px;
  background: var(--border-subtle);
}

.proof-num {
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.proof-label {
  font-size: 12px;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  line-height: 1.35;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
}

@media (max-width: 768px) {
  .hero-proof { flex-wrap: wrap; gap: 16px; }
  .proof-item { flex: 1 1 45%; padding: 0; }
  .proof-divider { display: none; }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--text-tertiary);
}

.scroll-line {
  width: 2px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(229,199,125,0.6), transparent);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  width: 2px; height: 16px;
  background: var(--accent-gold);
  border-radius: 1px;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(400%); }
}

@media (max-width: 768px) {
  .hero { padding: 120px 20px 60px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .hero-scroll-hint { display: none; }
}

/* ═══════════════════════════════════════════════════════
   2. MARQUEE
   ═══════════════════════════════════════════════════════ */

.marquee {
  padding: 40px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-elevated);
  overflow: hidden;
}

.marquee-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  margin-bottom: 32px;
}

.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 64px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-tertiary);
  white-space: nowrap;
}

.marquee-content .dot {
  color: var(--accent-gold);
  font-size: 12px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
   3. ПРОБЛЕМА
   ═══════════════════════════════════════════════════════ */

.problem {
  padding: var(--section-pad) 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.problem-card {
  padding: 32px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 107, 107, 0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.problem-card:hover {
  border-color: rgba(255, 107, 107, 0.25);
  transform: translateY(-4px);
}

.problem-card:hover::before { opacity: 1; }

.problem-num {
  font-size: 14px;
  color: var(--accent-red);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

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

.problem-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   4. APPROACH — BENTO GRID
   ═══════════════════════════════════════════════════════ */

.approach {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
  position: relative;
}

.approach::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-gold-soft), transparent 70%);
  filter: blur(120px);
  opacity: 0.4;
  pointer-events: none;
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 14px;
  margin-top: 56px;
  position: relative;
}

.bento-card {
  padding: 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent, rgba(229, 199, 125, 0.04));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.bento-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}

.bento-card:hover::before { opacity: 1; }

.bento-large { grid-column: span 2; grid-row: span 2; }
.bento-tall { grid-row: span 2; }
.bento-wide { grid-column: span 2; }

.bento-num {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.bento-title {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 22px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.bento-large .bento-title {
  font-size: clamp(22px, 2vw, 32px);
  margin-bottom: 18px;
}

.bento-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: auto;
}

.bento-products {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(229, 199, 125, 0.06);
  border: 1px solid rgba(229, 199, 125, 0.15);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-gold);
}

.chip-dot {
  width: 5px; height: 5px;
  background: var(--accent-mint);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--accent-mint);
}

.bento-mega-num {
  font-family: var(--font-mono);
  font-size: clamp(72px, 7vw, 120px);
  font-weight: 300;
  color: var(--accent-gold);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.mega-suffix {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 400;
  color: var(--text-tertiary);
  letter-spacing: 0;
  text-transform: lowercase;
  padding-bottom: clamp(8px, 1vw, 16px);
  line-height: 1;
}

.bento-icon {
  margin-top: auto;
  color: var(--accent-gold);
  opacity: 0.5;
}

.bento-mockup {
  margin-top: 20px;
  padding: 16px;
  background: var(--bg-void);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
}

.mockup-bar {
  display: flex; gap: 6px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-bar span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-tertiary);
}

.mockup-line {
  color: var(--text-secondary);
  margin: 4px 0;
}

.mockup-line.accent { color: var(--accent-mint); }

@media (max-width: 1024px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
  .bento-large { grid-column: span 2; grid-row: auto; }
  .bento-tall { grid-row: auto; }
  .bento-wide { grid-column: span 2; }
}

@media (max-width: 600px) {
  .bento { grid-template-columns: 1fr; }
  .bento-large, .bento-wide { grid-column: span 1; }
}

/* ═══════════════════════════════════════════════════════
   5. КЕЙСЫ
   ═══════════════════════════════════════════════════════ */

.cases {
  padding: var(--section-pad) 0;
  position: relative;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.case-card.case-hidden {
  display: none;
}

.cases-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.cases-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(229,199,125,0.25);
  border-radius: 100px;
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.cases-more-btn:hover {
  background: rgba(229,199,125,0.08);
  border-color: rgba(229,199,125,0.5);
  transform: translateY(-1px);
}

.cases-more-btn svg {
  transition: transform 0.3s ease;
}

.cases-more-btn.expanded svg {
  transform: rotate(180deg);
}

.case-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.case-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, var(--accent-gold-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.case-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.case-card:hover::before { opacity: 0.6; }

.case-mockup-wrap {
  position: relative;
  padding: 24px 24px 0;
  z-index: 1;
}

.case-body {
  padding: 20px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  position: relative;
  z-index: 1;
}

@media (max-width: 1100px) {
  .cases-grid { grid-template-columns: 1fr; }
}

.case-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
}

.case-num {
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
}

.case-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
  padding: 3px 9px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
}

.case-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin: 0;
}

.case-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  max-width: 480px;
}

.case-stats {
  display: flex;
  gap: 24px;
  margin: 4px 0 4px;
  flex-wrap: wrap;
}

.case-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-num {
  font-size: 17px;
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: -0.01em;
}

.stat-cap {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.case-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
  color: var(--accent-gold);
  text-transform: uppercase;
  padding-top: 14px;
  border-top: 1px solid var(--border-subtle);
  transition: gap 0.3s ease;
}

.case-link:hover { gap: 14px; }
.case-link svg { transition: transform 0.3s ease; }
.case-link:hover svg { transform: translate(2px, -2px); }

.case-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-chip {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  color: var(--text-secondary);
}

/* === МОКАПЫ КЕЙСОВ — живые превью продуктов === */

.case-mockup {
  background: var(--bg-void);
  border: 1px solid var(--border-medium);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--border-subtle);
}

.mockup-header > span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.mockup-url {
  margin-left: 12px;
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 100px;
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

.mockup-content {
  padding: 18px 18px;
  height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* === Pulsar7 — анимированный график === */
.mock-chart {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6px;
  flex: 1;
  margin-bottom: 12px;
}

.mock-chart .bar {
  flex: 1;
  height: 0%;
  background: linear-gradient(to top, var(--accent-gold), rgba(229, 199, 125, 0.4));
  border-radius: 4px 4px 0 0;
  animation: barGrow 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.case-card:hover .mock-chart .bar {
  animation: barGrow 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mock-chart .bar:last-child {
  background: linear-gradient(to top, var(--accent-mint), rgba(0, 217, 163, 0.4));
  box-shadow: 0 0 12px rgba(0, 217, 163, 0.4);
}

.mock-chart .bar:nth-child(1) { animation-delay: 0.05s; }
.mock-chart .bar:nth-child(2) { animation-delay: 0.10s; }
.mock-chart .bar:nth-child(3) { animation-delay: 0.15s; }
.mock-chart .bar:nth-child(4) { animation-delay: 0.20s; }
.mock-chart .bar:nth-child(5) { animation-delay: 0.25s; }
.mock-chart .bar:nth-child(6) { animation-delay: 0.30s; }
.mock-chart .bar:nth-child(7) { animation-delay: 0.35s; }

@keyframes barGrow {
  to { height: var(--h); }
}

.mock-kpi {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  padding-top: 10px;
  border-top: 1px dashed var(--border-subtle);
}

.kpi-label { font-size: 10px; color: var(--text-tertiary); letter-spacing: 0.1em; }
.kpi-num { font-size: 16px; color: var(--accent-mint); font-weight: 500; }

/* === МП Приборка — таблица с pulse === */
.mock-table { display: flex; flex-direction: column; gap: 6px; }
.mock-table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0;
  animation: rowFadeIn 0.5s ease forwards;
}
.mock-table .row:nth-child(1) { animation-delay: 0.1s; }
.mock-table .row:nth-child(2) { animation-delay: 0.2s; }
.mock-table .row:nth-child(3) { animation-delay: 0.3s; }
.mock-table .row:nth-child(4) { animation-delay: 0.4s; }
.mock-table .row:nth-child(5) { animation-delay: 0.5s; }

.mock-table .g { color: var(--accent-mint); font-weight: 500; }
.mock-table .r { color: var(--accent-red); font-weight: 500; }

@keyframes rowFadeIn {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* === ФП — финансовые метрики + тренд === */
.mock-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-secondary);
}
.mock-line .dot-g, .mock-line .dot-y, .mock-line .dot-b {
  width: 7px; height: 7px; border-radius: 50%;
  flex-shrink: 0;
}
.dot-g { background: var(--accent-mint); box-shadow: 0 0 8px var(--accent-mint); animation: pulseDot 2s ease-in-out infinite; }
.dot-y { background: var(--accent-gold); box-shadow: 0 0 8px var(--accent-gold); animation: pulseDot 2s ease-in-out infinite 0.4s; }
.dot-b { background: var(--accent-blue); box-shadow: 0 0 8px var(--accent-blue); animation: pulseDot 2s ease-in-out infinite 0.8s; }

.ml-text { flex: 1; }
.ml-num { font-weight: 500; color: var(--text-primary); }
.ml-num.accent { color: var(--accent-mint); }

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

.mock-trend {
  margin-top: auto;
  height: 50px;
}
.mock-trend svg { width: 100%; height: 100%; }
.mock-trend path:first-child {
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 2s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

/* === ПиксельМани — pie + легенда === */
.mockup-pixel {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mock-pie {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: conic-gradient(
    var(--accent-mint) 0deg 0deg,
    var(--accent-gold) 0deg 0deg,
    var(--accent-blue) 0deg 0deg,
    rgba(255,255,255,0.08) 0deg 360deg
  );
  position: relative;
  box-shadow: 0 0 40px rgba(229, 199, 125, 0.2);
  animation: pieFill 1.5s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  flex-shrink: 0;
}

@keyframes pieFill {
  to {
    background: conic-gradient(
      var(--accent-mint) 0deg 130deg,
      var(--accent-gold) 130deg 230deg,
      var(--accent-blue) 230deg 320deg,
      rgba(255,255,255,0.08) 320deg 360deg
    );
  }
}

.mock-pie::before {
  content: '';
  position: absolute;
  inset: 22px;
  background: var(--bg-void);
  border-radius: 50%;
}

.pie-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.pie-label { font-size: 9px; color: var(--text-tertiary); letter-spacing: 0.1em; }
.pie-num { font-size: 18px; color: var(--accent-gold); font-weight: 500; }

.pie-legend {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}
.legend-item .dot-g, .legend-item .dot-y, .legend-item .dot-b {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
}

/* === Корни — анимированное древо === */
.mockup-tree-wrap { justify-content: center; align-items: center; }

.mock-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  position: relative;
}

.tree-level {
  display: flex;
  gap: 26px;
  position: relative;
}

.tree-level.tree-l2 { gap: 80px; }
.tree-level.tree-l3 { gap: 22px; }

.tnode {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 14px var(--accent-gold);
  opacity: 0;
  animation: nodeAppear 0.5s ease forwards;
}

.tree-level:nth-child(1) .tnode { animation-delay: 0.1s; }
.tree-level:nth-child(2) .tnode:nth-child(1) { animation-delay: 0.3s; }
.tree-level:nth-child(2) .tnode:nth-child(2) { animation-delay: 0.4s; }
.tree-level:nth-child(3) .tnode:nth-child(1) { animation-delay: 0.6s; }
.tree-level:nth-child(3) .tnode:nth-child(2) { animation-delay: 0.7s; }
.tree-level:nth-child(3) .tnode:nth-child(3) { animation-delay: 0.8s; }
.tree-level:nth-child(3) .tnode:nth-child(4) { animation-delay: 0.9s; }

@keyframes nodeAppear {
  from { opacity: 0; transform: scale(0); }
  to { opacity: 1; transform: scale(1); }
}

.tree-l2::before, .tree-l3::before {
  content: '';
  position: absolute;
  top: -22px; left: 50%;
  transform: translateX(-50%);
  height: 22px;
  border-top: 1px solid rgba(229, 199, 125, 0.4);
  border-left: 1px solid rgba(229, 199, 125, 0.4);
  border-right: 1px solid rgba(229, 199, 125, 0.4);
}
.tree-l2::before { width: 80px; }
.tree-l3::before { width: 130px; }

/* === Орг.Структура === */
.mock-org {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  font-family: var(--font-mono);
}
.org-top {
  font-size: 11px;
  color: var(--accent-gold);
  background: rgba(229, 199, 125, 0.1);
  border: 1px solid var(--accent-gold);
  padding: 6px 14px;
  border-radius: 6px;
  box-shadow: 0 0 16px rgba(229, 199, 125, 0.3);
}
.org-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  position: relative;
}
.org-row::before {
  content: '';
  position: absolute;
  top: -18px; left: 50%;
  transform: translateX(-50%);
  width: 70%; height: 18px;
  border-top: 1px solid rgba(229, 199, 125, 0.3);
  border-left: 1px solid rgba(229, 199, 125, 0.3);
  border-right: 1px solid rgba(229, 199, 125, 0.3);
}
.org-row span {
  font-size: 10px;
  color: var(--accent-mint);
  background: rgba(0, 217, 163, 0.08);
  border: 1px solid rgba(0, 217, 163, 0.3);
  padding: 4px 10px;
  border-radius: 5px;
}
.org-row-3 span {
  font-size: 12px;
  color: var(--text-tertiary);
  background: transparent;
  border: 1px solid var(--border-subtle);
  padding: 2px 6px;
}

/* ═══════════════════════════════════════════════════════
   6. ПРОЦЕСС
   ═══════════════════════════════════════════════════════ */

.process {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
  position: relative;
}

.process-timeline {
  margin-top: 56px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border-subtle);
}

.timeline-progress {
  position: absolute;
  left: 32px;
  top: 0;
  width: 1px;
  height: 0%;
  background: linear-gradient(to bottom, var(--accent-gold), var(--accent-mint));
  box-shadow: 0 0 20px var(--accent-gold);
  transition: height 0.3s ease;
  z-index: 1;
}

.process-step {
  padding-left: 96px;
  position: relative;
  max-width: 800px;
}

.process-step .step-num {
  position: absolute;
  left: 0; top: 0;
  width: 64px; height: 64px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--accent-gold);
  z-index: 2;
  transition: all 0.4s ease;
}

.process-step:hover .step-num {
  background: var(--accent-gold);
  color: var(--bg-void);
  box-shadow: 0 0 30px var(--accent-gold-glow);
}

.step-week {
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.step-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  line-height: 1.1;
}

.process-step p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.step-deliver {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.step-deliver li {
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 12px;
  background: rgba(229, 199, 125, 0.04);
  border: 1px solid rgba(229, 199, 125, 0.15);
  border-radius: 6px;
}

@media (max-width: 768px) {
  .process-timeline::before, .timeline-progress { left: 20px; }
  .process-step { padding-left: 64px; }
  .process-step .step-num { width: 40px; height: 40px; font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════
   7. STACK
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   COMPARE TABLE
   ═══════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════
   WHAT WE BUILD
   ═══════════════════════════════════════════════════════ */

.what-we-build { padding: var(--section-pad) 0; }

/* ═══════════════════════════════════════════════════════
   VIBE EXPLAINED
   ═══════════════════════════════════════════════════════ */

.vibe-explained { padding: var(--section-pad) 0; }

.vibe-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.vibe-def-label {
  font-size: 11px;
  color: var(--accent-mint);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.vibe-def-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.vibe-def-text strong {
  color: var(--text-primary);
  font-weight: 500;
}

.vibe-def-text strong.accent-gold { color: var(--accent-gold); }

.vibe-compare {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.vibe-compare-row {
  display: grid;
  grid-template-columns: 100px 1fr 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.vc-label {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.08em;
}

.vc-vibe, .vc-classic {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.vc-num {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.vc-vibe .vc-num { color: var(--accent-gold); }
.vc-classic .vc-num { color: var(--text-tertiary); text-decoration: line-through; text-decoration-color: rgba(255,107,107,0.5); }

.vc-method {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.vc-vs {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-tertiary);
}

@media (max-width: 900px) {
  .vibe-grid { grid-template-columns: 1fr; gap: 32px; }
  .vibe-compare-row { grid-template-columns: 1fr; gap: 8px; padding: 16px; }
  .vc-vs { text-align: left; }
}

.wwb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.wwb-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.3s, background 0.3s;
}

.wwb-card:hover {
  border-color: var(--border-medium);
  background: var(--bg-card-hover);
}

.wwb-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-gold-soft);
  border: 1px solid rgba(229,199,125,0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.wwb-card h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.wwb-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.wwb-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.wwb-tags span {
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 100px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-tertiary);
}

@media (max-width: 960px) {
  .wwb-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .wwb-grid { grid-template-columns: 1fr; }
}

.compare { padding: var(--section-pad) 0; }

.compare-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  -webkit-overflow-scrolling: touch;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.compare-table thead tr {
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border-medium);
}

.compare-table th {
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--text-secondary);
  vertical-align: top;
}

.compare-table th.col-avat {
  background: rgba(229, 199, 125, 0.06);
  border-left: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

.th-logo {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}

.th-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.th-sub {
  display: block;
  font-size: 11px;
  color: var(--text-tertiary);
  font-family: var(--font-mono);
}

.compare-table tbody tr {
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.2s ease;
}

.compare-table tbody tr:last-child { border-bottom: none; }

.compare-table tbody tr:hover { background: rgba(255,255,255,0.02); }

.compare-table td {
  padding: 18px 24px;
  font-size: 14px;
  color: var(--text-secondary);
  vertical-align: middle;
}

.criteria-cell {
  font-weight: 500;
  color: var(--text-primary) !important;
  font-size: 14px !important;
}

.avat-cell {
  background: rgba(229, 199, 125, 0.04);
  border-left: 2px solid rgba(229, 199, 125, 0.3);
}

.cmp-good {
  color: var(--accent-mint);
  font-weight: 500;
}

.cmp-mid {
  color: var(--accent-gold);
  font-weight: 400;
}

.cmp-bad {
  color: var(--text-tertiary);
}

.stack { padding: var(--section-pad) 0; }

.stack-cat {
  font-size: 12px;
  color: var(--accent-mint);
  margin: 32px 0 14px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

.stack-cat:first-of-type { margin-top: 40px; }

.stack-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
  margin-top: 0;
  margin-bottom: 0;
}

.stack-item {
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-align: center;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.stack-item:hover {
  background: rgba(229, 199, 125, 0.06);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  transform: translateY(-2px);
}

.stack-note {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  margin-top: 48px;
  background: linear-gradient(135deg, rgba(229, 199, 125, 0.04), rgba(91, 141, 239, 0.04));
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.note-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.note-text {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

.note-text strong { color: var(--accent-gold); font-weight: 500; }

@media (max-width: 1024px) { .stack-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 600px) { .stack-grid { grid-template-columns: repeat(2, 1fr); } }

/* ═══════════════════════════════════════════════════════
   8. PRICING
   ═══════════════════════════════════════════════════════ */

.pricing {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
  position: relative;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.price-card {
  padding: 32px 26px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.4s ease;
}

.price-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.price-card-featured {
  background: linear-gradient(180deg, rgba(229, 199, 125, 0.08), var(--bg-card));
  border-color: rgba(229, 199, 125, 0.3);
  box-shadow: 0 0 80px -20px var(--accent-gold-glow);
}

.price-card-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent-gold), transparent 60%);
  z-index: -1;
  opacity: 0.4;
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gold);
  color: var(--bg-void);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.price-tag {
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  margin-bottom: 20px;
}

.price-card-featured .price-tag { color: var(--accent-gold); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 8px;
}

.price-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.price-card-featured .price-num { color: var(--accent-gold); }

.price-unit {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

.price-time {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.price-desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 28px;
}

.price-features {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-features li {
  font-size: 15px;
  color: var(--text-primary);
}

.pricing-note {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
}

/* ═══════════════════════════════════════════════════════
   9. FOUNDERS
   ═══════════════════════════════════════════════════════ */

.founders {
  padding: var(--section-pad) 0;
  position: relative;
}

.founders::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--accent-gold-soft), transparent 70%);
  filter: blur(120px);
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.founders-quote {
  max-width: 880px;
  margin: 56px 0 48px;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  position: relative;
}

.founders-quote::before {
  content: '"';
  position: absolute;
  top: -32px; left: 32px;
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  opacity: 0.4;
}

.founders-quote p {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 22px);
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.founders-sign {
  font-size: 13px;
  color: var(--accent-gold);
  letter-spacing: 0.1em;
}

.founders-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}

.founder-stat .fs-num {
  font-size: clamp(36px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.founder-stat .fs-cap {
  font-size: 13px;
  color: var(--text-tertiary);
}

@media (max-width: 768px) {
  .founders-quote { padding: 32px; }
  .founders-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}

/* ═══════════════════════════════════════════════════════
   10. CTA FINAL
   ═══════════════════════════════════════════════════════ */

.cta-final {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.cta-wrapper {
  text-align: center;
  position: relative;
  padding: 72px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--accent-gold-soft), transparent 60%);
  filter: blur(80px);
  z-index: 0;
  animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.cta-final .section-label,
.cta-final .cta-title,
.cta-final .cta-text,
.cta-final .cta-buttons,
.cta-final .cta-meta {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 18px 0 24px;
}

.cta-text {
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.cta-meta {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
  padding: 80px 0 32px;
  border-top: 1px solid var(--border-subtle);
}

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

.logo-footer {
  margin-bottom: 16px;
}

.footer-decode {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.6;
  padding-left: 14px;
  border-left: 2px solid var(--accent-gold);
}

.footer-decode div:first-child { color: var(--accent-gold); }
.footer-decode div:last-child { color: var(--text-secondary); }

.footer-tag {
  color: var(--text-secondary);
  font-size: 14px;
  max-width: 300px;
  line-height: 1.5;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  margin-bottom: 8px;
}

.footer-col a {
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-col a:hover { color: var(--accent-gold); }

.footer-hours {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* ═══════════════════════════════════════════════════════
   BLOG / ARTICLE
   ═══════════════════════════════════════════════════════ */
.page-blog, .page-article { background: var(--bg-primary, #0a0c10); }
.page-blog .nav, .page-article .nav {
  position: fixed;
  top: 16px;
  left: 0; right: 0;
  z-index: 100;
  padding: 0 32px;
  pointer-events: none;
}
.page-blog .nav-inner, .page-article .nav-inner { pointer-events: auto; }

.container-narrow { max-width: 760px; margin: 0 auto; }

.blog-index { padding: 140px 24px 80px; }
.blog-index-header { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.blog-index-header .article-h1 { font-size: clamp(32px, 4vw, 48px); margin: 16px 0 16px; }
.blog-index-header .article-lead { font-size: 17px; color: var(--text-secondary); max-width: 580px; margin: 0 auto; line-height: 1.5; }

.blog-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  display: block;
  padding: 28px 32px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.blog-card:hover {
  background: rgba(229,199,125,0.04);
  border-color: rgba(229,199,125,0.25);
  transform: translateY(-2px);
}
.blog-card-meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 12px;
}
.blog-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.blog-card-desc {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 12px;
}
.blog-card-link {
  font-size: 14px;
  color: var(--accent-gold);
  font-weight: 500;
}

.article { padding: 140px 24px 60px; position: relative; }

.article-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(229,199,125,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 20% at 80% 60%, rgba(0,217,163,0.04) 0%, transparent 60%);
}

.breadcrumbs { font-size: 11px; color: var(--text-tertiary); letter-spacing: 0.06em; margin-bottom: 28px; }
.breadcrumbs a { color: var(--text-tertiary); text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent-gold); }

.article-header { margin-bottom: 48px; }
.article-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 18px;
  padding: 6px 14px;
  background: rgba(229,199,125,0.08);
  border: 1px solid rgba(229,199,125,0.22);
  border-radius: 100px;
}
.article-h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  margin: 0 0 22px;
  letter-spacing: -0.025em;
}
.article-lead {
  font-size: 19px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  max-width: 680px;
}

/* Stat-блок под header (3 цифры) */
.article-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 48px;
}
.article-stat {
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 1px solid rgba(229,199,125,0.2);
  border-radius: 14px;
}
.article-stat-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.article-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.article-body {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
}

/* H2 с большой цифрой-якорем */
.article-body h2 {
  position: relative;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 56px 0 18px;
  letter-spacing: -0.015em;
  line-height: 1.25;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.article-body h2::before {
  content: counter(h2-counter, decimal-leading-zero);
  counter-increment: h2-counter;
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 8px;
  font-weight: 500;
}
.article-body { counter-reset: h2-counter; }

.article-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 30px 0 10px;
}
.article-body p { margin: 0 0 16px; }
.article-body ul, .article-body ol { margin: 0 0 22px; padding-left: 0; list-style: none; }
.article-body ul li, .article-body ol li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 28px;
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 12px rgba(229,199,125,0.5);
}
.article-body ol { counter-reset: ol-counter; }
.article-body ol li {
  padding-left: 36px;
  counter-increment: ol-counter;
}
.article-body ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.article-body strong { color: var(--text-primary); font-weight: 600; }
.article-body a { color: var(--accent-gold); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(229,199,125,0.4); }
.article-body a:hover { text-decoration-color: var(--accent-gold); }

/* Callout-блок (выделенная вставка) */
.article-callout {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  margin: 24px 0;
  background: rgba(229,199,125,0.05);
  border: 1px solid rgba(229,199,125,0.18);
  border-left: 3px solid var(--accent-gold);
  border-radius: 12px;
}
.article-callout-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229,199,125,0.15);
  color: var(--accent-gold);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
}
.article-callout-body { flex: 1; }
.article-callout-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}
.article-callout p { margin: 0; font-size: 15px; line-height: 1.6; }

.article-callout.is-warn { border-left-color: #FFBD2E; background: rgba(255,189,46,0.05); border-color: rgba(255,189,46,0.2); }
.article-callout.is-warn .article-callout-icon { background: rgba(255,189,46,0.15); color: #FFBD2E; }
.article-callout.is-mint { border-left-color: var(--accent-mint); background: rgba(0,217,163,0.04); border-color: rgba(0,217,163,0.18); }
.article-callout.is-mint .article-callout-icon { background: rgba(0,217,163,0.15); color: var(--accent-mint); }

/* Timeline (для статьи MVP за 3 дня) */
.article-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0 28px;
}
.timeline-day {
  padding: 18px 18px 16px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  position: relative;
}
.timeline-day-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}
.timeline-day-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.3;
}
.timeline-day-text {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Pricing-карточки (для статьи MVP за 3 дня) */
.article-pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 24px 0 28px;
}
.pricing-mini {
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}
.pricing-mini-label {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  line-height: 1.35;
}
.pricing-mini-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0 28px;
  font-size: 14px;
  background: rgba(255,255,255,0.02);
  border-radius: 12px;
  overflow: hidden;
}
.article-table th, .article-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.article-table th {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-primary);
  font-size: 13px;
  letter-spacing: 0.02em;
  background: rgba(229,199,125,0.04);
}
.article-table tr:last-child td { border-bottom: 0; }
.article-table td:first-child { color: var(--text-primary); font-weight: 500; }
.article-table tr:hover td { background: rgba(255,255,255,0.015); }

.article-cta {
  margin: 56px 0 40px;
  padding: 36px 32px;
  background: linear-gradient(180deg, rgba(229,199,125,0.06) 0%, rgba(229,199,125,0.02) 100%);
  border: 1px solid rgba(229,199,125,0.18);
  border-radius: 16px;
  text-align: center;
}
.article-cta h3 {
  font-family: var(--font-display);
  font-size: 22px;
  margin: 0 0 8px;
  color: var(--text-primary);
  font-weight: 600;
}
.article-cta p {
  color: var(--text-secondary);
  margin: 0 0 18px;
  font-size: 15px;
}

.article-related { margin-top: 56px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.article-related .section-label { margin-bottom: 16px; }
.related-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 12px; }
.related-card {
  display: block;
  padding: 18px 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.related-card:hover { background: rgba(229,199,125,0.04); border-color: rgba(229,199,125,0.25); }
.related-meta {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 6px;
}
.related-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.35;
}

.nav-links a.is-active { color: var(--accent-gold); }

/* Grid 2-кол. для карточек форматов */
.article-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 20px 0 32px;
}
.article-format-card {
  padding: 20px 20px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.article-format-card:hover {
  background: rgba(229,199,125,0.04);
  border-color: rgba(229,199,125,0.22);
  transform: translateY(-2px);
}
.article-format-icon {
  font-size: 22px;
  margin-bottom: 10px;
  line-height: 1;
}
.article-format-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.article-format-text {
  font-size: 13.5px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

/* Двухколоночный блок «Подходит / Не подходит» */
.article-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 22px 0 32px;
}
.article-fit-col {
  padding: 22px 24px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.07);
}
.article-fit-col.is-yes {
  background: rgba(0,217,163,0.045);
  border-color: rgba(0,217,163,0.22);
}
.article-fit-col.is-no {
  background: rgba(255,90,90,0.04);
  border-color: rgba(255,90,90,0.18);
}
.article-fit-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.article-fit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.is-yes .article-fit-icon { background: rgba(0,217,163,0.18); color: var(--accent-mint); }
.is-no  .article-fit-icon { background: rgba(255,90,90,0.16); color: #ff7a7a; }
.article-fit-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}
.article-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.article-fit-list li {
  position: relative;
  padding: 6px 0 6px 18px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  margin: 0 !important;
}
.article-fit-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1.5px;
  background: rgba(255,255,255,0.25);
}
.is-yes .article-fit-list li::before { background: var(--accent-mint); }
.is-no  .article-fit-list li::before { background: #ff7a7a; }

/* Стилизованный mockup продукта в статьях */
.article-mockup {
  margin: 28px 0 36px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0.015) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.amk-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(0,0,0,0.35);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.amk-dot {
  width: 10px; height: 10px; border-radius: 50%;
  display: inline-block;
}
.amk-dot.r { background: #ff5a5a; }
.amk-dot.y { background: #ffbd2e; }
.amk-dot.g { background: #3ccf91; }
.amk-url {
  margin-left: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
  flex: 1;
  text-align: center;
}
.amk-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--accent-mint, #3ccf91);
  text-transform: uppercase;
}
.amk-livedot {
  width: 6px; height: 6px;
  background: var(--accent-mint, #3ccf91);
  border-radius: 50%;
  animation: amkPulse 1.6s infinite;
}
@keyframes amkPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}
.amk-body {
  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 260px;
}
.amk-side {
  padding: 18px 12px;
  background: rgba(0,0,0,0.18);
  border-right: 1px solid rgba(255,255,255,0.05);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.amk-side-item {
  padding: 9px 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.55);
  border-radius: 8px;
  cursor: default;
}
.amk-side-item.is-active {
  background: rgba(229,199,125,0.1);
  color: var(--accent-gold);
  border: 1px solid rgba(229,199,125,0.22);
}
.amk-main {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.amk-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.amk-kpi {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 12px 14px;
}
.amk-kpi-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
  text-transform: uppercase;
}
.amk-kpi-val {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.amk-kpi-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}
.amk-kpi-bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
}
.amk-albert {
  background: linear-gradient(135deg, rgba(168,85,247,0.08), rgba(229,199,125,0.04));
  border: 1px solid rgba(168,85,247,0.22);
  border-left: 3px solid #A855F7;
  border-radius: 10px;
  padding: 14px 16px;
}
.amk-albert-tag {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: #C396F5;
  margin-bottom: 6px;
}
.amk-albert-msg {
  font-size: 13.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.amk-finrow { display: flex; flex-direction: column; gap: 8px; }
.amk-finline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
}
.amk-finline .g { color: var(--accent-mint, #3ccf91); }
.amk-finline .r { color: #ff7a7a; }
.amk-finline.is-warn {
  background: rgba(255,90,90,0.06);
  border-color: rgba(255,90,90,0.22);
}
.amk-treelist {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-mono);
}
.amk-treelist .lvl1 { padding-left: 0; color: var(--accent-gold); }
.amk-treelist .lvl2 { padding-left: 18px; color: rgba(255,255,255,0.78); }
.amk-treelist .lvl3 { padding-left: 36px; color: rgba(255,255,255,0.55); }
.amk-portfolio-row {
  display: grid;
  grid-template-columns: 1fr 80px 80px;
  gap: 12px;
  padding: 8px 14px;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.amk-portfolio-row:last-child { border-bottom: 0; }
.amk-portfolio-row .name { color: rgba(255,255,255,0.85); }
.amk-portfolio-row .val { font-family: var(--font-mono); text-align: right; color: rgba(255,255,255,0.7); }
.amk-portfolio-row .delta { font-family: var(--font-mono); text-align: right; }
.amk-portfolio-row .delta.up { color: var(--accent-mint, #3ccf91); }
.amk-portfolio-row .delta.down { color: #ff7a7a; }

@media (max-width: 720px) {
  .amk-body { grid-template-columns: 1fr; }
  .amk-side { flex-direction: row; overflow-x: auto; padding: 10px; gap: 6px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
  .amk-side-item { white-space: nowrap; padding: 6px 10px; font-size: 11.5px; }
  .amk-kpi-row { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .amk-kpi { padding: 10px; }
  .amk-kpi-val { font-size: 18px; }
  .amk-main { padding: 16px; }
}

/* Финальный итог-блок */
.article-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 16px;
}
.article-summary-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
}
.article-summary-num {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-top: 1px;
}
.article-summary-text {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.article-summary-text strong { color: var(--text-primary); }

@media (max-width: 720px) {
  .blog-index { padding: 100px 18px 60px; }
  .article { padding: 90px 18px 40px; }
  .article-cta { padding: 28px 22px; }
  .article-fit { grid-template-columns: 1fr; }
  .article-summary { grid-template-columns: 1fr; }
  .article-table { font-size: 13px; }
  .article-table th, .article-table td { padding: 10px 12px; }
}

/* ═══════════════════════════════════════════════════════
   STICKY CTA + SCROLL-TOP
   ═══════════════════════════════════════════════════════ */
.sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--accent-gold);
  color: #0a0c10;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  box-shadow: 0 12px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(229,199,125,0.3);
  text-decoration: none;
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

@media (max-width: 720px) {
  .sticky-cta { display: flex; }
}

.scroll-top-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(20,23,28,0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(229,199,125,0.3);
  color: var(--accent-gold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.scroll-top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.scroll-top-btn:hover {
  background: rgba(229,199,125,0.15);
}

@media (max-width: 720px) {
  .scroll-top-btn {
    bottom: 80px;
    right: 16px;
    width: 40px;
    height: 40px;
  }
}

/* ═══════════════════════════════════════════════════════
   КАЛЬКУЛЯТОР
   ═══════════════════════════════════════════════════════ */
.calc {
  padding: 100px 32px;
  position: relative;
}

.calc .section-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.5;
}

.calc-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
}

.calc-controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-label {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-tertiary);
}

.calc-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.calc-opt {
  padding: 11px 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: 14px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
  user-select: none;
}

.calc-opt:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-primary);
  transform: translateY(-1px);
}

.calc-opt.is-active {
  background: rgba(229,199,125,0.1);
  border-color: rgba(229,199,125,0.5);
  color: var(--accent-gold);
  box-shadow: 0 0 0 1px rgba(229,199,125,0.25);
}

.calc-result {
  position: sticky;
  top: 100px;
}

.calc-result-card {
  background: linear-gradient(180deg, rgba(20,23,28,0.85) 0%, rgba(13,15,19,0.85) 100%);
  border: 1px solid rgba(229,199,125,0.18);
  border-radius: 20px;
  padding: 32px 28px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04);
}

.calc-result-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--text-tertiary);
  margin-bottom: 12px;
}

.calc-result-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 24px;
}

.calc-price-num {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 48px);
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: -0.02em;
  line-height: 1;
}

.calc-price-cur {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent-gold);
  font-weight: 500;
}

.calc-result-meta {
  display: flex;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  margin-bottom: 20px;
}

.calc-meta-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-meta-item + .calc-meta-item {
  border-left: 1px solid rgba(255,255,255,0.06);
}

.calc-meta-label {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-tertiary);
}

.calc-meta-val {
  font-size: 16px;
  color: var(--text-primary);
  font-weight: 500;
}

.calc-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.calc-disclaimer {
  font-size: 10.5px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .calc-wrap { grid-template-columns: 1fr; gap: 28px; }
  .calc-result { position: static; }
  .calc { padding: 72px 20px; }
}

/* ═══════════════════════════════════════════════════════
   LEAD MODAL
   ═══════════════════════════════════════════════════════ */
.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lead-modal.is-open { display: flex; }

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  animation: leadFade 0.2s ease;
}

.lead-modal-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(180deg, #14171c 0%, #0d0f13 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 1px solid rgba(229,199,125,0.18);
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 32px 96px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
  animation: leadSlide 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes leadFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes leadSlide { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: translateY(0) scale(1); } }

.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.lead-modal-close:hover {
  background: rgba(255,255,255,0.08);
  color: var(--text-primary);
}

.lead-modal-eyebrow {
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
  margin-bottom: 8px;
}

.lead-modal-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.lead-modal-sub {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.55);
  margin: 0 0 22px;
}
.lead-modal-sub a { color: var(--accent-gold); }

.lead-form { display: flex; flex-direction: column; gap: 14px; }

.lead-field { display: flex; flex-direction: column; gap: 6px; }

.lead-label {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
}

.lead-req { color: var(--accent-gold); }
.lead-opt { color: rgba(255,255,255,0.3); font-size: 11px; }

.lead-field input,
.lead-field textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: none;
}
.lead-field textarea { min-height: 76px; resize: vertical; }
.lead-field input:focus,
.lead-field textarea:focus {
  border-color: rgba(229,199,125,0.45);
  background: rgba(255,255,255,0.05);
}
.lead-field input::placeholder,
.lead-field textarea::placeholder { color: rgba(255,255,255,0.25); }

.lead-hp { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

.lead-submit { margin-top: 4px; justify-content: center; }
.lead-submit:disabled { opacity: 0.6; pointer-events: none; }
.lead-submit.is-loading .lead-submit-text::after {
  content: '...';
  animation: leadDots 1s steps(3) infinite;
}
@keyframes leadDots { 0%,33% { content: '.'; } 34%,66% { content: '..'; } 67%,100% { content: '...'; } }

.lead-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.32);
  margin: 6px 0 0;
  text-align: center;
  letter-spacing: 0.04em;
}
.lead-meta a { color: var(--accent-gold); }

.lead-form.is-error .lead-submit { border-color: #FF5F57; }
.lead-error-msg {
  font-size: 12px;
  color: #FF8B82;
  margin: 0;
  padding: 8px 12px;
  background: rgba(255,95,87,0.08);
  border: 1px solid rgba(255,95,87,0.25);
  border-radius: 8px;
}

.lead-success {
  text-align: center;
  padding: 16px 0 8px;
}
.lead-success-icon {
  display: inline-flex;
  width: 64px; height: 64px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,217,163,0.1);
  color: var(--accent-mint);
  margin-bottom: 16px;
}

@media (max-width: 600px) {
  .lead-modal-card { padding: 28px 22px 22px; border-radius: 16px; }
  .lead-modal-title { font-size: 22px; }
}

.footer-seo {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.36);
  max-width: 1100px;
}

.footer-seo p { margin: 0 0 10px; }
.footer-seo p:last-child { margin-bottom: 0; }
.footer-seo strong { color: rgba(255,255,255,0.55); font-weight: 500; }

.footer-legal {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ═══════════════════════════════════════════════════════
   REVEAL АНИМАЦИИ
   ═══════════════════════════════════════════════════════ */

/* GSAP анимируемые элементы — по умолчанию видимы.
   GSAP переопределяет через inline style при старте анимации. */
.reveal,
.bento-card,
.section-title,
.section-label,
.cta-title,
.price-card,
.stack-item {
  will-change: transform, opacity;
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

/* ═══════════════════════════════════════════════════════
   SCROLL PROGRESS BAR
   ═══════════════════════════════════════════════════════ */

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.04);
  z-index: 200;
  pointer-events: none;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-mint));
  box-shadow: 0 0 12px var(--accent-gold);
  transition: width 0.1s ease;
}

/* ═══════════════════════════════════════════════════════
   HERO GRID CURSOR — spotlight под мышью
   ═══════════════════════════════════════════════════════ */

.hero-grid-cursor {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(229, 199, 125, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 199, 125, 0.28) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), black 0%, transparent 100%);
  -webkit-mask-image: radial-gradient(circle 180px at var(--mx, 50%) var(--my, 50%), black 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* ═══════════════════════════════════════════════════════
   HERO SPLIT LAYOUT
   ═══════════════════════════════════════════════════════ */

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 56px;
  min-height: 0;
}

.hero-left {
  flex: 0 0 54%;
  min-width: 0;
}

.hero-right {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: visible;
  padding: 20px 0;
}

@media (max-width: 1100px) {
  .hero-inner { gap: 36px; }
  .hero-left { flex: 0 0 58%; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; gap: 32px; }
  .hero-left { flex: 0 0 100%; }
  .hero-right { width: 100%; max-width: 480px; }
}

@media (max-width: 640px) {
  .hero-right { display: none; }
}

/* ═══════════════════════════════════════════════════════
   SAAS MOCKUP
   ═══════════════════════════════════════════════════════ */

.saas-mockup {
  position: relative;
  width: 100%;
  max-width: 460px;
  animation: saasMockupFloat 60s ease-in-out infinite;
}

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

.saas-mockup::before {
  content: '';
  position: absolute;
  inset: -24px;
  background: radial-gradient(ellipse at 50% 50%, rgba(229,199,125,0.1) 0%, transparent 70%);
  z-index: -1;
  border-radius: 32px;
  pointer-events: none;
}

.mockup-browser {
  background: #0D0F13;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: visible;
  clip-path: inset(0 round 14px);
  box-shadow:
    0 0 0 1px rgba(229,199,125,0.08),
    0 48px 96px -24px rgba(0,0,0,0.9),
    0 0 100px -20px rgba(229,199,125,0.15);
  transform: perspective(1100px) rotateY(-7deg) rotateX(2deg);
  transform-origin: center center;
}

.mockup-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.025);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.mockup-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.mockup-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
}

.dot-red    { background: #FF5F57; }
.dot-yellow { background: #FFBD2E; }
.dot-green  { background: #28CA41; }

.mockup-url {
  flex: 1;
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.04);
  padding: 3px 10px;
  border-radius: 5px;
}

.mockup-live {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--accent-mint);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}

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

.mockup-body {
  display: flex;
}

.mockup-sidebar {
  width: 86px;
  border-right: 1px solid rgba(255,255,255,0.05);
  padding: 12px 0;
  flex-shrink: 0;
}

.sidebar-item {
  padding: 6px 12px;
  font-size: 9.5px;
  color: rgba(255,255,255,0.28);
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  user-select: none;
}

.sidebar-item:hover {
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.03);
}

.sidebar-item.active {
  color: var(--accent-gold);
  background: rgba(229,199,125,0.06);
  border-right: 2px solid var(--accent-gold);
}

.mockup-main {
  flex: 1;
  padding: 12px 14px;
  min-width: 0;
}

.mockup-kpis {
  display: flex;
  gap: 7px;
  margin-bottom: 12px;
}

.kpi-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 9px;
  padding: 9px 9px 7px;
}

.kpi-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 3px;
}

.kpi-lbl {
  font-size: 8.5px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 4px;
}

.kpi-delta {
  font-size: 9.5px;
  font-family: var(--font-mono);
  color: var(--accent-mint);
}

.mockup-chart-wrap {
  margin-bottom: 10px;
}

.chart-label {
  font-size: 8.5px;
  color: rgba(255,255,255,0.22);
  margin-bottom: 5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mockup-chart-svg {
  width: 100%;
  height: 50px;
  display: block;
}

.chart-stroke {
  stroke-dasharray: 620;
  stroke-dashoffset: 620;
}

.chart-fill {
  opacity: 0;
}

.mockup-users {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mu-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateX(8px);
}

.mu-row.visible {
  animation: muSlide 0.4s ease-out forwards;
}

@keyframes muSlide {
  to { opacity: 1; transform: translateX(0); }
}

.mu-avatar {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5px;
  font-weight: 700;
  flex-shrink: 0;
}

.mu-info {
  flex: 1;
  min-width: 0;
}

.mu-name {
  display: block;
  font-size: 9.5px;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mu-plan {
  display: block;
  font-size: 8px;
  color: rgba(255,255,255,0.22);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

.mu-mrr {
  font-size: 9.5px;
  font-family: var(--font-mono);
  color: var(--accent-gold);
  white-space: nowrap;
}

.mu-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.mu-status.online {
  background: var(--accent-mint);
  box-shadow: 0 0 6px var(--accent-mint);
}

.pl-row {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 7px;
  border-radius: 7px;
  background: rgba(255,255,255,0.02);
  opacity: 0;
  transform: translateX(8px);
}

.pl-row.visible {
  animation: muSlide 0.4s ease-out forwards;
}

.pl-label {
  flex: 1;
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pl-pct {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  min-width: 24px;
  text-align: right;
}

.pl-val {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--text-secondary);
  white-space: nowrap;
}

.pl-row.pl-profit {
  background: rgba(229,199,125,0.05);
  border: 1px solid rgba(229,199,125,0.1);
}

.pl-row.pl-profit .pl-label {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}

.pl-row.pl-profit .pl-pct {
  color: var(--accent-mint);
}

.pl-row.pl-profit .pl-val {
  color: var(--accent-gold);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════
   ДЛЯ КОГО МЫ — AUDIENCE
   ═══════════════════════════════════════════════════════ */

.audience {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.audience-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--accent-gold-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.audience-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.audience-card:hover::before { opacity: 0.6; }

.audience-card > * { position: relative; z-index: 1; }

.aud-num {
  font-size: 12px;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

.aud-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-gold);
}

.aud-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

.aud-desc {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.aud-jtbd {
  font-size: 12px;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
  padding-top: 14px;
  border-top: 1px dashed var(--border-medium);
  font-style: italic;
}

@media (max-width: 1100px) { .audience-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .audience-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   ГАРАНТИИ
   ═══════════════════════════════════════════════════════ */

.guarantees {
  padding: var(--section-pad) 0;
}

.guarantees-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.guarantee-card {
  padding: 28px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.guarantee-card:hover {
  border-color: var(--accent-gold);
  background: linear-gradient(180deg, rgba(229, 199, 125, 0.03), var(--bg-card));
  transform: translateY(-4px);
}

.g-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(229, 199, 125, 0.06);
  border: 1px solid rgba(229, 199, 125, 0.2);
  border-radius: 12px;
  color: var(--accent-gold);
}

.guarantee-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin: 0;
}

.guarantee-card p {
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1100px) { .guarantees-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .guarantees-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   КОМАНДА
   ═══════════════════════════════════════════════════════ */

.team {
  padding: var(--section-pad) 0;
  position: relative;
}

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

.team-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.4s ease;
}

.team-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-4px);
}

.team-card:hover .photo-glow { opacity: 0.6; }
.team-card:hover .photo-placeholder { transform: scale(1.04); }

.team-photo {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1d24, #0a0b0f);
}

.photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 30%, rgba(229, 199, 125, 0.07), transparent 70%),
    radial-gradient(ellipse at 70% 80%, rgba(91, 141, 239, 0.05), transparent 50%);
  transition: transform 0.6s ease;
}

/* тёмный fade снизу */
.photo-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-card) 0%, transparent 55%);
  z-index: 2;
  pointer-events: none;
}

.team-silhouette {
  width: 72%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 28px rgba(229, 199, 125, 0.35)) drop-shadow(0 0 60px rgba(229, 199, 125, 0.15));
  transition: filter 0.5s ease;
  z-index: 1;
}

.team-card:hover .team-silhouette {
  filter: drop-shadow(0 0 36px rgba(229, 199, 125, 0.55)) drop-shadow(0 0 80px rgba(229, 199, 125, 0.25));
}

.photo-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at center, var(--accent-gold-soft), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Поддержка реальных фото — если положишь файл assets/team/[имя].jpg */
.team-photo.has-image .photo-placeholder { display: none; }
.team-photo .real-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
}

.team-meta {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.team-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.1;
}

.team-role {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.team-bar {
  width: 32px;
  height: 2px;
  background: var(--accent-gold);
  margin: 12px 0;
  box-shadow: 0 0 8px var(--accent-gold);
}

.team-quote {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  margin: 0;
  font-style: italic;
}

@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

.faq {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
}

.faq-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 920px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-item[open] {
  border-color: var(--accent-gold);
  background: linear-gradient(180deg, rgba(229, 199, 125, 0.04), var(--bg-card));
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: -0.015em;
  transition: color 0.3s ease;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-gold); }
.faq-item[open] summary { color: var(--accent-gold); }

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-medium);
  border-radius: 50%;
  font-size: 18px;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
  font-family: var(--font-mono);
  font-weight: 300;
}

.faq-item[open] .faq-toggle {
  transform: rotate(45deg);
  border-color: var(--accent-gold);
}

.faq-answer {
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
}

.faq-cta {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  max-width: 480px;
}

.faq-cta p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

@media (max-width: 600px) {
  .faq-cta { flex-direction: column; align-items: stretch; border-radius: var(--radius-md); }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIAL STRIP
   ═══════════════════════════════════════════════════════ */

.testimonial-strip {
  padding: 56px 0;
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.testi-inner {
  position: relative;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 700;
  color: var(--accent-gold);
  opacity: 0.18;
  line-height: 0.7;
  margin-bottom: 16px;
  user-select: none;
}

.testi-text {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0 0 32px;
  font-style: normal;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-gold-soft);
  border: 1px solid rgba(229,199,125,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--accent-gold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.testi-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
}

.testi-role {
  font-size: 11px;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

.testi-stars {
  margin-left: auto;
  color: var(--accent-gold);
  font-size: 18px;
  letter-spacing: 2px;
  opacity: 0.85;
}

@media (max-width: 640px) {
  .testi-stars { display: none; }
  .testi-quote-mark { font-size: 80px; }
}
