:root {
  color-scheme: dark;
  --bg: #05030a;
  --bg-2: #090514;
  --panel: rgba(16, 8, 29, 0.7);
  --panel-strong: rgba(20, 9, 37, 0.92);
  --line: rgba(216, 180, 254, 0.16);
  --line-hot: rgba(168, 85, 247, 0.58);
  --text: #fbf3ff;
  --muted: #b7a8c7;
  --violet: #a855f7;
  --violet-2: #7c3aed;
  --pink: #e879f9;
  --cyan: #22d3ee;
  --green: #31f6a9;
  --radius: 8px;
  --max: 1180px;
  --shadow: 0 0 42px rgba(168, 85, 247, 0.28);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(168, 85, 247, 0.14), transparent 26rem),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.08), transparent 32rem),
    linear-gradient(180deg, #040207, #080411 42%, #040207);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -4;
  content: "";
  background-image:
    linear-gradient(rgba(168, 85, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 211, 238, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, #000 10%, #000 84%, transparent);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.offer-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(216, 180, 254, 0.24);
  background:
    linear-gradient(90deg, rgba(168, 85, 247, 0.18), rgba(34, 211, 238, 0.08), rgba(168, 85, 247, 0.18)),
    rgba(4, 2, 8, 0.9);
  box-shadow: 0 0 36px rgba(168, 85, 247, 0.24);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  backdrop-filter: blur(18px);
}

.offer-bar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offer-bar strong {
  min-width: 86px;
  flex: 0 0 auto;
  padding: 4px 8px;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  font-variant-numeric: tabular-nums;
  box-shadow: 0 0 22px rgba(34, 211, 238, 0.18);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  gap: 14px;
  background: #030107;
  color: var(--text);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.image-loader {
  display: block;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #000;
  transition: opacity 760ms cubic-bezier(.2,.8,.2,1), visibility 760ms cubic-bezier(.2,.8,.2,1), transform 760ms cubic-bezier(.2,.8,.2,1);
}

.image-loader.is-hidden {
  transform: scale(1.018);
}

.loader-art {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.03);
  animation: loadingImageIn 900ms ease forwards;
}

.loader-mark {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid var(--line-hot);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.28), rgba(34, 211, 238, 0.1));
  box-shadow: 0 0 44px rgba(168, 85, 247, 0.6);
  font-size: 2.4rem;
  font-weight: 950;
  animation: loaderPulse 1.2s ease-in-out infinite;
}

.loader span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.particle-canvas,
.mouse-aura {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.particle-canvas { z-index: -2; }

.mouse-aura {
  z-index: -1;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(168, 85, 247, 0.16), transparent 18rem);
  opacity: 0.85;
}

.container {
  width: min(100% - 32px, var(--max));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 88px 0;
}

.section-compact {
  position: relative;
  padding: 26px 0;
}

.site-header {
  position: fixed;
  top: 12px;
  left: 50%;
  z-index: 90;
  display: flex;
  width: min(calc(100% - 24px), var(--max));
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 12px 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(6, 3, 12, 0.7);
  box-shadow: 0 16px 52px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  border-color: rgba(168, 85, 247, 0.48);
  background: rgba(6, 3, 12, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 950;
}

.brand img {
  flex: 0 0 auto;
  border-radius: var(--radius);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.52);
}

.site-nav {
  position: fixed;
  top: 86px;
  right: 12px;
  left: 12px;
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8, 3, 15, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  padding: 12px 13px;
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(168, 85, 247, 0.13);
  color: var(--text);
  outline: none;
}

.site-nav a[aria-current="page"] {
  border: 1px solid rgba(216, 180, 254, 0.24);
  box-shadow: 0 0 22px rgba(168, 85, 247, 0.16);
}

.nav-contact {
  border: 1px solid rgba(49, 246, 169, 0.3);
  color: #d6ffe9 !important;
}

.nav-toggle {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.page-main {
  animation: pageIn 520ms cubic-bezier(.2,.8,.2,1) both;
}

.hero {
  display: grid;
  min-height: 92svh;
  align-items: end;
  padding: 118px 0 42px;
  overflow: hidden;
}

.page-hero {
  padding: 156px 0 56px;
  overflow: hidden;
}

.page-hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    radial-gradient(circle at 18% 10%, rgba(168, 85, 247, 0.2), transparent 24rem),
    radial-gradient(circle at 82% 28%, rgba(34, 211, 238, 0.1), transparent 24rem);
}

.page-hero-grid {
  display: grid;
  gap: 24px;
  align-items: end;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% center;
  opacity: 0.62;
  transform: translateY(calc(var(--parallax, 0) * 0.08px)) scale(1.04);
}

.hero-bg::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 3, 10, 0.98), rgba(5, 3, 10, 0.74) 42%, rgba(5, 3, 10, 0.18)),
    linear-gradient(0deg, rgba(5, 3, 10, 0.95), transparent 44%);
}

.video-layer,
.video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.video-layer span,
.video-bg span {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.42;
  animation: drift 12s linear infinite;
}

.video-layer span:nth-child(1) { width: 42vw; height: 2px; top: 24%; left: -15%; background: var(--violet); }
.video-layer span:nth-child(2) { width: 28vw; height: 2px; top: 44%; right: -8%; background: var(--cyan); animation-delay: -3s; }
.video-layer span:nth-child(3) { width: 18vw; height: 18vw; top: 12%; right: 16%; border: 1px solid rgba(168, 85, 247, 0.24); animation-delay: -5s; }
.video-layer span:nth-child(4) { width: 20vw; height: 2px; bottom: 20%; left: 30%; background: var(--pink); animation-delay: -8s; }

