/* Playful Classroom (v08) — лендинг для неавторизованных */

.landing {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 2rem 1.5rem 3rem;
}

/* Доска: деревянная рама + меловая текстура (hero и финальный CTA) */
.lp-board {
  position: relative;
  background-color: var(--chalkboard);
  background-image: url("../../images/board/hero-chalkboard-texture.png");
  background-size: 512px 512px;
  background-repeat: repeat;
  color: #fff;
  border: 12px solid var(--board-frame);
  border-image: linear-gradient(
    135deg,
    var(--board-frame-light) 0%,
    var(--board-frame) 25%,
    var(--board-frame-dark) 50%,
    var(--board-frame) 75%,
    var(--board-frame-light) 100%
  ) 1;
  border-radius: 4px;
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.35),
    inset 0 6px 24px rgba(0, 0, 0, 0.4),
    0 6px 16px rgba(0, 0, 0, 0.25);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  cursor: default;
}
.lp-board:hover {
  transform: translateY(-5px) scale(1.005);
  box-shadow:
    inset 0 0 0 2px rgba(0, 0, 0, 0.35),
    inset 0 6px 24px rgba(0, 0, 0, 0.4),
    0 16px 40px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(176, 125, 69, 0.4);
  filter: brightness(1.06);
}

/* ── 1. Hero ─────────────────────────────────────────── */
.lp-hero {
  text-align: center;
  padding: 2.5rem 1.5rem 2.75rem;
  margin-bottom: 3rem;
}
.lp-hero__owl {
  width: 96px;
  height: 96px;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}
.lp-hero__eyebrow {
  display: inline-block;
  margin: 0 auto 0.85rem;
  padding: 0.2rem 0.75rem;
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  border: 1.5px dashed rgba(255, 255, 255, 0.45);
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.18);
}
.lp-hero__title {
  font-family: var(--font-chalk);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.1;
  max-width: 20ch;
  margin: 0 auto 0.75rem;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.22);
}
.lp-hero__subtitle {
  font-family: var(--font-chalk);
  font-size: 1.35rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 38ch;
  margin: 0 auto 1.75rem;
}
.lp-hero__actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
/* Кнопки мелом на доске */
.lp-hero__actions .btn-v08-cta,
.lp-hero__actions .lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.8rem;
  font-family: var(--font-chalk);
  font-size: 1.7rem;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: opacity 0.15s, transform 0.15s;
  -webkit-text-stroke: 0.4px rgba(255, 255, 255, 0.1);
  text-shadow:
    0 0 4px rgba(255, 255, 255, 0.5),
    0 0 14px rgba(255, 255, 255, 0.18),
    2px 2px 2px rgba(0, 0, 0, 0.3);
}
.lp-hero__actions .btn-v08-cta {
  border: 2px dashed rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  padding: 0.7rem 2rem;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.7),
    0 0 20px rgba(255, 255, 255, 0.25),
    2px 2px 2px rgba(0, 0, 0, 0.3);
}
.lp-hero__actions .btn-v08-cta i,
.lp-hero__actions .lp-btn-ghost i {
  font-size: 1.2rem;
}
.lp-hero__actions .btn-v08-cta:hover,
.lp-hero__actions .lp-btn-ghost:hover {
  opacity: 0.8;
  transform: scale(1.04);
  color: #fff;
  background: transparent;
}

/* Призрачная кнопка (вторичный CTA на доске) */
.lp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, transform 0.15s;
}
.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
  transform: scale(1.02);
}

/* ── Заголовки секций (мел на стене) ─────────────────── */
.lp-section {
  margin-bottom: 3rem;
}
.lp-section__title {
  font-family: var(--font-chalk);
  font-size: 2.1rem;
  color: var(--chalkboard);
  text-align: center;
  margin: 0 0 0.35rem;
}
.lp-section__lead {
  text-align: center;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 auto 1.5rem;
  max-width: 46ch;
}

