/* ============================================
   SPECTRUM DOMUS · Boss Studio · 2026
   Графит + античное золото
   ============================================ */

:root {
  --bg-primary: #0E1116;
  --bg-secondary: #161B22;
  --bg-elevated: #1C232C;
  --bg-deep: #0A0D11;

  --gold-primary: #C9A961;
  --gold-light: #E4C988;
  --gold-dark: #8B7339;
  --gold-glow: rgba(201, 169, 97, 0.15);

  --text-primary: #F5F2EA;
  --text-secondary: #A8A39A;
  --text-muted: #6B6760;

  --border-subtle: rgba(201, 169, 97, 0.15);
  --border-strong: rgba(201, 169, 97, 0.35);
  --border-faint: rgba(245, 242, 234, 0.06);

  --accent-success: #7FB069;
  --accent-warn: #D9A64A;
  --accent-danger: #C0635E;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;

  --shadow-card: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 30px rgba(201, 169, 97, 0.15);
  --shadow-glow-strong: 0 0 50px rgba(201, 169, 97, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --maxw: 1240px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
}
body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  font-weight: 400;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; color: inherit; cursor: pointer; }

/* Шумовая текстура */
.noise {
  position: fixed; inset: 0; z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.5) 1px, transparent 0),
    radial-gradient(circle at 3px 4px, rgba(255,255,255,0.3) 1px, transparent 0);
  background-size: 4px 4px, 6px 6px;
  mix-blend-mode: overlay;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(14, 17, 22, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
  padding: 18px 0;
}
.nav.scrolled {
  border-bottom-color: var(--border-subtle);
  padding: 12px 0;
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
}
.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-weight: 700;
  display: grid; place-items: center;
  font-size: 15px;
  font-family: var(--font-serif);
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
}
.nav-logo-divider {
  color: var(--gold-primary);
  margin: 0 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.2s;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--gold-primary); }
.nav-links a.active {
  color: var(--gold-primary);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-primary);
}
.nav-cta {
  padding: 8px 18px !important;
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.12), rgba(201, 169, 97, 0.04));
  color: var(--gold-primary) !important;
  transition: all 0.25s ease;
}
.nav-cta:hover {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.22), rgba(201, 169, 97, 0.08));
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-glow);
}
.nav-cta::after { display: none !important; }
.nav-burger {
  display: none;
  width: 32px; height: 32px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 6px; right: 6px;
  height: 1.5px;
  background: var(--text-primary);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.nav-burger span:nth-child(1) { top: 11px; }
.nav-burger span:nth-child(2) { top: 16px; }
.nav-burger span:nth-child(3) { top: 21px; }
.nav-burger.open span:nth-child(1) { top: 16px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 16px; transform: rotate(-45deg); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
.microlabel {
  font-family: var(--font-sans);
  font-size: clamp(10px, 1.6vw, 11px);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 18px;
  display: inline-block;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--text-primary);
}
.section-head {
  margin-bottom: clamp(40px, 6vw, 72px);
  max-width: 760px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: clamp(64px, 10vw, 120px) 0;
  position: relative;
  z-index: 2;
}
.section-alt {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.section-alt::before, .section-alt::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
  transform: translateX(-50%);
}
.section-alt::before { top: -16px; }
.section-alt::after { bottom: -16px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 100px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  white-space: nowrap;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-weight: 600;
  box-shadow: 0 8px 24px -8px rgba(201, 169, 97, 0.5);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(201, 169, 97, 0.65);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
}
.btn-outline {
  background: transparent;
  border-color: var(--border-strong);
  color: var(--gold-primary);
}
.btn-outline:hover {
  border-color: var(--gold-primary);
  background: rgba(201, 169, 97, 0.06);
  box-shadow: var(--shadow-glow);
}
.btn-lg {
  padding: 18px 40px;
  font-size: 15px;
}

/* ============================================
   1. HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  background:
    radial-gradient(ellipse 80% 60% at 80% 30%, rgba(201, 169, 97, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(201, 169, 97, 0.03) 0%, transparent 50%),
    var(--bg-primary);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin: 12px 0 18px;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--gold-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(18px, 2.5vw, 26px);
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 24px;
  letter-spacing: 0.005em;
}
.hero-lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 28px;
  max-width: 540px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
  align-items: center;
}
.hero-meta .dot {
  color: var(--gold-primary);
  opacity: 0.6;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  width: 100%;
  max-width: 100%;
}

/* Скролл-хинт */
.hero-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  z-index: 3;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 50%;
  background: var(--gold-primary);
  animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(200%); }
}

/* ============================================
   DEVICE MOCKUPS (HERO)
   ============================================ */