.floating-socials {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.floating-socials span {
  position: absolute;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
  color: var(--cyan);
  font-size: 0.85rem;
  font-weight: 950;
  animation: floatIcon 6s ease-in-out infinite;
}

.floating-logo svg,
.platform-logo svg,
.price-logo svg,
.metric-logo svg,
.floating-actions svg {
  display: block;
  width: 100%;
  height: 100%;
}

.floating-logo {
  filter: drop-shadow(0 0 18px rgba(168, 85, 247, 0.55));
}

.floating-logo.logo-instagram { filter: drop-shadow(0 0 18px rgba(214, 41, 118, 0.6)); }
.floating-logo.logo-tiktok { filter: drop-shadow(0 0 18px rgba(37, 244, 238, 0.58)); }
.floating-logo.logo-youtube { filter: drop-shadow(0 0 18px rgba(255, 0, 51, 0.62)); }
.floating-logo.logo-telegram { filter: drop-shadow(0 0 18px rgba(34, 158, 217, 0.64)); }

.floating-socials span:nth-child(1) { top: 22%; right: 9%; }
.floating-socials span:nth-child(2) { top: 58%; right: 18%; animation-delay: -1.4s; }
.floating-socials span:nth-child(3) { bottom: 16%; left: 8%; animation-delay: -2.2s; }
.floating-socials span:nth-child(4) { top: 20%; left: 46%; animation-delay: -3.5s; }

.hero-grid {
  display: grid;
  gap: 28px;
  align-items: end;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 { margin: 0; line-height: 1.02; letter-spacing: 0; }

h1 {
  max-width: 900px;
  font-size: clamp(3rem, 10vw, 6.6rem);
  text-shadow: 0 0 36px rgba(168, 85, 247, 0.5);
}

h2 { font-size: clamp(2.15rem, 8vw, 4.8rem); }
h3 { font-size: clamp(1.55rem, 5vw, 2.4rem); }

.hero-lede,
.section-copy p,
.section-heading p,
.video-content p {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1rem, 2.1vw, 1.18rem);
}

.hero-actions,
.order-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn,
.order-btn {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: var(--radius);
  font-weight: 950;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn {
  flex-direction: column;
  align-items: flex-start;
  padding: 13px 18px;
  min-width: 180px;
}

.btn small {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.75rem;
}

.btn-primary,
.order-btn.whatsapp {
  border: 1px solid rgba(216, 180, 254, 0.6);
  background: linear-gradient(135deg, var(--violet), var(--violet-2) 48%, var(--cyan));
  color: #fff;
  box-shadow: 0 0 38px rgba(168, 85, 247, 0.4);
}

.btn-ghost,
.order-btn.telegram {
  border: 1px solid var(--line-hot);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.shine::after {
  position: absolute;
  inset: -80% auto -80% -70%;
  width: 48%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  transform: rotate(22deg);
  animation: shine 4.2s ease-in-out infinite;
}

.btn:hover,
.order-btn:hover,
.contact-cards a:hover,
.price-panel:hover,
.impact-card:hover,
.why-card:hover,
.social-widget:hover,
.result-card:hover {
  border-color: rgba(34, 211, 238, 0.62);
  box-shadow: 0 0 44px rgba(34, 211, 238, 0.18), 0 0 44px rgba(168, 85, 247, 0.24);
  transform: translateY(-4px) perspective(900px) rotateX(1.5deg) rotateY(-1.5deg);
}

.contact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.contact-strip a {
  padding: 9px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  font-size: 0.86rem;
}

.hero-console,
.dash-card,
.platform-card,
.price-panel,
.testimonial-card,
.impact-card,
.why-card,
.social-widget,
.result-card,
.faq-list details,
.contact-cards a,
.trust-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.hero-console {
  display: grid;
  gap: 14px;
  max-width: 460px;
  padding: 16px;
}

.console-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.console-top strong { color: var(--text); }

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}

.phone-mockup {
  padding: 12px;
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01));
}

.phone-screen {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.15);
  border-radius: 22px;
  background:
    radial-gradient(circle at 68% 22%, rgba(168, 85, 247, 0.26), transparent 9rem),
    linear-gradient(180deg, rgba(9, 5, 19, 0.92), rgba(4, 2, 8, 0.98));
}

.phone-bar {
  width: 84px;
  height: 8px;
  margin: 16px auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
}

.growth-line {
  position: absolute;
  right: 28px;
  bottom: 42px;
  left: 28px;
  height: 130px;
  border-bottom: 3px solid var(--cyan);
  border-left: 3px solid rgba(216, 180, 254, 0.18);
}

.phone-glow-ring {
  position: absolute;
  right: 28px;
  bottom: 42px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(168, 85, 247, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.28), inset 0 0 34px rgba(34, 211, 238, 0.1);
  animation: phoneRing 4.8s ease-in-out infinite;
}

.phone-notification {
  position: absolute;
  z-index: 3;
  padding: 8px 10px;
  border: 1px solid rgba(216, 180, 254, 0.24);
  border-radius: var(--radius);
  background: rgba(10, 4, 20, 0.82);
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.28);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(14px);
  animation: notifyFloat 5.8s ease-in-out infinite;
}

.note-a { top: 54px; right: 18px; }
.note-b { top: 120px; left: 16px; animation-delay: -1.8s; }
.note-c { right: 20px; bottom: 20px; animation-delay: -3.2s; }

.growth-line::after {
  position: absolute;
  right: 0;
  bottom: 22px;
  left: 0;
  height: 82px;
  content: "";
  clip-path: polygon(0 82%, 18% 58%, 34% 64%, 52% 34%, 70% 42%, 100% 0);
  background: linear-gradient(90deg, var(--violet), var(--cyan));
  filter: drop-shadow(0 0 14px rgba(34, 211, 238, 0.4));
}

.metric-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 12px 18px;
  padding: 8px 12px;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.metric-logo {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 10px;
  filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.42));
  animation: logoFloat 5.4s ease-in-out infinite;
}

.metric-logo.logo-instagram { filter: drop-shadow(0 0 13px rgba(214, 41, 118, 0.58)); }
.metric-logo.logo-tiktok { filter: drop-shadow(0 0 13px rgba(37, 244, 238, 0.5)); animation-delay: -1.1s; }
.metric-logo.logo-youtube { filter: drop-shadow(0 0 13px rgba(255, 0, 51, 0.56)); animation-delay: -2.1s; }

.live-feed p {
  margin: 0 0 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.live-feed ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.live-feed li {
  padding: 11px 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  animation: orderSlide 460ms ease both;
}

.trust-ribbon {
  margin-top: -1px;
  background: linear-gradient(90deg, rgba(168, 85, 247, 0.08), rgba(34, 211, 238, 0.04), rgba(168, 85, 247, 0.08));
}

.impact-stats {
  padding-top: 34px;
  background: linear-gradient(180deg, rgba(4, 2, 8, 0.9), rgba(9, 5, 20, 0.42));
}

.home-intro {
  background: linear-gradient(180deg, rgba(5, 3, 10, 0.75), rgba(12, 6, 27, 0.44));
}

.intro-grid,
.faq-page-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.intro-card,
.faq-side-card,
.message-wall,
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.intro-card,
.faq-side-card {
  padding: clamp(22px, 5vw, 38px);
}

.intro-card p,
.faq-side-card p {
  color: var(--muted);
}

.mini-trust {
  display: grid;
  gap: 12px;
}

.mini-trust > div {
  min-height: 124px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(20px);
}

.mini-trust strong {
  display: block;
  font-size: clamp(2.1rem, 8vw, 3.8rem);
  line-height: 1;
}

.mini-trust span {
  color: var(--muted);
}

.impact-grid {
  display: grid;
  gap: 12px;
}

.impact-card {
  position: relative;
  display: grid;
  min-height: 150px;
  gap: 8px;
  padding: 18px;
  overflow: hidden;
  border-color: rgba(168, 85, 247, 0.34);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.impact-card::after,
.why-card::after,
.social-widget::after,
.result-card::after {
  position: absolute;
  inset: auto 18px 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.72), transparent);
  opacity: 0.75;
}

.impact-icon {
  font-size: 1.65rem;
  filter: drop-shadow(0 0 14px rgba(168, 85, 247, 0.52));
}

.impact-card strong {
  font-size: clamp(2rem, 8vw, 3.55rem);
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}

.impact-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.online-impact strong {
  color: var(--green);
  text-shadow: 0 0 24px rgba(49, 246, 169, 0.38);
}

.platforms {
  padding-top: 42px;
  overflow: hidden;
}

.platform-grid {
  display: grid;
  gap: 14px;
}

.platform-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 22px;
  border-color: rgba(168, 85, 247, 0.36);
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 20%), rgba(168, 85, 247, 0.18), transparent 14rem),
    rgba(16, 8, 29, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.platform-card::before,
.price-panel::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 20%), rgba(34, 211, 238, 0.18), transparent 13rem);
  opacity: 0;
  transition: opacity 220ms ease;
}