/* ── 2. Как это работает ─────────────────────────────── */
.lp-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 2rem 1.25rem;
}
.lp-step {
  position: relative;
  text-align: center;
  padding: 0 0.5rem;
  transition: transform 0.2s ease;
  cursor: default;
}
.lp-step__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  border: 2.5px dashed rgba(255, 255, 255, 0.7);
  font-family: var(--font-chalk);
  font-size: 1.8rem;
  color: #fff;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.lp-step__title {
  display: block;
  font-family: var(--font-chalk);
  font-size: 1.4rem;
  color: #fff;
  line-height: 1.15;
  transition: text-shadow 0.2s ease;
}
.lp-step__desc {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.2rem;
  transition: color 0.2s ease;
}
.lp-step:hover {
  transform: translateY(-4px);
}
.lp-step:hover .lp-step__num {
  border-color: #fff;
  border-style: solid;
  background: rgba(255, 255, 255, 0.12);
  transform: scale(1.12);
}
.lp-step:hover .lp-step__title {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 18px rgba(255, 255, 255, 0.25);
}
.lp-step:hover .lp-step__desc {
  color: rgba(255, 255, 255, 0.95);
}
.lp-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 14px;
  right: -0.5rem;
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── 3. Темы ─────────────────────────────────────────── */
.lp-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.lp-topic {
  background-color: #f4f6ff;
  background-image:
    linear-gradient(rgba(140, 160, 210, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 160, 210, 0.2) 1px, transparent 1px);
  background-size: 14px 14px;
  border: 1.5px solid #c8d0ea;
  border-radius: var(--radius-card);
  padding: 1.5rem 1rem 1.25rem;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lp-topic:hover {
  transform: translateY(-4px);
  border-color: var(--chalkboard);
  box-shadow: 0 8px 24px rgba(45, 90, 71, 0.12);
}
.lp-topic img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}
.lp-topic > span:not(.lp-topic__badge) {
  display: block;
  font-family: var(--font-chalk);
  font-size: 1.5rem;
  color: var(--chalkboard);
}
.lp-topic--featured {
  position: relative;
  border-color: var(--chalkboard);
  box-shadow: 0 6px 18px rgba(45, 90, 71, 0.14);
}
.lp-topic__badge {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  z-index: 1;
  display: inline-block;
  padding: 0.2rem 0.55rem;
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff !important;
  background: var(--chalkboard);
  border-radius: 2px;
  white-space: nowrap;
}