.device-monitor {
  position: relative;
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}
.device-bezel {
  background: linear-gradient(180deg, #2a2f37, #15191f);
  border-radius: 14px;
  padding: 12px 12px 14px;
  box-shadow:
    0 0 0 1px rgba(201, 169, 97, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow-glow);
  position: relative;
}
.device-bezel::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 2px;
  background: rgba(201, 169, 97, 0.3);
  border-radius: 2px;
}
.device-screen {
  background: var(--bg-deep);
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}
.device-stand {
  width: 80px;
  height: 18px;
  background: linear-gradient(180deg, #2a2f37, #15191f);
  margin: 0 auto;
  border-radius: 0 0 12px 12px;
  position: relative;
}
.device-stand::after {
  content: '';
  display: block;
  width: 140px;
  height: 6px;
  background: linear-gradient(180deg, #2a2f37, #1a1f25);
  margin: 0 auto;
  border-radius: 4px;
  margin-top: 0;
  position: relative;
  top: 18px;
  left: -30px;
}

.device-phone {
  position: absolute;
  right: -10px;
  bottom: -40px;
  width: 130px;
  z-index: 2;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
.phone-bezel {
  background: linear-gradient(180deg, #2a2f37, #15191f);
  border-radius: 26px;
  padding: 7px;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(201, 169, 97, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
.phone-notch {
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 14px;
  background: #0a0d11;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}
.phone-screen {
  background: var(--bg-deep);
  border-radius: 18px;
  aspect-ratio: 9 / 19;
  overflow: hidden;
  padding: 22px 10px 10px;
}
.phone-content { height: 100%; }
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.phone-logo {
  width: 22px; height: 22px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 700;
  display: grid; place-items: center;
}
.phone-burger {
  display: flex; flex-direction: column; gap: 2px;
}
.phone-burger span {
  width: 14px; height: 1px; background: var(--text-secondary);
}

.phone-hero-title {
  height: 8px;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
  margin-bottom: 4px;
}
.phone-hero-title.short { width: 70%; }
.phone-hero-text {
  height: 3px;
  background: var(--border-faint);
  border-radius: 2px;
  margin-bottom: 12px;
}
.phone-hero-btn {
  height: 18px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  border-radius: 9px;
  margin-bottom: 12px;
}
.phone-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
}
.phone-card {
  height: 48px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
}

/* Mockup browser bar (общий) */
.mock-browser-bar {
  background: #1a1f25;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid var(--border-faint);
}
.mock-browser-bar > span:first-child,
.mock-browser-bar > span:nth-child(2),
.mock-browser-bar > span:nth-child(3) {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-muted);
  opacity: 0.5;
}
.mock-browser-bar > span:first-child { background: #ff5f57; opacity: 0.6; }
.mock-browser-bar > span:nth-child(2) { background: #ffbd2e; opacity: 0.6; }
.mock-browser-bar > span:nth-child(3) { background: #28c940; opacity: 0.6; }
.mock-url {
  flex: 1;
  background: var(--bg-elevated);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 10px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  margin-left: 8px;
  text-align: center;
}

.mock-page {
  padding: 14px;
  height: 100%;
}
.mock-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-faint);
}
.mock-logo {
  width: 24px; height: 24px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-family: var(--font-serif);
  font-size: 12px;
  font-weight: 700;
  display: grid; place-items: center;
}
.mock-menu {
  display: flex;
  gap: 6px;
}
.mock-menu span {
  width: 24px; height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
}
.mock-hero-section { padding: 8px 0 12px; }
.mock-hero-title-1 {
  height: 8px;
  width: 70%;
  background: linear-gradient(90deg, var(--text-primary), var(--text-secondary));
  border-radius: 3px;
  margin-bottom: 4px;
}
.mock-hero-title-2 {
  height: 8px;
  width: 50%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 3px;
  margin-bottom: 10px;
}
.mock-hero-text {
  height: 3px;
  background: var(--border-faint);
  border-radius: 2px;
  margin-bottom: 4px;
}
.mock-hero-text.short { width: 60%; margin-bottom: 14px; }
.mock-hero-buttons {
  display: flex; gap: 8px; margin-bottom: 14px;
}
.mock-btn-gold {
  width: 80px; height: 18px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
}
.mock-btn-outline {
  width: 60px; height: 18px;
  border-radius: 9px;
  border: 1px solid var(--border-strong);
}
.mock-categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.mock-cat {
  aspect-ratio: 1;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 4px;
}

/* ============================================
   2. BRIEF
   ============================================ */
.brief-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: start;
}
.brief-prose p {
  margin-bottom: 18px;
  color: var(--text-secondary);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
}
.brief-prose p:first-child::first-letter {
  font-family: var(--font-serif);
  font-size: 4em;
  font-weight: 700;
  float: left;
  line-height: 0.85;
  margin: 6px 10px 0 0;
  color: var(--gold-primary);
}
.brief-cards {
  display: grid;
  gap: 16px;
}
.brief-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.brief-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.brief-card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.brief-card:hover::before { opacity: 1; }
.brief-card-num {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.brief-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.brief-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ============================================
   3. ARCHITECTURE
   ============================================ */
.architecture {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto 60px;
  max-width: 880px;
}
.arch-row {
  display: flex;
  width: 100%;
}
.arch-row-top, .arch-row-admin {
  justify-content: center;
}
.arch-row-funnels {
  justify-content: space-between;
  gap: 60px;
}
.arch-funnel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.arch-node {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s;
  width: 100%;
  max-width: 360px;
}
.arch-funnel .arch-node {
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.arch-funnel-label {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.arch-step {
  background: var(--bg-secondary);
  border: 1px solid var(--border-faint);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13.5px;
  color: var(--text-secondary);
}
.arch-node-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.15), rgba(201, 169, 97, 0.05));
  border: 1px solid var(--border-subtle);
  margin: 0 auto 12px;
  color: var(--gold-primary);
  display: grid; place-items: center;
}
.arch-node-label {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.arch-node-sub {
  font-size: 12.5px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.arch-node-public {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08), var(--bg-elevated));
  border-color: var(--border-strong);
}
.arch-node-admin {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08), var(--bg-elevated));
  border-color: var(--border-strong);
}
.arch-connector {
  width: 1px;
  background: linear-gradient(to bottom, var(--gold-primary), transparent);
  position: relative;
}
.arch-connector-down {
  height: 32px;
  background: var(--gold-primary);
  opacity: 0.5;
}
.arch-fork {
  width: 70%;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.5;
  margin-bottom: 32px;
  position: relative;
}
.arch-fork::before, .arch-fork::after {
  content: '';
  position: absolute;
  top: 0;
  width: 1px; height: 32px;
  background: var(--gold-primary);
  opacity: 0.5;
}
.arch-fork::before { left: 0; }
.arch-fork::after { right: 0; }
.arch-merge {
  width: 70%;
  height: 1px;
  background: var(--gold-primary);
  opacity: 0.5;
  margin-top: 32px;
  position: relative;
}
.arch-merge::before, .arch-merge::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 1px; height: 32px;
  background: var(--gold-primary);
  opacity: 0.5;
}
.arch-merge::before { left: 0; }
.arch-merge::after { right: 0; }

.arch-legend {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.arch-legend-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-md);
}
.arch-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 12px var(--gold-primary);
}
.arch-legend-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.arch-legend-item span {
  font-size: 13.5px;
  color: var(--text-secondary);
}