.platform-card:hover,
.platform-card.is-hovering {
  border-color: rgba(216, 180, 254, 0.7);
  box-shadow: 0 0 52px rgba(168, 85, 247, 0.34), 0 0 34px rgba(34, 211, 238, 0.16);
  filter: brightness(1.08);
  transform: translateY(-6px) scale(1.025);
}

.platform-card:hover::before,
.platform-card.is-hovering::before,
.price-panel:hover::before,
.price-panel.is-hovering::before {
  opacity: 1;
}

.platform-logo {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.24);
  animation: logoFloat 5.5s ease-in-out infinite;
  transition: transform 220ms ease, filter 220ms ease;
}

.platform-card:hover .platform-logo {
  transform: translateY(-7px) scale(1.08) rotate(-2deg);
  filter: saturate(1.22) brightness(1.16);
}

.platform-card h3 {
  margin-bottom: 10px;
}

.platform-card p {
  margin: 0;
  color: var(--muted);
}

.platform-card.logo-instagram .platform-logo { box-shadow: 0 0 34px rgba(214, 41, 118, 0.34); }
.platform-card.logo-tiktok .platform-logo { box-shadow: 0 0 34px rgba(37, 244, 238, 0.28); animation-delay: -1s; }
.platform-card.logo-youtube .platform-logo { box-shadow: 0 0 34px rgba(255, 0, 51, 0.34); animation-delay: -2s; }
.platform-card.logo-telegram .platform-logo { box-shadow: 0 0 34px rgba(34, 158, 217, 0.34); animation-delay: -3s; }

.why-vyral {
  overflow: hidden;
}

.why-grid,
.social-widget-grid,
.results-grid {
  display: grid;
  gap: 14px;
}

.why-card,
.social-widget,
.result-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(168, 85, 247, 0.3);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.why-card {
  min-height: 190px;
  padding: 20px;
}

.why-card > span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.22);
  font-size: 1.45rem;
  animation: logoFloat 5.2s ease-in-out infinite;
}

.why-card h3,
.social-widget strong,
.result-card strong {
  font-size: clamp(1.3rem, 4vw, 2rem);
}

.why-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.countries {
  overflow: hidden;
}

.country-carousel {
  overflow: hidden;
  border-block: 1px solid rgba(216, 180, 254, 0.1);
  background: rgba(255, 255, 255, 0.025);
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.country-track {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 16px 0;
  animation: countryScroll 22s linear infinite;
}

.country-track span {
  min-width: 150px;
  padding: 13px 18px;
  border: 1px solid rgba(168, 85, 247, 0.28);
  border-radius: var(--radius);
  background: rgba(16, 8, 29, 0.7);
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.16);
  font-weight: 950;
  text-align: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.trust-grid > div {
  min-height: 118px;
  padding: 18px;
}

.trust-grid strong {
  display: block;
  font-size: clamp(2rem, 7vw, 3.6rem);
  line-height: 1;
}

.trust-grid span,
.section-copy p,
.section-heading p {
  color: var(--muted);
}

.split {
  display: grid;
  gap: 34px;
  align-items: center;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.dashboard-stack {
  position: relative;
  min-height: 470px;
}

.dash-card {
  position: absolute;
  padding: 18px;
}

.dash-card-main {
  inset: 26px 8px 72px 8px;
  overflow: hidden;
}

.dash-card-main::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 72% 20%, rgba(34, 211, 238, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(168, 85, 247, 0.1), transparent);
}

.dash-head {
  display: flex;
  gap: 8px;
}

.dash-head span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--violet);
}

.chart-bars {
  position: absolute;
  right: 32px;
  bottom: 36px;
  left: 32px;
  display: flex;
  align-items: end;
  gap: 14px;
  height: 190px;
}

.chart-bars i {
  flex: 1;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--violet));
  box-shadow: 0 0 26px rgba(168, 85, 247, 0.26);
  animation: barGrow 3.8s ease-in-out infinite;
}

.chart-bars i:nth-child(1) { height: 36%; }
.chart-bars i:nth-child(2) { height: 52%; animation-delay: -0.5s; }
.chart-bars i:nth-child(3) { height: 64%; animation-delay: -1s; }
.chart-bars i:nth-child(4) { height: 82%; animation-delay: -1.5s; }
.chart-bars i:nth-child(5) { height: 96%; animation-delay: -2s; }

.chart-line {
  position: absolute;
  right: 28px;
  bottom: 102px;
  left: 28px;
  height: 110px;
  clip-path: polygon(0 78%, 18% 50%, 34% 58%, 48% 30%, 62% 42%, 78% 18%, 100% 0, 100% 8%, 78% 26%, 62% 50%, 48% 38%, 34% 66%, 18% 58%, 0 86%);
  background: rgba(255, 255, 255, 0.72);
  filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.45));
}

.dash-card-float {
  top: 0;
  right: 0;
  width: min(220px, 52%);
  animation: floatCard 5s ease-in-out infinite;
}

.dash-card-float small,
.price-head span,
.contact-cards span,
.footer-links a {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dash-card-float strong {
  display: block;
  margin-top: 8px;
  font-size: 2.4rem;
}

.dash-card-feed {
  right: 26px;
  bottom: 0;
  left: 26px;
  display: grid;
  gap: 8px;
  animation: floatCard 5.5s ease-in-out infinite reverse;
}

.dash-card-feed span {
  padding: 10px 12px;
  border: 1px solid rgba(168, 85, 247, 0.18);
  border-radius: var(--radius);
  color: var(--muted);
}

.social-widgets {
  background:
    radial-gradient(circle at 12% 20%, rgba(168, 85, 247, 0.16), transparent 22rem),
    radial-gradient(circle at 86% 78%, rgba(34, 211, 238, 0.1), transparent 22rem);
}

.social-widget {
  display: grid;
  min-height: 250px;
  align-content: space-between;
  padding: 20px;
  background:
    radial-gradient(circle at var(--card-x, 50%) var(--card-y, 20%), rgba(168, 85, 247, 0.18), transparent 14rem),
    rgba(16, 8, 29, 0.72);
}

.social-widget .platform-logo {
  width: 86px;
  height: 86px;
}

.social-widget span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.social-widget strong {
  display: block;
  margin-top: 10px;
  text-shadow: 0 0 28px rgba(168, 85, 247, 0.34);
}

.social-widget.logo-instagram .platform-logo { box-shadow: 0 0 34px rgba(214, 41, 118, 0.34); }
.social-widget.logo-tiktok .platform-logo { box-shadow: 0 0 34px rgba(37, 244, 238, 0.28); animation-delay: -1s; }
.social-widget.logo-youtube .platform-logo { box-shadow: 0 0 34px rgba(255, 0, 51, 0.36); animation-delay: -2s; }
.social-widget.logo-telegram .platform-logo { box-shadow: 0 0 34px rgba(34, 158, 217, 0.34); animation-delay: -3s; }

.results {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 3, 10, 0.4), rgba(13, 7, 28, 0.58), rgba(5, 3, 10, 0.4));
}

.result-card {
  display: grid;
  min-height: 230px;
  align-content: center;
  gap: 16px;
  padding: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.11), transparent 12rem),
    var(--panel);
}

.result-card span {
  color: var(--muted);
  font-weight: 850;
}

