/* KlikUm KIDS — лендинг v2 (полный макет: крем, фиолетовый бренд, оранжевый CTA) */
:root {
  --lk-bg: #fff9f0;
  --lk-white: #fff;
  --lk-orange: #ff6b35;
  --lk-orange-l: #fff0eb;
  --lk-orange-d: #e55a27;
  --lk-peach: #fff5ee;
  /* Приглушённый «успех» — не неоновая бирюза */
  --lk-teal: #6d9488;
  --lk-teal-l: #eef4f2;
  --lk-teal-d: #557a6f;
  --lk-sage: var(--lk-teal);
  --lk-sage-l: var(--lk-teal-l);
  --lk-sage-d: var(--lk-teal-d);
  --lk-yellow: #ffb800;
  --lk-yellow-l: #fff8e0;
  --lk-pink: #ffe8f0;
  --lk-pink-d: #f9a8d4;
  --lk-blue-l: #e8f4ff;
  --lk-purple: #7c5cff;
  --lk-purple-d: #5b3fd4;
  --lk-purple-l: #f0ebff;
  --lk-dark: #1a1a2e;
  --lk-text: #2d2d3e;
  --lk-muted: #8b8b9e;
  --lk-border: #eee8e0;
  --lk-panel-bg: #fffcf8;
  --lk-panel-border: #f5ebe2;
  --lk-grey-panel: #f5f3f8;
  --lk-r: 24px;
  --lk-rsm: 16px;
  --lk-shadow-sm: 0 4px 14px rgba(26, 26, 46, 0.07);
  --lk-shadow: 0 6px 22px rgba(26, 26, 46, 0.08);
  --lk-shadow-warm: 0 6px 24px rgba(255, 140, 90, 0.1);
  --lk-shadow-lg: 0 12px 40px rgba(26, 26, 46, 0.1);
  --lk-max: 1200px;
  --lk-scrollbar-track: rgba(255, 248, 242, 0.85);
  --lk-scrollbar-thumb: rgba(255, 168, 130, 0.65);
  --lk-scrollbar-thumb-hover: rgba(255, 140, 95, 0.85);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--lk-scrollbar-thumb) var(--lk-scrollbar-track);
}

html::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

html::-webkit-scrollbar-track {
  background: var(--lk-scrollbar-track);
}

html::-webkit-scrollbar-thumb {
  background: var(--lk-scrollbar-thumb);
  border-radius: 999px;
}

html::-webkit-scrollbar-thumb:hover {
  background: var(--lk-scrollbar-thumb-hover);
}

body.lk-page {
  margin: 0;
  font-family: "Nunito", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: var(--lk-bg);
  color: var(--lk-text);
  line-height: 1.6;
  overflow-x: hidden;
}

body.lk-page a {
  text-decoration: none;
  color: inherit;
}

.lk-container {
  max-width: var(--lk-max);
  margin: 0 auto;
  padding-left: max(20px, env(safe-area-inset-left, 0px));
  padding-right: max(20px, env(safe-area-inset-right, 0px));
}

.lk-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

/* Logo: оранжевый KlikUm + бейдж KIDS (как в кабинете) */
.lk-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.lk-logo__brand {
  color: #ff7e2f;
}

.lk-logo__kids {
  font-size: 0.72em;
  font-weight: 800;
  color: #fff;
  background: #ff8a3d;
  padding: 4px 10px;
  border-radius: 999px;
  line-height: 1.2;
}

.lk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lk-btn--primary {
  background: var(--lk-orange);
  color: #fff;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.35);
}

.lk-btn--primary:hover {
  background: var(--lk-orange-d);
  transform: translateY(-2px);
}

.lk-btn--outline {
  background: var(--lk-white);
  color: var(--lk-dark);
  border: 2px solid var(--lk-border);
}

.lk-btn--outline:hover {
  border-color: var(--lk-purple);
  color: var(--lk-purple-d);
}

.lk-btn--link {
  background: transparent;
  color: var(--lk-muted);
  padding: 8px 12px;
  font-weight: 700;
}

.lk-btn--link:hover {
  color: var(--lk-purple-d);
}

.lk-btn--sm {
  padding: 10px 18px;
  font-size: 14px;
}

.lk-btn--login {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 800;
  background: #fef2e8;
  color: #333333;
  border: 1px solid #f5e6dc;
  border-radius: 999px;
  box-shadow: var(--lk-shadow-sm);
}

.lk-btn--login:hover {
  background: #fff5ee;
  transform: translateY(-1px);
}

.lk-btn--login svg {
  flex-shrink: 0;
  color: #333333;
}

/* Шапка — одна строка как на макете */
.lk-top {
  position: sticky;
  top: 0;
  z-index: 100;
  padding-top: env(safe-area-inset-top, 0px);
  background: rgba(255, 249, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(238, 232, 224, 0.7);
}

.lk-top .lk-container {
  position: relative;
}

.lk-top__bar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px 20px;
  padding: 12px 0;
  min-height: 64px;
}

/* На десктопе панель «прозрачна» для сетки: лого | навигация | кнопки */
.lk-top__panel {
  display: contents;
}

.lk-top__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-self: center;
}

.lk-top__nav > a:not(.lk-top__pill) {
  font-size: 15px;
  font-weight: 800;
  color: #5c5c6e;
  white-space: nowrap;
}

.lk-top__nav > a:not(.lk-top__pill):hover {
  color: var(--lk-dark);
}

.lk-top__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 15px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
  background: #fce7f3;
  color: #a21caf;
  border: 1px solid rgba(236, 72, 153, 0.2);
  white-space: nowrap;
}

.lk-top__pill:hover {
  background: #fbd5eb;
}

