/* DBT MIND landing v2 — premium polish
   Tokens from ../colors_and_type.css. Mobile-first, scales up to desktop. */

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: #f7f3ff;
  color: rgba(86, 76, 126, 0.92);
  font-family: "SF Pro", "DBT Body", -apple-system, BlinkMacSystemFont, sans-serif;
  letter-spacing: -0.3px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }

/* ===== Layout ===== */
.lp-shell { width: 100%; overflow-x: hidden; }
.lp-section { width: 100%; padding: 80px 20px; position: relative; }
.lp-inner   { max-width: 1180px; margin: 0 auto; }
@media (min-width: 720px)  { .lp-section { padding: 110px 32px; } }
@media (min-width: 1024px) { .lp-section { padding: 140px 48px; } }

/* ===== Sticky header ===== */
.lp-header {
  position: sticky; top: 0; z-index: 80;
  background: rgba(247,243,255,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(127,86,217,0.08);
}
.lp-header-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 20px;
}
.lp-logo {
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: 18px; letter-spacing: -0.4px;
  color: #4A2A7B;
  display: flex; align-items: center; gap: 10px;
}
.lp-logo-mark {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, #B585FF, #E41C83);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(228,28,131,0.30);
  overflow: hidden;
}
.lp-logo-mark img { width: 100%; height: 100%; object-fit: cover; border-radius: inherit; }
.lp-nav {
  display: none; gap: 28px;
  font-size: 14px; color: rgba(87,72,148,0.80);
}
@media (min-width: 900px) { .lp-nav { display: flex; } }
.lp-nav a:hover { color: #4A2A7B; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  font-family: "TextFont", sans-serif;
  font-weight: 500; font-size: 16px; letter-spacing: -0.2px;
  transition: transform 120ms ease, box-shadow 250ms ease, background 200ms;
  cursor: pointer; white-space: nowrap;
}
.btn:active { transform: scale(0.96); }
.btn-accent {
  background: linear-gradient(135deg, #B585FF 0%, #9349f8 50%, #E41C83 100%);
  background-size: 200% 200%;
  color: #fff;
  box-shadow: 0 6px 20px rgba(228,28,131,0.30), 0 2px 6px rgba(127,86,217,0.18);
  animation: gradientShift 6s ease-in-out infinite;
}
@keyframes gradientShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}
.btn-accent:hover { box-shadow: 0 12px 32px rgba(228,28,131,0.45), 0 4px 12px rgba(127,86,217,0.25); transform: translateY(-1px); }
.btn-arrow {
  display: inline-block;
  animation: arrowNudge 1.15s ease-in-out infinite;
}
@keyframes arrowNudge {
  0%,100% { transform: translateX(0); }
  50%     { transform: translateX(6px); }
}
.btn-large { padding: 18px 34px; font-size: 17px; }
.btn-ghost  { background: rgba(127,86,217,0.10); color: #4A2A7B; }
.btn-ghost:hover { background: rgba(127,86,217,0.18); }
.btn-light  { background: #fff; color: #4A2A7B; box-shadow: 0 6px 22px rgba(0,0,0,0.18); animation: none; }
.btn-light:hover { background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,0.24); transform: translateY(-1px); }
.btn-tg-mini { padding: 9px 20px; font-size: 14px; }

/* ===== Animated gradient text ===== */
.agt {
  background: linear-gradient(90deg, #4A2A7B 0%, #9349f8 25%, #E41C83 50%, #ff9800 75%, #4A2A7B 100%);
  background-size: 250% 200%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: agtShift 8s ease-in-out infinite;
  display: inline-block;
}
@keyframes agtShift {
  0%,100% { background-position: 0% 50%; }
  50%     { background-position: 100% 50%; }
}

/* ===== Highlight pill in headlines ===== */
.hi-pill {
  display: inline-block;
  padding: 0 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FFF8E6, #fdecf6);
  box-shadow: inset 0 0 0 1px rgba(228,28,131,0.18);
  position: relative;
}

/* ===== Floating decorations ===== */
.float-mascot {
  position: absolute; pointer-events: none;
  filter: drop-shadow(0 14px 22px rgba(127,86,217,0.18));
  animation: bob 6s ease-in-out infinite;
  z-index: 1;
}
@keyframes bob {
  0%,100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50%     { transform: translateY(-12px) rotate(calc(var(--rot, 0deg) + 4deg)); }
}
.spark {
  position: absolute; pointer-events: none;
  animation: sparkPulse 3s ease-in-out infinite;
}
.spark img { width: 100%; height: 100%; }
@keyframes sparkPulse {
  0%,100% { opacity: 0.45; transform: scale(0.85) rotate(0deg); }
  50%     { opacity: 1;   transform: scale(1.15) rotate(28deg); }
}

/* ===== Hero ===== */
.lp-hero {
  position: relative;
  padding: 56px 20px 64px;
  background:
    radial-gradient(80% 60% at 50% 0%, #FFE7F4 0%, transparent 60%),
    radial-gradient(60% 50% at 100% 30%, #E6DFFF 0%, transparent 70%),
    radial-gradient(60% 60% at 0% 70%, #FFF8E6 0%, transparent 70%),
    #f7f3ff;
  overflow: hidden;
}
@media (min-width: 720px) { .lp-hero { padding: 80px 32px 96px; } }
@media (min-width: 1024px) { .lp-hero { padding: 110px 48px 130px; } }
.lp-hero-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr;
  gap: 40px; align-items: center;
  position: relative;
}
@media (min-width: 900px) {
  .lp-hero-grid { grid-template-columns: 1.05fr 1fr; gap: 48px; }
}
.lp-hero-pre {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(10px);
  font-size: 12px; font-weight: 500;
  color: #4A2A7B;
  border: 1px solid rgba(127,86,217,0.18);
  margin-bottom: 22px;
  box-shadow: 0 4px 14px rgba(127,86,217,0.10);
}
.lp-hero-pre .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80; box-shadow: 0 0 8px rgba(74,222,128,0.7);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0.7); }
  50%     { box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}
.lp-hero h1 {
  margin: 0 0 22px;
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 7.5vw, 72px);
  line-height: 1.02;
  letter-spacing: -1.6px;
  color: #4A2A7B;
}
.lp-hero-sub {
  margin: 0 0 32px;
  font-size: clamp(16px, 2.4vw, 20px);
  line-height: 1.55;
  color: rgba(86,76,126,0.92);
  max-width: 540px;
  text-wrap: pretty;
}
.lp-hero-cta-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
}
@media (min-width: 480px) { .lp-hero-cta-row { flex-direction: row; align-items: center; gap: 16px; } }
.lp-hero-cta-meta { font-size: 13px; color: rgba(87,72,148,0.75); }

