/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0a0a0f;
  --bg-card: #12121a;
  --bg-card-hover: #1a1a28;
  --surface: #16161f;
  --border: #1e1e2e;
  --text: #e8e8ed;
  --text-muted: #8888a0;
  --accent: #6c5ce7;
  --accent-glow: rgba(108, 92, 231, 0.4);
  --accent-light: #a29bfe;
  --green: #00e676;
  --yellow: #ffd600;
  --red: #ff5252;
  --radius: 16px;
  --radius-sm: 10px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  line-height: 1.2;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  text-align: center;
  margin-bottom: 48px;
}

a {
  color: var(--accent-light);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--accent);
}

/* ===== CTA BUTTON (magnetic + glow) ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.3s ease;
  z-index: 1;
}
.cta-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 64px;
  background: var(--accent);
  opacity: 0;
  filter: blur(20px);
  transition: opacity 0.3s ease;
  z-index: -1;
}
.cta-btn:hover::before {
  opacity: 0.6;
}
.cta-btn:hover {
  box-shadow: 0 0 40px var(--accent-glow);
}
.cta-btn:active {
  transform: scale(0.97);
}

/* ===== HEADER (sticky) ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transform: translateY(-100%);
  transition: transform 0.35s ease, border-color 0.3s;
}
.site-header--visible {
  transform: translateY(0);
  border-bottom-color: var(--border);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 24px;
}
.site-header__logo img {
  height: 28px;
  width: auto;
  opacity: 0.9;
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.site-header__nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header__nav a:hover {
  color: var(--text);
}
.site-header__cta {
  margin-left: auto;
}
.cta-btn--sm {
  padding: 10px 24px;
  font-size: 0.85rem;
}
.site-header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.site-header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 16px 0;
}
.trust-bar__track {
  display: flex;
  width: max-content;
  animation: scroll-left 30s linear infinite;
}
.trust-bar__items {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding-right: 48px;
}
.trust-bar__items span {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  opacity: 0.7;
}
.trust-bar__items span::before {
  content: '—';
  margin-right: 12px;
  color: var(--accent);
  opacity: 0.5;
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CTA as link ===== */
a.cta-btn,
a.cta-btn:hover,
a.cta-btn:active,
a.cta-btn:visited {
  text-decoration: none;
  color: #fff;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== БЛОК 1 — Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -200px;
  left: 50%;
  translate: -50% 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  animation: pulse-glow 6s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.1); }
}
.hero__logo {
  height: 48px;
  width: auto;
  margin-bottom: 40px;
  opacity: 0.9;
}
.hero__title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, #fff 30%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 40px;
}
.hero__note {
  display: block;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== БЛОК 2 — Проблема ===== */
.problem {
  padding: 120px 0;
}
.problem__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.problem__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
}
.problem__card:hover {
  border-color: rgba(255, 82, 82, 0.3);
  background: var(--bg-card-hover);
}
.problem__icon {
  font-size: 2.2rem;
  display: block;
  margin-bottom: 16px;
}
.problem__card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* ===== БЛОК 3 — Решение ===== */
.solution {
  padding: 120px 0;
  background: var(--surface);
}
.solution__desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 680px;
  margin: -24px auto 56px;
}
.solution__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
}
.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.feature-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== БЛОК 4 — Как это работает ===== */
.how-it-works {
  padding: 120px 0;
}
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 560px;
  margin: 0 auto;
}
.step {
  text-align: center;
  padding: 32px 24px;
}
.step__number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
}
.step h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}
.step__line {
  width: 2px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent) 0%, transparent 100%);
  opacity: 0.3;
}