.lk-top__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  justify-self: end;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lk-btn--parent {
  padding: 10px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  color: var(--lk-purple-d);
  background: var(--lk-purple-l);
  border: 1px solid rgba(124, 92, 255, 0.22);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.lk-btn--parent:hover {
  background: #e8e0ff;
  transform: translateY(-1px);
}

.lk-top__actions .lk-btn--login {
  border: none;
  font-family: inherit;
  cursor: pointer;
}

.lk-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--lk-white);
  border: 1px solid #ebe4dc;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--lk-text);
  cursor: pointer;
  white-space: nowrap;
  box-shadow: var(--lk-shadow-sm);
}

.lk-lang-btn__chev {
  font-size: 10px;
  color: var(--lk-muted);
}

.lk-top__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  justify-self: end;
  border: 1px solid var(--lk-border);
  border-radius: 12px;
  background: var(--lk-white);
  cursor: pointer;
  padding: 0;
  position: relative;
}

.lk-top__toggle-bars,
.lk-top__toggle-bars::before,
.lk-top__toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: var(--lk-dark);
  transition: transform 0.2s ease, opacity 0.2s ease, top 0.2s ease;
}

.lk-top__toggle-bars {
  position: relative;
  top: 0;
}

.lk-top__toggle-bars::before,
.lk-top__toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.lk-top__toggle-bars::before {
  top: -6px;
}

.lk-top__toggle-bars::after {
  top: 6px;
}

.lk-top.is-open .lk-top__toggle-bars {
  background: transparent;
}

.lk-top.is-open .lk-top__toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.lk-top.is-open .lk-top__toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.lk-hero {
  padding: 12px 0 56px;
  overflow: visible;
}

.lk-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1.05fr);
  gap: 8px 0;
  align-items: center;
}

.lk-hero__copy {
  max-width: 580px;
}

.lk-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  margin-bottom: 16px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #2d2d3e;
  background: #fff;
  border: 1px solid #e8e6e3;
  box-shadow: var(--lk-shadow-sm);
}

.lk-hero__badge:hover {
  border-color: #ddd9d4;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.07);
}

.lk-hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 3.5rem);
  font-weight: 900;
  line-height: 1.08;
  margin: 0 0 20px;
  color: #222;
  letter-spacing: -0.03em;
}

.lk-hero h1 .lk-h1-accent {
  display: block;
  margin-top: 0.04em;
  background: linear-gradient(90deg, #ff8533 0%, #ff6b35 28%, #e84393 58%, #a855f7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lk-hero__sub {
  font-size: clamp(16px, 2vw, 18px);
  color: #6b6b7e;
  margin: 0 0 28px;
  max-width: 540px;
  line-height: 1.7;
  font-weight: 600;
}

.lk-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 16px;
}

.lk-btn--hero-start {
  padding: 16px 28px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #ff7a45 0%, #ff6b35 45%, #ff5c28 100%);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.4);
  gap: 10px;
}

.lk-btn--hero-start:hover {
  background: linear-gradient(135deg, #ff8a55 0%, #ff7840 45%, #ff6b35 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255, 107, 53, 0.45);
}

.lk-btn__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  flex-shrink: 0;
}

.lk-btn__arrow {
  font-size: 1.1em;
  line-height: 1;
}

.lk-play-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  font-weight: 800;
  font-size: 15px;
  color: var(--lk-orange);
  background: transparent;
  border: 2px solid rgba(255, 107, 53, 0.45);
  border-radius: 999px;
}

.lk-play-link:hover {
  border-color: var(--lk-orange);
  background: rgba(255, 107, 53, 0.06);
}

.lk-play-link__icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff0eb, #ffe4d6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--lk-orange);
}

.lk-hero__perks {
  list-style: none;
  margin: 32px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
}

.lk-hero__perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lk-dark);
}

.lk-hero__perk-emoji {
  font-size: 1.15rem;
  line-height: 1;
}

.lk-hero__scene {
  position: relative;
  min-height: clamp(380px, 50vw, 540px);
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  margin-right: -24px;
  padding-bottom: 32px;
  overflow: visible;
}

.lk-hero__glow {
  position: absolute;
  right: 10%;
  top: 34%;
  transform: translateY(-50%);
  width: clamp(260px, 42vw, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 175, 110, 0.55) 0%,
    rgba(255, 210, 160, 0.25) 48%,
    transparent 72%
  );
  pointer-events: none;
  z-index: 0;
  animation: lk-hero-glow-pulse 4.8s ease-in-out infinite;
}

.lk-hero__robot {
  position: relative;
  z-index: 1;
  width: min(100%, clamp(380px, 52vw, 560px));
  height: auto;
  max-height: min(78vh, 620px);
  object-fit: contain;
  object-position: 100% 82%;
  transform: translateY(-28px);
  filter: drop-shadow(0 24px 48px rgba(255, 140, 80, 0.2));
  animation: lk-hero-float 5.5s ease-in-out infinite;
  will-change: transform;
}

@keyframes lk-hero-float {
  0%,
  100% {
    transform: translateY(-28px);
  }
  50% {
    transform: translateY(-36px);
  }
}

@keyframes lk-hero-glow-pulse {
  0%,
  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 0.88;
    transform: translateY(-50%) scale(1.05);
  }
}

/* Карточки «Задача / Объясни тему…» */
.lk-prompts {
  padding: 8px 0 40px;
}

.lk-prompts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 0;
}

.lk-prompt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 152px;
  padding: 20px 18px 18px;
  border-radius: 20px;
  box-shadow: var(--lk-shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-prompt-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lk-shadow);
}

.lk-prompt-card__ico {
  display: block;
  font-size: 2.1rem;
  line-height: 1;
  margin-bottom: 12px;
}

.lk-prompt-card__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  padding-right: 44px;
}

.lk-prompt-card__body b {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
}

.lk-prompt-card__body span {
  font-size: 13px;
  font-weight: 600;
  color: #7a7a8c;
}