.result-card i {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(34, 211, 238, 0.32);
  border-radius: 50%;
  color: var(--cyan);
  font-style: normal;
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.2);
  animation: arrowLift 2.7s ease-in-out infinite;
}

.result-card strong {
  color: #fff;
  text-shadow: 0 0 28px rgba(168, 85, 247, 0.42);
}

.result-bar {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.result-bar b {
  display: block;
  width: 92%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--violet), var(--cyan), var(--green));
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.42);
  animation: resultGrow 3.6s ease-in-out infinite;
}

.review-proof {
  background: linear-gradient(180deg, rgba(5, 3, 10, 0.2), rgba(12, 6, 27, 0.5));
}

.message-wall {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 20px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.message-wall:hover {
  border-color: rgba(34, 211, 238, 0.5);
  box-shadow: 0 0 44px rgba(34, 211, 238, 0.16), 0 0 44px rgba(168, 85, 247, 0.22);
  transform: translateY(-5px);
}

.chat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.chat-head svg {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 0 16px rgba(168, 85, 247, 0.44));
}

.message-wall p {
  width: fit-content;
  max-width: 88%;
  margin: 10px 0;
  padding: 12px 14px;
  border: 1px solid rgba(216, 180, 254, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
}

.message-wall .reply {
  margin-left: auto;
  border-color: rgba(49, 246, 169, 0.2);
  background: rgba(49, 246, 169, 0.08);
}

.message-wall > span {
  display: inline-flex;
  margin-top: 14px;
  padding: 8px 10px;
  border: 1px solid rgba(49, 246, 169, 0.25);
  border-radius: var(--radius);
  color: #d6ffe9;
  font-weight: 950;
}

.whatsapp-proof { box-shadow: 0 0 34px rgba(37, 211, 102, 0.12); }
.telegram-proof { box-shadow: 0 0 34px rgba(34, 158, 217, 0.14); }

.video-section {
  overflow: hidden;
  min-height: 520px;
  display: grid;
  align-items: center;
  background: #040207;
}

.video-bg {
  z-index: -1;
  background:
    radial-gradient(circle at 70% 50%, rgba(124, 58, 237, 0.22), transparent 24rem),
    linear-gradient(120deg, #030107, #0b0614 60%, #05030a);
}

.video-bg span:nth-child(1) { width: 16rem; height: 16rem; top: 20%; left: 8%; border: 1px solid rgba(168, 85, 247, 0.24); }
.video-bg span:nth-child(2) { width: 32rem; height: 2px; top: 34%; left: -4%; background: var(--violet); animation-delay: -3s; }
.video-bg span:nth-child(3) { width: 26rem; height: 2px; top: 54%; right: -10%; background: var(--cyan); animation-delay: -5s; }
.video-bg span:nth-child(4) { width: 12rem; height: 12rem; bottom: 10%; right: 20%; border: 1px solid rgba(34, 211, 238, 0.18); animation-delay: -7s; }
.video-bg span:nth-child(5) { width: 34rem; height: 34rem; bottom: -22rem; left: 28%; background: rgba(168, 85, 247, 0.12); filter: blur(48px); }

.video-content {
  max-width: 790px;
}

.pricing-layout {
  display: grid;
  gap: 16px;
}

.price-panel {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 450px;
  padding: 18px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.price-panel.featured {
  background:
    linear-gradient(145deg, rgba(168, 85, 247, 0.18), rgba(34, 211, 238, 0.06)),
    var(--panel);
}

.price-head h3 {
  margin-top: 4px;
}

.price-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.price-title {
  min-width: 0;
  order: 2;
}

.price-logo {
  display: grid;
  flex: 0 0 auto;
  width: 94px;
  height: 94px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.24);
  animation: logoFloat 5.6s ease-in-out infinite;
  transition: transform 200ms ease, filter 200ms ease, box-shadow 200ms ease;
}

.price-panel:hover .price-logo {
  transform: translateY(-5px) scale(1.08) rotate(2deg);
  filter: saturate(1.2) brightness(1.18);
}

.price-logo.logo-instagram { box-shadow: 0 0 40px rgba(214, 41, 118, 0.44), 0 0 24px rgba(250, 126, 30, 0.28); }
.price-logo.logo-tiktok { box-shadow: 0 0 40px rgba(37, 244, 238, 0.34), 0 0 24px rgba(254, 44, 85, 0.3); animation-delay: -1s; }
.price-logo.logo-youtube { box-shadow: 0 0 42px rgba(255, 0, 51, 0.46); animation-delay: -2s; }
.price-logo.logo-telegram { box-shadow: 0 0 42px rgba(34, 158, 217, 0.44); animation-delay: -3s; }

.price-list {
  display: grid;
  gap: 8px;
}

.price-list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(168, 85, 247, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: border-color 170ms ease, background 170ms ease, transform 170ms ease;
}

.price-list div:hover,
.price-list div.is-selected {
  border-color: rgba(34, 211, 238, 0.7);
  background: rgba(34, 211, 238, 0.1);
  transform: translateX(3px);
}

.price-list span { color: var(--muted); }

.order-actions {
  margin-top: auto;
}

.order-btn {
  flex: 1 1 190px;
  padding: 13px 14px;
  text-align: center;
}

.testimonial-carousel {
  position: relative;
  min-height: 370px;
}

.testimonial-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  margin: 0;
  padding: clamp(22px, 5vw, 44px);
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 520ms ease, transform 520ms ease;
}

.testimonial-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.badge {
  justify-self: start;
  padding: 8px 11px;
  border: 1px solid rgba(49, 246, 169, 0.28);
  border-radius: var(--radius);
  color: #d6ffe9;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.24);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.4), rgba(34, 211, 238, 0.12));
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.26);
  font-weight: 950;
}

.stars {
  color: #ffd166;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-shadow: 0 0 18px rgba(255, 209, 102, 0.28);
}

.verified-badge,
.service-pill {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(49, 246, 169, 0.28);
  border-radius: var(--radius);
  background: rgba(49, 246, 169, 0.06);
  color: #d6ffe9;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.verified-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
}

.service-pill {
  border-color: rgba(168, 85, 247, 0.34);
  background: rgba(168, 85, 247, 0.08);
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: none;
}

.testimonial-card blockquote {
  margin: 0;
  max-width: 850px;
  font-size: clamp(1.25rem, 4vw, 2.3rem);
  line-height: 1.18;
}

.testimonial-card figcaption {
  color: var(--text);
  font-weight: 950;
}

.testimonial-card figcaption span {
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 950;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  gap: 24px;
}