/* ============================================
   4. PAGES STRUCTURE
   ============================================ */
.pages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.page-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}
.page-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, var(--gold-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.page-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px) rotateX(2deg);
  box-shadow: var(--shadow-glow-strong);
}
.page-card:hover::before { opacity: 1; }
.page-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.04));
  border: 1px solid var(--border-subtle);
  display: grid; place-items: center;
  color: var(--gold-primary);
  margin-bottom: 18px;
  transition: all 0.3s;
}
.page-card:hover .page-card-icon {
  border-color: var(--border-strong);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.28), rgba(201, 169, 97, 0.08));
}
.page-card-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 13px;
  color: var(--gold-primary);
  font-weight: 600;
  letter-spacing: 0.12em;
}
.page-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.page-card p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.65;
}
.page-card-legal {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.05), var(--bg-elevated));
  border-style: dashed;
}

/* ============================================
   5. EMPLOYER FUNNEL (HORIZONTAL)
   ============================================ */
.funnel {
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 0;
  align-items: stretch;
  margin-bottom: 40px;
}
.funnel-step {
  grid-column: span 2;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 18px;
  position: relative;
  transition: all 0.3s;
  min-height: 100%;
}
.funnel-step:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.funnel-arrow {
  grid-column: span 1;
  display: grid;
  place-items: center;
  position: relative;
}
.funnel-arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}
.funnel-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 18%;
  width: 6px; height: 6px;
  border-top: 1px solid var(--gold-primary);
  border-right: 1px solid var(--gold-primary);
  transform: translateY(-50%) rotate(45deg);
}
.funnel-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold-primary);
  background: rgba(201, 169, 97, 0.08);
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 16px;
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.funnel-step h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.25;
  color: var(--text-primary);
}
.funnel-step p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.funnel-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.08), rgba(201, 169, 97, 0.02));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  max-width: 800px;
  margin: 0 auto;
}
.funnel-guarantee svg {
  flex-shrink: 0;
  color: var(--gold-primary);
  margin-top: 4px;
}
.funnel-guarantee strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.funnel-guarantee span {
  font-size: 14.5px;
  color: var(--text-secondary);
}

/* ============================================
   6. CANDIDATE FUNNEL (VERTICAL)
   ============================================ */
.funnel-vertical {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.funnel-vertical::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 16px;
  bottom: 16px;
  width: 1px;
  background: linear-gradient(to bottom,
    transparent 0%,
    var(--gold-primary) 8%,
    var(--gold-primary) 92%,
    transparent 100%);
  opacity: 0.4;
}
.funnel-v-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 16px 0;
  position: relative;
}
.funnel-v-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--gold-primary);
  color: var(--gold-primary);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  display: grid; place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 4px var(--bg-primary);
  transition: all 0.3s;
}
.funnel-v-step:hover .funnel-v-num {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
}
.funnel-v-content {
  padding: 8px 0;
}
.funnel-v-content h4 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.funnel-v-content p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   7. MOCKUPS SECTION
   ============================================ */
.mockup-block {
  margin-bottom: clamp(60px, 8vw, 100px);
}
.mockup-block:last-child { margin-bottom: 0; }
.mockup-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 32px;
}
.mockup-header-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
}
.mockup-num {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-primary);
  letter-spacing: 0.1em;
}
.mockup-header h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  color: var(--text-primary);
}
.mockup-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 4px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  align-self: flex-start;
}

.mockup-pair {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: center;
}