.lk-prompt-card__go {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #8b8b9e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.lk-prompt-card--orange {
  background: #fff5f0;
  border: 1px solid #f5ddd0;
}
.lk-prompt-card--mint {
  background: #f0faf6;
  border: 1px solid #d4ebe3;
}
.lk-prompt-card--purple {
  background: #f6f3fc;
  border: 1px solid #e4dcf5;
}
.lk-prompt-card--yellow {
  background: #fffbf0;
  border: 1px solid #f0e6c8;
}

/* Умный кабинет — голос, ДЗ, напоминания */
.lk-section__title-accent {
  color: var(--lk-purple-d);
}

.lk-cabinet {
  padding: 8px 0 44px;
}

.lk-cabinet__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.lk-cabinet-card {
  border-radius: 20px;
  padding: 20px 18px 18px;
  box-shadow: var(--lk-shadow-sm);
  border: 1px solid var(--lk-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-cabinet-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lk-shadow);
}

.lk-cabinet-card--voice {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px 22px;
  align-items: center;
  padding: 22px 24px;
  background: linear-gradient(135deg, #f6f3fc 0%, #fff5f0 55%, #fff 100%);
  border-color: #e4dcf5;
}

.lk-cabinet-card__visual {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--lk-purple-l), var(--lk-orange-l));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(124, 92, 255, 0.15);
  flex-shrink: 0;
}

.lk-cabinet-card__visual img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.lk-cabinet-card__tag {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--lk-purple-d);
  background: var(--lk-purple-l);
}

.lk-cabinet-card__ico {
  display: block;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 10px;
}

.lk-cabinet-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 900;
  color: var(--lk-dark);
  line-height: 1.25;
}

.lk-cabinet-card__text {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--lk-muted);
}

.lk-cabinet-card--hw {
  background: #fff5f0;
  border-color: #f5ddd0;
}

.lk-cabinet-card--remind {
  background: #f0faf6;
  border-color: #d4ebe3;
}

.lk-cabinet-card--repeat {
  background: #fff8e8;
  border-color: #f0e4c8;
}

.lk-cabinet-card--memory {
  background: #f6f3fc;
  border-color: #e4dcf5;
}

.lk-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  padding: 28px 32px;
  background: var(--lk-panel-bg);
  border-radius: 24px;
  border: 1px solid var(--lk-panel-border);
  box-shadow: var(--lk-shadow-warm);
}

.lk-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lk-trust__ico {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lk-trust__ico--shield {
  background: #ede9fe;
  color: #7c3aed;
}
.lk-trust__ico--kids {
  background: #d1fae5;
  color: #059669;
}
.lk-trust__ico--mind {
  background: #fef3c7;
  color: #d97706;
}
.lk-trust__ico--heart {
  background: #fce7f3;
  color: #db2777;
}

.lk-trust__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lk-trust__text b {
  font-size: 15px;
  font-weight: 900;
  color: #1f1f2e;
  line-height: 1.25;
}

.lk-trust__text span {
  font-size: 12px;
  font-weight: 600;
  color: #6b6b7e;
  line-height: 1.45;
}

.lk-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1040px;
  margin: 0 auto;
  align-items: stretch;
}

/* Demo chat */
.lk-demo {
  padding: 8px 0 48px;
}

.lk-demo__inner {
  background: var(--lk-panel-bg);
  border: 2px solid var(--lk-panel-border);
  border-radius: var(--lk-r);
  padding: 36px 28px 32px;
  box-shadow: var(--lk-shadow);
  position: relative;
  overflow: hidden;
}

.lk-demo__inner::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -12%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 92, 255, 0.1) 0%, transparent 68%);
  pointer-events: none;
}

.lk-demo__inner::after {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--lk-purple) 0%, #9b7cff 45%, var(--lk-orange) 100%);
  opacity: 0.85;
  pointer-events: none;
}

.lk-demo-msg__av--bot {
  background: linear-gradient(145deg, var(--lk-purple-l), var(--lk-orange-l));
  box-shadow: 0 4px 14px rgba(124, 92, 255, 0.12);
  overflow: hidden;
}

.lk-demo-msg__av--bot img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transform-origin: center bottom;
}

.lk-demo-msg__av--bot.is-react img {
  animation: lk-demo-mascot-react 0.48s ease-out;
}

@keyframes lk-demo-mascot-react {
  0% {
    transform: scale(1) rotate(0deg);
  }
  35% {
    transform: scale(1.14) rotate(-5deg);
  }
  70% {
    transform: scale(1.06) rotate(3deg);
  }
  100% {
    transform: scale(1) rotate(0deg);
  }
}

.lk-demo__head {
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.lk-demo__title {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  color: var(--lk-dark);
}

.lk-demo__title-accent {
  color: var(--lk-purple-d);
}

.lk-demo__sub {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--lk-muted);
}

.lk-demo__chat {
  background: var(--lk-white);
  border-radius: var(--lk-rsm);
  padding: 22px 22px 18px;
  border: 1px solid var(--lk-border);
  box-shadow: var(--lk-shadow-sm);
  position: relative;
  z-index: 1;
}

.lk-demo__messages {
  min-height: 220px;
  max-height: 360px;
  overflow-y: auto;
  margin-bottom: 14px;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: var(--lk-scrollbar-thumb) transparent;
}

.lk-demo-msg {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: flex-start;
  animation: lk-demo-in 0.35s ease-out;
}

@keyframes lk-demo-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.lk-demo-msg--user {
  flex-direction: row-reverse;
}

.lk-demo-msg__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--lk-purple-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.lk-demo-msg--user .lk-demo-msg__av {
  background: var(--lk-orange-l);
}

.lk-demo-msg__bubble {
  background: var(--lk-peach);
  padding: 12px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lk-text);
  line-height: 1.5;
  max-width: min(78%, 520px);
}

.lk-demo-msg__bubble--bot {
  white-space: pre-line;
  line-height: 1.38;
}

.lk-demo-msg--user .lk-demo-msg__bubble {
  background: var(--lk-orange);
  color: #fff;
}