.support-status {
  display: grid;
  width: min(100%, 390px);
  gap: 5px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(49, 246, 169, 0.28);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0, rgba(49, 246, 169, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 28px rgba(49, 246, 169, 0.12);
}

.support-status.is-offline {
  border-color: rgba(216, 180, 254, 0.2);
  background:
    radial-gradient(circle at 20% 0, rgba(168, 85, 247, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.035);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.14);
}

.support-status strong {
  color: #d6ffe9;
  font-size: 1.02rem;
}

.support-status.is-offline strong {
  color: var(--text);
}

.support-status span {
  color: var(--muted);
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-cards a {
  display: grid;
  gap: 7px;
  min-height: 112px;
  padding: 18px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.contact-cards strong {
  font-size: clamp(1.12rem, 5vw, 1.85rem);
  overflow-wrap: anywhere;
}

.contacts-premium {
  padding-top: 48px;
}

.contact-premium-grid {
  display: grid;
  gap: 16px;
}

.contact-card {
  position: relative;
  display: grid;
  min-height: 292px;
  justify-items: center;
  align-content: center;
  gap: 20px;
  overflow: hidden;
  padding: 24px;
  text-align: center;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.contact-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  content: "";
  border-radius: inherit;
  background: radial-gradient(circle at 50% 10%, rgba(168, 85, 247, 0.2), transparent 15rem);
  opacity: 0.8;
}

.contact-card:hover {
  border-color: rgba(216, 180, 254, 0.65);
  transform: translateY(-8px) scale(1.025);
  filter: brightness(1.08);
}

.contact-icon {
  display: grid;
  width: 108px;
  height: 108px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.045);
  animation: logoFloat 5.6s ease-in-out infinite;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
}

.contact-card h2 {
  font-size: clamp(1.45rem, 5vw, 2.2rem);
}

.open-btn {
  position: relative;
  display: inline-flex;
  min-width: 118px;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(216, 180, 254, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-weight: 950;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.open-btn:hover {
  border-color: var(--cyan);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.2);
  transform: translateY(-3px);
}

.contact-instagram .contact-icon { box-shadow: 0 0 46px rgba(214, 41, 118, 0.38), 0 0 24px rgba(250, 126, 30, 0.22); }
.contact-whatsapp .contact-icon { box-shadow: 0 0 46px rgba(37, 211, 102, 0.34); }
.contact-telegram .contact-icon { box-shadow: 0 0 46px rgba(34, 158, 217, 0.38); }
.contact-mail .contact-icon,
.contact-web .contact-icon { box-shadow: 0 0 46px rgba(168, 85, 247, 0.3), 0 0 24px rgba(34, 211, 238, 0.18); }

.footer-status {
  display: grid;
  gap: 4px;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(49, 246, 169, 0.22);
  border-radius: var(--radius);
  background: rgba(49, 246, 169, 0.06);
}

.footer-status strong {
  color: #d6ffe9;
}

.footer-status span {
  color: var(--muted);
}

.footer-status.is-offline {
  border-color: rgba(216, 180, 254, 0.18);
  background: rgba(168, 85, 247, 0.06);
}

.site-footer {
  padding: 34px 0 104px;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.28);
}

.footer-grid {
  display: grid;
  gap: 20px;
}

.footer-grid p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.live-support-panel {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 82;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 13px;
  width: min(318px, calc(100vw - 196px));
  min-width: 246px;
  padding: 13px 14px;
  border: 1px solid rgba(74, 222, 128, 0.28);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(8, 4, 18, 0.94), rgba(25, 9, 48, 0.82)),
    rgba(4, 3, 10, 0.9);
  box-shadow:
    0 0 34px rgba(34, 197, 94, 0.2),
    0 0 58px rgba(168, 85, 247, 0.22),
    0 22px 70px rgba(0, 0, 0, 0.45);
  color: #fff;
  isolation: isolate;
  overflow: hidden;
  backdrop-filter: blur(20px);
  transform-origin: left bottom;
  animation: liveSupportIn 680ms cubic-bezier(.2,.8,.2,1) both;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, filter 220ms ease;
}

.live-support-panel::before {
  position: absolute;
  inset: -42%;
  z-index: -2;
  content: "";
  background: conic-gradient(from var(--support-angle, 0deg), rgba(74, 222, 128, 0.95), rgba(168, 85, 247, 0.9), rgba(34, 211, 238, 0.45), rgba(74, 222, 128, 0.95));
  animation: supportBorderSpin 6s linear infinite;
}

.live-support-panel::after {
  position: absolute;
  inset: 1px;
  z-index: -1;
  content: "";
  border-radius: 21px;
  background:
    radial-gradient(circle at 18% 18%, rgba(74, 222, 128, 0.15), transparent 9rem),
    radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.2), transparent 11rem),
    rgba(5, 3, 12, 0.94);
}

.live-support-panel:hover,
.live-support-panel:focus-within {
  border-color: rgba(74, 222, 128, 0.52);
  box-shadow:
    0 0 44px rgba(34, 197, 94, 0.26),
    0 0 80px rgba(168, 85, 247, 0.3),
    0 28px 84px rgba(0, 0, 0, 0.52);
  filter: saturate(1.12) brightness(1.06);
  transform: translateY(-4px) scale(1.035);
}

.live-support-panel.is-offline {
  border-color: rgba(248, 113, 113, 0.36);
  box-shadow:
    0 0 32px rgba(248, 113, 113, 0.16),
    0 0 58px rgba(168, 85, 247, 0.2),
    0 22px 70px rgba(0, 0, 0, 0.45);
}

.live-support-panel.is-offline::before {
  background: conic-gradient(from var(--support-angle, 0deg), rgba(248, 113, 113, 0.92), rgba(168, 85, 247, 0.86), rgba(248, 113, 113, 0.92));
}

.live-support-icon {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(74, 222, 128, 0.34);
  border-radius: 18px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.22), transparent 1.8rem),
    linear-gradient(145deg, rgba(74, 222, 128, 0.22), rgba(168, 85, 247, 0.2));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 28px rgba(74, 222, 128, 0.22);
  color: #d6ffe9;
  animation: liveIconFloat 4.2s ease-in-out infinite;
}

.live-support-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 0 12px rgba(74, 222, 128, 0.44));
}

.live-support-icon span {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 10px;
  height: 10px;
  border: 2px solid rgba(5, 3, 12, 0.92);
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 18px rgba(74, 222, 128, 0.95);
  animation: supportHeartbeat 1.7s ease-in-out infinite;
}

.live-support-panel.is-offline .live-support-icon {
  border-color: rgba(248, 113, 113, 0.34);
  color: #ffe4e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 0 26px rgba(248, 113, 113, 0.18);
}

.live-support-panel.is-offline .live-support-icon span {
  background: #f87171;
  box-shadow: 0 0 16px rgba(248, 113, 113, 0.84);
}

.live-support-copy {
  display: grid;
  gap: 3px;
  align-content: center;
  min-width: 0;
}

.live-support-copy strong {
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  white-space: nowrap;
}

.live-support-copy span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 740;
  line-height: 1.35;
}

.live-users-row b {
  color: #d6ffe9;
  font-size: 1rem;
  text-shadow: 0 0 18px rgba(74, 222, 128, 0.5);
}

.live-support-panel.is-offline .live-users-row {
  display: none;
}

.typing-dots {
  display: inline-flex;
  gap: 3px;
  align-items: center;
  margin-left: 5px;
  vertical-align: middle;
}

.typing-dots b {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74, 222, 128, 0.72);
  animation: typingDot 1.2s ease-in-out infinite;
}

.typing-dots b:nth-child(2) { animation-delay: 0.15s; }
.typing-dots b:nth-child(3) { animation-delay: 0.3s; }

.live-support-panel.is-offline .typing-dots {
  display: none;
}

.floating-actions {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 80;
  display: flex;
  gap: 8px;
}

.floating-actions a {
  position: relative;
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.28);
  border-radius: 18px;
  background: rgba(8, 3, 15, 0.9);
  box-shadow: 0 0 28px rgba(168, 85, 247, 0.24);
  backdrop-filter: blur(16px);
  animation: contactPulse 3.6s ease-in-out infinite;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.floating-actions a svg {
  width: 34px;
  height: 34px;
}