/* ── Сравнение Зубри vs чат ──────────────────────────── */
.lp-compare {
  padding: 1.25rem 1rem 1.5rem;
  overflow-x: auto;
}
.lp-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}
.lp-compare__table th,
.lp-compare__table td {
  padding: 0.85rem 0.75rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.22);
}
.lp-compare__table thead th {
  font-family: var(--font-chalk);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  border-bottom: 2px solid rgba(255, 255, 255, 0.35);
}
.lp-compare__table tbody th {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  width: 22%;
  white-space: nowrap;
}
.lp-compare__zubry {
  color: #fff;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(180, 255, 200, 0.25);
}
.lp-compare__table td:not(.lp-compare__zubry) {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
}
.lp-compare__cta-line {
  text-align: center;
  margin: 1rem 0 0;
}
.lp-compare__link {
  font-family: var(--font-chalk);
  font-size: 1.35rem;
  color: var(--chalkboard);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.lp-compare__link:hover {
  opacity: 0.85;
}

/* ── 4. Уровни (билеты) ──────────────────────────────── */
.lp-levels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.lp-level {
  background-color: #f4f6ff;
  background-image:
    linear-gradient(rgba(140, 160, 210, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 160, 210, 0.2) 1px, transparent 1px);
  background-size: 14px 14px;
  border: 1.5px solid #c8d0ea;
  border-radius: 10px;
  padding: 1.25rem 0.85rem;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.lp-level:hover {
  transform: translateY(-4px);
  border-color: var(--chalkboard);
  box-shadow: 0 6px 18px rgba(45, 90, 71, 0.12);
}
.lp-level img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}
.lp-level__title {
  display: block;
  font-family: var(--font-chalk);
  font-size: 1.35rem;
  color: var(--text);
}
.lp-level__desc {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.1rem;
}

/* ── 5. Преимущества (стикеры) ───────────────────────── */
.lp-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.25rem;
}
.lp-note {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 92px;
  padding: 1.25rem 1.1rem;
  background: #fff7c0;
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.6) 0%, transparent 45%);
  border-radius: 3px;
  font-family: var(--font-chalk);
  font-size: 1.4rem;
  color: #3a3a2a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.lp-note:nth-child(odd) {
  transform: rotate(-1.2deg);
}
.lp-note:nth-child(even) {
  transform: rotate(1deg);
}
.lp-note:hover {
  transform: rotate(0deg) translateY(-5px) scale(1.03);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* ── 6. Финальный CTA ────────────────────────────────── */
.lp-cta {
  text-align: center;
  padding: 2.75rem 1.5rem;
}
.lp-cta__title {
  font-family: var(--font-chalk);
  font-size: 2.4rem;
  color: #fff;
  margin: 0 0 1.25rem;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.22);
}
.lp-cta .btn-v08-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem 2.2rem;
  font-family: var(--font-chalk);
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  background: transparent;
  border: 2px dashed rgba(255, 255, 255, 0.75);
  border-radius: 6px;
  -webkit-text-stroke: 0.4px rgba(255, 255, 255, 0.1);
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.7),
    0 0 20px rgba(255, 255, 255, 0.25),
    2px 2px 2px rgba(0, 0, 0, 0.3);
  transition: opacity 0.15s, transform 0.15s;
}
.lp-cta .btn-v08-cta:hover {
  opacity: 0.8;
  transform: scale(1.04);
  color: #fff;
  background: transparent;
}
.lp-cta .btn-v08-cta i {
  font-size: 1.3rem;
}
.lp-cta__disclaimer {
  font-family: var(--font-chalk);
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 1.25rem 0 0;
}

/* ── Адаптив ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-topics { grid-template-columns: repeat(2, 1fr); }
  .lp-levels { grid-template-columns: repeat(2, 1fr); }
  .lp-notes { grid-template-columns: repeat(2, 1fr); }
  .lp-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 0.5rem; }
  .lp-step:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .lp-topics { grid-template-columns: 1fr; }
  .lp-levels { grid-template-columns: 1fr; }
  .lp-notes { grid-template-columns: 1fr; }
  .lp-steps { grid-template-columns: 1fr; }
}

/* ── Тёмная тема ─────────────────────────────────────── */
.theme-dark .landing .lp-section__title {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.12);
}
.theme-dark .landing .lp-section__lead {
  color: var(--muted);
}

/* Тетрадные листы — тёмная бумага с сеткой */
.theme-dark .landing .lp-topic,
.theme-dark .landing .lp-level {
  background-color: #252838;
  background-image:
    linear-gradient(rgba(130, 150, 190, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(130, 150, 190, 0.14) 1px, transparent 1px);
  border-color: #3d4558;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}
.theme-dark .landing .lp-topic > span:not(.lp-topic__badge) {
  color: #e4eaf4;
}
.theme-dark .landing .lp-topic--featured {
  border-color: #7aab90;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.theme-dark .landing .lp-compare__link {
  color: #a8d4b8;
}
.theme-dark .landing .lp-level__title {
  color: #e4eaf4;
}
.theme-dark .landing .lp-level__desc {
  color: #949cb0;
}
.theme-dark .landing .lp-topic:hover,
.theme-dark .landing .lp-level:hover {
  border-color: #5a7890;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.38);
}

/* Стикеры — приглушённые, как auth-sticky в тёмной теме */
.theme-dark .landing .lp-note {
  background: #3a3828;
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, transparent 45%);
  color: #d8d0b0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.32);
}
.theme-dark .landing .lp-note:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.42);
}