.lk-demo__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.lk-demo__input {
  flex: 1;
  min-width: 160px;
  padding: 14px 16px;
  border: 2px solid var(--lk-border);
  border-radius: 14px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--lk-dark);
  outline: none;
  transition: border-color 0.2s;
}

.lk-demo__input:focus {
  border-color: var(--lk-purple);
}

.lk-demo__hint {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--lk-muted);
  text-align: center;
}

.lk-demo__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.lk-demo-chip:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

.lk-demo-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--lk-border);
  background: var(--lk-purple-l);
  color: var(--lk-purple-d);
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.lk-demo-chip:hover {
  background: var(--lk-purple);
  color: #fff;
  transform: translateY(-1px);
}

.lk-demo-typing {
  display: flex;
  gap: 5px;
  align-items: center;
  min-height: 24px;
  background: var(--lk-peach) !important;
}

.lk-demo-typing span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lk-purple);
  animation: lk-typing 1.2s infinite;
}

.lk-demo-typing span:nth-child(2) {
  animation-delay: 0.15s;
}

.lk-demo-typing span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes lk-typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

/* Pricing cards (detailed) */
.lk-price-card {
  background: var(--lk-white);
  border: 2px solid var(--lk-border);
  border-radius: var(--lk-r);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--lk-shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}

.lk-price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--lk-shadow);
}

.lk-price-card--featured {
  border-color: var(--lk-orange);
  box-shadow: var(--lk-shadow-warm);
}

.lk-price-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lk-orange);
  color: #fff;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.lk-price-card__name {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--lk-dark);
}

.lk-price-card--featured .lk-price-card__name {
  color: var(--lk-orange);
}

.lk-price-card__amount {
  margin: 0;
  font-size: 2.25rem;
  font-weight: 900;
  color: var(--lk-dark);
  line-height: 1.1;
}

.lk-price-card__amount span {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--lk-muted);
}

.lk-price-card__tagline {
  margin: 10px 0 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--lk-muted);
  line-height: 1.45;
}

.lk-price-card__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  flex: 1;
}

.lk-price-card__list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--lk-border);
  font-size: 14px;
  font-weight: 700;
  color: var(--lk-text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lk-price-card__list li:last-child {
  border-bottom: none;
}

.lk-price-card__yes::before {
  content: "✓";
  color: var(--lk-purple-d);
  font-weight: 900;
  flex-shrink: 0;
}

.lk-price-card__no::before {
  content: "–";
  color: var(--lk-muted);
  font-weight: 900;
  flex-shrink: 0;
}

.lk-price-card__no {
  color: var(--lk-muted);
}

.lk-price-card__btn {
  width: 100%;
  margin-top: auto;
}

.lk-section__title--compact {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  margin-bottom: 8px;
}

.lk-section__sub--compact {
  margin-bottom: 24px;
}

.lk-trust-wrap {
  padding: 0 0 40px;
}

.lk-trust-wrap .lk-trust {
  margin-bottom: 0;
}

/* Savings calculator */
.lk-section--savings {
  padding-top: 32px;
  padding-bottom: 48px;
}

.lk-panel--savings {
  padding: 28px 28px 24px;
}

.lk-panel--savings .lk-panel__title {
  text-align: center;
  margin-bottom: 8px;
}

.lk-section__sub--in-panel {
  margin: 0 auto 28px;
}

.lk-savings__next {
  text-align: center;
  margin: 16px 0 0;
}

.lk-savings__next a {
  font-size: 14px;
  font-weight: 800;
  color: var(--lk-purple-d);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lk-savings__next a:hover {
  color: var(--lk-orange);
}

.lk-section--alt {
  background: var(--lk-panel-bg);
  border-top: 1px solid var(--lk-panel-border);
  border-bottom: 1px solid var(--lk-panel-border);
}

.lk-savings__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 880px;
  margin: 0 auto 24px;
}

.lk-savings-card {
  background: var(--lk-white);
  border-radius: var(--lk-r);
  padding: 28px 26px;
  border: 2px solid var(--lk-border);
  box-shadow: var(--lk-shadow-sm);
}

.lk-savings-card--tutor {
  opacity: 0.92;
  background: var(--lk-grey-panel);
}

.lk-savings-card--klikum {
  border-color: rgba(124, 92, 255, 0.35);
  box-shadow: var(--lk-shadow);
  background: linear-gradient(180deg, #fff 0%, var(--lk-purple-l) 100%);
}

.lk-savings-card__name {
  margin: 0 0 12px;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--lk-dark);
}

.lk-savings-card__plus {
  color: var(--lk-orange);
  font-size: 0.95em;
}

.lk-savings-card__price {
  margin: 0;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 900;
  color: var(--lk-dark);
  line-height: 1.1;
}

.lk-savings-card--klikum .lk-savings-card__price {
  color: var(--lk-purple-d);
}

.lk-savings-card--tutor .lk-savings-card__price {
  color: var(--lk-muted);
}

.lk-savings-card__price span {
  font-size: 0.55em;
  font-weight: 800;
}

.lk-savings-card__note {
  margin: 8px 0 18px;
  font-size: 14px;
  font-weight: 700;
  color: var(--lk-muted);
  line-height: 1.45;
}

.lk-savings-card__points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lk-savings-card__points li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 14px;
  font-weight: 700;
  color: #5c5c6e;
  line-height: 1.45;
  border-top: 1px solid var(--lk-border);
}

.lk-savings-card__points li:first-child {
  border-top: none;
  padding-top: 0;
}

.lk-savings-card__points li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--lk-muted);
  font-weight: 900;
}

.lk-savings-card__points--yes li::before {
  content: "✓";
  color: var(--lk-sage-d);
}

.lk-savings-card__points--yes li {
  color: var(--lk-text);
}

