:root {
  --bg-1: #1a0f2c;
  --bg-2: #0c0517;
  --card: rgba(36, 22, 54, 0.55);
  --card-2: rgba(20, 12, 32, 0.78);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(211, 108, 255, 0.28);
  --accent: #d36cff;
  --accent-2: #ff7ed1;
  --accent-soft: #ffb6e6;
  --text: #f4eaff;
  --muted: #c2b3d6;
  --muted-2: #8c80a4;
  --good: #7be4b8;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background:
    radial-gradient(60% 50% at 12% -5%, rgba(211, 108, 255, 0.20) 0%, transparent 60%),
    radial-gradient(50% 50% at 100% 0%, rgba(255, 110, 196, 0.12) 0%, transparent 60%),
    radial-gradient(60% 60% at 50% 110%, rgba(255, 110, 196, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #160a26 0%, #0a0414 100%);
  color: var(--text);
  font-family: "Inter", "Onest", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.005em;
  min-height: 100vh;
  scroll-behavior: smooth;
}

#sakura {
  position: fixed; inset: 0;
  width: 100vw; height: 100vh;
  pointer-events: none; z-index: 0;
  opacity: 0.28;
}

.container {
  width: 100%; max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative; z-index: 2;
}

a { color: inherit; text-decoration: none; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(36, 22, 54, 0.5);
  color: var(--text);
  cursor: pointer;
  transition: transform 0.15s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); border-color: var(--line-strong); }
