/* ==========================================================
   U-Stats Landing — стили по макету Figma «U-stats / Главная»
   ========================================================== */
:root {
  --yellow: #FFD701;            /* фирменный жёлтый: лого, CTA, чекбоксы */
  --yellow-hover: #f2cc00;
  --ink: #1c1c1c;               /* почти чёрный текст/лого */
  --text: #252525;              /* основной текст на светлом */
  --text-gray: #383838;         /* пункты меню */
  --muted: #777777;             /* подвал, второстепенное */
  --page-bg: #e8e8e8;           /* серый фон страницы */
  --pill-bg: #f0f0f0;           /* пилюли меню, подвал */
  --dark-btn: #313131;          /* кнопка «Войти» */
  --card-dark: #2c2c2c;         /* карточки шагов на тёмном */
  --border-dark: #3b3b3b;       /* рамки строк цен */
  --border-card: #505050;       /* рамка карточки цен */
  --white-sub: #dedede;         /* серый текст на тёмном */
  --green: #62AE4F;             /* зелёное свечение / рост */
  --green-cell: #b8e3b2;        /* зелёная ячейка таблицы */
  --green-cell-text: #1e5c1e;
  --red-cell: #f6c3bd;          /* красная ячейка (минимально) */
  --blue: #3579f6;              /* кнопки интерфейса в мокапах */
  --blue-soft: #e8f0fe;
  --radius: 10px;
  --font: 'Golos Text', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--page-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* свечения секций шире экрана не дают горизонтальный скролл */
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1400px, 100% - 48px);
  margin-inline: auto;
}

/* ==================== Типографика ==================== */
h1 {
  font-size: clamp(34px, 4.6vw, 60px);
  font-weight: 800;
  color: var(--ink);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -0.01em;
}

.h2-dark { color: #fff; }

/* ==================== Кнопки ==================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  color: #000;
  font-family: var(--font);
  font-size: 19px;
  font-weight: 500;
  width: 380px;
  max-width: 100%;
  height: 70px;
  border-radius: var(--radius);
  transition: background .2s, transform .2s;
  cursor: pointer;
}
.btn-primary:hover { background: var(--yellow-hover); transform: translateY(-1px); }

.btn-primary--lg { width: 451px; height: 83px; font-size: 22px; }
.btn-primary--sm { width: 180px; height: 44px; font-size: 15px; }

/* ==================== Лого ==================== */
.logo { display: inline-flex; align-items: center; gap: 8px; }
.logo-badge {
  width: 35px; height: 35px;
  background: var(--yellow);
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 23px; font-weight: 700; color: var(--ink);
}
.logo-badge--sm { width: 24px; height: 24px; font-size: 15px; border-radius: 6px; }
.logo-text {
  font-size: 23px; font-weight: 600; color: var(--ink);
  text-transform: uppercase; letter-spacing: .02em;
}

/* ==================== Шапка ==================== */
.site-header {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  width: min(1780px, 100% - 40px);
  background: #fff;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 27px 30px;
  z-index: 100;
  box-shadow: 0 6px 30px rgba(0,0,0,.10);
}
.site-header .logo { margin-right: 28px; }

.header-nav { display: flex; gap: 10px; }
.header-nav--right { margin-left: auto; }

.nav-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--pill-bg);
  border-radius: 6px;
  padding: 14px 18px;
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1;
  transition: background .2s;
  white-space: nowrap;
}
.nav-pill:hover { background: #e6e6e6; }

.btn-login {
  background: var(--dark-btn);
  color: #fff;
  font-size: 15px; font-weight: 500;
  border-radius: 6px;
  padding: 14px 31px;
  line-height: 1;
  margin-left: 10px;
  transition: background .2s;
  white-space: nowrap;
}
.btn-login:hover { background: #000; }

/* ==================== HERO (светлый, эффект «лампы») ==================== */
/* У секций нет собственного фона — фон один, на body.
   Все свечения лежат на z-index:-1: выше фона, ниже любого контента. */
.hero {
  position: relative;
  padding: 100px 0 126px;
}

/* Лампа: два конуса света, свечение и разгорающаяся линия */
.lamp {
  --bw: 480px;            /* ширина конуса света */
  --bh: 224px;            /* высота конуса света */
  position: relative;
  z-index: 0;             /* лампа под контентом hero */
  height: 480px;
  pointer-events: none;
}

.lamp-beam {
  position: absolute;
  top: calc(50% - var(--bh) / 2);
  width: var(--bw);
  height: var(--bh);
  z-index: 1;
  animation: lampBeam .8s ease-in-out .3s both;
}
.lamp-beam--left {
  right: 50%;
  background-image: conic-gradient(from 70deg at center top,
    var(--yellow) 0deg, transparent 180deg, transparent 360deg);
}
.lamp-beam--right {
  left: 50%;
  background-image: conic-gradient(from 290deg at center top,
    transparent 0deg, transparent 180deg, var(--yellow) 360deg);
}
/* растушёвка краёв конусов под цвет фона (аналог mask-image) */
.lamp-beam::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 60%;
  background: linear-gradient(to top, var(--page-bg), transparent);
}
.lamp-beam::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 34%; height: 100%;
}
.lamp-beam--left::after  { left: 0;  background: linear-gradient(to right, var(--page-bg), transparent); }
.lamp-beam--right::after { right: 0; background: linear-gradient(to left,  var(--page-bg), transparent); }