.lk-savings__banner {
  max-width: 880px;
  margin: 0 auto;
  padding: 18px 24px;
  border-radius: var(--lk-rsm);
  background: linear-gradient(120deg, var(--lk-purple) 0%, #8b6cf0 42%, var(--lk-orange) 100%);
  color: #fff;
  text-align: center;
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(124, 92, 255, 0.22), 0 4px 14px rgba(255, 107, 53, 0.12);
}

.lk-savings__banner strong {
  font-weight: 900;
  font-size: 1.15em;
}

/* FAQ */
.lk-section--faq {
  background: var(--lk-panel-bg);
  border-top: 1px solid var(--lk-panel-border);
  border-bottom: 1px solid var(--lk-panel-border);
}

.lk-faq {
  max-width: 720px;
  margin: 0 auto;
}

.lk-faq__item {
  background: var(--lk-white);
  border: 1px solid var(--lk-border);
  border-radius: var(--lk-rsm);
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--lk-shadow-sm);
}

.lk-faq__item[open] {
  border-color: rgba(124, 92, 255, 0.35);
  box-shadow: var(--lk-shadow);
}

.lk-faq__q {
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 800;
  color: var(--lk-dark);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.lk-faq__q::-webkit-details-marker {
  display: none;
}

.lk-faq__q::after {
  content: "▼";
  font-size: 12px;
  color: var(--lk-purple);
  transition: transform 0.25s;
  flex-shrink: 0;
}

.lk-faq__item[open] .lk-faq__q::after {
  transform: rotate(180deg);
}

.lk-faq__a {
  padding: 0 20px 18px;
}

.lk-faq__a p {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--lk-muted);
  line-height: 1.7;
}

.lk-final-cta__hint a {
  color: var(--lk-purple-d);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lk-final-cta__hint a:hover {
  color: var(--lk-orange);
}

/* Sections */
.lk-section {
  padding: 64px 0;
}

.lk-section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.35rem);
  font-weight: 900;
  color: var(--lk-dark);
  text-align: center;
  margin: 0 0 12px;
}

.lk-section__sub {
  text-align: center;
  color: var(--lk-muted);
  font-size: 17px;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.lk-section--compare {
  padding: 32px 0;
}

.lk-section--compare .lk-panel {
  padding: 28px 28px 24px;
}

.lk-section--compare .lk-panel__title {
  margin-bottom: 20px;
}

.lk-section--how {
  padding: 28px 0 36px;
}

.lk-sparkle {
  font-size: 0.92em;
}

/* Панели секций — слегка персиковые */
.lk-panel {
  background: var(--lk-panel-bg);
  border-radius: 28px;
  padding: 40px 36px 36px;
  border: 1px solid var(--lk-panel-border);
  box-shadow: var(--lk-shadow-warm);
}

.lk-panel__title {
  font-size: clamp(1.65rem, 3.2vw, 2.1rem);
  font-weight: 900;
  color: #1a1a2e;
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.2;
}

/* Compare */
.lk-compare-stage {
  position: relative;
}

.lk-compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.lk-compare-card {
  position: relative;
  border-radius: 18px;
  padding: 14px 14px 36px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--lk-shadow-sm);
}

.lk-compare-card--bad {
  background: #fdecec;
  border: 1px solid #f5d4d4;
}

.lk-compare-card--good {
  background: #eaf8f1;
  border: 1px solid #d4ebe3;
}

.lk-compare-card__label {
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #1f1f2e;
}

.lk-compare-card__label > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.lk-compare-card__label small {
  font-size: 11px;
  font-weight: 600;
  color: #8b8b9e;
}

.lk-compare-card__mark {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
  color: #fff;
}

.lk-compare-card__mark--bad {
  background: #ef4444;
}

.lk-compare-card__mark--good {
  background: #22c55e;
}

.lk-chat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lk-compare-card .lk-msg--bubble {
  padding: 10px 12px;
  border-radius: 12px;
  background: #fff8f3;
  border: 1px solid rgba(245, 220, 200, 0.55);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  text-align: left;
}

.lk-msg__tag {
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: #9a9aad;
}

.lk-compare-card .lk-msg--bubble p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: #2d2d3e;
}

.lk-compare-card--bad .lk-msg__tag {
  color: #dc6b6b;
}

.lk-compare-card--bad .lk-msg--answer .lk-msg__tag {
  color: #c2410c;
}

.lk-msg--user .lk-msg__tag {
  color: #ff6b35;
}

.lk-msg--ai .lk-msg__tag {
  color: #7c5cff;
}

.lk-msg--ai {
  border-left: 3px solid #b89aff;
}

.lk-msg--user {
  border-left: 3px solid #ffb088;
}

.lk-compare-card .lk-msg--win {
  background: #f6fbf8;
  border-color: #d4ebe3;
  border-left: 3px solid #22c55e;
}

.lk-msg--win .lk-msg__tag {
  color: #059669;
}

.lk-compare-card__foot {
  position: absolute;
  left: 14px;
  bottom: 10px;
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  color: #b45309;
  line-height: 1.2;
}

.lk-compare-card__foot--good {
  left: auto;
  right: 14px;
  color: var(--lk-purple-d);
}

.lk-compare-tagline {
  text-align: center;
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: #8b8b9e;
}

/* Timeline */
.lk-section--how .lk-panel {
  padding: 28px 32px 26px;
}

.lk-section--how .lk-panel__title {
  margin-bottom: 20px;
}

.lk-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px 6px;
  position: relative;
  padding-top: 0;
}

.lk-timeline::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    #ffc9a8 0,
    #ffc9a8 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.75;
  z-index: 0;
}

.lk-tl-step {
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 4px;
}

.lk-tl-step__ring {
  width: clamp(96px, 11vw, 112px);
  height: clamp(96px, 11vw, 112px);
  margin: 0 auto 8px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    circle at 50% 45%,
    rgba(255, 210, 170, 0.6) 0%,
    rgba(255, 228, 205, 0.32) 45%,
    rgba(255, 252, 248, 0) 70%
  );
}

.lk-tl-step__art {
  width: auto;
  height: clamp(48px, 5.5vw, 62px);
  max-width: 88%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(255, 120, 60, 0.2));
}