.mock-monitor {
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #2a2f37, #15191f);
  padding: 12px;
  box-shadow:
    0 0 0 1px rgba(201, 169, 97, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow-glow);
}
.mock-monitor::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30%;
  height: 2px;
  background: rgba(201, 169, 97, 0.3);
  border-radius: 2px;
}
.mock-monitor-screen {
  background: var(--bg-deep);
  border-radius: 6px;
  overflow: hidden;
}
.mock-monitor-lg .mock-monitor-screen { aspect-ratio: 16 / 10; }
.mock-monitor-xl .mock-monitor-screen { aspect-ratio: 16 / 9; }

/* Mockup home page (large) */
.mock-page-home {
  padding: 18px 22px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.mock-menu-real {
  display: flex;
  align-items: center;
  gap: 16px;
}
.mock-menu-real span {
  font-size: 11px;
  color: var(--text-secondary);
  font-family: var(--font-sans);
}
.mock-menu-cta {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary) !important;
  padding: 5px 12px;
  border-radius: 100px;
  font-weight: 600;
}
.mock-home-hero {
  padding: 16px 0 12px;
}
.mock-h1 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.mock-h1:nth-child(2) {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.mock-p {
  font-size: 11px;
  color: var(--text-secondary);
  margin: 8px 0 12px;
  max-width: 80%;
}
.mock-cta-row {
  display: flex; gap: 8px;
}
.mock-btn-real {
  font-size: 10px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}
.mock-btn-gold-real {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
}
.mock-btn-outline-real {
  border: 1px solid var(--border-strong);
  color: var(--gold-primary);
}
.mock-categories-real {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.mock-cat-tile {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px 4px 6px;
  text-align: center;
}
.mock-cat-icon {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.3), rgba(201, 169, 97, 0.1));
  margin: 0 auto 4px;
}
.mock-cat-tile span {
  font-size: 9px;
  color: var(--text-secondary);
  display: block;
}
.mock-tariffs-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.mock-tariff-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}
.mock-tariff-active {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.12), var(--bg-elevated));
  border-color: var(--gold-primary);
}
.mock-tariff-name {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 4px;
}
.mock-tariff-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Mock phone (mockups section) */
.mock-phone {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.6));
}
.mock-phone-content { padding: 6px 4px; }
.mock-phone-h1 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--text-primary);
}
.mock-phone-h1:nth-of-type(2) {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}
.mock-phone-text {
  font-size: 10px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.mock-phone-btn {
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  padding: 8px;
  text-align: center;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  margin-bottom: 14px;
}
.mock-phone-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}
.mock-phone-cat {
  aspect-ratio: 16 / 10;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
}
.mock-phone-card {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.12), var(--bg-elevated));
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
}
.mock-phone-card-name {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
}
.mock-phone-card-price {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

/* Mockup APP layout (employer + candidate dashboard) */
.mock-app, .mock-admin {
  display: grid;
  grid-template-columns: 140px 1fr 200px;
  height: 100%;
  background: var(--bg-primary);
}
.mock-admin {
  grid-template-columns: 140px 1fr;
}
.mock-sidebar {
  background: var(--bg-deep);
  padding: 16px 14px;
  border-right: 1px solid var(--border-faint);
  display: flex;
  flex-direction: column;
}
.mock-sidebar > .mock-logo { margin-bottom: 24px; }
.mock-sidebar ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}
.mock-sidebar li {
  font-size: 11px;
  color: var(--text-secondary);
  padding: 8px 10px;
  border-radius: 5px;
  cursor: pointer;
}
.mock-sidebar li.active {
  background: rgba(201, 169, 97, 0.12);
  color: var(--gold-primary);
  font-weight: 600;
}
.mock-sidebar-bottom {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-faint);
  margin-top: auto;
}
.mock-avatar {
  width: 24px; height: 24px;
  border-radius: 50%;
  background-color: #2a2f37;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.mock-avatar-cand {
  border-color: var(--border-strong);
}
.mock-username {
  font-size: 10px;
  color: var(--text-secondary);
}
.mock-main {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mock-main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-main-header h5 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}
.mock-status-badge {
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(201, 169, 97, 0.12);
  color: var(--gold-primary);
  border: 1px solid var(--border-subtle);
  font-weight: 500;
}
.mock-candidates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-candidate {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: all 0.3s;
}
.mock-candidate:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}
.mock-candidate-photo {
  width: 100%;
  aspect-ratio: 0.92;
  border-radius: 6px;
  background-color: #1a1f25;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.mock-candidate-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(14, 17, 22, 0.35) 100%);
  pointer-events: none;
}
.mock-candidate-name {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.mock-candidate-role {
  font-size: 10px;
  color: var(--text-secondary);
}
.mock-candidate-meta {
  font-size: 9px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.mock-candidate-btn {
  background: rgba(201, 169, 97, 0.1);
  border: 1px solid var(--border-subtle);
  color: var(--gold-primary);
  font-size: 10px;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: auto;
}

.mock-rightbar {
  background: var(--bg-deep);
  padding: 16px 14px;
  border-left: 1px solid var(--border-faint);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mock-stat-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px 12px;
}
.mock-stat-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
  letter-spacing: 0.05em;
}
.mock-stat-value {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-primary);
}
.mock-progress {
  height: 4px;
  background: var(--bg-deep);
  border-radius: 2px;
  margin-top: 8px;
  overflow: hidden;
}
.mock-progress-lg { height: 6px; }
.mock-progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
  border-radius: 2px;
}
.mock-chat {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 10px 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-chat-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.mock-chat-line {
  height: 4px;
  background: var(--border-subtle);
  border-radius: 2px;
}
.mock-chat-line.short { width: 60%; }

/* Candidate dashboard */
.mock-main-cand .mock-progress-card {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08), var(--bg-elevated));
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 14px 18px;
}
.mock-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--text-secondary);
}
.mock-progress-row strong {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-primary);
  font-weight: 700;
}
.mock-cand-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
}
.mock-video-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px;
}
.mock-video-frame {
  aspect-ratio: 16 / 10;
  border-radius: 6px;
  background-color: #15191f;
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
  display: grid; place-items: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}
