:root {
  --bg: #0A0E27;
  --bg-alt: #131838;
  --primary: #5E3FF5;
  --primary-2: #9B7BFF;
  --accent: #FF3CAC;
  --text: #E8EBFF;
  --text-muted: #8A92C5;
  --card-bg: #1A1F45;
  --border: rgba(155,123,255,0.18);
  --radius: 22px;
  --radius-sm: 14px;
  --pill: 999px;
  --max: 1240px;
  --shadow: 0 20px 60px -20px rgba(94,63,245,0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3,h4 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2rem, 4.6vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.55rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.18rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 96px 0; position: relative; }
section .container { position: relative; z-index: 2; }

.accent { color: var(--primary-2); }
.accent-pink { color: var(--accent); }

.eyebrow {
  display: inline-block;
  font-family: 'Unbounded', sans-serif;
  font-size: .68rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255,60,172,0.3);
  border-radius: var(--pill);
  background: rgba(255,60,172,0.05);
}

.section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.section-head p { font-size: 1.05rem; }

/* HEADER D — dark */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10,14,39,0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}
.brand img { width: 36px; height: 36px; }
.brand span em { color: var(--accent); font-style: normal; }

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  font-size: .95rem;
  padding: 10px 14px;
  border-radius: var(--pill);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(155,123,255,0.08); }

.nav-links a.nav-cta {
  color: #000000 !important;
  font-weight: 800;
  background: linear-gradient(120deg, var(--accent), var(--primary-2));
  padding: 12px 22px;
  margin-left: 12px;
  box-shadow: 0 12px 30px -10px rgba(255,60,172,0.55);
}
.nav-links a.nav-cta:hover { transform: translateY(-1px); }

.burger {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu a {
  padding: 12px 8px;
  color: var(--text);
  border-radius: var(--radius-sm);
}
.mobile-menu a.nav-cta {
  background: linear-gradient(120deg, var(--accent), var(--primary-2));
  color: #000000;
  font-weight: 800;
  text-align: center;
  margin-top: 8px;
}
.mobile-menu.is-open { display: flex; }

/* HERO H — animated mesh */
.hero {
  padding: 90px 0 110px;
  position: relative;
  overflow: hidden;
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.mesh-blob {
  position: absolute;
  width: 540px; height: 540px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .55;
  animation: float 22s ease-in-out infinite;
}
.mesh-blob.b1 { background: var(--primary); top: -180px; left: -160px; }
.mesh-blob.b2 { background: var(--accent); right: -120px; top: 80px; animation-delay: -8s; }
.mesh-blob.b3 { background: var(--primary-2); bottom: -200px; left: 30%; animation-delay: -14s; }

@keyframes float {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(40px,-30px) scale(1.07); }
  66% { transform: translate(-30px,20px) scale(.95); }
}

.hero .container { z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  gap: 48px;
  align-items: center;
}
.hero-text { text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Unbounded', sans-serif;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--pill);
  background: rgba(94,63,245,0.15);
  border: 1px solid rgba(94,63,245,0.4);
  color: var(--primary-2);
  margin-bottom: 20px;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.hero-desc {
  font-size: 1.08rem;
  margin: 24px 0 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  font-size: .9rem;
  color: var(--text-muted);
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.trust-item .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--primary-2);
  box-shadow: 0 0 8px var(--primary-2);
}
.trust-item .dot.pink { background: var(--accent); box-shadow: 0 0 8px var(--accent); }

/* PRICE D — embedded card */
.hero-price {
  background: linear-gradient(160deg, rgba(94,63,245,0.18), rgba(255,60,172,0.10));
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.hero-price::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-2));
  border-radius: var(--radius) var(--radius) 0 0;
}

.price-tag-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  font-family: 'Unbounded', sans-serif;
}
.price-tag-label {
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary-2);
}
.price-tag-strike {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: .9rem;
}
.price-tag-main {
  font-family: 'Unbounded', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 12px;
}
.price-tag-main span { font-size: 1.5rem; color: var(--text-muted); margin-left: 6px; font-weight: 400; }
.price-tag-sub { font-size: .92rem; margin-bottom: 18px; }

.price-tag-list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}
.price-tag-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  font-size: .92rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.price-tag-list li:last-child { border-bottom: 0; }
.price-tag-list li::before {
  content: '✦';
  position: absolute;
  left: 0; top: 8px;
  color: var(--accent);
}

/* Buttons B — pill */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 28px;
  border-radius: var(--pill);
  cursor: pointer;
  border: 0;
  transition: transform .2s, box-shadow .2s;
}
.btn-primary {
  color: #000000;
  background: linear-gradient(120deg, var(--accent), var(--primary-2));
  box-shadow: 0 14px 32px -10px rgba(255,60,172,0.5);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(255,60,172,0.65); }
.btn-ghost {
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: rgba(155,123,255,0.12); border-color: var(--primary-2); }
.btn-block { width: 100%; }