.lk-tl-step__art--robot {
  height: clamp(52px, 6vw, 68px);
  object-position: center top;
}

.lk-tl-step__num {
  display: block;
  margin: 0 auto 6px;
  font-size: 13px;
  font-weight: 800;
  color: #e8a070;
  line-height: 1;
}

.lk-tl-step b {
  display: block;
  font-size: clamp(11px, 1.1vw, 13px);
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
  line-height: 1.3;
}

.lk-tl-step span {
  display: block;
  font-size: clamp(10px, 0.95vw, 11px);
  font-weight: 600;
  color: #8b8b9e;
  line-height: 1.4;
  max-width: 150px;
  margin: 0 auto;
}

/* Gamification grid */
.lk-game-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.lk-game-tile {
  background: var(--lk-panel-bg);
  border-radius: var(--lk-r);
  padding: 22px 16px;
  text-align: center;
  box-shadow: var(--lk-shadow-sm);
  border: 1px solid var(--lk-panel-border);
}

.lk-game-tile__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--lk-dark);
  margin-bottom: 14px;
}

.lk-progress {
  height: 12px;
  background: #eee;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.lk-progress__bar {
  height: 100%;
  width: 65%;
  background: linear-gradient(90deg, var(--lk-purple), var(--lk-orange));
  border-radius: 999px;
}

.lk-game-tile__meta {
  font-size: 12px;
  font-weight: 700;
  color: var(--lk-muted);
}

.lk-medals-row {
  font-size: 1.75rem;
  letter-spacing: 4px;
}

.lk-fire {
  font-size: 2.2rem;
  line-height: 1;
}

.lk-fire small {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: var(--lk-orange);
  margin-top: 4px;
}

.lk-mini-lb {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
}

.lk-mini-lb div {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid var(--lk-border);
}

.lk-mini-lb div.is-you {
  color: var(--lk-orange);
  border: none;
}

.lk-avatars-row {
  display: flex;
  justify-content: center;
}

.lk-avatars-row img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 3px solid var(--lk-white);
  margin-left: -12px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lk-avatars-row img:first-child {
  margin-left: 0;
}

/* Parents */
.lk-section--parents {
  padding: 40px 0;
}

.lk-parents {
  background: var(--lk-panel-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--lk-shadow-warm);
  border: 1px solid var(--lk-panel-border);
}

.lk-parents__body {
  display: grid;
  grid-template-columns: minmax(260px, 42%) 1fr;
  align-items: stretch;
}

.lk-parents__visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  background: #f5ebe4;
}

.lk-parents__visual img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.lk-parents__shield {
  position: absolute;
  right: 22px;
  top: 20%;
  transform: none;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.88) 55%,
    rgba(255, 255, 255, 0.45) 78%,
    transparent 100%
  );
  border: none;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.35),
    0 8px 24px rgba(255, 255, 255, 0.55),
    0 6px 18px rgba(59, 130, 246, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}

.lk-parents__shield svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.25));
}

.lk-parents__content {
  padding: 32px 36px 28px 40px;
}

.lk-parents__title {
  font-size: clamp(1.5rem, 2.8vw, 1.85rem);
  font-weight: 900;
  color: #1a1a2e;
  margin: 0 0 24px;
  line-height: 1.2;
}

.lk-parents__heart {
  font-size: 0.95em;
}

.lk-parents__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 28px;
}

.lk-parent-feat {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.lk-parent-feat__ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.lk-parent-feat__ico--safe {
  background: #e8faf4;
}
.lk-parent-feat__ico--mind {
  background: #fff8e6;
}
.lk-parent-feat__ico--calm {
  background: #f3eeff;
}
.lk-parent-feat__ico--near {
  background: #e8faf4;
}

.lk-parent-feat b {
  display: block;
  font-size: 15px;
  font-weight: 800;
  color: #1a1a2e;
  margin-bottom: 4px;
  line-height: 1.25;
}

.lk-parent-feat span {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #8b8b9e;
  line-height: 1.45;
}

.lk-parents__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 32px;
  border-top: 1px solid var(--lk-panel-border);
  background: rgba(255, 252, 248, 0.6);
}

.lk-parents__foot p {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #8b8b9e;
  line-height: 1.5;
  max-width: 520px;
}

.lk-btn--parents-more {
  flex-shrink: 0;
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 800;
  color: var(--lk-orange);
  background: var(--lk-white);
  border: 2px solid rgba(255, 107, 53, 0.55);
  border-radius: 999px;
  box-shadow: var(--lk-shadow-sm);
}

.lk-btn--parents-more:hover {
  border-color: var(--lk-orange);
  background: rgba(255, 107, 53, 0.06);
}

/* Testimonials + stats (4 cards in a row) */
.lk-section--testi {
  padding: 48px 0 52px;
}

.lk-section--testi .lk-section__title span {
  font-size: 0.92em;
}

.lk-testi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}

.lk-testi-card {
  background: #fff;
  border-radius: 22px;
  padding: 22px 20px 20px;
  box-shadow: var(--lk-shadow-sm);
  border: 1px solid rgba(26, 26, 46, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 220px;
}

.lk-testi-card__quote {
  display: block;
  font-size: 2.75rem;
  line-height: 0.85;
  font-weight: 900;
  color: #e4e4ec;
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
}

.lk-testi-card blockquote {
  margin: 0 0 auto;
  padding: 0;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.55;
  color: #4a4a5e;
  flex: 1;
}

.lk-testi-card__foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 4px;
}

.lk-testi-card__av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(26, 26, 46, 0.1);
}