.lamp-glow-small {
  position: absolute;
  left: 50%;
  top: calc(50% - var(--bh) * .43);
  transform: translate(-50%, -50%);
  width: calc(var(--bw) * .53);
  height: calc(var(--bh) * .64);
  border-radius: 50%;
  background: #ffe452;
  filter: blur(36px);
  z-index: 2;
  animation: lampGlowSmall .8s ease-in-out .3s both;
}
.lamp-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: calc(var(--bw) - 32px);
  height: calc(var(--bh) * .64);
  border-radius: 50%;
  background: var(--yellow);
  opacity: .45;
  filter: blur(64px);
  z-index: 3;
}
.lamp-cover {
  position: absolute;
  left: 0; right: 0; top: 0;
  height: calc(50% - var(--bh) / 2);
  background: var(--page-bg);
  z-index: 4;
}
.lamp-line {
  position: absolute;
  left: 50%;
  top: calc(50% - var(--bh) / 2 - 2px);
  transform: translateX(-50%);
  width: var(--bw);
  height: 4px;
  border-radius: 4px;
  background: #ffd701;
  box-shadow:
    0 0 16px 2px rgba(255, 190, 0, .95),
    0 0 60px 10px rgba(255, 215, 1, .5);
  z-index: 5;
  animation: lampLine .8s ease-in-out .3s both;
}

@keyframes lampBeam {
  from { width: calc(var(--bw) / 2); opacity: .5; }
  to   { width: var(--bw);           opacity: 1; }
}
@keyframes lampLine {
  from { width: calc(var(--bw) / 2); }
  to   { width: var(--bw); }
}
@keyframes lampGlowSmall {
  from { width: calc(var(--bw) * .27); }
  to   { width: calc(var(--bw) * .53); }
}
@keyframes lampTitle {
  from { opacity: .5; transform: translateY(100px); }
  to   { opacity: 1; transform: none; }
}

.hero-inner h1 { animation: lampTitle .8s ease-in-out .3s both; }

@media (prefers-reduced-motion: reduce) {
  .lamp-beam, .lamp-line, .lamp-glow-small, .hero-inner h1 { animation: none; }
}

/* ==================== КАК НАЧАТЬ (тёмная секция) ==================== */
/* Светлая версия: чистый фон как у первого экрана, яркое жёлтое свечение.
   Секции не обрезают свечения (overflow visible) — свет свободно
   перетекает между блоками, швов нет. */
.steps-section {
  position: relative;
  padding: 100px 0 126px;
  scroll-margin-top: 120px;
}
.steps-section .steps-block { margin-top: 0; z-index: 2; }
.steps-section .h2-dark { color: var(--ink); }
.prices .container { position: relative; z-index: 2; }
.steps-section .glow-gray-1,
.steps-section .glow-gray-2 { display: none; }
.steps-section .shape { display: none; }   /* только жёлтые градиенты, без узоров */