/* STATS */
.stats { padding: 60px 0; background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: linear-gradient(120deg, var(--accent), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { color: var(--text-muted); font-size: .92rem; }

/* FEATURES — Cards B border-top */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 32px 26px;
  border-top: 3px solid var(--primary-2);
  position: relative;
  transition: transform .3s, border-color .3s;
}
.feature-card:nth-child(2n) { border-top-color: var(--accent); }
.feature-card:hover { transform: translateY(-4px); border-top-color: var(--accent); }
.feature-icon {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.6rem;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(94,63,245,0.25), rgba(255,60,172,0.18));
  margin-bottom: 18px;
  color: var(--primary-2);
}
.feature-card h3 { color: var(--text); margin-bottom: 10px; font-size: 1.12rem; }
.feature-card p { font-size: .94rem; }

/* PLATFORMS */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.platform-card {
  background: var(--card-bg);
  border-top: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 28px;
  text-align: left;
  position: relative;
  transition: transform .25s;
  display: block;
  cursor: pointer;
}
.platform-card:nth-child(3n+2) { border-top-color: var(--accent); }
.platform-card:nth-child(3n) { border-top-color: var(--primary-2); }
.platform-card:hover { transform: translateY(-4px); }
.platform-icon {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(255,60,172,0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.platform-card h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 4px; }
.platform-card p { font-size: .85rem; margin-bottom: 12px; }
.platform-link {
  font-family: 'Unbounded', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.platform-link::after { content: '→'; }

/* WHY block (split) */
.why-block {
  display: grid;
  grid-template-columns: 1.2fr .85fr;
  gap: 48px;
  align-items: start;
}
.why-text p { font-size: 1rem; color: var(--text-muted); }
.why-text strong { color: var(--text); }

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 22px;
  border-left: 3px solid var(--accent);
}
.why-list li:nth-child(2n) { border-left-color: var(--primary-2); }
.why-list .num {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-2);
  width: 50px;
}
.why-list h4 { margin: 0 0 4px; font-size: 1rem; color: var(--text); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; letter-spacing: 0; }
.why-list p { margin: 0; font-size: .9rem; }

/* CASES */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.case-card {
  background: linear-gradient(160deg, var(--card-bg), rgba(94,63,245,0.08));
  border-radius: var(--radius);
  padding: 28px;
  border-top: 3px solid var(--accent);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
}
.case-card:nth-child(odd) { border-top-color: var(--primary-2); }
.case-mark {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.8rem;
  color: var(--accent);
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,60,172,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-card h3 { color: var(--text); font-size: 1.05rem; margin-bottom: 6px; }
.case-card p { font-size: .92rem; margin: 0; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { color: #ffffff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 0 auto 26px; font-size: 1rem; }
.cta-banner .btn {
  background: #0A0E27;
  color: #ffffff;
}
.cta-banner .btn:hover { background: #131838; }

/* FAQ A — accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-item {
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item.is-open { border-color: var(--accent); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  padding: 22px 24px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  color: var(--text);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(155,123,255,0.15);
  color: var(--primary-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: transform .25s, background .25s, color .25s;
  flex-shrink: 0;
}
.faq-item.is-open .faq-q .ic {
  transform: rotate(45deg);
  background: var(--accent);
  color: #ffffff;
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 24px 22px;
  font-size: .95rem;
  color: var(--text-muted);
}

/* FOOTER A — 4 cols dark */
.site-footer {
  background: #060920;
  border-top: 1px solid var(--border);
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 42px;
  margin-bottom: 44px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer-brand img { width: 36px; height: 36px; }
.footer-col h4 {
  font-family: 'Unbounded', sans-serif;
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--primary-2);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-muted); font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--accent); }
.footer-about { color: var(--text-muted); font-size: .92rem; margin: 0; }
.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: .85rem;
  color: var(--text-muted);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s, transform .7s; }
.reveal.in { opacity: 1; transform: none; }

/* STEPS (instruktsiya) */
.steps-wrap { display: flex; flex-direction: column; gap: 26px; max-width: 980px; margin: 0 auto; }
.step-card {
  background: var(--card-bg);
  border-top: 3px solid var(--primary-2);
  border-radius: var(--radius);
  padding: 36px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
}
.step-card:nth-child(2) { border-top-color: var(--accent); }
.step-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  width: 70px;
}
.step-card h2 { font-size: 1.5rem; margin-bottom: 14px; }
.step-card p { font-size: .98rem; }

.after-pay {
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 44px 40px;
  border-top: 3px solid var(--accent);
}
.after-pay h2 { margin-bottom: 16px; }
.after-pay > p { font-size: 1rem; }
.after-pay .platforms-grid { margin-top: 30px; }

@media (max-width: 980px) {
  section { padding: 72px 0; }
  .hero-grid, .why-block { grid-template-columns: 1fr; }
  .features-grid, .cases-grid, .platforms-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .step-card { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .burger { display: flex; }
}
@media (max-width: 600px) {
  .features-grid, .cases-grid, .platforms-grid, .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .cta-banner { padding: 40px 26px; }
  .price-tag-main { font-size: 3rem; }
  .step-card { padding: 26px; }
  .after-pay { padding: 32px 22px; }
}