.floating-actions a::before {
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  padding: 7px 10px;
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: var(--radius);
  background: rgba(6, 3, 12, 0.94);
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.24);
  color: var(--text);
  content: attr(data-tooltip);
  font-size: 0.78rem;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.floating-actions a:hover,
.floating-actions a:focus-visible {
  outline: none;
  transform: translateY(-4px) scale(1.15);
  filter: saturate(1.18) brightness(1.12);
}

.floating-actions a:hover::before,
.floating-actions a:focus-visible::before {
  opacity: 1;
  transform: translateY(0);
}

.float-wa {
  border-color: rgba(37, 211, 102, 0.44) !important;
  box-shadow: 0 0 28px rgba(37, 211, 102, 0.34), 0 0 42px rgba(37, 211, 102, 0.16) !important;
}

.float-tg {
  border-color: rgba(34, 158, 217, 0.5) !important;
  box-shadow: 0 0 28px rgba(34, 158, 217, 0.36), 0 0 42px rgba(34, 211, 238, 0.14) !important;
  animation-delay: -1.1s !important;
}

.float-ig {
  border-color: rgba(214, 41, 118, 0.5) !important;
  box-shadow: 0 0 28px rgba(214, 41, 118, 0.36), 0 0 42px rgba(250, 126, 30, 0.18) !important;
  animation-delay: -2.2s !important;
}

.toast {
  position: fixed;
  right: 14px;
  bottom: 76px;
  z-index: 85;
  width: min(390px, calc(100% - 28px));
  padding: 14px 16px;
  border: 1px solid rgba(34, 211, 238, 0.42);
  border-radius: var(--radius);
  background: rgba(8, 3, 15, 0.94);
  box-shadow: var(--shadow);
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion {
  opacity: 1;
  transform: translateY(0);
}

.js .motion {
  opacity: 0;
  transform: translateY(26px) scale(0.99);
  transition: opacity 720ms cubic-bezier(.2,.8,.2,1), transform 720ms cubic-bezier(.2,.8,.2,1);
}

.js .motion.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes loadingImageIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes drift {
  from { transform: translate3d(-4%, 0, 0) rotate(0deg); }
  to { transform: translate3d(18%, 0, 0) rotate(12deg); }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-18px) rotate(4deg); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.35); opacity: 0.58; }
}

@keyframes shine {
  0%, 58% { transform: translateX(0) rotate(22deg); }
  100% { transform: translateX(520%) rotate(22deg); }
}

@keyframes orderSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes logoFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(-1deg); }
  50% { transform: translate3d(0, -12px, 0) rotate(2deg); }
}

@keyframes barGrow {
  0%, 100% { filter: brightness(1); transform: scaleY(1); }
  50% { filter: brightness(1.35); transform: scaleY(0.86); }
}

@keyframes phoneRing {
  0%, 100% { transform: scale(0.92); opacity: 0.48; }
  50% { transform: scale(1.16); opacity: 0.86; }
}

@keyframes liveSupportIn {
  from { opacity: 0; transform: translate3d(-22px, 18px, 0) scale(0.94); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes supportBorderSpin {
  to { transform: rotate(360deg); }
}

@keyframes supportHeartbeat {
  0%, 100% { transform: scale(1); opacity: 1; }
  45% { transform: scale(1.46); opacity: 0.64; }
}

@keyframes liveIconFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-4px) rotate(2deg); }
}

@keyframes typingDot {
  0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
  40% { transform: translateY(-4px); opacity: 1; }
}

@keyframes heroSlideFade {
  0% { opacity: 0; transform: translate3d(18px, 14px, 0) scale(0.96); }
  100% { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes notifyFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.82; }
  50% { transform: translate3d(0, -10px, 0); opacity: 1; }
}

@keyframes countryScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes arrowLift {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-8px) rotate(4deg); }
}

@keyframes resultGrow {
  0%, 100% { transform: translateX(-18%) scaleX(0.78); filter: brightness(1); }
  50% { transform: translateX(0) scaleX(1); filter: brightness(1.28); }
}

@keyframes contactPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-3px) scale(1.045); }
}

@keyframes pageIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 720px) {
  .container { width: min(100% - 48px, var(--max)); }
  .section { padding: 112px 0; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) 430px; }
  .page-hero-grid { grid-template-columns: minmax(0, 1fr) 340px; }
  .intro-grid { grid-template-columns: 1.15fr 0.85fr; align-items: stretch; }
  .mini-trust { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .impact-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .social-widget-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .results-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .proof-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-page-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .contact-premium-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .trust-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .split, .contact-grid { grid-template-columns: 0.86fr 1.14fr; }
  .pricing-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .contact-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1.2fr auto; align-items: start; }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
  .site-nav a { padding: 9px 10px; }
  .platform-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .social-widget-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .contact-premium-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pricing-layout { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .price-panel { min-height: 470px; }
}