.mock-video-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, rgba(14, 17, 22, 0.25) 0%, rgba(14, 17, 22, 0.65) 100%),
    linear-gradient(180deg, rgba(14, 17, 22, 0.3) 0%, rgba(14, 17, 22, 0.5) 100%);
  pointer-events: none;
}
.mock-video-frame .mock-video-play {
  position: relative;
  z-index: 2;
}
.mock-video-play {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-primary);
  color: var(--bg-primary);
  display: grid; place-items: center;
  box-shadow: 0 0 20px var(--gold-primary);
}
.mock-video-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-video-title {
  font-size: 10px;
  color: var(--text-secondary);
}
.mock-video-btn {
  font-size: 10px;
  color: var(--gold-primary);
  font-weight: 600;
}
.mock-docs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-doc-row {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
}
.mock-doc-name { color: var(--text-secondary); }
.mock-doc-status { font-weight: 600; font-size: 10px; }
.mock-doc-ok { border-left: 2px solid var(--accent-success); }
.mock-doc-ok .mock-doc-status { color: var(--accent-success); }
.mock-doc-pending { border-left: 2px solid var(--accent-warn); }
.mock-doc-pending .mock-doc-status { color: var(--accent-warn); }
.mock-doc-warn { border-left: 2px solid var(--accent-danger); }
.mock-doc-warn .mock-doc-status { color: var(--accent-danger); }

.mock-notification {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.02));
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mock-notif-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-primary);
  flex-shrink: 0;
  margin-top: 6px;
  box-shadow: 0 0 10px var(--gold-primary);
}
.mock-notif-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.mock-notif-text {
  font-size: 11px;
  color: var(--text-secondary);
}

/* Admin panel */
.mock-admin-main {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mock-admin-kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mock-kpi {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 10px 14px;
}
.mock-kpi-label {
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.mock-kpi-value {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-primary);
}
.mock-admin-table {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  overflow: hidden;
}
.mock-table-header {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: 8px 14px;
  background: var(--bg-deep);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  border-bottom: 1px solid var(--border-faint);
}
.mock-table-row {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  padding: 10px 14px;
  font-size: 11px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-faint);
  align-items: center;
}
.mock-table-row:last-child { border-bottom: none; }
.mock-badge {
  font-size: 9px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
  width: fit-content;
}
.mock-badge-warn {
  background: rgba(217, 166, 74, 0.15);
  color: var(--accent-warn);
}
.mock-badge-ok {
  background: rgba(127, 176, 105, 0.15);
  color: var(--accent-success);
}
.mock-admin-match {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 12px 14px;
}
.mock-match-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 10px;
}
.mock-match-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mock-match-cand {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-deep);
  padding: 6px 10px;
  border-radius: 100px;
  font-size: 10px;
  color: var(--text-secondary);
  border: 1px solid var(--border-faint);
}
.mock-match-photo {
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: #1a1f25;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
}
.mock-match-send {
  margin-left: auto;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
}

/* Pricing page mockup */
.mock-page-pricing {
  padding: 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mock-pricing-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}
.mock-pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mock-pricing-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 14px;
  position: relative;
}
.mock-pricing-active {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.12), var(--bg-elevated));
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
}
.mock-pricing-badge {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  font-size: 9px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.mock-pricing-name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold-primary);
  margin-bottom: 6px;
}
.mock-pricing-price {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.mock-pricing-line {
  height: 3px;
  background: var(--border-subtle);
  border-radius: 2px;
  margin-bottom: 6px;
}
.mock-pricing-line.short { width: 60%; }

.mock-payment {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mock-payment-title {
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}
.mock-payment-methods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.mock-pay-btn {
  background: var(--bg-deep);
  border: 1px solid var(--border-subtle);
  border-radius: 6px;
  padding: 8px;
  text-align: center;
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}
.mock-pay-active {
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.18), rgba(201, 169, 97, 0.06));
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  font-weight: 600;
}
.mock-payment-secure {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: var(--text-muted);
}
.mock-payment-secure svg { color: var(--gold-primary); }

/* ============================================
   8. TARIFFS
   ============================================ */
.tariffs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.tariff {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.tariff:hover {
  border-color: var(--border-strong);
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}
.tariff-featured {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.08), var(--bg-elevated));
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-glow);
  transform: translateY(-12px);
}
.tariff-featured:hover {
  transform: translateY(-18px);
  box-shadow: var(--shadow-glow-strong);
}
.tariff-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-dark));
  color: var(--bg-primary);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tariff-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.tariff-price {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--text-primary);
  margin-bottom: 28px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}