/* hero proof row */
.lp-hero-proof {
  margin-top: 32px;
  display: flex; flex-wrap: wrap; gap: 22px; align-items: center;
}
.proof-stack {
  display: flex; align-items: center;
}
.proof-stack .av {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, #c9b3f7, #f3a3d1);
  border: 2.5px solid #fff;
  margin-left: -10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(127,86,217,0.18);
}
.proof-stack .av:first-child { margin-left: 0; }
.proof-stack .av img { width: 100%; height: 100%; object-fit: contain; padding: 4px; }
.proof-text { font-size: 13px; line-height: 1.4; color: rgba(87,72,148,0.85); }
.proof-text strong { color: #4A2A7B; font-weight: 600; }
.proof-stars {
  display: flex; align-items: center; gap: 6px;
  color: #FFC700;
  font-size: 13px; font-weight: 500;
  margin-top: 4px;
  letter-spacing: 1px;
}

/* iPhone mockup */
.iphone-stage {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 580px;
}
.iphone {
  position: relative;
  width: min(78%, 320px);
  aspect-ratio: 320 / 660;
  background: #1a1430;
  border-radius: 48px;
  padding: 12px;
  box-shadow:
    0 30px 80px rgba(74,42,123,0.40),
    0 12px 32px rgba(228,28,131,0.18),
    inset 0 0 0 1.5px rgba(255,255,255,0.10);
  animation: phoneFloat 7s ease-in-out infinite;
  z-index: 2;
}
@keyframes phoneFloat {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50%     { transform: translateY(-12px) rotate(-0.5deg); }
}
.iphone-screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: #f7f3ff;
}
.iphone-screen img {
  width: 100%; height: 100%; object-fit: cover; object-position: top;
  display: block;
}
.iphone-notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 36%; height: 28px;
  background: #1a1430;
  border-radius: 999px;
  z-index: 3;
}
.iphone-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(50% 50% at 50% 50%, rgba(228,28,131,0.18), transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  z-index: 0;
}

/* hero floating bubbles around phone */
.hero-bubble {
  position: absolute;
  padding: 10px 14px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(127,86,217,0.18);
  display: flex; align-items: center; gap: 10px;
  z-index: 3;
  font-family: "Soyuz Grotesk", sans-serif;
  font-size: 15.6px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #4A2A7B;
  animation: none;
}
.hero-bubble.reveal.is-visible {
  animation:
    bubblePopIn 0.65s cubic-bezier(0.18, 0.89, 0.32, 1.28) both,
    floatY 5s ease-in-out 0.65s infinite;
}
.hero-bubble .em {
  width: 32px; height: 32px; border-radius: 10px;
  background: linear-gradient(135deg, #FFF8E6, #fdecf6);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.hero-bubble .em img { width: 26px; height: 26px; object-fit: contain; }
.hero-bubble.b1 { top: 14%; left: -2%; animation-delay: 0s; }
.hero-bubble.b2 { bottom: 22%; right: -2%; animation-delay: 1s; }
.hero-bubble.b3 { bottom: 6%; left: 4%; animation-delay: 2s; }
@keyframes bubblePopIn {
  0%   { opacity: 0; transform: translateY(16px) scale(0.9); }
  70%  { opacity: 1; transform: translateY(-3px) scale(1.04); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-10px); }
}

/* ===== Section title bits ===== */
.lp-eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  letter-spacing: 1.4px; text-transform: uppercase;
  color: #E41C83;
  margin-bottom: 16px;
  padding: 4px 12px;
  background: #fdecf6;
  border-radius: 999px;
}
.lp-h2 {
  margin: 0 0 18px;
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05; letter-spacing: -1.2px;
  color: #4A2A7B;
  text-wrap: pretty;
  max-width: 800px;
}
.lp-lead {
  font-size: clamp(15px, 2vw, 19px);
  line-height: 1.6;
  color: rgba(86,76,126,0.92);
  max-width: 660px;
  margin: 0 0 40px;
  text-wrap: pretty;
}

/* ===== Logo strip ===== */
.lp-trustbar {
  background: #fff;
  border-top: 1px solid rgba(127,86,217,0.08);
  border-bottom: 1px solid rgba(127,86,217,0.08);
  padding: 28px 20px;
}
.lp-trustbar-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 28px 48px;
}
.lp-trustbar-label {
  font-size: 15.6px; letter-spacing: 1.4px; text-transform: uppercase;
  color: rgba(87,72,148,0.7);
  font-weight: 500;
}
.lp-trustbar-item {
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: 20.8px;
  color: rgba(87,72,148,0.55);
  display: flex; align-items: center; gap: 8px;
  letter-spacing: -0.4px;
}
.lp-trustbar-item .dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(87,72,148,0.30); }