@media (max-width: 430px) {
  .offer-bar {
    min-height: 48px;
    gap: 8px;
    padding: 7px 10px;
    font-size: 0.68rem;
  }
  .offer-bar strong { min-width: 78px; }
  .site-header { top: 10px; min-height: 62px; }
  .site-nav { top: 84px; }
  .brand span { font-size: 0.98rem; }
  .hero {
    min-height: auto;
    padding: 92px 0 18px;
  }
  .page-hero { padding: 106px 0 34px; }
  .hero-grid { gap: 18px; }
  h1 { font-size: clamp(2.55rem, 12vw, 3.1rem); }
  .hero-lede { margin-bottom: 0; }
  .hero-actions { margin-top: 22px; }
  .btn { width: 100%; }
  .contact-strip { display: none; }
  .hero-console { padding: 14px; }
  .phone-mockup { display: block; padding: 10px; }
  .phone-screen { min-height: 218px; }
  .phone-notification { font-size: 0.68rem; padding: 7px 8px; }
  .note-a { top: 48px; right: 12px; }
  .note-b { top: 104px; left: 12px; }
  .note-c { right: 12px; bottom: 14px; }
  .live-feed li:nth-child(n + 2) { display: none; }
  .impact-card { min-height: 128px; }
  .platforms { padding-top: 28px; }
  .platform-card { min-height: 224px; padding: 18px; }
  .platform-logo { width: 76px; height: 76px; border-radius: 20px; }
  .why-card, .social-widget, .result-card { min-height: auto; }
  .contact-card { min-height: 250px; }
  .contact-icon { width: 92px; height: 92px; border-radius: 26px; }
  .country-track { animation-duration: 18s; }
  .country-track span { min-width: 132px; padding: 11px 14px; }
  .price-head { align-items: center; }
  .price-logo { width: 86px; height: 86px; border-radius: 24px; }
  .testimonial-carousel { min-height: 450px; }
  .testimonial-card { align-content: start; }
  .trust-grid { grid-template-columns: 1fr; }
  .dashboard-stack { min-height: 390px; }
  .dash-card-main { inset: 16px 0 82px 0; }
  .section { padding: 72px 0; }
  .video-section { min-height: 450px; }
  .floating-actions { right: 10px; bottom: 10px; }
  .floating-actions a { width: 48px; height: 48px; border-radius: 16px; }
  .floating-actions a svg { width: 31px; height: 31px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .particle-canvas,
  .mouse-aura,
  .loader { display: none !important; }
  .js .motion { opacity: 1; transform: none; }
}

/* Reference-style redesign layer */
body {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(190, 70, 255, 0.15), transparent 25rem),
    radial-gradient(circle at 50% 0%, rgba(123, 43, 255, 0.16), transparent 34rem),
    linear-gradient(180deg, #02020a 0%, #060411 48%, #02020a 100%);
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -5;
  content: "";
  background:
    radial-gradient(ellipse at 68% 24%, rgba(180, 45, 255, 0.18), transparent 28rem),
    radial-gradient(ellipse at 18% 70%, rgba(255, 54, 178, 0.08), transparent 22rem);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  left: auto;
  z-index: 110;
  width: min(100% - 28px, var(--max));
  min-height: 72px;
  margin-inline: auto;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  border-color: rgba(168, 85, 247, 0.34);
  border-radius: 0;
  background: rgba(2, 2, 10, 0.9);
  box-shadow: 0 1px 0 rgba(168, 85, 247, 0.36), 0 18px 60px rgba(0, 0, 0, 0.42);
  transform: none;
}

.site-header.is-scrolled {
  background: rgba(2, 2, 10, 0.96);
}

.brand span {
  letter-spacing: 0;
}

.site-nav {
  top: 76px;
}

.site-nav a[aria-current="page"] {
  border-color: rgba(168, 85, 247, 0.55);
  background: linear-gradient(180deg, rgba(168, 85, 247, 0.22), rgba(168, 85, 247, 0.06));
  color: #fff;
}

.nav-order {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(168, 85, 247, 0.62);
  color: #fff !important;
  box-shadow: 0 0 24px rgba(168, 85, 247, 0.24);
}

.nav-order svg {
  width: 18px;
  height: 18px;
}

.ref-offer {
  position: sticky;
  top: 72px;
  z-index: 105;
  min-height: 54px;
  border-block: 1px solid rgba(168, 85, 247, 0.25);
  background:
    linear-gradient(90deg, rgba(68, 20, 126, 0.35), rgba(18, 7, 42, 0.96), rgba(68, 20, 126, 0.35)),
    rgba(5, 3, 12, 0.96);
  box-shadow: 0 0 40px rgba(168, 85, 247, 0.2);
}

.ref-offer strong {
  border: 0;
  background: transparent;
  color: #ff4bc8;
  font-size: clamp(1.05rem, 4vw, 1.6rem);
  letter-spacing: 0.08em;
  box-shadow: none;
}

.hero,
.price-hero {
  min-height: auto;
  padding: 88px 0 52px;
}

.ref-hero .hero-bg img {
  opacity: 0.34;
  object-position: center;
}

.hero-grid,
.price-hero-grid {
  display: grid;
  gap: 32px;
  align-items: center;
}

.hero-grid {
  --slide-main: #ff3aa9;
  --slide-alt: #a855f7;
  --slide-soft: rgba(255, 58, 169, 0.18);
  --slide-glow: rgba(255, 58, 169, 0.62);
}

.hero-copy .eyebrow,
.price-hero .eyebrow {
  color: #ff49d1;
}

.hero h1,
.price-hero h1,
.page-hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 5.2rem);
}