/* ─── Цена в hero ─────────────────────────────────────────── */
.lp-hero__pricing {
  margin: 0.9rem auto 0;
  max-width: 560px;
  font-size: 0.95rem;
  color: #fff;
  opacity: 0.9;
}
.lp-hero__pricing i { color: var(--cta, #e85d4c); margin-right: 0.3rem; }
.lp-hero__pricing b { font-weight: 700; }

/* ─── Секция цены — тетрадные листы ────────────────────── */

@keyframes sheetRise {
  0% { opacity: 0; transform: translateY(24px) rotate(-0.5deg); }
  100% { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.lp-pricing {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.lp-pricing__sheet {
  --sheet-line: #d0d8e8;
  --sheet-margin: #e85d4c;
  --sheet-bg: #fcf9f2;
  --sheet-text: #2c3e50;
  flex: 1 1 240px;
  max-width: 340px;
  position: relative;
  border-radius: 4px 12px 12px 4px;
  background-color: var(--sheet-bg);
  background-image:
    repeating-linear-gradient(
      transparent,
      transparent 25px,
      var(--sheet-line) 25px,
      var(--sheet-line) 26px
    );
  box-shadow:
    2px 3px 12px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(0,0,0,0.06);
  animation: sheetRise 0.6s cubic-bezier(0.22, 0.97, 0.36, 1) both;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.lp-pricing__sheet:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    4px 6px 20px rgba(0,0,0,0.14),
    inset 0 0 0 1px rgba(0,0,0,0.06);
}
.lp-pricing__sheet--paid { animation-delay: 0.15s; }

/* Красная линия полей (слева) */
.lp-pricing__sheet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 100%;
  background: var(--sheet-margin);
  opacity: 0.55;
  border-radius: 4px 0 0 4px;
}

/* Дырочки от спирали (слева) */
.lp-pricing__sheet::after {
  content: '';
  position: absolute;
  top: 20px;
  left: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0,0,0,0.15);
  box-shadow:
    0 26px 0 rgba(0,0,0,0.15),
    0 52px 0 rgba(0,0,0,0.15),
    0 78px 0 rgba(0,0,0,0.15),
    0 104px 0 rgba(0,0,0,0.15);
}

.lp-pricing__sheet-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.4rem 1.4rem 1.4rem 2rem;
  text-align: center;
}

.lp-pricing__badge {
  align-self: center;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #2e9e5b;
  background: rgba(46,158,91,0.12);
  padding: 0.2rem 0.7rem;
  border-radius: 999px;
}
.lp-pricing__badge--paid { color: var(--cta,#e85d4c); background: rgba(232,93,76,0.12); }
.lp-pricing__big { font-family: var(--font-chalk, "Caveat"); font-size: 2rem; font-weight: 700; color: var(--sheet-text); }
.lp-pricing__desc { font-size: 0.9rem; color: var(--sheet-text); opacity: 0.8; line-height: 1.4; }

/* ─── FAQ — стикеры ─────────────────────────────────────── */

@keyframes stickerIn {
  0% { opacity: 0; transform: scale(0.92) rotate(-2deg); }
  100% { opacity: 1; transform: scale(1) rotate(var(--stick-rot, 0deg)); }
}

.lp-faq {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.lp-faq__item {
  --stick-bg: #fef5d3;
  --stick-text: #5a4a2a;
  --stick-rot: 0.3deg;
  background: var(--stick-bg);
  border: none;
  border-radius: 4px 12px 12px 4px;
  padding: 0;
  margin-bottom: -0.25rem;
  position: relative;
  box-shadow:
    2px 3px 8px rgba(0,0,0,0.10),
    inset 0 0 0 1px rgba(0,0,0,0.04);
  transform: rotate(var(--stick-rot));
  transform-origin: top left;
  animation: stickerIn 0.5s cubic-bezier(0.22, 0.97, 0.36, 1) both;
  transition: box-shadow 0.2s ease, z-index 0s;
  cursor: default;
}
.lp-faq__item:hover { z-index: 2; box-shadow: 3px 5px 18px rgba(0,0,0,0.16); }
.lp-faq__item[open] { z-index: 3; }

/* Цвета стикеров */
.lp-faq__item--c2 { --stick-bg: #fce4e4; --stick-text: #6a3030; --stick-rot: -0.6deg; animation-delay: 0.06s; }
.lp-faq__item--c3 { --stick-bg: #ddf0fa; --stick-text: #1a3a4a; --stick-rot: 0.9deg;  animation-delay: 0.12s; }
.lp-faq__item--c4 { --stick-bg: #e3f5e2; --stick-text: #1a4a2a; --stick-rot: -0.4deg; animation-delay: 0.18s; }
.lp-faq__item--c5 { --stick-bg: #efe2f7; --stick-text: #3a2a4a; --stick-rot: 0.5deg;  animation-delay: 0.24s; }
.lp-faq__item--c6 { --stick-bg: #fdebd0; --stick-text: #5a3a1a; --stick-rot: -0.7deg; animation-delay: 0.30s; }

/* Подложка — эффект загнутого уголка */
.lp-faq__item::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, transparent 50%, rgba(0,0,0,0.06) 50%);
  border-radius: 0 0 12px 0;
  pointer-events: none;
}

.lp-faq__item > summary {
  cursor: pointer;
  list-style: none;
  padding: 0.85rem 2.6rem 0.85rem 1.1rem;
  font-family: var(--font-chalk, "Caveat");
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--stick-text);
  position: relative;
}
.lp-faq__item > summary::-webkit-details-marker { display: none; }
.lp-faq__item > summary::after {
  content: "+";
  position: absolute; right: 1rem; top: 50%; transform: translateY(-50%);
  font-size: 1.2rem; color: var(--stick-text); opacity: 0.5; font-weight: 400;
  transition: transform 0.2s ease;
}
.lp-faq__item[open] > summary::after { content: "–"; }
.lp-faq__item > p {
  margin: 0 1.1rem 1rem;
  color: var(--stick-text);
  opacity: 0.85;
  line-height: 1.5;
  font-size: 0.94rem;
}
.lp-faq__item a { color: var(--cta,#e85d4c); text-decoration: underline; }

.theme-dark .lp-pricing__sheet {
  --sheet-bg: #2a2a3a;
  --sheet-line: #3a3a50;
  --sheet-margin: #c04a3c;
  --sheet-text: #e8ebf2;
  box-shadow:
    2px 3px 12px rgba(0,0,0,0.30),
    inset 0 0 0 1px rgba(255,255,255,0.06);
}
.theme-dark .lp-pricing__sheet::after {
  background: rgba(255,255,255,0.12);
  box-shadow:
    0 26px 0 rgba(255,255,255,0.12),
    0 52px 0 rgba(255,255,255,0.12),
    0 78px 0 rgba(255,255,255,0.12),
    0 104px 0 rgba(255,255,255,0.12);
}
.theme-dark .lp-faq__item--c1 { --stick-bg: #3a3528; --stick-text: #d4c8a8; }
.theme-dark .lp-faq__item--c2 { --stick-bg: #3a2828; --stick-text: #d4a8a8; }
.theme-dark .lp-faq__item--c3 { --stick-bg: #1a2a38; --stick-text: #a8c8d8; }
.theme-dark .lp-faq__item--c4 { --stick-bg: #1a2e20; --stick-text: #a8d0b0; }
.theme-dark .lp-faq__item--c5 { --stick-bg: #2a2238; --stick-text: #c0a8d8; }
.theme-dark .lp-faq__item--c6 { --stick-bg: #3a2a18; --stick-text: #d4b890; }
.theme-dark .lp-faq__item { box-shadow: 2px 3px 12px rgba(0,0,0,0.30), inset 0 0 0 1px rgba(255,255,255,0.04); }
.theme-dark .lp-hero__pricing { color: #e8ebf2; }

/* ─── Превью продукта (мини smart-board) ──────────────────── */
.lp-preview {
  max-width: 720px;
  margin: 0 auto;
}
.lp-preview__frame {
  background: linear-gradient(155deg, #2f333b 0%, #1b1d22 100%);
  border-radius: 16px;
  padding: 11px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30), inset 0 1px 0 rgba(255,255,255,0.07);
}
.lp-preview__toolbar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #eef2f7;
  border-radius: 7px 7px 0 0;
  padding: 0.45rem 0.8rem;
  border-bottom: 1px solid #dfe6ef;
}
.lp-preview__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #2ecc71;
  box-shadow: 0 0 6px rgba(46, 204, 113, 0.7);
  flex-shrink: 0;
}
.lp-preview__toolbar-title {
  font-family: var(--font-ui);
  font-weight: 600;
  font-size: 0.88rem;
  color: #2c3e50;
  margin-right: auto;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.lp-preview__toolbar-title i { color: #1f5bb5; margin-right: 0.3rem; }
.lp-preview__status {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  color: #5a6678;
  background: #fff;
  border: 1px solid #dfe6ef;
  border-radius: 999px;
  padding: 0.12rem 0.55rem;
  flex-shrink: 0;
}
.lp-preview__canvas {
  background-color: #fbfcfe;
  background-image: radial-gradient(circle, rgba(40,70,130,0.06) 1px, transparent 1px);
  background-size: 22px 22px;
  border-radius: 0 0 7px 7px;
  padding: 1.1rem 1.2rem 1.3rem;
}
.lp-preview__msg {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}
.lp-preview__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #1f5bb5;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.lp-preview__bubble {
  background: #fff;
  border: 1px solid #e2e8f2;
  border-radius: 12px;
  padding: 0.8rem 1rem;
  box-shadow: 0 4px 14px rgba(40, 60, 90, 0.08);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  color: #2c3e50;
  line-height: 1.55;
}
.lp-preview__bubble p { margin: 0 0 0.5rem; }
.lp-preview__bubble p:last-of-type { margin-bottom: 0.65rem; }
.lp-preview__bubble code {
  background: #eef3fa;
  border-radius: 5px;
  padding: 0.05rem 0.35rem;
  color: #1f5bb5;
  font-size: 0.86em;
}
.lp-preview__badge {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 600;
  color: #1f5bb5;
  background: rgba(31, 91, 181, 0.09);
  border-radius: 999px;
  padding: 0.14rem 0.6rem;
  margin-bottom: 0.55rem;
}
.lp-preview__btns { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.lp-preview__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-chalk);
  font-size: 1rem;
  color: #fff;
  background: #1f5bb5;
  border-radius: 8px;
  padding: 0.28rem 0.8rem;
  cursor: default;
}
.lp-preview__btn--ghost {
  background: transparent;
  color: #1f5bb5;
  border: 1.5px dashed #1f5bb5;
}
.lp-preview__msg--user {
  justify-content: flex-end;
  margin-top: 0.9rem;
}
.lp-preview__sticky {
  background: #fff3ad;
  color: #6b5d1f;
  font-family: var(--font-chalk);
  font-size: 1.05rem;
  padding: 0.6rem 0.9rem;
  border-radius: 3px;
  box-shadow: 2px 3px 8px rgba(0, 0, 0, 0.12);
  transform: rotate(-1deg);
  max-width: 70%;
}

/* ─── Кому подходит ───────────────────────────────────────── */
.lp-audience {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 960px;
  margin: 0 auto;
}
.lp-audience__card {
  background: #fff;
  border: 1px solid #e5e9f0;
  border-top: 4px solid var(--chalkboard);
  border-radius: 14px;
  padding: 1.3rem 1.2rem;
  text-align: center;
  box-shadow: 0 8px 22px rgba(40, 60, 90, 0.08);
}
.lp-audience__icon {
  font-size: 1.9rem;
  color: var(--chalkboard);
  margin-bottom: 0.7rem;
}
.lp-audience__card h3 {
  font-family: var(--font-chalk);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.lp-audience__card p {
  font-family: var(--font-ui);
  font-size: 0.9rem;
  color: #5a6678;
  line-height: 1.55;
  margin: 0;
}

/* ─── Живые цифры (соц-доказательство) ───────────────────── */
.lp-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.lp-stat { text-align: center; }
.lp-stat__num {
  display: block;
  font-family: var(--font-chalk);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--chalkboard);
  line-height: 1.1;
}
.lp-stat__label {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  color: #5a6678;
}

/* Ссылка «подробнее о тарифах» */
.lp-pricing__more {
  text-align: center;
  margin-top: 1rem;
  font-family: var(--font-ui);
}
.lp-pricing__more a { color: var(--chalkboard); font-weight: 600; }

@media (max-width: 640px) {
  .lp-compare__table,
  .lp-compare__table thead,
  .lp-compare__table tbody,
  .lp-compare__table th,
  .lp-compare__table td,
  .lp-compare__table tr {
    display: block;
    width: 100%;
  }
  .lp-compare__table thead {
    display: none;
  }
  .lp-compare__table tr {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.28);
  }
  .lp-compare__table tbody th {
    white-space: normal;
    padding-bottom: 0.35rem;
    border-bottom: none;
    font-family: var(--font-chalk);
    font-size: 1.25rem;
  }
  .lp-compare__table td {
    border-bottom: none;
    padding: 0.25rem 0.75rem;
  }
  .lp-compare__table td:first-of-type::before {
    content: "Чат: ";
    opacity: 0.7;
    font-weight: 600;
  }
  .lp-compare__table td.lp-compare__zubry::before {
    content: "Зубри: ";
    opacity: 0.9;
  }
}

/* ─── Тёмная тема ─────────────────────────────────────────── */
.theme-dark .lp-preview__toolbar { background: #262838; border-color: #363850; }
.theme-dark .lp-preview__toolbar-title { color: #c8d0e0; }
.theme-dark .lp-preview__status { background: #1e2030; border-color: #363850; color: #8890a8; }
.theme-dark .lp-preview__canvas {
  background-color: #1e2030;
  background-image: radial-gradient(circle, rgba(100,140,200,0.08) 1px, transparent 1px);
}
.theme-dark .lp-preview__bubble { background: #262838; border-color: #363850; color: #c8d0e0; box-shadow: none; }
.theme-dark .lp-preview__bubble code { background: rgba(90,156,255,0.12); color: #5a9cff; }
.theme-dark .lp-preview__badge { color: #5a9cff; background: rgba(90,156,255,0.12); }
.theme-dark .lp-preview__btn { background: #3a7ae0; }
.theme-dark .lp-preview__btn--ghost { background: transparent; color: #5a9cff; border-color: #5a9cff; }
.theme-dark .lp-preview__sticky { background: #3a3528; color: #d4c8a8; }
.theme-dark .lp-audience__card { background: #222438; border-color: #363850; border-top-color: var(--chalkboard); }
.theme-dark .lp-audience__card p { color: #8890a8; }
.theme-dark .lp-stat__label { color: #8890a8; }

/* ─── Адаптив ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .lp-audience { grid-template-columns: 1fr; max-width: 420px; }
  .lp-stats { gap: 1.6rem; }
  .lp-preview__sticky { max-width: 90%; }
}