.btn.ghost { background: rgba(36, 22, 54, 0.4); }
.btn.primary {
  background: linear-gradient(135deg, #ff7ed1 0%, #d36cff 50%, #9a3fd1 100%);
  color: #1a0a2b;
  border-color: transparent;
  box-shadow: 0 8px 24px rgba(211, 108, 255, 0.25);
}
.btn.primary:hover { box-shadow: 0 10px 28px rgba(211, 108, 255, 0.45); }
.btn.lg { padding: 14px 22px; font-size: 15px; border-radius: 12px; }

/* ===== Navbar ===== */
.navbar {
  position: sticky; top: 0; z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(14, 7, 22, 0.55);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; gap: 24px;
  padding: 14px 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 11px;
  background: radial-gradient(60% 60% at 50% 40%, rgba(255, 182, 230, 0.20) 0%, transparent 70%);
  overflow: hidden;
}
.brand-mark svg, .brand-mark canvas { width: 100%; height: 100%; display: block; }
.brand-name { font-family: "Cormorant Garamond", serif; font-weight: 700; font-size: 22px; letter-spacing: 0.01em; }

.nav-links {
  display: inline-flex; gap: 22px;
  margin-left: 32px;
  font-size: 14px; color: var(--muted);
}
.nav-links a:hover { color: var(--text); }
.nav-cta { margin-left: auto; display: inline-flex; gap: 8px; }

/* ===== HERO ===== */
.hero { padding: 64px 0 32px; }
.hero-grid {
  display: grid; gap: 36px;
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
}
.trial-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(123, 228, 184, 0.10);
  border: 1px solid rgba(123, 228, 184, 0.32);
  color: var(--good);
  font-size: 12.5px; font-weight: 600;
  margin-bottom: 18px;
}
.trial-pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 0 4px rgba(123,228,184,0.18); }
.hero-title {
  margin: 0 0 16px;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-title .accent {
  background: linear-gradient(120deg, #ff7ed1 0%, #d36cff 50%, #ffb6e6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-title .serif {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: 0;
  font-style: italic;
}
.hero-sub {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px; line-height: 1.55;
  max-width: 560px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.hero-bullets {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
  grid-template-columns: 1fr;
  font-size: 13.5px; color: var(--muted);
}
@media (min-width: 540px) { .hero-bullets { grid-template-columns: repeat(3, auto); gap: 18px; } }
.hero-bullets li { display: flex; align-items: center; gap: 8px; }
.check {
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(123, 228, 184, 0.16);
  border: 1px solid rgba(123, 228, 184, 0.50);
  position: relative; flex: 0 0 16px;
}
.check::after {
  content: ""; position: absolute; left: 4px; top: 4px;
  width: 6px; height: 3px;
  border-left: 2px solid var(--good);
  border-bottom: 2px solid var(--good);
  transform: rotate(-45deg);
}

/* ===== Hero visual ===== */
.hero-visual { position: relative; min-height: 360px; }
.visual-glow {
  position: absolute; inset: -10% -10% -10% -10%;
  background:
    radial-gradient(40% 50% at 50% 50%, rgba(211, 108, 255, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.visual-card {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, rgba(36, 22, 54, 0.85) 0%, rgba(20, 12, 32, 0.85) 100%);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
}
.vc-logo {
  width: 96px; height: 96px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  filter: drop-shadow(0 8px 24px rgba(211, 108, 255, 0.35));
}
.vc-logo svg, .vc-logo canvas { width: 100%; height: 100%; display: block; }
.vc-rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.vc-row {
  display: grid; grid-template-columns: 22px 1fr auto; align-items: center; gap: 10px;
  padding: 10px 12px; border-radius: 10px;
  background: rgba(8, 4, 16, 0.45);
  border: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}
.vc-row .vc-icon { font-size: 16px; }
.vc-row .vc-status { font-weight: 700; color: var(--text); font-size: 12.5px; }
.vc-row .vc-status.ok { color: var(--good); }
.vc-foot {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; color: var(--muted);
}
.vc-pulse {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--good);
  box-shadow: 0 0 0 0 rgba(123, 228, 184, 0.55);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(123, 228, 184, 0.55); }
  70% { box-shadow: 0 0 0 12px rgba(123, 228, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(123, 228, 184, 0); }
}

/* ===== STATS ===== */
.stats { padding: 32px 0 8px; }
.stats-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 760px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  text-align: left;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.stat-num {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  background: linear-gradient(120deg, #fff 0%, #ffb6e6 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat-lbl {
  margin-top: 6px;
  font-size: 12.5px; color: var(--muted);
}
.stats-foot {
  display: flex; align-items: center; gap: 22px; flex-wrap: wrap;
  margin-top: 18px;
  font-size: 13px; color: var(--muted);
}
.stats-foot .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-soft); }
.dot.small.live { background: var(--good); animation: pulse 1.6s ease-out infinite; }

/* ===== Section heads ===== */
.section-head { text-align: center; margin-bottom: 36px; }
.kicker {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 10px;
  font-weight: 600;
}
.section-head h2 {
  margin: 0 0 10px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.01em;
}
.section-head p { color: var(--muted); max-width: 620px; margin: 0 auto; }

/* ===== FEATURES ===== */
.features { padding: 64px 0; }
.features-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }
.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px 22px 24px;
  backdrop-filter: blur(6px);
  transition: border-color 0.18s ease, transform 0.18s ease, background 0.18s ease;
}
.feat:hover {
  border-color: var(--line-strong);
  background: rgba(36, 22, 54, 0.7);
  transform: translateY(-2px);
}
.feat-icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 126, 209, 0.18), rgba(154, 63, 209, 0.18));
  border: 1px solid var(--line-strong);
  font-size: 22px;
  margin-bottom: 14px;
}
.feat h3 { margin: 0 0 6px; font-size: 17px; font-weight: 700; }
.feat p { margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55; }