.lk-testi-card__who {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.lk-testi-card cite {
  display: block;
  font-size: 12px;
  font-weight: 800;
  font-style: normal;
  color: #1a1a2e;
  line-height: 1.3;
}

.lk-testi-card__stars {
  color: #f5b800;
  font-size: 11px;
  letter-spacing: 0.5px;
  line-height: 1;
}

.lk-testi-card--stats {
  justify-content: center;
  gap: 18px;
  padding: 24px 20px;
}

.lk-testi-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lk-testi-stat__ico {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
}

.lk-testi-stat__ico img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.lk-testi-stat__ico--star {
  font-size: 26px;
}

.lk-testi-stat__ico--help {
  font-size: 24px;
  filter: saturate(1.1);
}

.lk-testi-stat p {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #6b6b7e;
  line-height: 1.4;
}

.lk-testi-stat strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  color: #1a1a2e;
  margin-bottom: 2px;
}

/* Final CTA — воздушный баннер */
.lk-final-cta {
  padding: 56px 0 48px;
}

.lk-final-cta__box {
  position: relative;
  overflow: hidden;
  border-radius: var(--lk-r);
  padding: clamp(40px, 6vw, 56px) clamp(28px, 5vw, 64px);
  background: linear-gradient(165deg, #ffffff 0%, #fff9f4 48%, #fff5ee 100%);
  border: 1px solid var(--lk-panel-border);
  box-shadow: 0 4px 24px rgba(26, 26, 46, 0.04);
}

.lk-final-cta__glow {
  position: absolute;
  top: -20%;
  right: -5%;
  width: min(420px, 55vw);
  height: min(420px, 55vw);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(124, 92, 255, 0.09) 0%,
    rgba(255, 107, 53, 0.06) 45%,
    transparent 70%
  );
  pointer-events: none;
  animation: lk-final-glow-pulse 6.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

@keyframes lk-final-glow-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.82;
    transform: scale(1.03);
  }
}

.lk-final-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px 40px;
  align-items: center;
  max-width: none;
  margin: 0;
  text-align: left;
}

.lk-final-cta__copy {
  min-width: 0;
}

.lk-final-cta__side {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 14px;
  min-width: 0;
  width: 100%;
  max-width: 320px;
  justify-self: end;
}

.lk-final-cta__eyebrow {
  margin: 0 0 14px;
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lk-purple-d);
  background: var(--lk-purple-l);
  border: 1px solid rgba(124, 92, 255, 0.15);
}

.lk-final-cta__inner h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 900;
  color: var(--lk-dark);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.lk-final-cta__accent {
  color: var(--lk-orange);
  white-space: nowrap;
}

.lk-final-cta__lead {
  margin: 0;
  max-width: 480px;
  font-size: clamp(15px, 2vw, 17px);
  font-weight: 600;
  color: var(--lk-muted);
  line-height: 1.65;
}

.lk-final-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  margin: 0;
  width: 100%;
}

.lk-final-cta .lk-btn--final.lk-btn--hero-start {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 17px;
}

.lk-btn--final-ghost {
  width: 100%;
  justify-content: center;
  padding: 17px 28px;
  font-size: 16px;
  font-weight: 800;
  color: var(--lk-purple-d);
  background: rgba(255, 255, 255, 0.7);
  border: 2px solid rgba(124, 92, 255, 0.2);
  border-radius: 999px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.lk-btn--final-ghost:hover {
  background: #fff;
  border-color: var(--lk-purple);
  transform: translateY(-1px);
}

.lk-final-cta__hint {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--lk-muted);
  line-height: 1.5;
}

/* Footer */
.lk-footer {
  padding: 28px 0 44px;
}

.lk-footer__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px 40px;
}

.lk-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.lk-logo--footer .lk-logo__brand {
  color: #ff7e2f;
}

.lk-logo--footer .lk-logo__kids {
  color: #fff;
  background: #ff8a3d;
}

.lk-footer__copy {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--lk-muted);
  line-height: 1.4;
}

.lk-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  color: #9b9bad;
}

.lk-footer__links a:hover {
  color: var(--lk-purple-d);
}

.lk-footer__social {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.lk-footer__social a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #b8d4ff 0%, #c9b8ff 55%, #d4c4ff 100%);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 12px rgba(124, 92, 255, 0.18);
  transition: transform 0.2s, box-shadow 0.2s;
}

.lk-footer__social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(124, 92, 255, 0.28);
}

.lk-footer__social svg {
  display: block;
}

.lk-footer__vk {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Responsive — планшет и узкий десктоп */
@media (max-width: 1024px) {
  .lk-prompts__grid,
  .lk-cabinet__grid,
  .lk-trust,
  .lk-timeline,
  .lk-game-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lk-cabinet-card--voice {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lk-cabinet-card__visual {
    margin: 0 auto;
  }

  .lk-timeline::before {
    display: none;
  }

  .lk-testi-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .lk-pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lk-price-card--featured {
    grid-column: 1 / -1;
    max-width: 420px;
    justify-self: center;
    width: 100%;
  }

  .lk-hero__grid,
  .lk-compare__grid {
    grid-template-columns: 1fr;
  }

  .lk-hero__scene {
    order: -1;
    margin-right: 0;
    justify-content: center;
    min-height: 300px;
  }

  .lk-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .lk-final-cta__side {
    justify-self: center;
    max-width: 360px;
    width: 100%;
    align-items: center;
    padding-right: 0;
  }

  .lk-final-cta__lead {
    margin-left: auto;
    margin-right: auto;
  }

  /* Шапка: бургер-меню с планшета */
  .lk-top__bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 12px;
  }

  .lk-logo {
    flex: 1 1 auto;
    min-width: 0;
    order: 1;
  }

  .lk-top {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: #fff9f0;
  }

  .lk-top.is-open {
    background: #fff9f0;
  }

  .lk-top__panel {
    display: none;
    flex: 1 1 100%;
    flex-direction: column;
    gap: 12px;
    order: 3;
    position: relative;
    z-index: 2;
    isolation: isolate;
    padding: 14px 16px 16px;
    background: #ffffff;
    border: 1px solid var(--lk-border);
    border-radius: var(--lk-rsm);
    box-shadow: var(--lk-shadow);
    -webkit-font-smoothing: antialiased;
  }

  .lk-top.is-open .lk-top__panel {
    display: flex;
  }

  .lk-top__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    order: 2;
    margin-left: auto;
  }

  .lk-top__nav {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 6px;
    justify-self: stretch;
  }

  .lk-top__nav > a:not(.lk-top__pill),
  .lk-top__nav > .lk-top__pill {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--lk-peach);
    text-align: center;
  }

  .lk-top__nav > a:not(.lk-top__pill):hover {
    background: var(--lk-orange-l);
  }

  .lk-top__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    padding-top: 4px;
    border-top: 1px solid var(--lk-border);
  }

  .lk-top__actions .lk-btn,
  .lk-top__actions .lk-btn--parent,
  .lk-top__actions .lk-lang-btn {
    width: 100%;
    justify-content: center;
  }

  /* Шапка закреплена при скролле (на мобилке не сбрасывать в relative) */
  .lk-top {
    position: sticky;
    top: 0;
    z-index: 100;
  }
}