.tariff-currency {
  font-size: 0.5em;
  color: var(--gold-primary);
  margin-top: 0.3em;
}
.tariff-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.tariff-features li {
  position: relative;
  padding-left: 24px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.tariff-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold-primary);
  border-bottom: 1.5px solid var(--gold-primary);
  transform: rotate(-45deg);
}
.tariff-note {
  margin-top: 36px;
  font-size: 13.5px;
  color: var(--text-muted);
  text-align: center;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   9. PAYMENTS
   ============================================ */
.payments-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.payments-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px;
  position: relative;
}
.payments-stage {
  position: absolute;
  top: 24px; right: 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(201, 169, 97, 0.08);
  padding: 5px 12px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
}
.payments-block h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-primary);
}
.payments-block p {
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 14px;
}
.payments-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0;
}
.payments-list li {
  font-size: 14px;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
  line-height: 1.55;
}
.payments-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 8px; height: 1px;
  background: var(--gold-primary);
}
.payments-list span {
  color: var(--gold-primary);
  font-weight: 600;
  margin-right: 4px;
}
.payments-note {
  font-size: 13px !important;
  color: var(--text-muted) !important;
  font-style: italic;
  margin-top: 16px !important;
  padding-top: 16px;
  border-top: 1px dashed var(--border-faint);
}

.payments-table-wrapper {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}
.payments-table-wrapper h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.payments-table {
  display: flex;
  flex-direction: column;
}
.ptable-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-faint);
  font-size: 14.5px;
}
.ptable-row > span:first-child {
  color: var(--text-primary);
  font-weight: 500;
}
.ptable-row > span:not(:first-child) {
  color: var(--text-secondary);
}
.ptable-head {
  border-bottom: 1px solid var(--border-strong);
  padding: 0 0 14px;
}
.ptable-head > span {
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary) !important;
}
.ptable-na {
  color: var(--text-muted) !important;
  font-style: italic;
}

/* ============================================
   10. TECH
   ============================================ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.tech-col {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: relative;
  transition: all 0.3s;
}
.tech-col:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.tech-num {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-primary);
  opacity: 0.4;
  margin-bottom: 8px;
  line-height: 1;
}
.tech-col h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-primary);
}
.tech-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tech-col li {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  padding-left: 18px;
  position: relative;
}
.tech-col li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold-primary);
}
.tech-col li strong {
  color: var(--text-primary);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-sans);
  font-size: 14.5px;
}
.tech-note {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  font-size: 14.5px;
  color: var(--text-secondary);
  line-height: 1.75;
  padding: 24px;
  border-top: 1px solid var(--border-faint);
  border-bottom: 1px solid var(--border-faint);
}

/* ============================================
   11. MVP
   ============================================ */
.mvp-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.mvp-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 32px;
  transition: all 0.3s;
}
.mvp-block:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.mvp-block h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--gold-primary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-faint);
}
.mvp-block-extra {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.05), var(--bg-elevated));
}
.checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checks li {
  position: relative;
  padding-left: 28px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 16px; height: 9px;
  border-left: 1.5px solid var(--accent-success);
  border-bottom: 1.5px solid var(--accent-success);
  transform: rotate(-45deg);
}

.mvp-future {
  background: var(--bg-elevated);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-md);
  padding: 32px;
}
.mvp-future h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}
.mvp-future-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 24px;
}
.mvp-future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mvp-future-grid > div {
  background: var(--bg-secondary);
  border: 1px solid var(--border-faint);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 13.5px;
  color: var(--text-secondary);
  line-height: 1.5;
  transition: all 0.3s;
}
.mvp-future-grid > div:hover {
  border-color: var(--border-subtle);
  background: var(--bg-elevated);
  color: var(--text-primary);
}

.dashes {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dashes li {
  position: relative;
  padding-left: 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-secondary);
}
.dashes li::before {
  content: '—';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-primary);
  font-weight: 600;
}

/* ============================================
   12. TIMELINE
   ============================================ */
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    var(--gold-primary) 5%,
    var(--gold-primary) 95%,
    transparent 100%);
  opacity: 0.3;
}
.timeline-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s;
}
.timeline-item:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}
.timeline-item::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--gold-primary);
  box-shadow: 0 0 0 4px var(--bg-primary);
  display: none;
}
.timeline-week {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 8px;
}
.timeline-item h4 {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-primary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-faint);
}
.timeline-item ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.timeline-item li {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--text-secondary);
  padding-left: 12px;
  position: relative;
}
.timeline-item li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 4px; height: 1px;
  background: var(--gold-primary);
}
.timeline-note {
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 880px;
  margin: 0 auto;
  line-height: 1.7;
  font-style: italic;
}

/* ============================================
   13. COST
   ============================================ */