.hero h1,
.price-hero h1 {
  background: linear-gradient(90deg, var(--slide-alt, #c13cff), var(--slide-main, #ff3aa9) 42%, #fff 43%, #fff);
  background-clip: text;
  color: transparent;
  text-shadow: none;
}

.hero-copy [data-hero-platform],
.hero-copy [data-hero-title],
.hero-copy [data-hero-description] {
  transition: opacity 320ms ease, transform 320ms ease;
}

.hero-grid.is-switching .hero-copy [data-hero-platform],
.hero-grid.is-switching .hero-copy [data-hero-title],
.hero-grid.is-switching .hero-copy [data-hero-description] {
  opacity: 0;
  transform: translateY(14px);
}

.hero-slider-dots {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 24px;
}

.hero-slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: none;
  cursor: pointer;
  transition: width 260ms ease, background 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.hero-slider-dots button:hover,
.hero-slider-dots button:focus-visible {
  transform: scale(1.18);
  outline: none;
}

.hero-slider-dots button.is-active {
  width: 34px;
  border-color: color-mix(in srgb, var(--slide-main, #ff3aa9), white 18%);
  background: linear-gradient(90deg, var(--slide-main, #ff3aa9), var(--slide-alt, #a855f7));
  box-shadow: 0 0 22px var(--slide-glow, rgba(255, 58, 169, 0.62));
}

.ref-badges,
.service-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.ref-badges span,
.service-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 12px;
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: #fff;
  font-size: 0.86rem;
  font-weight: 780;
}

.ref-social-mockup {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 55% 38%, var(--slide-soft, rgba(168, 85, 247, 0.34)), transparent 12rem),
    radial-gradient(circle at 50% 60%, rgba(255, 54, 178, 0.16), transparent 18rem);
}

.hero-slide-panel {
  transition: background 360ms ease, box-shadow 360ms ease;
}

.hero-slide-panel::before {
  position: absolute;
  inset: 18px;
  content: "";
  border-radius: 28px;
  background: radial-gradient(circle at 50% 44%, var(--slide-soft, rgba(255, 58, 169, 0.18)), transparent 16rem);
  filter: blur(4px);
  opacity: 0.86;
  pointer-events: none;
}

.hero-slide-panel.is-switching .stack-logo,
.hero-slide-panel.is-switching .ref-stat,
.hero-slide-panel.is-switching .ref-chart {
  animation: heroSlideFade 520ms ease both;
}

.mockup-orbit {
  position: absolute;
  inset: 54px 70px;
  border: 1px solid color-mix(in srgb, var(--slide-main, #a855f7), transparent 58%);
  border-radius: 50%;
  box-shadow: inset 0 0 40px color-mix(in srgb, var(--slide-main, #a855f7), transparent 74%), 0 0 40px color-mix(in srgb, var(--slide-main, #a855f7), transparent 72%);
  animation: phoneRing 5s ease-in-out infinite;
}

.hero-logo-stack {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.stack-logo {
  position: absolute;
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border-radius: 38px;
  filter: drop-shadow(0 0 44px rgba(168, 85, 247, 0.5));
  animation: logoFloat 6s ease-in-out infinite;
}

.stack-logo svg {
  width: 100%;
  height: 100%;
}

.stack-logo.logo-instagram {
  z-index: 3;
  width: 190px;
  height: 190px;
  filter: drop-shadow(0 0 52px rgba(214, 41, 118, 0.62));
}

.hero-slide-panel .stack-logo {
  z-index: 3;
  width: 190px;
  height: 190px;
  transform: none;
  filter: drop-shadow(0 0 52px var(--slide-glow, rgba(214, 41, 118, 0.62)));
}

.stack-logo.logo-tiktok { transform: translate(-102px, 94px) scale(0.48); animation-delay: -1s; }
.stack-logo.logo-youtube { transform: translate(112px, 100px) scale(0.46); animation-delay: -2s; }
.stack-logo.logo-telegram { transform: translate(128px, -100px) scale(0.42); animation-delay: -3s; }

.hero-slide-panel .stack-logo {
  transform: none;
}

.ref-stat {
  position: absolute;
  z-index: 4;
  display: grid;
  min-width: 150px;
  gap: 2px;
  padding: 14px 16px;
  border: 1px solid rgba(216, 180, 254, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--slide-alt, rgba(168, 85, 247, 0.78)), var(--slide-main, rgba(255, 54, 178, 0.34)));
  box-shadow: 0 0 34px var(--slide-glow, rgba(168, 85, 247, 0.32));
  color: #fff;
  font-weight: 950;
  transition: background 320ms ease, box-shadow 320ms ease, opacity 320ms ease, transform 320ms ease;
}

.ref-stat small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-followers { top: 72px; right: 28px; }
.stat-likes { left: 18px; bottom: 122px; background: linear-gradient(135deg, var(--slide-main, #ff3aa9), #ff7a3d); }
.stat-views { right: 22px; bottom: 52px; background: linear-gradient(135deg, var(--slide-alt, #7c3aed), #4f46e5); }

.ref-chart {
  position: absolute;
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: end;
  gap: 9px;
  width: 180px;
  height: 170px;
}

.ref-chart span {
  flex: 1;
  border: 1px solid color-mix(in srgb, var(--slide-main, #a855f7), transparent 56%);
  background: linear-gradient(180deg, color-mix(in srgb, var(--slide-main, #a855f7), transparent 38%), rgba(50, 12, 100, 0.18));
  box-shadow: 0 0 20px color-mix(in srgb, var(--slide-main, #a855f7), transparent 72%);
  transition: height 420ms ease, background 320ms ease, box-shadow 320ms ease;
}

.ref-chart span:nth-child(1) { height: var(--bar1, 24%); }
.ref-chart span:nth-child(2) { height: var(--bar2, 34%); }
.ref-chart span:nth-child(3) { height: var(--bar3, 46%); }
.ref-chart span:nth-child(4) { height: var(--bar4, 62%); }
.ref-chart span:nth-child(5) { height: var(--bar5, 78%); }

.ref-chart i {
  position: absolute;
  inset: 18px -8px 26px 4px;
  clip-path: polygon(0 88%, 22% 66%, 38% 72%, 56% 44%, 75% 34%, 100% 0, 100% 6%, 75% 42%, 56% 52%, 38% 80%, 22% 74%, 0 96%);
  background: var(--slide-main, #ff4bd1);
  filter: drop-shadow(0 0 14px var(--slide-glow, rgba(255, 75, 209, 0.75)));
  transition: background 320ms ease, filter 320ms ease;
}

.category-title {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 18px;
  align-items: center;
  margin: 34px 0 24px;
  text-align: center;
}

.category-title span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 85, 247, 0.74), transparent);
}

.category-title h2 {
  font-size: clamp(1.8rem, 6vw, 2.8rem);
}

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

.reference-pricing .price-panel {
  min-height: 0;
  gap: 15px;
  padding: 18px;
  border-color: rgba(168, 85, 247, 0.42);
  background:
    radial-gradient(circle at 50% 0, rgba(168, 85, 247, 0.14), transparent 14rem),
    rgba(8, 7, 20, 0.82);
}

.reference-pricing .price-head {
  gap: 12px;
}

.reference-pricing .price-logo {
  width: 86px;
  height: 86px;
}

.reference-pricing .price-title p {
  margin: 6px 0 0;
  color: var(--muted);
}

.reference-pricing .price-list div {
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.reference-pricing .order-btn {
  min-height: 42px;
  flex-basis: 120px;
}

.service-badges {
  margin-top: 0;
  gap: 7px;
  justify-content: center;
}

.service-badges span {
  min-height: 28px;
  padding: 5px 8px;
  font-size: 0.68rem;
}

.how-section {
  background: linear-gradient(180deg, rgba(5, 3, 10, 0.1), rgba(14, 8, 30, 0.48));
}

.centered {
  text-align: center;
  justify-items: center;
}

.how-grid {
  display: grid;
  gap: 14px;
}

.how-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 24px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.28);
  text-align: center;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.how-card:hover {
  border-color: rgba(168, 85, 247, 0.65);
  box-shadow: 0 0 44px rgba(168, 85, 247, 0.22);
  transform: translateY(-6px);
}

.how-card > span {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(216, 180, 254, 0.2);
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.28);
  font-weight: 950;
}

.how-icon {
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  margin: 0 auto 22px;
  border: 1px solid rgba(168, 85, 247, 0.38);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.34), rgba(168, 85, 247, 0.06));
  box-shadow: 0 0 34px rgba(168, 85, 247, 0.32);
  font-size: 2.1rem;
  animation: logoFloat 5s ease-in-out infinite;
}

.dual-icons {
  display: flex;
}

.dual-icons svg {
  width: 46px;
  height: 46px;
  margin-inline: -6px;
}

.how-card p {
  color: var(--muted);
}

.trust-grid > div[data-support-status] strong {
  color: #d6ffe9;
  font-size: clamp(1.15rem, 3vw, 1.8rem);
}

@media (min-width: 720px) {
  .hero-grid,
  .price-hero-grid { grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr); }
  .reference-pricing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 980px) {
  .site-nav {
    gap: 16px;
  }
  .reference-pricing { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-category.logo-instagram .reference-pricing { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .how-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 20px, var(--max));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    top: 10px;
  }
  .ref-offer {
    top: 82px;
    min-height: 48px;
    font-size: 0.72rem;
  }
  .site-nav {
    top: 86px;
  }
  .hero,
  .price-hero {
    padding-top: 72px;
  }
  .stack-logo.logo-instagram {
    width: 150px;
    height: 150px;
  }
  .stack-logo {
    width: 130px;
    height: 130px;
  }
  .hero-slide-panel .stack-logo {
    width: 150px;
    height: 150px;
  }
  .ref-social-mockup {
    min-height: 370px;
  }
  .ref-stat {
    min-width: 126px;
    padding: 10px 12px;
    font-size: 0.86rem;
  }
  .stat-followers { top: 46px; right: 10px; }
  .stat-likes { left: 10px; bottom: 92px; }
  .stat-views { right: 10px; bottom: 34px; }
  .ref-chart {
    width: 132px;
    height: 132px;
  }
  .category-title {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .category-title span {
    width: 84px;
    justify-self: center;
  }
  .reference-pricing .price-panel {
    padding: 16px;
  }
  .live-support-panel {
    left: 10px;
    bottom: 10px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 9px;
    width: min(226px, calc(100vw - 92px));
    min-width: 0;
    padding: 10px 11px;
    border-radius: 18px;
  }
  .live-support-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .live-support-icon svg {
    width: 25px;
    height: 25px;
  }
  .live-support-icon span {
    top: 6px;
    right: 6px;
    width: 8px;
    height: 8px;
  }
  .live-support-copy strong {
    font-size: 0.64rem;
    letter-spacing: 0.1em;
  }
  .live-support-copy span {
    font-size: 0.67rem;
  }
  .live-users-row b {
    font-size: 0.82rem;
  }
  .floating-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ref-social-mockup *,
  .floating-logo,
  .stack-logo,
  .how-icon,
  .price-logo,
  .contact-icon,
  .floating-actions a,
  .ref-chart span,
  .ref-chart i {
    animation: none !important;
    transition: none !important;
  }
}