/* ===== "Узнаёшь себя" pain cards ===== */
.lp-pain-grid {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 640px)  { .lp-pain-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 1024px) { .lp-pain-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; } }
.pain-card {
  position: relative;
  padding: 24px 22px 26px;
  border-radius: 24px;
  background: linear-gradient(to bottom right, #ffffff, #F2EBFF);
  box-shadow: 0 4px 18px rgba(127,86,217,0.10);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 220px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.pain-card { transition: transform 220ms ease, box-shadow 260ms ease; }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 22px 56px rgba(127,86,217,0.12); }
.pain-card .mascot {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9b3f7, #f3a3d1);
  padding: 6px;
  display: flex; align-items: center; justify-content: center;
  filter: drop-shadow(0 6px 12px rgba(127,86,217,0.20));
}
.pain-card .mascot img { width: 100%; height: 100%; object-fit: contain; }
.pain-card .quote {
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: 21.6px; line-height: 1.28;
  color: #4A2A7B;
  letter-spacing: -0.3px;
}
.pain-card .pain-spark {
  position: absolute; right: -16px; top: -16px;
  width: 56px; height: 56px;
  opacity: 0.85;
  filter: drop-shadow(0 4px 10px rgba(228,28,131,0.20));
  z-index: 2;
}

/* ===== Why-block ===== */
.lp-explain {
  background: linear-gradient(135deg, #ffffff 0%, #E6DFFF 100%);
  border-radius: 36px;
  padding: 36px 28px;
  box-shadow: 0 16px 50px rgba(127,86,217,0.16);
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .lp-explain { padding: 56px 48px; } }
.lp-explain p {
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: clamp(22px, 3vw, 30px);
  line-height: 1.32; letter-spacing: -0.6px;
  color: #4A2A7B; margin: 0;
  text-wrap: pretty;
  position: relative;
}
.lp-explain .strike { text-decoration: line-through; text-decoration-thickness: 2px; color: rgba(87,72,148,0.48); font-weight: 700; }
.lp-explain .em { color: #E41C83; }

/* ===== 3 шага ===== */
.lp-steps {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  max-width: 920px;
  margin: 0 auto;
}
.step-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 20px;
  align-items: center;
  padding: 24px 24px;
  border-radius: 24px;
  background: linear-gradient(to bottom right, #ffffff, #f3eafd);
  box-shadow: 0 4px 14px rgba(127,86,217,0.08);
  transition: transform 200ms;
}
.step-row:hover { transform: translateX(6px); }
.step-num {
  width: 64px; height: 64px; border-radius: 20px;
  background: linear-gradient(135deg, #B585FF, #E41C83);
  color: #fff;
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 18px rgba(228,28,131,0.30);
}
.step-text-wrap { display: flex; flex-direction: column; gap: 6px; }
.step-title {
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: clamp(18px, 2.2vw, 22px);
  color: #4A2A7B; letter-spacing: -0.3px;
}
.step-sub { font-size: 14.5px; color: rgba(87,72,148,0.85); line-height: 1.5; }
.step-mascot {
  width: 96px; height: 96px;
  display: none;
}
@media (min-width: 720px) {
  .step-row { grid-template-columns: 72px 1fr 96px; gap: 24px; padding: 26px 28px; }
  .step-mascot { display: block; }
}
.step-mascot img { width: 100%; height: 100%; object-fit: contain; }

/* ===== Bento features grid ===== */
.lp-bento {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .lp-bento {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 16px;
  }
  /* layout — 12 cards */
  .bento-1  { grid-column: span 4; grid-row: span 2; }   /* Hartley AI hero */
  .bento-2  { grid-column: span 2; }                      /* Audio meditations */
  .bento-3  { grid-column: span 2; }                      /* DBT diary */
  .bento-4  { grid-column: span 3; }                      /* DBT skills catalog */
  .bento-5  { grid-column: span 3; }                      /* Achievements */
  .bento-6  { grid-column: span 2; }                      /* Decision board */
  .bento-7  { grid-column: span 2; }                      /* Values */
  .bento-8  { grid-column: span 2; }                      /* To-do */
  .bento-9  { grid-column: span 2; }                      /* Affirmations */
  .bento-10 { grid-column: span 2; }                      /* PDF export */
  .bento-11 { grid-column: span 2; }                      /* SOS */
  .bento-12 { grid-column: span 6; }                      /* Companions strip */
}
.bento {
  position: relative;
  padding: 24px 22px;
  border-radius: 26px;
  background: linear-gradient(to bottom right, #ffffff, #f3eafd);
  box-shadow: 0 6px 20px rgba(127,86,217,0.10);
  overflow: hidden;
  clip-path: inset(0 round 26px);
  isolation: isolate;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
  transition: transform 200ms, box-shadow 200ms;
}
.bento:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(127,86,217,0.18); }
.bento h3 {
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: 22px; line-height: 1.15;
  color: #4A2A7B; letter-spacing: -0.4px; margin: 0;
}
.bento p {
  font-size: 14.5px; line-height: 1.5;
  color: rgba(86,76,126,0.92); margin: 0;
}
.bento-tag {
  display: inline-block; align-self: flex-start;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.6px; text-transform: uppercase;
  background: rgba(127,86,217,0.14); color: #4A2A7B;
}
.bento-1 {
  background:
    radial-gradient(38% 44% at 82% 18%, rgba(255,255,255,0.22), transparent 70%),
    radial-gradient(50% 50% at 35% 92%, rgba(255,214,107,0.16), transparent 72%),
    linear-gradient(135deg, #4A2A7B 0%, #9349f8 48%, #E41C83 100%);
  color: #fff;
  min-height: 430px;
  padding: 34px 32px;
}
.bento-1 h3, .bento-1 p { color: #fff; }
.bento-1 p { color: rgba(255,255,255,0.92); }
.bento-1 .bento-tag { background: rgba(255,255,255,0.22); color: #fff; }
.hartley-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 530px;
}
.hartley-copy h3 {
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.04;
  letter-spacing: -0.8px;
}
.hartley-copy p {
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
}
.hartley-chat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
  width: min(360px, 100%);
  margin-top: 38px;
  pointer-events: none;
}
.chat-bubble {
  width: max-content;
  max-width: 100%;
  padding: 11px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.35;
  color: #fff;
  box-shadow: 0 12px 30px rgba(26,15,58,0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: chatFloat 5s ease-in-out infinite;
}
.chat-bubble.user {
  background: rgba(255,255,255,0.18);
  border-bottom-left-radius: 6px;
}
.chat-bubble.bot {
  margin-left: 42px;
  background: rgba(255,255,255,0.28);
  border-bottom-right-radius: 6px;
  animation-delay: 0.8s;
}
.bento-1 .bento-illustration {
  position: absolute; right: -34px; bottom: -40px;
  width: 330px; height: 330px;
  pointer-events: none;
  z-index: 1;
}
.bento-1 .bento-illustration img {
  width: 100%; height: 100%; object-fit: contain;
  filter: drop-shadow(0 18px 36px rgba(0,0,0,0.26));
  animation: hartleyBob 5.8s ease-in-out infinite;
}
@keyframes chatFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-5px); }
}
@keyframes hartleyBob {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-10px) rotate(-2deg); }
}
@media (max-width: 719px) {
  .bento-1 {
    min-height: 520px;
    padding: 28px 22px;
  }
  .hartley-chat {
    width: 100%;
    margin-top: 30px;
  }
  .bento-1 .bento-illustration {
    right: -36px;
    bottom: -44px;
    width: 260px;
    height: 260px;
  }
}
.bento .icon-block {
  width: 56px; height: 56px; border-radius: 18px;
  background: linear-gradient(135deg, #c9b3f7, #f3a3d1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.bento .icon-block img { width: 64%; height: 64%; object-fit: contain; }
.bento-decor {
  position: absolute; right: -12px; top: -12px;
  width: 110px; height: 110px;
  opacity: 0.30;
  pointer-events: none;
}
.bento-decor img { width: 100%; height: 100%; }

/* feature 6 — wide row with rotating mascot */
.bento-12 {
  background: linear-gradient(135deg, #FFF8E6 0%, #fdecf6 100%);
  display: flex; flex-direction: column; gap: 16px;
  align-items: flex-start;
  min-height: 250px;
  padding-right: 280px;
}
.bento-12:hover {
  transform: none;
  box-shadow: 0 6px 20px rgba(127,86,217,0.10);
}
.bento-companion-hero {
  position: absolute;
  right: 18px;
  bottom: -24px;
  width: 247px;
  height: 247px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
}
.bento-companion-hero img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  animation: companionSwap 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@keyframes companionSwap {
  0%   { opacity: 0; transform: translateX(18px) scale(0.92) rotate(4deg); }
  100% { opacity: 1; transform: translateX(0) scale(1) rotate(0); }
}
@media (max-width: 639px) {
  .bento-12 {
    min-height: 320px;
    padding-right: 22px;
    padding-bottom: 190px;
  }
  .bento-companion-hero {
    right: 8px;
    bottom: -24px;
    width: 208px;
    height: 208px;
  }
}
.bento-11 {
  background: linear-gradient(135deg, #4A2A7B 0%, #E41C83 100%);
  color: #fff;
}
.bento-11 h3, .bento-11 p { color: #fff; }
.bento-11 p { color: rgba(255,255,255,0.92); }
.bento-11 .bento-tag { background: rgba(255,255,255,0.22); color: #fff; }
.bento-tag.premium {
  background: linear-gradient(90deg,#FFC700,#ff9800); color: #4A2A7B;
}
.bento-tag.free { background: rgba(74,222,128,0.20); color: #22865c; }

/* ===== "И ещё внутри" compact list ===== */
.lp-more {
  margin-top: 28px;
  padding: 28px 26px;
  border-radius: 26px;
  background: linear-gradient(to bottom right, #ffffff, #f3eafd);
  box-shadow: 0 4px 14px rgba(127,86,217,0.08);
}
.lp-more h4 {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: 18px; color: #4A2A7B; margin: 0 0 16px;
  letter-spacing: -0.3px;
}
.lp-more-grid {
  display: grid; grid-template-columns: 1fr; gap: 8px 24px;
  font-size: 14px;
  color: rgba(86,76,126,0.92);
}
@media (min-width: 640px) { .lp-more-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .lp-more-grid { grid-template-columns: repeat(3, 1fr); } }
.lp-more-grid li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0;
}
.lp-more-grid .check-mini {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(127,86,217,0.16);
  flex-shrink: 0; position: relative;
}
.lp-more-grid .check-mini::after {
  content: ""; position: absolute; left: 5px; top: 3px;
  width: 4px; height: 7px; border: solid #4A2A7B;
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* ===== Premium comparison section ===== */
.lp-premium-cmp {
  background: linear-gradient(to bottom, #ffffff, #f7f3ff);
  padding-bottom: 40px;
}
@media (min-width: 720px) {
  .lp-premium-cmp { padding-bottom: 55px; }
}
@media (min-width: 1024px) {
  .lp-premium-cmp { padding-bottom: 70px; }
}
.lp-premium-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  max-width: 1000px; margin: 0 auto;
}
@media (min-width: 720px) { .lp-premium-grid { grid-template-columns: 1fr 1.15fr; } }
.cmp-card {
  padding: 30px 26px;
  border-radius: 28px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
}
.cmp-card.free {
  background: linear-gradient(to bottom right, #ffffff, #f3eafd);
  box-shadow: 0 6px 22px rgba(127,86,217,0.10);
}
.cmp-card.prem {
  background: linear-gradient(135deg, #4A2A7B 0%, #9349f8 60%, #E41C83 130%);
  color: #fff;
  box-shadow: 0 24px 56px rgba(127,86,217,0.36);
  overflow: hidden;
}
.cmp-card.prem::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 40% at 90% 10%, rgba(255,255,255,0.22), transparent),
    radial-gradient(50% 50% at 0% 100%, rgba(255,200,0,0.18), transparent);
  pointer-events: none;
}
.cmp-card .label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.7px;
  text-transform: uppercase;
  color: #E41C83;
  background: rgba(228,28,131,0.12);
  padding: 5px 12px; border-radius: 999px;
  align-self: flex-start;
}
.cmp-card.prem .label {
  background: linear-gradient(90deg, #FFC700, #ff9800); color: #4A2A7B;
}
.cmp-card h3 {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: 26px; letter-spacing: -0.4px; margin: 0;
  color: #4A2A7B;
}
.cmp-card.prem h3 { color: #fff; }
.cmp-list { display: flex; flex-direction: column; gap: 10px; margin: 0; position: relative; z-index: 1; }
.cmp-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; line-height: 1.5;
  color: rgba(86,76,126,0.92);
}
.cmp-card.prem .cmp-list li { color: rgba(255,255,255,0.94); }
.cmp-list .cmp-icon {
  width: 24px; height: 24px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.cmp-list strong { font-weight: 600; color: #4A2A7B; }
.cmp-card.prem .cmp-list strong { color: #fff; }
.cmp-divider {
  height: 1px; margin: 6px 0 4px;
  background: rgba(255,255,255,0.20);
  position: relative; z-index: 1;
}
.cmp-card.prem .cmp-plus {
  font-size: 13px; opacity: 0.85;
  letter-spacing: 0.4px; text-transform: uppercase; font-weight: 600;
  color: #FFC700;
  position: relative; z-index: 1;
}

/* ===== Showcase strip (3 phones) ===== */
.lp-showcase {
  background: linear-gradient(to bottom, #fff, #f7f3ff);
  padding: 80px 0 110px;
  overflow: hidden;
  position: relative;
}
@media (min-width: 720px) { .lp-showcase { padding: 110px 0 140px; } }
.lp-showcase-head {
  max-width: 1180px; margin: 0 auto; padding: 0 20px;
}
.lp-showcase-marquee {
  margin-top: 40px;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}
.lp-showcase-track {
  display: flex;
  gap: 32px;
  width: max-content;
  padding: 30px 20px;
  animation: showcaseScroll 80s linear infinite;
}
.lp-showcase-marquee:hover .lp-showcase-track { animation-play-state: paused; }
@keyframes showcaseScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.showcase-card {
  flex: 0 0 auto;
  width: 240px;
  display: flex; flex-direction: column; align-items: center;
  gap: 18px;
}
.showcase-card .mini-iphone {
  position: relative;
  width: 240px;
  aspect-ratio: 240 / 500;
  background: #1a1430;
  border-radius: 38px;
  padding: 8px;
  box-shadow: 0 18px 44px rgba(74,42,123,0.32);
}
.showcase-card .mini-iphone .mini-screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: #f7f3ff;
  position: relative;
}
.showcase-card .mini-iphone .mini-notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 36%; height: 22px; background: #1a1430; border-radius: 999px; z-index: 2;
}
.showcase-card .mini-iphone .placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px;
  text-align: center; padding: 36px 24px 24px;
}
.showcase-card .mini-iphone .placeholder .ph-mascot {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c9b3f7, #f3a3d1);
  padding: 10px;
}
.showcase-card .mini-iphone .placeholder .ph-mascot img { width: 100%; height: 100%; object-fit: contain; }
.showcase-card .mini-iphone .placeholder .ph-title {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: 18px; color: #4A2A7B; letter-spacing: -0.3px;
}
.showcase-card .mini-iphone .placeholder .ph-sub {
  font-size: 12.5px; color: rgba(87,72,148,0.8); line-height: 1.4;
}
.showcase-card-meta { text-align: center; max-width: 240px; }
.showcase-card-meta .t {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: 18px; color: #4A2A7B; letter-spacing: -0.3px;
}
.showcase-card-meta .s {
  font-size: 13.5px; color: rgba(87,72,148,0.85); margin-top: 4px; line-height: 1.5;
}


/* ===== Dark SOS section ===== */
.lp-dark {
  background:
    radial-gradient(48% 42% at 76% 42%, rgba(147,73,248,0.22), transparent 70%),
    radial-gradient(58% 50% at 50% 0%, rgba(180,133,255,0.18), transparent 70%),
    radial-gradient(60% 60% at 100% 100%, rgba(228,28,131,0.18), transparent 70%),
    #130F2C;
  color: rgb(230,223,255);
  position: relative;
  overflow: hidden;
}
.lp-dark::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(255,215,0,0.12) 0, transparent 1px);
  background-size: 3px 3px;
  opacity: 0.6;
  pointer-events: none;
}
.lp-dark .lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  color: #FFC700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.lp-dark .lp-eyebrow::before {
  content: "♡";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}
.lp-dark .lp-h2 { color: #fff; }
.lp-dark .lp-lead { color: rgba(230,223,255,0.85); }
.lp-dark-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: center;
}
@media (min-width: 900px) {
  .lp-dark-grid { grid-template-columns: 1.05fr 1fr; gap: 56px; }
}
.lp-sos-list {
  display: flex; flex-direction: column; gap: 14px;
}
.sos-item {
  position: relative;
  display: grid; grid-template-columns: 64px 1fr; gap: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(147,73,248,0.14), transparent 40%),
    rgba(32,24,61,0.76);
  border: 1px solid rgba(180,133,255,0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  align-items: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
  transition: transform 200ms, border-color 200ms, background 200ms, box-shadow 200ms;
}
.sos-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #FFC700, #E41C83);
  opacity: 0.9;
}
.sos-item:hover { transform: translateX(6px); border-color: rgba(228,28,131,0.5); }
.sos-item.is-active {
  background:
    radial-gradient(80% 120% at 0% 50%, rgba(255,199,0,0.16), transparent 56%),
    rgba(36,27,67,0.88);
  border-color: rgba(255,199,0,0.28);
  box-shadow: 0 18px 42px rgba(228,28,131,0.16), inset 0 1px 0 rgba(255,255,255,0.08);
}
.sos-item.is-active .ic {
  background: linear-gradient(135deg, #FFC700, #E41C83);
  box-shadow: 0 10px 28px rgba(228,28,131,0.42);
}
.sos-item .ic {
  width: 58px; height: 58px; border-radius: 16px;
  background: linear-gradient(135deg, #B585FF, #E41C83);
  display: flex; align-items: center; justify-content: center;
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: 11px; color: #fff;
  text-transform: lowercase;
  text-align: center;
  line-height: 1.05;
  padding: 6px;
  word-break: break-word;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(228,28,131,0.32);
}
.sos-step {
  display: inline-block;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #FFC700;
  opacity: 0.9;
}
.sos-item .t {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: 18px; color: #fff;
  letter-spacing: -0.2px;
}
.sos-item .s {
  font-size: 14px; color: rgba(230,223,255,0.78);
  margin-top: 2px; line-height: 1.45;
}
.sos-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 440px;
}
.sos-visual::before {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 50%, rgba(228,28,131,0.26), transparent 42%),
    radial-gradient(circle at 62% 42%, rgba(147,73,248,0.22), transparent 60%);
  filter: blur(12px);
  opacity: 0.9;
}
.sos-visual::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: inset 0 0 0 1px rgba(228,28,131,0.10);
  transform: rotate(-12deg) scaleX(1.08);
  z-index: 1;
}
.sos-pulse {
  position: relative;
  width: 280px; height: 280px;
  border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%;
  background:
    radial-gradient(circle at 52% 42%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(135deg, rgba(180,133,255,0.96), rgba(228,28,131,0.96));
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 34px 90px rgba(228,28,131,0.36), inset 0 1px 0 rgba(255,255,255,0.20);
  z-index: 2;
  animation: sosBlob 8s ease-in-out infinite;
}
.sos-pulse::before, .sos-pulse::after {
  content: ""; position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(228,28,131,0.32);
  pointer-events: none;
}
.sos-pulse::before { inset: -42px; opacity: 0.55; }
.sos-pulse::after { inset: -78px; opacity: 0.26; }
@keyframes sosBlob {
  0%,100% { border-radius: 42% 58% 48% 52% / 52% 42% 58% 48%; transform: translateY(0); }
  50%     { border-radius: 55% 45% 56% 44% / 44% 58% 42% 56%; transform: translateY(-8px); }
}
.sos-pulse-inner {
  width: 64%; height: 64%; border-radius: 50%;
  background: radial-gradient(circle at 50% 35%, rgba(255,255,255,0.28), rgba(36,27,67,0.34));
  border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  padding: 10px;
}
.sos-pulse-inner img { width: 112%; height: 112%; object-fit: contain; filter: drop-shadow(0 12px 22px rgba(0,0,0,0.16)); }
.sos-orbit-card {
  position: absolute;
  z-index: 3;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(30,23,58,0.78);
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 12px 30px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-family: "Soyuz Grotesk", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.2px;
  animation: orbitFloat 5s ease-in-out infinite;
}
.sos-orbit-card::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFC700, #E41C83);
  box-shadow: 0 0 16px rgba(228,28,131,0.7);
}
.card-breathe { top: 18%; left: 4%; }
.card-ground { right: 0; top: 34%; animation-delay: 0.7s; }
.card-stop { left: 0; bottom: 18%; animation-delay: 1.4s; }
@keyframes orbitFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}
@media (max-width: 719px) {
  .sos-visual { min-height: 360px; }
  .sos-visual::before {
    width: 300px;
    height: 300px;
  }
  .sos-visual::after {
    width: 290px;
    height: 290px;
  }
  .sos-pulse {
    width: 220px;
    height: 220px;
  }
  .sos-orbit-card {
    font-size: 12px;
    padding: 8px 11px;
  }
  .card-breathe { top: 8%; left: 2%; }
  .card-ground { right: 0; top: 28%; }
  .card-stop { left: 6%; bottom: 8%; }
}

/* ===== Evidence ===== */
.lp-evidence-section {
  padding-bottom: 40px;
}
@media (min-width: 720px) {
  .lp-evidence-section { padding-bottom: 55px; }
}
@media (min-width: 1024px) {
  .lp-evidence-section { padding-bottom: 70px; }
}
.lp-evidence {
  background: linear-gradient(135deg, #FFF8E6 0%, #fdecf6 100%);
  border-radius: 36px;
  padding: 40px 28px;
  box-shadow: 0 16px 50px rgba(127,86,217,0.14);
  position: relative;
  overflow: hidden;
}
@media (min-width: 720px) { .lp-evidence { padding: 60px 48px; } }
.lp-evidence h2 { color: #4A2A7B; }
.lp-evidence-stats {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin: 32px 0 28px;
}
@media (min-width: 640px) { .lp-evidence-stats { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.stat-card {
  padding: 26px 22px;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(127,86,217,0.16);
  display: flex; flex-direction: column; gap: 10px;
  min-height: 150px;
  justify-content: center;
  position: relative;
}
.stat-card .stat-spark {
  position: absolute; top: -14px; right: -14px;
  width: 48px; height: 48px; opacity: 0.9;
  filter: drop-shadow(0 4px 10px rgba(228,28,131,0.18));
  z-index: 2;
}
.stat-num {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(36px, 5.5vw, 52px); letter-spacing: -1.4px;
  color: #4A2A7B;
  line-height: 1;
}
.stat-label {
  font-size: 14px; line-height: 1.45;
  color: rgba(86,76,126,0.92);
}
.lp-evidence-foot {
  font-size: 14.5px; line-height: 1.65;
  color: rgba(86,76,126,0.92);
  max-width: 760px;
}
.lp-evidence-foot strong { color: #4A2A7B; }

/* ===== Marquee ===== */
.marquee-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  padding: 24px 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.marquee {
  display: flex; gap: 18px;
  width: max-content;
  animation: marqueeRun 55s linear infinite;
}
.marquee:hover { animation-play-state: paused; }
.marquee.reverse { animation-direction: reverse; animation-duration: 65s; }
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.testimonial {
  flex-shrink: 0;
  width: 340px;
  padding: 22px 24px;
  border-radius: 24px;
  background: linear-gradient(to bottom right, #ffffff, #F2EBFF);
  box-shadow: 0 6px 18px rgba(127,86,217,0.10);
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid rgba(127,86,217,0.06);
}
.testimonial .quote {
  font-size: 15px; line-height: 1.5;
  color: rgba(86,76,126,0.92);
}
.testimonial .stars {
  color: #FFC700;
  font-size: 13px;
}
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .author-mascot {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, #c9b3f7, #f3a3d1);
  padding: 4px;
  display: flex; align-items: center; justify-content: center;
}
.testimonial .author-mascot img { width: 100%; height: 100%; object-fit: contain; }
.testimonial .author-name {
  font-family: "TextFont", sans-serif;
  font-weight: 500; font-size: 14px;
  color: #4A2A7B;
}
.testimonial .author-meta {
  font-size: 12px; color: rgba(87,72,148,0.7); margin-top: 2px;
}

/* ===== Achievements ===== */
.lp-achievements {
  background:
    radial-gradient(46% 46% at 10% 28%, rgba(127,86,217,0.16), transparent 72%),
    radial-gradient(44% 44% at 88% 20%, rgba(255,214,107,0.18), transparent 70%),
    linear-gradient(180deg, #fff 0%, #f7f3ff 100%);
  overflow: hidden;
}
.ach-inner {
  position: relative;
  text-align: center;
}
.ach-inner .lp-h2 {
  font-size: clamp(42px, 6.5vw, 72px);
  line-height: 0.95;
  max-width: 760px;
}
.ach-inner .lp-lead {
  max-width: 560px;
  color: rgba(86,76,126,0.78);
}
.ach-spark {
  position: absolute;
  pointer-events: none;
  animation: sparkPulse 3.8s ease-in-out infinite;
}
.ach-spark img { width: 100%; height: 100%; }
.ach-spark-1 { width: 34px; height: 34px; left: 8%; top: 9%; }
.ach-spark-2 { width: 42px; height: 42px; right: 9%; top: 12%; animation-delay: 0.8s; }
.ach-row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 44px auto 26px;
  padding: 0 18px;
}
.ach-item {
  position: relative;
  z-index: 2;
  min-height: 246px;
  padding: 28px 22px 22px;
  border-radius: 28px;
  background: rgba(255,255,255,0.86);
  border: 1px solid rgba(127,86,217,0.10);
  box-shadow: 0 22px 54px rgba(127,86,217,0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  transition: transform 240ms ease, box-shadow 240ms ease;
}
.ach-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 70px rgba(127,86,217,0.20);
}
.ach-icon {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  padding: 10px;
  background:
    radial-gradient(circle at 50% 35%, rgba(255,255,255,0.95), rgba(255,255,255,0.72)),
    linear-gradient(135deg, rgba(127,86,217,0.16), rgba(228,28,131,0.10));
  border: 1px solid rgba(127,86,217,0.10);
  box-shadow: 0 10px 24px rgba(127,86,217,0.12), inset 0 1px 0 rgba(255,255,255,0.90);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: achIconFloat 4s ease-in-out infinite;
}
.ach-item:nth-child(2) .ach-icon { animation-delay: 0.4s; }
.ach-item:nth-child(3) .ach-icon { animation-delay: 0.8s; }
.ach-item:nth-child(4) .ach-icon { animation-delay: 1.2s; }
.ach-icon img {
  width: 94%;
  height: 94%;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(74,42,123,0.12));
}
.ach-item-1 .ach-icon img,
.ach-item-3 .ach-icon img,
.ach-item-4 .ach-icon img {
  width: 108%;
  height: 108%;
}
.ach-item-2 .ach-num { color: #E41C83; }
.ach-item-4 .ach-num { color: #D09A00; }
@keyframes achIconFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%     { transform: translateY(-5px) scale(1.04); }
}
.ach-num {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(46px, 5.4vw, 64px);
  line-height: 0.95;
  color: #4A2A7B;
  letter-spacing: -1.2px;
}
.ach-label {
  font-size: 15px;
  color: rgba(74,42,123,0.78);
  text-align: center;
  line-height: 1.25;
}
.ach-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(127,86,217,0.10);
  box-shadow: 0 10px 28px rgba(127,86,217,0.10);
  color: rgba(74,42,123,0.82);
  font-size: 14px;
}
.ach-note span { color: #E41C83; }
@media (max-width: 900px) {
  .ach-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 560px;
  }
}
@media (max-width: 560px) {
  .ach-row {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .ach-item { min-height: 220px; }
}

/* ===== Pricing ===== */
.lp-pricing { background: linear-gradient(to bottom, #f7f3ff, #ffffff); }
.lp-pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: 18px;
  max-width: 920px; margin: 0 auto;
}
@media (min-width: 720px) {
  .lp-pricing-grid { grid-template-columns: 1fr 1.2fr; align-items: stretch; }
}
.price-card {
  padding: 30px 26px;
  border-radius: 30px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
}
.price-card.free {
  background: linear-gradient(to bottom right, #ffffff, #f3eafd);
  box-shadow: 0 8px 28px rgba(127,86,217,0.10);
}
.price-card.premium {
  background: linear-gradient(135deg, #4A2A7B 0%, #9349f8 60%, #E41C83 130%);
  color: #fff;
  box-shadow: 0 24px 56px rgba(127,86,217,0.36), 0 8px 18px rgba(228,28,131,0.20);
  overflow: hidden;
}
.price-card.premium::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(40% 40% at 90% 10%, rgba(255,255,255,0.20), transparent),
    radial-gradient(50% 50% at 0% 100%, rgba(255,200,0,0.16), transparent);
  pointer-events: none;
}
.price-tag {
  display: inline-flex; align-self: flex-start;
  padding: 5px 14px; border-radius: 999px;
  background: rgba(228,28,131,0.16); color: #E41C83;
  font-size: 11px; font-weight: 600; letter-spacing: 0.7px; text-transform: uppercase;
}
.price-card.premium .price-tag {
  background: linear-gradient(90deg, #FFC700, #ff9800); color: #4A2A7B;
}
.price-name {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: 28px; letter-spacing: -0.4px; color: #4A2A7B;
}
.price-card.premium .price-name { color: #fff; }
.price-amount {
  font-family: "Soyuz Grotesk", sans-serif; font-weight: 700;
  font-size: clamp(40px, 6vw, 54px); line-height: 1;
  color: #4A2A7B; letter-spacing: -1.2px;
}
.price-card.premium .price-amount { color: #fff; }
.price-amount-sub { font-size: 15px; color: rgba(87,72,148,0.8); margin-left: 6px; }
.price-card.premium .price-amount-sub { color: rgba(255,255,255,0.78); }
.price-amount-alt { font-size: 13.5px; color: rgba(87,72,148,0.7); margin-top: 6px; }
.price-card.premium .price-amount-alt { color: rgba(255,255,255,0.88); }
.price-list { display: flex; flex-direction: column; gap: 10px; margin: 8px 0 0; }
.price-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; line-height: 1.45;
  color: rgba(86,76,126,0.92);
}
.price-card.premium .price-list li { color: rgba(255,255,255,0.94); }
.price-list .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(127,86,217,0.16); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-top: 1px;
}
.price-list .check::after {
  content: ""; width: 5px; height: 9px;
  border: solid #4A2A7B; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translate(-1px, -2px);
}
.price-card.premium .price-list .check { background: rgba(255,255,255,0.22); }
.price-card.premium .price-list .check::after { border-color: #fff; }
.price-anchor {
  margin-top: auto;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.20);
  font-size: 13.5px; line-height: 1.5;
  color: rgba(255,255,255,0.94);
}
.price-anchor strong { color: #fff; }
.price-card .btn { width: 100%; }

/* ===== FAQ ===== */
.lp-faq-list {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 800px;
  margin: 32px auto 0;
  text-align: left;
}
.faq-item {
  background: linear-gradient(to bottom right, #ffffff, #f3eafd);
  border-radius: 20px;
  box-shadow: 0 4px 14px rgba(127,86,217,0.08);
  overflow: hidden;
  transition: box-shadow 200ms;
}
.faq-item[open] { box-shadow: 0 10px 28px rgba(127,86,217,0.16); }
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: "Soyuz Grotesk", sans-serif;
  font-weight: 700; font-size: 17px; line-height: 1.3;
  color: #4A2A7B; letter-spacing: -0.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(127,86,217,0.16);
  display: flex; align-items: center; justify-content: center;
  color: #4A2A7B; font-weight: 500; font-size: 20px;
  flex-shrink: 0;
  transition: transform 250ms ease, background 200ms;
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #B585FF, #E41C83); color: #fff;
}
.faq-body {
  padding: 0 24px 24px;
  font-size: 15px; line-height: 1.65;
  color: rgba(86,76,126,0.92);
}

/* ===== Final CTA ===== */
.lp-final {
  position: relative;
  padding: 100px 20px;
  background:
    radial-gradient(60% 50% at 50% 0%, #FFE7F4 0%, transparent 70%),
    radial-gradient(60% 60% at 100% 100%, #E6DFFF 0%, transparent 70%),
    radial-gradient(50% 60% at 0% 50%, #FFF8E6 0%, transparent 70%),
    #f7f3ff;
  overflow: hidden;
  text-align: center;
}
.lp-final-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.lp-final-mascot {
  position: relative;
  width: 200px; height: 200px;
  margin: 0 auto 28px;
  border-radius: 36% 38% 36% 34% / 38% 34% 38% 34%;
  background: linear-gradient(135deg, #ffffff 10%, #BEA0F5 90%);
  box-shadow: 0 20px 56px rgba(127,86,217,0.32);
  display: flex; align-items: center; justify-content: center;
  animation: heroBlob 9s ease-in-out infinite;
}
@keyframes heroBlob {
  0%,100% { border-radius: 36% 38% 36% 34% / 38% 34% 38% 34%; }
  50%     { border-radius: 38% 34% 34% 38% / 34% 38% 34% 38%; }
}
.lp-final-mascot img { width: 80%; height: 80%; object-fit: contain; }
.lp-final h2 {
  font-size: clamp(34px, 6vw, 60px);
  margin: 0 auto 20px;
  text-wrap: balance;
}
.lp-final p {
  font-size: clamp(15px, 2vw, 19px);
  color: rgba(86,76,126,0.92);
  margin: 0 auto 32px;
  line-height: 1.6;
  max-width: 560px;
}
.lp-final-meta { margin-top: 16px; font-size: 13px; color: rgba(87,72,148,0.75); }

/* ===== Footer ===== */
.lp-footer {
  background: #f7f3ff;
  border-top: 1px solid rgba(127,86,217,0.10);
  padding: 36px 20px;
}
.lp-footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 18px; align-items: center;
}
@media (min-width: 720px) {
  .lp-footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .lp-footer-links {
    flex-wrap: nowrap;
    flex-shrink: 0;
  }
  .lp-footer-copy {
    max-width: 380px;
    text-align: right;
    line-height: 1.5;
  }
}
.lp-footer-links {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: center;
  font-size: 13px; color: rgba(87,72,148,0.75);
}
.lp-footer-links a:hover { color: #4A2A7B; }
.lp-footer-copy { font-size: 12px; color: rgba(87,72,148,0.6); }

/* ===== Sticky bottom CTA (mobile) ===== */
.lp-sticky-cta {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  padding: 12px 16px;
  background: rgba(74,42,123,0.92);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  box-shadow: 0 12px 32px rgba(74,42,123,0.42);
  z-index: 60;
  transition: transform 350ms ease, opacity 350ms ease;
  opacity: 0; transform: translateY(20px); pointer-events: none;
}
.lp-sticky-cta.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.lp-sticky-cta .label { color: #fff; font-size: 13.5px; font-weight: 500; }
.lp-sticky-cta .label small { display: block; color: rgba(255,255,255,0.7); font-size: 11px; font-weight: 400; }
.lp-sticky-cta .btn { padding: 10px 18px; font-size: 14px; }
@media (min-width: 900px) { .lp-sticky-cta { display: none; } }

/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.9s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity 0.3s ease; transform: none; }
}

/* ===== Hero chips (replacing single pill) ===== */
.lp-hero-chips {
  display: inline-flex; align-items: center; flex-wrap: wrap;
  gap: 8px;
  padding: 6px 8px 6px 6px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(127,86,217,0.16);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: rgba(74,42,123,0.85);
  box-shadow: 0 4px 14px rgba(127,86,217,0.08);
}
.lp-hero-chips .chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
}
.lp-hero-chips .chip-icon.tg-icon {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.lp-hero-chips .chip-dot {
  width: 4px; height: 4px; border-radius: 50%;
  background: rgba(127,86,217,0.32);
}
.lp-hero-chips .chip-users {
  background: linear-gradient(90deg, rgba(127,86,217,0.10), rgba(228,28,131,0.10));
  color: #4A2A7B;
  position: relative;
}
.lp-hero-chips .chip-users strong {
  color: #4A2A7B; font-weight: 700;
}
.lp-hero-chips .chip-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.7);
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

/* ===== Hero bubble icons (gold/violet) ===== */
.hero-bubble .em-gold {
  background: linear-gradient(135deg, #FFC700 0%, #ff7a3d 100%);
  box-shadow: 0 6px 16px rgba(255,150,0,0.35);
}
.hero-bubble .em-violet {
  background: linear-gradient(135deg, #9349f8 0%, #E41C83 100%);
  box-shadow: 0 6px 16px rgba(127,86,217,0.35);
}
.hero-bubble .em svg { display: block; }

/* ===== Bento icon-block softer + pop ===== */
.bento .icon-block {
  background: linear-gradient(135deg, rgba(127,86,217,0.10), rgba(228,28,131,0.08));
  border: 1px solid rgba(127,86,217,0.10);
}
.bento .icon-block.icon-pop {
  position: relative;
  overflow: visible;
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.bento:hover .icon-block.icon-pop { transform: rotate(-4deg) scale(1.06); }
.bento .icon-block svg { display: block; }

/* SOS card big mascot replaces tiny icon-block */
.sos-mascot-big {
  width: 96px; height: 96px;
  border-radius: 28px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  padding: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 8px 24px rgba(0,0,0,0.18);
}
.sos-mascot-big img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.25)); }

/* Mascot corner illustration on bento cards */
.bento-mascot-corner {
  position: absolute; right: -10px; bottom: -16px;
  width: 110px; height: 110px;
  pointer-events: none;
  opacity: 0.95;
  transition: transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
}
.bento-mascot-corner img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 6px 14px rgba(127,86,217,0.18)); }
.bento:hover .bento-mascot-corner { transform: translateY(-4px) rotate(-4deg); }

/* Premium card cmp-icon container */
.cmp-card .cmp-icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(127,86,217,0.10);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cmp-card.prem .cmp-icon {
  background: rgba(255,255,255,0.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.20);
}
.cmp-card .cmp-icon svg { display: block; }

/* ===== Mobile polish (<= 719px) ===== */
@media (max-width: 719px) {
  /* Hero: center title, subtitle and CTA */
  .lp-hero { text-align: center; }
  .lp-hero h1 { text-align: center; letter-spacing: -1px; }
  .lp-hero-sub {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .lp-hero-cta-row {
    align-items: center;
    justify-content: center;
  }

  /* TrustBar: stack vertically, hide dot separators, tighten typography */
  .lp-trustbar { padding: 22px 16px; }
  .lp-trustbar-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .lp-trustbar-item:has(.dot) { display: none; }
  .lp-trustbar-label {
    font-size: 12px;
    letter-spacing: 1.2px;
  }
  .lp-trustbar-item {
    font-size: 16px;
    letter-spacing: -0.2px;
  }

  /* Footer: center everything cleanly */
  .lp-footer { padding: 28px 18px; }
  .lp-footer-inner {
    gap: 14px;
    text-align: center;
  }
  .lp-footer-links {
    gap: 14px 18px;
    justify-content: center;
  }
  .lp-footer-copy {
    text-align: center;
    line-height: 1.5;
    max-width: 320px;
  }
}