/* ===== Превью платформы ===== */
.preview {
  padding: 120px 0;
  background: var(--surface);
}
.preview__desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: -24px auto 56px;
  max-width: 600px;
}
.preview__mockup {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.4), 0 0 60px var(--accent-glow);
}
.mockup__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #1a1a28;
  border-bottom: 1px solid var(--border);
}
.mockup__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
}
.mockup__dot:nth-child(1) { background: var(--red); opacity: 0.7; }
.mockup__dot:nth-child(2) { background: var(--yellow); opacity: 0.7; }
.mockup__dot:nth-child(3) { background: var(--green); opacity: 0.7; }
.mockup__title {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.mockup__body {
  display: flex;
  min-height: 320px;
}
.mockup__sidebar {
  width: 180px;
  background: #111119;
  padding: 20px 0;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.mockup__menu-item {
  padding: 10px 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  cursor: default;
  transition: background 0.2s;
}
.mockup__menu-item--active {
  background: rgba(108, 92, 231, 0.15);
  color: var(--accent-light);
  border-left: 3px solid var(--accent);
}
.mockup__content {
  flex: 1;
  padding: 24px;
  background: var(--bg-card);
}
.mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.mockup__h {
  font-weight: 700;
  font-size: 1rem;
}
.mockup__count {
  font-size: 0.8rem;
  color: var(--green);
  background: rgba(0, 230, 118, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}
.mockup__table {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mockup__row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  align-items: center;
}
.mockup__row--header {
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #555;
  border-bottom: 1px solid var(--border);
}
.mockup__status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
}
.mockup__status--green {
  color: var(--green);
  background: rgba(0, 230, 118, 0.1);
}
.mockup__status--yellow {
  color: var(--yellow);
  background: rgba(255, 214, 0, 0.1);
}
.mockup__status--red {
  color: var(--red);
  background: rgba(255, 82, 82, 0.1);
}

/* ===== БЛОК 5 — Светофор ===== */
.svetofor {
  padding: 120px 0;
}
.svetofor__desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: -24px auto 56px;
  max-width: 600px;
}
.svetofor__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
.svetofor__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s;
}
.svetofor__light {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
}
.svetofor__light::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  filter: blur(12px);
  opacity: 0.5;
}
.svetofor__light--red {
  background: var(--red);
  box-shadow: 0 0 20px rgba(255, 82, 82, 0.4);
}
.svetofor__light--red::after { background: var(--red); }
.svetofor__card--red:hover { border-color: rgba(255, 82, 82, 0.4); }

.svetofor__light--yellow {
  background: var(--yellow);
  box-shadow: 0 0 20px rgba(255, 214, 0, 0.4);
}
.svetofor__light--yellow::after { background: var(--yellow); }
.svetofor__card--yellow:hover { border-color: rgba(255, 214, 0, 0.4); }

.svetofor__light--green {
  background: var(--green);
  box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
}
.svetofor__light--green::after { background: var(--green); }
.svetofor__card--green:hover { border-color: rgba(0, 230, 118, 0.4); }

.svetofor__card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.svetofor__card p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ===== Сравнение ===== */
.compare {
  padding: 120px 0;
  background: var(--surface);
}
.compare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.compare__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: border-color 0.3s;
}
.compare__card h3 {
  font-size: 1.15rem;
  margin-bottom: 20px;
  text-align: center;
}
.compare__card ul {
  list-style: none;
}
.compare__card li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.compare__x {
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
}
.compare__check {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
.compare__card--win {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.12);
}
.compare__card--win h3 {
  color: var(--accent-light);
}
.compare__card--lose:hover {
  border-color: rgba(255, 82, 82, 0.2);
}

/* ===== БЛОК 6 — Статистика ===== */
.stats {
  padding: 120px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}
.stat {
  padding: 40px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat__number {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__suffix {
  font-size: 1.8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat p {
  color: var(--text-muted);
  margin-top: 8px;
  font-size: 0.9rem;
}

/* ===== БЛОК 7 — Обо мне ===== */
.about {
  padding: 120px 0;
  background: var(--surface);
}
.about__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}
.about__photo {
  width: 120px;
  height: 120px;
  min-width: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  box-shadow: 0 0 30px var(--accent-glow);
}
.about__name {
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.about__content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
}
.about__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .about__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    gap: 24px;
  }
  .about__name {
    text-align: center;
  }
}

/* ===== Отзывы ===== */
.testimonials {
  padding: 120px 0;
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.tg-msg {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.3s;
}
.tg-msg:hover {
  border-color: var(--accent);
}
.tg-msg__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.tg-msg__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #8b7cf7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}
.tg-msg__name {
  font-weight: 700;
  font-size: 0.95rem;
}
.tg-msg__niche {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.tg-msg__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Тариф ===== */
.pricing {
  padding: 120px 0;
  background: var(--surface);
}
.pricing__card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 56px 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 0 60px rgba(108, 92, 231, 0.15);
}
.pricing__badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.pricing__price {
  font-size: 4rem;
  font-weight: 900;
}
.pricing__price span {
  font-size: 2rem;
  opacity: 0.6;
}
.pricing__price .pricing__per {
  font-size: 1.35rem;
  font-weight: 700;
  opacity: 0.55;
  margin-left: 0.2em;
}
.pricing__period {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}
.pricing__list {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
}
.pricing__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pricing__list li:last-child {
  border-bottom: none;
}
.pricing__card .cta-btn {
  width: 100%;
  margin-bottom: 16px;
}
.pricing__card small {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.5;
}
.pricing__guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(0, 230, 118, 0.06);
  border: 1px solid rgba(0, 230, 118, 0.15);
  border-radius: var(--radius-sm);
  text-align: left;
}
.pricing__guarantee-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}
.pricing__guarantee p {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
}