.hero-bg, .prices-bg, .steps-bg {
  position: absolute; inset: 0;
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;          /* свечения всегда под контентом всей страницы */
}

/* Свечения (эллипсы с блюром из макета) */
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.glow-green-top {
  width: 1365px; height: 446px;
  left: 50%; top: -267px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 215, 1, .9), rgba(255, 215, 1, 0));
  filter: blur(40px);
  opacity: 1;
}
.glow-yellow {
  width: 486px; height: 486px;
  left: 717px; top: 655px;
  background: rgba(255, 215, 1, .55);
  filter: blur(120px);
  opacity: .35;
}
.glow-gray-1 { width: 393px; height: 393px; left: 118px; top: 510px; background: #535353; }
.glow-gray-2 { width: 241px; height: 241px; right: 234px; top: 329px; background: #535353; }
.glow-gray-3 { width: 455px; height: 455px; right: -90px; top: 1393px; background: #535353; }

/* Узор из квадратов по углам */
.shape {
  position: absolute;
  width: 482px; height: 491px;
  background: url('../assets/figma/hero-shape.png') center / contain no-repeat;
  opacity: .9;
}
.shape-1 { right: -160px; top: 561px; }
.shape-2 { left: -180px; top: 248px; }
.shape-3 { left: -140px; bottom: 80px; width: 332px; height: 339px; }
.shape-4 { right: -106px; bottom: 500px; width: 200px; height: 204px; }

.hero-inner {
  position: relative;
  z-index: 6;           /* контент поверх свечения лампы */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -220px;   /* заголовок входит в конус света лампы */
}

.hero-sub {
  margin-top: 26px;
  max-width: 791px;
  text-align: center;
  font-size: 17px;
  line-height: 28px;
  color: #4b4b4b;
}

.hero-cta { margin-top: 50px; }

/* ---------- Окно продукта (таблица позиций) ---------- */
/* 3D-сцена: окно «встаёт» при прокрутке */
.pw-scroll {
  margin-top: 85px;
  width: 100%;
  perspective: 1400px;
}
.pw-frame {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 22px;
  padding: 8px;
  /* мягкая тёплая тень: не серит жёлтое свечение под окном */
  box-shadow: 0 18px 44px rgba(31, 26, 5, .16);
  transform: rotateX(24deg) scale(.94);
  will-change: transform;
}
.product-window {
  width: 100%;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  font-size: 12px;
}
/* Реальный скриншот в чёрной рамке (заменил CSS-мокап) */
.product-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
}

.pw-topbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  border-bottom: 1px solid #ececec;
}
.pw-left, .pw-right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.pw-logo-text { font-size: 14px; font-weight: 600; color: var(--ink); text-transform: uppercase; }
.pw-project-label { color: #9a9a9a; margin-left: 14px; }
.pw-select {
  border: 1px solid #e0e0e0; border-radius: 6px;
  padding: 5px 10px; color: var(--text-gray);
  display: inline-flex; align-items: center; gap: 6px;
}
.pw-plus {
  width: 24px; height: 24px;
  background: #57b657; color: #fff;
  border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600;
}
.pw-topLink { color: #8a8a8a; display: inline-flex; align-items: center; gap: 5px; }
.pw-balance {
  background: var(--blue-soft); color: var(--blue);
  border-radius: 6px; padding: 5px 10px; font-weight: 600;
}
.pw-balance b { font-weight: 700; }
.pw-account { color: var(--text-gray); display: inline-flex; align-items: center; gap: 6px; }

.caret {
  width: 0; height: 0; display: inline-block;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #a0a0a0;
}

.pw-toolbar {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 16px 24px;
  border-bottom: 1px solid #ececec;
}
.pw-btn {
  border-radius: 6px; padding: 7px 12px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.pw-btn--blue { background: var(--blue); color: #fff; }
.pw-btn--green { background: #57b657; color: #fff; margin-left: 14px; }
.pw-chip {
  border: 1px solid #e0e0e0; border-radius: 6px;
  padding: 7px 12px; color: var(--text-gray);
  display: inline-flex; align-items: center; gap: 6px;
}
.pw-chip--right { margin-left: auto; }
.ya {
  width: 16px; height: 16px;
  background: #fc3f1d; color: #fff;
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal;
}

.pw-table-wrap { overflow-x: auto; }
.pw-table { width: 100%; border-collapse: collapse; min-width: 900px; }
.pw-table th {
  font-weight: 400; color: #9a9a9a;
  padding: 14px 6px;
  border-bottom: 1px solid #ececec;
  text-align: center;
  white-space: nowrap;
  font-size: 11px;
}
.pw-table th.col-q { text-align: left; padding-left: 20px; color: var(--text-gray); font-weight: 500; }
.q-count { color: #b5b5b5; }
.pw-table td {
  padding: 14px 6px;
  border-bottom: 1px solid #f1f1f1;
  text-align: center;
  color: var(--text-gray);
  font-size: 13px;
}
.pw-table td.col-q {
  text-align: left; padding-left: 20px;
  max-width: 210px; color: var(--text);
}
.pw-table td.col-url a { color: var(--blue); }
.pw-table td.up {
  background: var(--green-cell);
  color: var(--ink);
  font-weight: 500;
  border-bottom: 1px solid #fff;
  min-width: 62px;
}
.pw-table td.up s {
  text-decoration: none;
  color: var(--green-cell-text);
  font-size: 10px;
  margin-right: 5px;
  font-weight: 600;
}
.pw-table td.down {
  background: var(--red-cell);
  border-bottom: 1px solid #fff;
  color: var(--ink);
}
.pw-table td.flat { color: #b5b5b5; }

/* ---------- Как начать пользоваться ---------- */
.steps-block { position: relative; margin-top: 106px; scroll-margin-top: 120px; }
.steps-block h2 { text-align: center; }

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

.step-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 44px 46px;
  box-shadow: 0 24px 60px rgba(154, 122, 0, .14);
}

.step-label {
  position: relative;
  display: inline-block;
  color: var(--ink);
  font-size: 18px;
  padding-left: 12px;
  z-index: 1;
}
.step-label i {
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 43px; height: 43px;
  background: var(--yellow);
  border-radius: 50%;
  z-index: -1;
}

.step-mock { margin-top: 44px; height: 284px; }
/* Скриншот отчёта в шаге 3 (портретный — показываем верх) */
.step-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
}

.mock-form, .mock-textarea {
  height: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 26px 38px;
  display: flex; flex-direction: column; gap: 10px;
}
.mock-input {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  height: 42px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 16px;
  color: #8a8a8a; font-size: 13px;
}
.eye { font-style: normal; opacity: .55; font-size: 12px; }
.mock-btn-dark {
  background: #1f1f1f;
  border-radius: 8px;
  height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 13px;
}
.mock-link { text-align: center; color: #8a8a8a; font-size: 12px; }
.mock-btn-outline {
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  height: 42px;
  display: flex; align-items: center; justify-content: center;
  color: #5a5a5a; font-size: 11px; letter-spacing: .08em;
}

.mock-textarea { position: relative; }
.mock-placeholder { color: #8a8a8a; font-size: 13px; line-height: 1.5; }
.mock-chip {
  position: absolute;
  right: 20px; bottom: 20px;
  border: 1px solid #dcdcdc;
  border-radius: 8px;
  padding: 10px 14px;
  color: #5a5a5a; font-size: 12px;
}
.mock-chip--light {
  position: static;
  border-color: #d9d9d9; color: var(--text-gray);
  background: #fff;
}

.mock-report {
  height: 100%;
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  padding: 18px 20px;
  overflow: hidden;
  font-size: 10px;
}
.mock-report-head, .mock-report-row {
  display: grid;
  grid-template-columns: 1.8fr .7fr 1fr .5fr;
  gap: 8px;
  align-items: center;
  padding: 8px 2px;
  border-bottom: 1px solid #ececec;
  color: #7a7a7a;
}
.mock-report-head { color: #9c9c9c; }
.mock-report-row span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mock-report-row b {
  background: var(--green-cell);
  color: var(--ink);
  border-radius: 3px;
  text-align: center;
  padding: 4px 0;
  font-weight: 500;
}

.step-caption {
  margin-top: 40px;
  color: var(--ink);
  font-size: 19px;
  line-height: 1.28;
}

/* ==================== Почему выбирают ==================== */
.why { padding: 120px 0 60px; scroll-margin-top: 120px; }
.why h2 { text-align: center; }

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

.why-card {
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  height: 300px;
  padding: 30px;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  right: 0; top: 0;
  width: 129px; height: 240px;
  background: url('../assets/figma/card-decor.svg') no-repeat top right / contain;
  pointer-events: none;
}
.why-icon { position: absolute; top: 30px; right: 30px; width: 60px; height: 60px; }
.why-card h3 {
  position: absolute;
  left: 30px; top: 138px;
  font-size: 20px; font-weight: 500; color: #000;
}
.why-card p {
  position: absolute;
  left: 30px; top: 178px; right: 40px;
  font-size: 17px; line-height: 28px;
  color: var(--text);
}

/* ==================== Фичи (чередующиеся блоки) ==================== */
.feature { padding: 60px 0; }
.feature-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.feature-inner > * { min-width: 0; }
.feature--reverse .feature-text { order: 2; }
.feature--reverse .feature-visual { order: 1; }

.feature-text h2 { max-width: 560px; }
.bulleted {
  position: relative;
  margin-top: 28px;
  max-width: 560px;
  font-size: 17px;
  line-height: 28px;
  padding-left: 24px;
}
.bulleted::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ---------- Реальные скриншоты экранов ---------- */
.feature-shot {
  width: 100%;
  height: auto;
  border-radius: 16px;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, .12));
}
.feature-shot--share { max-width: 460px; }
.feature--reverse .feature-visual { display: flex; justify-content: flex-start; }

/* ---------- Декор: гора ---------- */
.deco-mountain {
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: auto;
  opacity: .35;
  pointer-events: none;
  user-select: none;
}

/* ---------- Планшет (мокап «Новый проект») ---------- */
.tablet {
  background: #e9e9e9;
  border-radius: 30px;
  padding: 44px 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,.10);
}
.tablet-screen {
  background: #fff;
  border-radius: 16px;
  padding: 40px 44px 32px;
}

.wizard-title { text-align: center; font-size: 22px; font-weight: 600; color: var(--ink); }

.wizard-steps {
  display: flex; gap: 22px; flex-wrap: wrap;
  margin-top: 34px;
  padding-bottom: 14px;
  border-bottom: 1px solid #ececec;
}
.wstep { font-size: 12px; color: #b8b8b8; display: inline-flex; align-items: center; gap: 8px; }
.wstep b {
  font-weight: 500; font-size: 10px;
  background: #ededed; color: #b0b0b0;
  padding: 3px 7px; border-radius: 4px;
  letter-spacing: .04em;
}
.wstep.is-done, .wstep.is-active { color: var(--ink); }
.wstep.is-done b, .wstep.is-active b { background: var(--ink); color: #fff; }

.wizard-area {
  margin-top: 22px;
  background: #f5f5f5;
  border-radius: 12px;
  min-height: 190px;
  padding: 20px 22px;
  position: relative;
  display: flex; flex-direction: column; justify-content: space-between;
}
.wizard-placeholder { color: #a0a0a0; font-size: 13px; }
.wizard-area-actions {
  display: flex; justify-content: flex-end; align-items: center; gap: 12px; flex-wrap: wrap;
}
.wizard-linkbtn { color: var(--text-gray); font-size: 12px; }

.wizard-footer {
  margin-top: 26px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
}
.wizard-back {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #f0f0f0; color: #9a9a9a;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}

/* ---------- Окно «Все проекты» ---------- */
.projects-window {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.12);
  overflow: hidden;
  font-size: 12px;
}
.projects-window, .tablet-screen--table { overflow-x: auto; }
.pw-topbar--mini { padding: 12px 18px; }

.projects-table { width: 100%; border-collapse: collapse; }
.projects-table th {
  font-weight: 400; color: #9a9a9a; font-size: 11px;
  text-align: left; padding: 10px 10px;
  border-bottom: 1px solid #ececec;
  white-space: nowrap;
}
.projects-table td {
  padding: 10px 10px;
  border-bottom: 1px solid #f1f1f1;
  color: var(--text-gray);
  white-space: nowrap;
}
.projects-table td:first-child { color: var(--text); font-weight: 500; }

.fav {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 3px;
  margin-right: 8px;
}
.f1 { background: #f6b73c; } .f2 { background: #4f9cf6; } .f3 { background: #57b657; }
.f4 { background: #b06ef0; } .f5 { background: #f66d5c; } .f6 { background: #38c2b4; }
.f7 { background: #8a97a8; }

.chip-check {
  background: var(--blue);
  color: #fff;
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
}

.dyn-up { color: #2f9e44; font-weight: 600; }
.dyn-down { color: #c9c9c9; font-style: normal; font-size: 11px; }

.projects-zoom {
  margin: 10px 18px 18px;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 16px 22px;
  font-size: 14px;
}
.pz-head, .pz-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 14px;
  padding: 9px 0;
}
.pz-head { color: #9a9a9a; font-size: 12px; border-bottom: 1px solid #ececec; }
.pz-row { border-bottom: 1px solid #f5f5f5; color: var(--text); }
.pz-row:last-child { border-bottom: none; }
.pz-row b { font-weight: 600; }

/* ---------- Карточка «Поделиться ссылкой» ---------- */
.feature--share { padding-bottom: 120px; }
.share-card {
  background: #fff;
  border-radius: 20px;
  padding: 56px;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);
}
.share-inner {
  background: var(--pill-bg);
  border-radius: 16px;
  padding: 28px 32px;
}
.share-label { font-size: 18px; font-weight: 500; color: var(--ink); }
.share-pill {
  margin-top: 18px;
  background: #fff;
  border-radius: 10px;
  padding: 14px 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.share-url { color: var(--blue); font-size: 17px; }
.share-copy {
  border: none; background: none;
  color: #9a9a9a;
  cursor: pointer;
  padding: 4px;
  transition: color .2s;
}
.share-copy:hover { color: var(--ink); }
.share-copy.copied { color: #2f9e44; }

/* ==================== Наши цены (светлый, как первый экран) ==================== */
.prices {
  position: relative;
  padding: 118px 0 130px;
  scroll-margin-top: 120px;
}
.prices .h2-dark { text-align: center; color: #141414; }

.glow-green-bottom {
  width: 1365px; height: 446px;
  left: 50%; bottom: -267px; transform: translateX(-50%);
  background: radial-gradient(closest-side, rgba(255, 215, 1, .9), rgba(255, 215, 1, 0));
  filter: blur(40px);
  opacity: 1;
}
.prices .glow-gray-1, .prices .glow-gray-2 { display: none; }

.prices-sub {
  margin-top: 22px;
  text-align: center;
  color: #333;
  font-size: 17px;
  line-height: 26px;
}

.price-card {
  position: relative;
  margin-top: 72px;
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 20px;
  padding: 74px 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .07);
}

.price-head {
  display: flex; justify-content: space-between;
  color: var(--ink); font-size: 18px; font-weight: 500;
  padding: 0 40px 18px 8px;
}
.price-row {
  border: 1px solid #e6e6e6;
  background: #fafafa;
  border-radius: var(--radius);
  height: 52px;
  margin-bottom: 10px;
  padding: 0 40px 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  color: var(--text); font-size: 18px;
}

.price-includes { border-left: 1px solid #e6e6e6; padding-left: 54px; }
.price-includes h3 { color: var(--ink); font-size: 24px; font-weight: 600; }
.price-includes ul { margin-top: 24px; }
.price-includes li {
  position: relative;
  color: #3c3c3c;
  font-size: 18px;
  line-height: 40px;
  padding-left: 31px;
}
.price-includes li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 17px; height: 17px;
  background: url('../assets/figma/icon-check.svg') no-repeat center / contain;
}

/* ---------- Пользуетесь другим сервисом? ---------- */
.switch-cta {
  margin-top: 190px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.switch-cta h2 { max-width: 584px; }
.switch-cta p {
  margin-top: 26px;
  max-width: 560px;
  color: #4b4b4b;
  font-size: 18px;
  line-height: 28px;
}
.switch-cta .btn-primary { margin-top: 45px; }

/* ==================== Подвал ==================== */
.site-footer { padding: 50px 0 12px; width: min(1780px, 100% - 40px); margin-inline: auto; }
.footer-bar {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-links div { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: var(--muted); font-size: 13px; }
.footer-links a:hover { color: var(--ink); }
.footer-copy { color: var(--muted); font-size: 13px; padding: 18px 30px; }

/* ==================== Анимация появления ==================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ==================== Адаптив ==================== */
@media (max-width: 1500px) {
  .site-header { padding: 20px 22px; }
  .site-header .logo { margin-right: 14px; }
  .nav-pill { padding: 12px 14px; font-size: 14px; }
  .btn-login { padding: 12px 24px; font-size: 14px; }
}

@media (max-width: 1180px) {
  .header-nav--right { display: none; }
}

@media (max-width: 1100px) {
  .steps-grid, .why-grid { grid-template-columns: 1fr 1fr; }
  .feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .feature--reverse .feature-text { order: 1; }
  .feature--reverse .feature-visual { order: 2; }
  .price-card { grid-template-columns: 1fr; padding: 48px 36px; gap: 40px; }
  .price-includes { border-left: none; padding-left: 0; }
}

@media (max-width: 760px) {
  .site-header { padding: 14px 16px; top: 12px; }
  .site-header .logo { margin-right: auto; }
  .header-nav { display: none; }
  .btn-login { padding: 12px 20px; }

  .hero { padding: 80px 0 90px; }
  .lamp { --bw: 300px; --bh: 150px; height: 340px; }
  .lamp-glow { filter: blur(44px); }
  .lamp-glow-small { filter: blur(24px); }
  .hero-inner { margin-top: -215px; }
  .hero-cta { margin-top: 34px; }
  .pw-scroll { margin-top: 56px; }
  .pw-frame { padding: 5px; border-radius: 14px; }
  .product-window, .product-shot { border-radius: 12px; }

  /* Компактное окно демонстрации: меньше служебных элементов и строк */
  .pw-topLink, .pw-project-label { display: none; }
  .pw-topbar { padding: 10px 14px; }
  .pw-toolbar > .pw-chip:nth-child(n+5) { display: none; }
  .pw-table tbody tr:nth-child(n+6) { display: none; }
  .pw-table td, .pw-table th { padding-top: 8px; padding-bottom: 8px; }

  .steps-grid, .why-grid { grid-template-columns: 1fr; }
  .steps-block { margin-top: 80px; }
  .step-card { padding: 28px 26px 34px; }
  .step-mock { margin-top: 32px; }
  .mock-form, .mock-textarea { padding: 20px; }

  .why { padding: 80px 0 30px; }
  .why-card { height: auto; min-height: 260px; }
  .why-card h3 { position: static; margin-top: 90px; }
  .why-card p { position: static; margin-top: 12px; }

  .tablet { padding: 20px 16px; border-radius: 20px; }
  .tablet-screen { padding: 24px 18px; }
  .share-card { padding: 24px; }
  .share-url { font-size: 14px; word-break: break-all; }

  .feature-shot--share { max-width: 100%; }
  .feature--reverse .feature-visual { justify-content: center; }
  .deco-mountain { opacity: .3; }

  .prices { padding: 80px 0; }
  .price-card { padding: 32px 20px; margin-top: 48px; }
  .price-head { padding: 0 16px 14px 4px; }
  .price-row { padding: 0 16px; font-size: 15px; height: 48px; }
  .price-includes li { font-size: 15px; line-height: 32px; }
  .switch-cta { margin-top: 110px; }
  .btn-primary--lg { width: 100%; height: 70px; font-size: 19px; }

  .footer-bar { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 20px; }
}