.section-cost {
  background:
    radial-gradient(ellipse 60% 40% at 50% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 70%),
    var(--bg-secondary);
}
.section-cost .section-head {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-cost .microlabel {
  display: block;
}
.cost-card {
  text-align: center;
  margin-bottom: 60px;
}
.cost-amount {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(80px, 14vw, 180px);
  line-height: 0.95;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold-primary) 50%, var(--gold-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  letter-spacing: -0.02em;
}
.cost-amount-currency {
  font-size: 0.5em;
  margin-top: 0.15em;
}
.cost-amount-label {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.cost-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.cost-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s;
}
.cost-block:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.cost-block h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--text-primary);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border-faint);
}
.cost-payment {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 18px;
}
.cost-payment-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-faint);
  border-radius: var(--radius-md);
}
.cost-payment-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-primary);
  flex-shrink: 0;
  width: 70px;
  text-align: center;
}
.cost-payment-row strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.cost-payment-row span {
  font-size: 13.5px;
  color: var(--text-secondary);
}
.cost-payment-note {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}
.cost-block-extra {
  background: linear-gradient(180deg, rgba(201, 169, 97, 0.05), var(--bg-elevated));
}
.cost-extra-sub {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
}

/* ============================================
   14. ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.about-text p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.about-text p:first-child {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 24px);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.about-stat {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
}
.about-stat:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-primary), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
}
.about-stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
}

/* ============================================
   15. CTA
   ============================================ */
.section-cta {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg-primary);
}
.cta-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.cta-glow {
  position: absolute;
  inset: -50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 169, 97, 0.18), transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(201, 169, 97, 0.12), transparent 50%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}
.cta-card > * { position: relative; z-index: 2; }
.cta-title {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--gold-light) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 12px 0 24px;
}
.cta-text {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 36px;
  max-width: 500px;
  text-align: left;
}
.cta-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.55;
}
.cta-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 14px; height: 8px;
  border-left: 1.5px solid var(--gold-primary);
  border-bottom: 1.5px solid var(--gold-primary);
  transform: rotate(-45deg);
}
.cta-contacts {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}
.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  min-width: 220px;
  text-align: left;
  transition: all 0.3s;
}
.cta-contact:hover {
  border-color: var(--gold-primary);
  background: rgba(201, 169, 97, 0.05);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}
.cta-contact > svg {
  color: var(--gold-primary);
  margin-bottom: 4px;
}
.cta-contact > span {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}
.cta-contact > strong {
  font-size: 14px;
  color: var(--text-primary);
  font-weight: 500;
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border-subtle);
  padding: 40px 0 32px;
  position: relative;
  z-index: 2;
}
.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-brand {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}
.footer-date {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.footer-disclaimer {
  font-size: 12px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border-faint);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.js-anim .reveal:not(.in) {
  opacity: 0;
  transform: translateY(36px);
}
@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal:not(.in) { opacity: 1; transform: none; transition: none; }
}

/* ============================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-right {
    min-height: 380px;
  }
  .device-monitor {
    max-width: 420px;
    margin: 0 auto;
  }
  .device-phone {
    right: -10px;
    bottom: -30px;
    width: 110px;
  }
  .brief-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .arch-legend {
    grid-template-columns: 1fr;
  }
  .funnel {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .funnel-step {
    grid-column: span 1;
  }
  .funnel-arrow {
    grid-column: span 1;
    height: 30px;
  }
  .funnel-arrow::before {
    width: 1px;
    height: 100%;
    left: 50%;
    top: 0;
    background: linear-gradient(to bottom, transparent, var(--gold-primary), transparent);
  }
  .funnel-arrow::after {
    top: auto;
    right: auto;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) rotate(135deg);
  }
  .mockup-pair {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .mockup-pair > * { min-width: 0; }
  .mock-phone {
    max-width: 200px;
  }
  .tariffs {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tariff-featured {
    transform: translateY(0);
  }
  .tariff-featured:hover {
    transform: translateY(-6px);
  }
  .payments-grid {
    grid-template-columns: 1fr;
  }
  .tech-grid {
    grid-template-columns: 1fr;
  }
  .mvp-grid {
    grid-template-columns: 1fr;
  }
  .mvp-block-extra {
    grid-column: span 1;
  }
  .mvp-future-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .timeline {
    grid-template-columns: 1fr 1fr;
  }
  .timeline::before { display: none; }
  .cost-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ============================================
   RESPONSIVE — MOBILE (≤ 768px)
   КРИТИЧНО: десктоп-мокапы становятся «фотографиями»
   с фиксированной шириной и горизонтальным скроллом
   ============================================ */