/* ===== Реферальная программа ===== */
.referral {
  padding: 120px 0;
  background: var(--bg);
}
.referral__intro {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: -32px auto 48px;
  font-size: 1.05rem;
  line-height: 1.65;
}
.referral__card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 36px;
  text-align: center;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.referral__card:hover {
  border-color: rgba(108, 92, 231, 0.4);
  box-shadow: 0 0 40px rgba(108, 92, 231, 0.12);
}
.referral__visual {
  margin: 0 auto 24px;
  max-width: min(100%, 280px);
  display: flex;
  justify-content: center;
}
.referral__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 8px 40px rgba(108, 92, 231, 0.25), 0 2px 12px rgba(0,0,0,0.18);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.referral__img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 56px rgba(108, 92, 231, 0.38), 0 4px 20px rgba(0,0,0,0.22);
}
.referral__title {
  font-size: 1.35rem;
  margin-bottom: 16px;
  font-weight: 700;
}
.referral__text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.referral__hint {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ===== БЛОК 8 — FAQ ===== */
.faq-section {
  padding: 120px 0;
}
.faq {
  max-width: 700px;
  margin: 0 auto;
}
.faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq details:hover {
  border-color: var(--accent);
}
.faq details[open] {
  border-color: var(--accent);
}
.faq summary {
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  user-select: none;
  transition: color 0.2s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-light);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq details[open] summary::after {
  transform: rotate(45deg);
}
.faq__answer {
  overflow: hidden;
  height: 0;
  padding: 0 24px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq__answer p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-bottom: 20px;
}
.faq__answer p:last-child {
  padding-bottom: 20px;
}

/* ===== БЛОК 9 — Финальный CTA ===== */
.final-cta {
  padding: 120px 0;
  background: var(--surface);
  text-align: center;
}
.final-cta__desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: -24px auto 40px;
}
.final-cta small {
  display: block;
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer__logo {
  height: 32px;
  width: auto;
  margin-bottom: 24px;
  opacity: 0.5;
}
.footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.footer__nav a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer__nav a:hover {
  color: var(--text);
}
.footer__entity {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.footer__copy {
  color: var(--text-muted);
  font-size: 0.75rem;
  opacity: 0.6;
}

/* ===== LEGAL PAGES ===== */
.legal {
  padding: 80px 0 120px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 40px;
  transition: color 0.2s;
}
.legal__back:hover {
  color: var(--text);
}
.legal h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.legal__date {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 40px;
}
.legal h2 {
  font-size: 1.3rem;
  text-align: left;
  margin: 40px 0 16px;
}
.legal h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
}
.legal p, .legal li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal li {
  margin-bottom: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
  .site-header__burger {
    display: flex;
  }
  .site-header__nav--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .site-header__nav--open a {
    font-size: 1rem;
  }
  .site-header__nav--open .site-header__cta {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
  }
  .hero {
    padding: 80px 20px 60px;
    min-height: auto;
  }
  .hero__title {
    font-size: 2rem;
  }
  .hero__subtitle br,
  .solution__desc br,
  .svetofor__desc br,
  .preview__desc br,
  .final-cta h2 br,
  .final-cta__desc br,
  .pricing__card small br {
    display: none;
  }
  section {
    padding: 80px 0;
  }
  .problem, .solution, .how-it-works, .svetofor,
  .stats, .pricing, .referral, .faq-section, .final-cta,
  .preview, .compare, .testimonials {
    padding: 80px 0;
  }
  .cta-btn {
    padding: 16px 36px;
    font-size: 1rem;
  }
  .pricing__card {
    padding: 40px 24px;
  }
  .referral__card {
    padding: 32px 24px;
  }
  .referral__visual {
    max-width: min(100%, 280px);
  }
  .pricing__price {
    font-size: 3rem;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svetofor__cards {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
  .compare__grid {
    grid-template-columns: 1fr;
  }
  .mockup__sidebar {
    display: none;
  }
  .mockup__row {
    grid-template-columns: 1fr 0.7fr 0.7fr;
    font-size: 0.7rem;
  }
  .mockup__row span:last-child {
    display: none;
  }
  .mockup__row--header span:last-child {
    display: none;
  }
  .footer__nav {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .problem__grid,
  .solution__features {
    grid-template-columns: 1fr;
  }
  .stats__grid {
    grid-template-columns: 1fr;
  }
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}