/* ===== HOW ===== */
.how { padding: 64px 0; }
.steps {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .steps { grid-template-columns: repeat(3, 1fr); } }
.step {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  backdrop-filter: blur(6px);
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.step:hover { border-color: var(--line-strong); transform: translateY(-2px); }
.step-num {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 38px;
  background: linear-gradient(135deg, #ff7ed1, #d36cff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  margin-bottom: 6px;
}
.step h3 { margin: 0 0 8px; font-size: 18px; }
.step p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.step a { color: var(--accent-soft); border-bottom: 1px dashed rgba(255,182,230,0.4); }
.step a:hover { color: #fff; }
.how-cta { margin-top: 28px; text-align: center; }

/* ===== REVIEWS ===== */
.reviews { padding: 64px 0; }
.reviews-grid {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 22px;
  backdrop-filter: blur(6px);
}
.review p {
  margin: 0 0 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
  font-size: 14px;
}
.reviewer {
  display: flex; align-items: center; gap: 12px;
}
.reviewer .ava {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 42px;
  border: 1px solid var(--line-strong);
  background: rgba(211, 108, 255, 0.16);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.reviewer img.ava { box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35); }
.reviewer b { display: block; font-size: 13.5px; }
.reviewer span { color: var(--muted); font-size: 12px; }

/* ===== METRICS BANNER ===== */
.metrics-banner {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(20, 12, 32, 0.45);
}
.metrics-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(2, 1fr);
  text-align: center;
}
@media (min-width: 720px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metrics-grid div { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.metrics-grid b {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 32px;
  color: var(--accent-soft);
}
.metrics-grid span { color: var(--muted); font-size: 13px; }

/* ===== PRICING ===== */
.pricing { padding: 64px 0; }
.plans {
  display: grid; gap: 14px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.plan {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 26px;
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  backdrop-filter: blur(6px);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.plan:hover { border-color: var(--line-strong); transform: translateY(-3px); }
.plan.featured {
  border-color: rgba(211, 108, 255, 0.55);
  background:
    linear-gradient(180deg, rgba(211, 108, 255, 0.12) 0%, rgba(20, 12, 32, 0.85) 60%);
  box-shadow: 0 24px 60px rgba(211, 108, 255, 0.18);
}
.plan-badge {
  position: absolute; top: 14px; right: 14px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px;
  background: linear-gradient(135deg, #ff7ed1, #d36cff);
  color: #1a0a2b;
}
.plan-name { font-size: 14px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; }
.plan-price {
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
}
.plan-price span {
  font-family: inherit;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  margin-left: 6px;
}
.plan-hint { color: var(--accent-soft); font-size: 12.5px; font-weight: 600; }
.plan ul {
  list-style: none; padding: 0; margin: 6px 0 8px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.plan ul li {
  display: flex; align-items: center; gap: 10px;
  color: var(--muted);
  font-size: 13.5px;
}
.plan ul li::before {
  content: ""; width: 14px; height: 14px; border-radius: 50%;
  background: rgba(123, 228, 184, 0.16);
  border: 1px solid rgba(123, 228, 184, 0.50);
  position: relative; flex: 0 0 14px;
}
.pay-strip {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 22px; justify-content: center;
  color: var(--muted); font-size: 13px;
}

/* ===== Final CTA ===== */
.final-cta { padding: 80px 0; }
.final-card {
  background: linear-gradient(180deg, rgba(211, 108, 255, 0.18) 0%, rgba(20, 12, 32, 0.85) 70%);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 48px 32px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(211, 108, 255, 0.18);
}
.final-emoji {
  width: 96px; height: 96px;
  margin: 0 auto 12px;
  filter: drop-shadow(0 8px 24px rgba(211, 108, 255, 0.35));
}
.final-emoji svg, .final-emoji canvas { width: 100%; height: 100%; display: block; }
.final-card h2 {
  font-family: "Cormorant Garamond", serif; font-weight: 700;
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}
.final-card p { color: var(--muted); margin: 0 auto 22px; max-width: 540px; }
.final-buttons { display: inline-flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.final-bullets {
  display: flex; flex-wrap: wrap; gap: 22px; justify-content: center;
  margin-top: 22px; color: var(--muted); font-size: 13px;
}

/* ===== FOOTER ===== */
.footer {
  border-top: 1px solid var(--line);
  background: rgba(8, 4, 16, 0.55);
  padding: 48px 0 24px;
  margin-top: 24px;
}
.footer-grid {
  display: grid; gap: 28px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) {
  .footer-grid { grid-template-columns: 1.4fr repeat(3, 0.8fr); gap: 36px; }
}
.foot-brand p { color: var(--muted); font-size: 13.5px; line-height: 1.55; margin-top: 12px; }
.locations { margin-top: 14px; }
.loc-title { font-size: 12px; color: var(--muted-2); letter-spacing: 0.06em; text-transform: uppercase; }
.loc-list {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 8px;
}
.loc-list span {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(36, 22, 54, 0.5);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12.5px;
}
.foot-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 700;
}
.foot-col a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13.5px;
  transition: color 0.15s ease;
}
.foot-col a:hover { color: var(--text); }

.foot-bottom {
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 12.5px;
}
.foot-bottom .status { display: inline-flex; align-items: center; gap: 8px; color: var(--good); }
.foot-bottom a { color: var(--accent-soft); }

/* ===== Mobile nav ===== */
@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-cta .btn:first-child { display: none; }
}
@media (max-width: 540px) {
  .container { padding: 0 16px; }
  .hero { padding: 36px 0 16px; }
  .stats-foot { gap: 12px 18px; }
  .features, .how, .reviews, .pricing, .final-cta { padding: 48px 0; }
  .pay-strip { flex-direction: column; gap: 8px; }
}


/* ===== Reveal-on-scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.reveal-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .vc-pulse { animation: none; }
}


/* ===== Pricing skeletons (до загрузки цен) ===== */
.plan-skeleton { gap: 14px; }
.plan-skeleton .sk {
  height: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.10) 50%, rgba(255,255,255,0.05) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
.plan-skeleton .sk:first-child { width: 60%; }
.plan-skeleton .sk.small { height: 38px; width: 75%; }
.plan-skeleton .sk:nth-child(3) { width: 50%; }
.plan-skeleton .sk:nth-child(4) { width: 80%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}


/* ===== Reviews: пагинация и CTA ===== */
.reviews-foot {
  margin-top: 28px;
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap;
}
.reviews-counter {
  color: var(--muted); font-size: 13px;
}
#reviewsMore svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
#reviewsMore.collapse svg { transform: rotate(180deg); }
#reviewsMore[hidden] { display: none !important; }

/* CTA-карточка в сетке отзывов */
.review-cta {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; justify-content: center;
  background:
    radial-gradient(80% 60% at 100% 0%, rgba(211, 108, 255, 0.18) 0%, transparent 70%),
    linear-gradient(180deg, rgba(255, 126, 209, 0.12) 0%, rgba(20, 12, 32, 0.85) 70%);
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  padding: 22px;
  position: relative; overflow: hidden;
}
.review-cta::before {
  content: ""; position: absolute;
  inset: -40% -40% auto auto;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 126, 209, 0.20) 0%, transparent 70%);
  pointer-events: none;
}
.review-cta .quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 56px; line-height: 0.9;
  color: var(--accent);
  margin-top: -10px;
}
.review-cta h4 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
}
.review-cta p {
  margin: 0; color: var(--muted); font-size: 13.5px; line-height: 1.55;
  font-style: normal;
}
.review-cta .btn { margin-top: 4px; }
.review-cta .btn svg { width: 14px; height: 14px; }

/* ===== Pay-strip / final-bullets с SVG ===== */
.pay-strip span, .final-bullets span {
  display: inline-flex; align-items: center; gap: 8px;
}
.pay-strip svg, .final-bullets svg {
  width: 16px; height: 16px; color: var(--accent-soft);
}


/* ===== Аватарки с инициалами (для отзывов без фото) ===== */
.reviewer .ava-init {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  user-select: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* «Тихий» хвост, когда у человека не указана роль */
.reviewer .role-empty {
  color: var(--muted-2);
  font-size: 11.5px;
  letter-spacing: 0.02em;
}

/* Случайная асимметрия отзывов — выглядит живее, не как «сетка из бенчмарка» */
.reviews-grid .review:nth-child(7n+2)  { transform: translateY(2px); }
.reviews-grid .review:nth-child(7n+5)  { transform: translateY(-2px); }
.reviews-grid .review p {
  font-style: normal;       /* было italic — слишком «стоковое», убираем */
}