@media (max-width: 768px) {
  body { font-size: 15px; }

  .container { padding: 0 18px; }

  /* Nav: показываем бургер */
  .nav-logo-text { display: none; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    gap: 0;
    padding: 12px 24px 24px;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-faint);
    font-size: 14px;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta {
    margin-top: 8px;
    text-align: center;
  }
  .nav-burger { display: block; }

  /* Hero — без флекса/грида, чистый block + text-align: center.
     Padding полностью на .hero (16px слева=справа), container без padding. */
  .hero {
    padding: 100px 16px 60px;
    min-height: auto;
    overflow: hidden;
    display: block;
    text-align: center;
  }
  .hero > .container {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    width: 100%;
  }
  .hero-grid {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
  }
  .hero-left,
  .hero-right {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
  }
  .hero-right {
    margin-top: 32px;
  }
  .hero-left .microlabel,
  .hero-left .hero-title,
  .hero-left .hero-sub,
  .hero-left .hero-lead,
  .hero-left .hero-meta {
    display: block;
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-lead {
    max-width: 460px !important;
  }
  .hero-meta {
    font-size: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
  }
  .hero-cta .btn {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 12px auto 0;
  }
  .hero-cta .btn:first-child {
    margin-top: 0;
  }
  .hero-right {
    min-height: 240px;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
  .device-monitor {
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
  }
  /* На мобильной убираем плавающий телефон — пользователь уже на мобильной,
     дублировать «вот так на телефоне» бессмысленно, и он создаёт асимметрию */
  .device-phone {
    display: none;
  }
  .hero-scroll-hint { display: none; }

  /* Brief */
  .brief-prose p:first-child::first-letter {
    font-size: 3.2em;
    margin: 4px 8px 0 0;
  }

  /* Pages */
  .pages-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  /* Architecture */
  .arch-row-funnels {
    flex-direction: column;
    gap: 24px;
  }
  .arch-fork, .arch-merge {
    display: none;
  }
  .arch-row-funnels {
    position: relative;
  }
  .architecture { gap: 0; }

  /* Funnel vertical */
  .funnel-vertical::before { left: 18px; }
  .funnel-v-num { width: 36px; height: 36px; font-size: 15px; }
  .funnel-v-step { gap: 16px; }

  /* MOCKUPS — критично!
     Десктоп-мокапы получают фиксированную ширину,
     помещаются в горизонтальный scroll-контейнер,
     визуально работают как «фотографии» */
  .mockup-pair {
    grid-template-columns: 1fr;
  }

  /* Mockup на мобилке: масштабируем как «фотографию» вместо горизонтального скролла.
     JS вычисляет scale и применяет transform + margin-bottom компенсацию */
  .mockup-block {
    overflow: hidden;
  }
  .mockup-pair {
    display: block;
  }
  .mockup-pair > * { min-width: 0; }
  /* Убираем дублирующий мобильный мокап в секции 7.1: пользователь уже на мобильной */
  .mockup-pair .mock-phone {
    display: none;
  }
  .mockup-block .mock-monitor {
    overflow: visible;
  }
  .mockup-block .mock-monitor-lg .mock-monitor-screen,
  .mockup-block .mock-monitor-xl .mock-monitor-screen {
    /* Сохраняем десктопный layout */
    width: 100%;
  }
  .mockup-block .mock-monitor-lg,
  .mockup-block .mock-monitor-xl {
    /* JS установит width: 720px + transform: scale(...) + margin-bottom */
    transform-origin: top left;
  }
  /* Фиксим: scaled-down stand bar чтобы не шёл за пределы */
  .mockup-block .mock-monitor::after {
    display: none;
  }

  /* Hero device monitor — тоже фиксированная inner ширина */
  .device-screen {
    min-width: 0;
  }

  /* Phone mock в hero — фиксированная позиция справа */
  .device-phone {
    position: absolute;
  }

  /* Mockup phone в секции 7.1 — центруем под десктоп-мокапом */
  .mock-phone {
    max-width: 200px;
    margin: 24px auto 0;
  }

  /* Tariffs */
  .tariff {
    padding: 28px 24px;
  }
  .tariff-featured { transform: translateY(0); }

  /* Payments */
  .payments-block {
    padding: 28px 22px;
  }
  .payments-stage {
    position: static;
    display: inline-block;
    margin-bottom: 16px;
  }
  .payments-table-wrapper {
    padding: 24px 22px;
  }
  .ptable-row {
    font-size: 13px;
    padding: 12px 0;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 8px;
  }

  /* Tech */
  .tech-col {
    padding: 28px 24px;
  }

  /* MVP */
  .mvp-block {
    padding: 24px;
  }
  .mvp-future-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline {
    grid-template-columns: 1fr;
  }
  .timeline-item {
    padding: 24px;
  }

  /* Cost */
  .cost-block {
    padding: 28px 24px;
  }
  .cost-amount {
    font-size: clamp(64px, 18vw, 100px);
  }

  /* About */
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .about-stat {
    padding: 20px 16px;
  }

  /* CTA */
  .cta-card {
    padding: 36px 24px;
  }
  .cta-contacts {
    flex-direction: column;
    gap: 12px;
  }
  .cta-contact {
    min-width: 0;
    width: 100%;
  }

  /* Footer */
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }

  .nav-logo-mark { width: 28px; height: 28px; font-size: 13px; }

  .hero { padding: 90px 0 50px; }
  .hero-title { font-size: clamp(40px, 12vw, 56px); }
  .device-monitor { max-width: 280px; }
  .device-phone { width: 80px; }

  .section-head { margin-bottom: 36px; }

  .tariff-features li,
  .checks li,
  .dashes li,
  .cta-list li { font-size: 14px; }

  /* Mobile mockup — компакт */
  .mock-phone { max-width: 180px; }

  .cost-amount {
    font-size: clamp(56px, 22vw, 90px);
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .funnel-step,
  .funnel-step h4,
  .funnel-step p { text-align: left; }
}

/* iOS safe-area */
@supports (padding: max(0px)) {
  .nav-inner {
    padding-left: max(24px, env(safe-area-inset-left));
    padding-right: max(24px, env(safe-area-inset-right));
  }
  .footer { padding-bottom: max(32px, env(safe-area-inset-bottom)); }
}