@media (max-width: 1100px) {
  .lk-top__nav > a:not(.lk-top__pill) {
    font-size: 14px;
  }

  .lk-top__nav {
    gap: 6px 12px;
  }
}

/* Телефон */
@media (max-width: 768px) {
  .lk-container {
    padding-left: max(16px, env(safe-area-inset-left, 0px));
    padding-right: max(16px, env(safe-area-inset-right, 0px));
  }

  .lk-hero {
    padding-bottom: 40px;
  }

  .lk-hero h1 {
    font-size: clamp(1.65rem, 8vw, 2.15rem);
  }

  .lk-hero__sub {
    font-size: 15px;
  }

  .lk-hero__ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .lk-hero__ctas .lk-btn--hero-start,
  .lk-play-link {
    width: 100%;
    justify-content: center;
  }

  .lk-hero__perks {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .lk-section {
    padding: 48px 0;
  }

  .lk-hero__grid,
  .lk-compare__grid,
  .lk-parents__body {
    grid-template-columns: 1fr;
  }

  .lk-trust {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lk-timeline,
  .lk-game-grid {
    grid-template-columns: 1fr;
  }

  .lk-pricing-grid {
    grid-template-columns: 1fr;
  }

  .lk-price-card--featured {
    grid-column: auto;
    max-width: none;
  }

  .lk-compare-card {
    min-width: 0;
  }

  .lk-savings__grid {
    grid-template-columns: 1fr;
  }

  .lk-footer__row {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 20px;
  }

  .lk-footer__brand {
    align-items: center;
  }

  .lk-footer__copy {
    text-align: center;
  }

  .lk-footer__social {
    justify-content: center;
  }

  .lk-parents__visual {
    min-height: 220px;
  }

  .lk-parents__visual img {
    min-height: 220px;
    object-position: center center;
  }

  .lk-parents__shield {
    right: 16px;
    top: 16%;
    bottom: auto;
    width: 54px;
    height: 54px;
    transform: none;
  }

  .lk-parents__shield svg {
    width: 28px;
    height: 28px;
  }

  .lk-parents__content {
    padding: 24px 22px 20px;
  }

  .lk-parents__features {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .lk-parents__foot {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 22px 20px;
  }

  .lk-btn--parents-more {
    width: 100%;
    justify-content: center;
  }

  .lk-panel {
    padding: 28px 20px 24px;
  }

  .lk-hero__scene {
    min-height: 280px;
    order: -1;
    justify-content: center;
    margin-right: 0;
    align-items: center;
    padding-bottom: 20px;
  }

  .lk-hero__glow {
    right: 50%;
    top: 38%;
    transform: translate(50%, -50%);
    width: 280px;
  }

  .lk-hero__robot {
    width: min(96vw, 420px);
    max-height: none;
    object-position: center 82%;
    animation-name: lk-hero-float-mobile;
  }

  @keyframes lk-hero-float-mobile {
    0%,
    100% {
      transform: translateY(-16px);
    }
    50% {
      transform: translateY(-22px);
    }
  }

  .lk-pricing-grid,
  .lk-savings__grid,
  .lk-cabinet__grid {
    grid-template-columns: 1fr;
  }

  .lk-demo__inner {
    padding: 28px 18px 24px;
  }

  .lk-demo__form {
    flex-direction: column;
  }

  .lk-demo__form .lk-btn {
    width: 100%;
  }

  .lk-demo-msg__bubble {
    max-width: 88%;
  }

  .lk-trust {
    padding: 22px 20px;
    gap: 20px;
  }


  .lk-final-cta {
    padding: 40px 0 36px;
  }

  .lk-final-cta__box {
    padding: 36px 24px 40px;
  }

  .lk-final-cta__inner {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .lk-final-cta__side {
    align-items: center;
    padding-right: 0;
    justify-self: center;
    max-width: 340px;
  }

  .lk-final-cta__actions {
    width: 100%;
  }

  .lk-final-cta__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .lk-footer__links {
    gap: 10px 14px;
    justify-content: center;
    font-size: 13px;
  }

}

@media (max-width: 480px) {
  .lk-logo {
    font-size: 1.25rem;
  }

  .lk-top__bar {
    min-height: 56px;
    padding: 8px 0;
  }

  .lk-hero__robot {
    width: min(100%, 360px);
  }

  .lk-demo__title {
    font-size: 1.25rem;
  }

  .lk-panel {
    padding: 24px 16px 20px;
  }

  .lk-footer__links a {
    display: inline-block;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .lk-hero__robot,
  .lk-hero__glow,
  .lk-final-cta__glow {
    animation: none !important;
  }

  .lk-hero__robot {
    transform: translateY(-28px);
  }

  .lk-demo-msg__av--bot.is-react img {
    animation: none !important;
  }
}

@media (max-width: 900px) and (prefers-reduced-motion: reduce) {
  .lk-hero__robot {
    transform: translateY(-16px);
  }
}
