@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');

/* ═══════════════════════════
   TOKENS
   ═══════════════════════════ */
:root {
  --accent: #4f46e5;
  --accent-h: #4338ca;
  --accent-l: #eef2ff;
  --r: 12px;
  --rs: 8px;
  --rl: 16px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --head: 'Manrope', 'Inter', sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', monospace;
  --hh: 60px;
  --mw: 1080px;
  --ease: .25s ease;
}

/* ═══════════════════════════
   THEMES
   Default = dark (Telegram-style), light via [data-theme="light"]
   ═══════════════════════════ */
:root, html:not([data-theme="light"]) {
  color-scheme: dark;
  --bg: #090b10;
  --bg2: rgba(255,255,255,.02);
  --bd: rgba(255,255,255,.07);
  --bg-in: rgba(255,255,255,.05);
  --t1: #f0f2f5;
  --t2: #b0b8c4;
  --t3: #6a7480;
  --ov: rgba(2,4,8,.6);
  --accent-l: rgba(59,130,246,.1);
  --accent: #3b82f6;
  --accent-h: #2563eb;
  --card-sh: 0 8px 30px rgba(0,0,0,.3);
  --builder-sh: 0 12px 40px rgba(0,0,0,.4);
}
html[data-theme="light"] {
  --bg: #eef6ff;
  --bg2: #e0edff;
  --bd: rgba(59, 130, 246, .18);
  --bg-in: rgba(59, 130, 246, .08);
  --t1: #0a1020;
  --t2: #2d3748;
  --t3: #5a6c84;
  --ov: rgba(10, 16, 32, .35);
  --accent-l: rgba(59,130,246,.15);
  --accent: #2563eb;
  --accent-h: #1d4ed8;
  --card-sh: 0 8px 24px rgba(37, 99, 235, .12);
  --builder-sh: 0 12px 40px rgba(37, 99, 235, .15);
}

/* ═══════════════════════════
   RESET
   ═══════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font: 400/1.6 var(--font);
  background: var(--bg); color: var(--t2);
  transition: background var(--ease), color var(--ease);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--accent-h); }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
details summary { cursor: pointer; list-style: none; }
details summary::-webkit-details-marker { display: none; }

/* ═══════════════════════════
   FOCUS
   ═══════════════════════════ */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 3px; }

/* ═══════════════════════════
   SKIP
   ═══════════════════════════ */
.skip { position: absolute; top: -100px; left: 16px; background: var(--accent); color: #fff;
  padding: 8px 16px; border-radius: var(--rs); font-weight: 600; font-size: .85rem; z-index: 999; }
.skip:focus { top: 8px; }

/* ═══════════════════════════
   TYPE
   ═══════════════════════════ */
h1, h2, h3, .logo, .step-n, .letter-icon, .price-total, .price-value, .prt, .pricing { font-family: var(--head); }
h1 { font-size: clamp(1.8rem, 4.5vw, 2.85rem); font-weight: 800; line-height: 1.12; color: var(--t1); letter-spacing: -.04em; }
h2 { font-size: clamp(1.3rem, 3vw, 1.85rem); font-weight: 700; line-height: 1.2; color: var(--t1); letter-spacing: -.02em; }
h3 { font-size: 1.05rem; font-weight: 600; color: var(--t1); line-height: 1.35; }
.lead { font-size: 1.02rem; color: var(--t2); max-width: 580px; line-height: 1.65; font-family: var(--font); }
.label, .section-label { display: inline-block; font-size: .7rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: var(--accent); margin-bottom: 8px; font-family: var(--font); }
.desc, .section-desc { color: var(--t2); max-width: 500px; line-height: 1.6; font-size: .93rem; font-family: var(--font); }
body, p, li, a, span, select, input, textarea, textarea.bg-textarea, textarea.ob-textarea, button { font-family: var(--font); }

/* ═══════════════════════════
   LAYOUT
   ═══════════════════════════ */
.wrap { max-width: var(--mw); margin: 0 auto; padding: 0 20px; }
.sep { padding: 64px 0; }
.sep-alt { background: var(--bg2); }

/* ═══════════════════════════
   HEADER
   ═══════════════════════════ */
.hdr {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,11,16,.78);
  border-bottom: 1px solid var(--bd); height: var(--hh);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: background var(--ease), border var(--ease);
}
html[data-theme="light"] .hdr {
  background: rgba(255,255,255,.95) !important;
  border-top: 1px solid rgba(37,99,235,.08) !important;
  border-left: 1px solid rgba(37,99,235,.08) !important;
  border-right: 1px solid rgba(37,99,235,.08) !important;
  border-bottom: 1px solid rgba(37,99,235,.20) !important;
  box-shadow: 0 4px 20px rgba(37,99,235,.10) !important;
}
html[data-theme="light"] header.header {
  background: rgba(255,255,255,.95) !important;
}

.hdr .wrap { display: flex; align-items: center; height: 100%; gap: 14px; }

html[data-theme="light"] .nav a,
html[data-theme="light"] .logo,
html[data-theme="light"] .hb,
html[data-theme="light"] .hb svg {
  color: #1e293b !important;
}

html[data-theme="light"] .hb:hover { background: rgba(37,99,235,.06); }

html[data-theme="light"] .menu-toggle,
html[data-theme="light"] .icon-btn {
  color: #1e293b !important;
}

html[data-theme="light"] .drawer {
  background: #ffffff !important;
  border: none !important;
  box-shadow: 0 8px 32px rgba(37,99,235,.15) !important;
}

html[data-theme="light"] .drawer a {
  color: #1e293b;
  border-bottom-color: rgba(37,99,235,.12);
}

html[data-theme="light"] .drawer a:hover {
  color: #2563eb;
  background: rgba(37,99,235,.04);
}

html[data-theme="light"] .drawer-close {
  color: #334155;
}

html[data-theme="light"] .drawer-overlay {
  background: rgba(10,16,32,.40);
}

html[data-theme="light"] .drawer-close:hover {
  background: rgba(37,99,235,.08);
  color: #1e293b;
}

/* Light theme button contrast (white background) */
html[data-theme="light"] .btn,
html[data-theme="light"] .icon-btn,
html[data-theme="light"] .menu-toggle {
  color: var(--t1) !important;
}

html[data-theme="light"] .btn-primary,
html[data-theme="light"] .bp {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  color: #ffffff !important;
  border: 1px solid rgba(37,99,235,.45) !important;
  box-shadow: 0 8px 24px rgba(37,99,235,.25) !important;
}

html[data-theme="light"] .btn-primary:hover,
html[data-theme="light"] .bp:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  box-shadow: 0 12px 32px rgba(37,99,235,.30) !important;
}

html[data-theme="light"] .btn-outline,
html[data-theme="light"] .bo {
  background: #ffffff !important;
  border: 1.5px solid rgba(37,99,235,.35) !important;
  color: #1e40af !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .btn-outline:hover,
html[data-theme="light"] .bo:hover {
  background: rgba(37,99,235,.08) !important;
  border-color: rgba(37,99,235,.55) !important;
  color: #1e3a8a !important;
}

html[data-theme="light"] .btn-subscribe {
  background: transparent !important;
  border: 1.5px solid rgba(37,99,235,.50) !important;
  color: #1e40af !important;
  font-weight: 600 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .btn-subscribe:hover {
  background: rgba(37,99,235,.10) !important;
  border-color: rgba(37,99,235,.70) !important;
  color: #1e3a8a !important;
}

html[data-theme="light"] .btn-subscribe.btn-popular {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
  border: 1px solid rgba(37,99,235,.45) !important;
  color: #ffffff !important;
  font-weight: 600 !important;
}

html[data-theme="light"] .btn-subscribe.btn-popular:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  box-shadow: 0 8px 24px rgba(37,99,235,.25) !important;
}


.logo {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 1.05rem; color: var(--t1); white-space: nowrap;
}
.logo:hover { color: var(--t1); }
.logo svg, .logo img { width: 24px; height: 24px; display: block; }
.nav { display: flex; gap: 22px; margin-left: 24px; }
.nav a { font-size: .85rem; color: var(--t2); font-weight: 500; white-space: nowrap; }
.nav a:hover { color: var(--t1); }
.ha { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.hb { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--rs); color: var(--t3); transition: all var(--ease); }
.hb:hover { background: var(--bg2); color: var(--t1); }
.hb svg { width: 18px; height: 18px; }

/* Lang */
.ls { position: relative; }
.lb { height: 36px; padding: 0 10px; font-size: .75rem; font-weight: 600; color: var(--t3);
  border-radius: var(--rs); display: flex; align-items: center; gap: 3px; min-width: 42px;
  justify-content: center; transition: all var(--ease); }
.lb:hover { background: var(--bg2); color: var(--t1); }
.lb svg { width: 12px; height: 12px; }
.ld {
  position: absolute; top: calc(100% + 6px); right: 0; background: var(--bg);
  border: 1px solid var(--bd); border-radius: var(--r); box-shadow: 0 6px 20px rgba(0,0,0,.1);
  min-width: 136px; padding: 5px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: all .15s ease; z-index: 200;
}
.ld.open { opacity: 1; visibility: visible; transform: translateY(0); }
.ld a { display: block; padding: 7px 11px; font-size: .82rem; color: var(--t2);
  border-radius: var(--rs); transition: background .12s; }
.ld a:hover { background: var(--bg2); color: var(--t1); }
.ld a[aria-current="true"] { color: var(--accent); font-weight: 600; }

/* Btn */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 8px 18px; border-radius: var(--r); font-weight: 600; font-size: .83rem;
  transition: all var(--ease); white-space: nowrap; min-height: 40px; min-width: 40px;
}
.bp { background: var(--accent); color: #fff; }
.bp:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: 0 3px 10px rgba(79,70,229,.25); color: #fff; }
.bo { border: 1px solid var(--bd); color: var(--t2); }
.bo:hover { border-color: var(--t3); color: var(--t1); }
.bk { width: 100%; }
.menu-tog { display: none; }
/* Burger menu — always visible in header */
.menu-toggle { display: flex !important; }
.menu-toggle svg { width: 20px; height: 20px; }

/* Drawer */
.dov { position: fixed; inset: 0; background: var(--ov); z-index: 150;
  opacity: 0; visibility: hidden; transition: all .2s ease; }
.dov.open { opacity: 1; visibility: visible; }
.drw {
  position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--bg);
  z-index: 200; padding: 16px 20px; transform: translateX(100%); transition: transform .25s ease;
  overflow-y: auto; display: flex; flex-direction: column; gap: 2px;
}
.drw.open { transform: translateX(0); }
.drw a { display: block; padding: 13px 0; font-size: .93rem; font-weight: 500;
  color: var(--t1); border-bottom: 1px solid var(--bd); }
.drw-x { align-self: flex-end; width: 36px; height: 36px; display: flex; align-items: center;
  justify-content: center; border-radius: var(--rs); color: var(--t3); }
.drw-x:hover { background: var(--bg2); color: var(--t1); }
.drw-x svg { width: 20px; height: 20px; }

/* Drawer accordion — generic long-form class */
.drawer-overlay a { display: block; padding: 13px 0; font-size: .93rem; font-weight: 500;
  color: var(--t1); border-bottom: none; text-decoration: none; }

/* Legacy alias — kept for old HTML using <details> */
.drawer-details { border-bottom: none; }
.drawer-details[open] { border-bottom: none; }

/* Drawer accordion — smooth open/close */
.drw-acc { border-bottom: none; }
.drw-acc-q {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 11px 0; font-size: .88rem; font-weight: 600; color: var(--t1);
  cursor: pointer; list-style: none; transition: color var(--ease);
  width: 100%; background: none; border: none; text-align: left;
}
.drw-acc-q:hover { color: var(--accent); }
.drw-acc-q::after {
  content: '+'; font-size: 1.1rem; font-weight: 400; color: var(--t3);
  transition: transform .3s ease;
}
.drw-acc.open .drw-acc-q::after { content: '−'; }
.drw-acc-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.drw-acc.open .drw-acc-body { grid-template-rows: 1fr; }
.drw-acc-a { overflow: hidden; }
.drw-acc a {
  padding: 7px 0 7px 12px; font-size: .82rem; color: var(--t2); font-weight: 400;
  transition: color var(--ease); border-bottom: 1px solid var(--bd);
}
.drw-acc a:hover { color: var(--accent); }
.drw-acc a:last-child { border-bottom: none; }

/* ═══════════════════════════
   HERO
   ═══════════════════════════ */
.hero { padding: 56px 0 32px; }
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: start;
}
.hero-left h1 { max-width: 620px; }
.hero .lead { margin-top: 16px; }
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-end;
}
.hero-card {
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  border: 1px solid var(--bd);
  background: var(--bg2);
  box-shadow: var(--card-sh);
  padding: 18px 18px;
}
.hero-card.big {
  background: linear-gradient(180deg, rgba(59,130,246,.08), rgba(59,130,246,.03));
  border-color: rgba(59,130,246,.18);
}
.hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-metric {
  border-radius: 18px;
  border: 1px solid var(--bd);
  background: rgba(255,255,255,.55);
}
html[data-theme="light"] .hero-metric {
  background: #ffffff;
  border-color: rgba(37,99,235,.20);
  box-shadow: 0 4px 16px rgba(37,99,235,.08);
}

/* ═══════════════════════════
   HERO NEW (Modern Design)
   ═══════════════════════════ */
.hero-new {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, rgba(37,99,235,.02) 0%, rgba(59,130,246,.03) 100%);
}

html[data-theme="light"] .hero-new {
  background: linear-gradient(135deg, #f8faff 0%, #eff6ff 100%);
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #fff;
  border-radius: 99px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  width: fit-content;
  box-shadow: 0 4px 16px rgba(16,185,129,.3);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  font-family: var(--head);
}

html[data-theme="dark"] .hero-title {
  color: #fff !important;
}

html[data-theme="light"] .hero-title {
  color: #1e1b4b;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #475569;
  max-width: 540px;
  font-family: var(--font);
}

html[data-theme="dark"] .hero-description {
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn-hero-primary {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 40px 110px !important;
  background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.6rem !important;
  border-radius: 14px !important;
  border: none !important;
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5) !important;
  transition: all .3s ease !important;
  min-width: 200px !important;
  min-height: 40px !important;
}

.btn-hero-primary:hover {
  background: linear-gradient(135deg, #7c3aed, #8b5cf6) !important;
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.7) !important;
  transform: translateY(-4px) !important;
}

html[data-theme="light"] .btn-hero-primary {
color: #fff !important;
}

html[data-theme="light"] .btn-hero-primary:hover {
color: #fff !important;
}

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-avatars {
  display: flex;
}

.hero-avatars img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -10px;
}

html[data-theme="dark"] .hero-avatars img {
  border-color: #1e293b;
}

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

.hero-users-count {
  font-size: .85rem;
  font-weight: 600;
  color: #64748b;
}

html[data-theme="dark"] .hero-users-count {
  color: #94a3b8;
}

/* Hero Cards */
.hero-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

.hero-stat-card {
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  transition: all .3s ease;
}

.hero-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

.hero-stat-white {
  background: #ffffff;
  border: 1px solid rgba(37,99,235,.1);
  width: 220px;
}

.hero-stat-blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border: none;
  width: 240px;
}

.hero-stat-wide {
  background: linear-gradient(135deg, #93c5fd, #60a5fa);
  border: none;
  width: 100%;
  max-width: 460px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.hero-stat-icon {
  width: 28px;
  height: 28px;
  color: #2563eb;
}

.hero-stat-blue .hero-stat-icon,
.hero-stat-wide .hero-stat-icon {
  color: #fff;
}

.hero-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1e293b;
  font-family: var(--head);
  line-height: 1;
}

/* ═══════════════════════════
   PLATFORM PAGE
   ═══════════════════════════ */
.platform-hero {
  padding: 64px 0 40px;
  background: linear-gradient(135deg, rgba(236,72,153,.08) 0%, rgba(139,92,246,.08) 100%);
}

html[data-theme="light"] .platform-hero {
  background: linear-gradient(135deg, #fdf2f8 0%, #faf5ff 100%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--t3);
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 24px;
  transition: color .2s ease;
}

.back-link:hover {
  color: var(--accent);
}

.back-link svg {
  transition: transform .2s ease;
}

.back-link:hover svg {
  transform: translateX(-4px);
}

.platform-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.platform-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

.platform-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.platform-icon .letter-icon {
  font-size: 2rem;
  color: #fff;
  background: transparent !important;
  border: none !important;
}

/* Platform icon brand colors */
.platform-icon.youtube {
  background: #FF0000;
  color: #fff;
}

.platform-icon.youtube svg {
  color: #fff;
}

.platform-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.platform-icon.instagram svg {
  color: #fff;
}

.platform-icon.tiktok {
  background: linear-gradient(135deg, #00f2ea, #ff0050);
  color: #fff;
}

.platform-icon.tiktok svg {
  color: #fff;
}

.platform-icon.facebook {
  background: #1877F2;
  color: #fff;
}

.platform-icon.facebook svg {
  color: #fff;
}

.platform-icon.x {
  background: #000;
  color: #fff;
}

.platform-icon.x svg {
  color: #fff;
}

.platform-icon.telegram {
  background: #26A5E4;
  color: #fff;
}

.platform-icon.telegram svg {
  color: #fff;
}

.platform-icon.spotify {
  background: #1DB954;
  color: #fff;
}

.platform-icon.spotify svg {
  color: #fff;
}

.platform-icon.twitch {
  background: #9146FF;
  color: #fff;
}

.platform-icon.twitch svg {
  color: #fff;
}

.platform-icon.threads {
  background: #000;
  color: #fff;
}

.platform-icon.threads svg {
  color: #fff;
}

.platform-icon.discord {
  background: #5865F2;
  color: #fff;
}

.platform-icon.discord svg {
  color: #fff;
}

.platform-title h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--t1);
  line-height: 1.1;
  margin-bottom: 8px;
}

.platform-title p {
  font-size: 1.05rem;
  color: var(--t2);
  max-width: 500px;
}

/* Services Grid */
.services-section {
  padding: 48px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}

.service-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 16px;
  transition: all .3s ease;
  text-decoration: none;
  color: inherit;
}

.service-card .service-info {
  flex: 1;
  min-width: 0;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transform: translateY(-2px);
}

html[data-theme="light"] .service-card:hover {
  box-shadow: 0 8px 24px rgba(37,99,235,.12);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.service-icon .letter-icon {
  font-size: 1.4rem;
  color: #fff;
  background: transparent !important;
  border: none !important;
}

.service-icon {
  background: var(--accent-l);
  color: #fff;
}

.service-icon .letter-icon {
  color: #fff;
  background: transparent !important;
  border: none !important;
}

/* Service icon brand colors - dark bg with colored icon */
.service-icon.youtube { background: rgba(255,255,255,.05); }
.service-icon.youtube svg { color: #FF0000; }

.service-icon.instagram { background: rgba(255,255,255,.05); }
.service-icon.instagram svg { color: #E4405F; }

.service-icon.tiktok { background: rgba(255,255,255,.05); }
.service-icon.tiktok svg { color: #fff; }

.service-icon.facebook { background: rgba(255,255,255,.05); }
.service-icon.facebook svg { color: #1877F2; }

.service-icon.x { background: rgba(255,255,255,.05); }
.service-icon.x svg { color: #fff; }

.service-icon.telegram { background: rgba(255,255,255,.05); }
.service-icon.telegram svg { color: #26A5E4; }

.service-icon.spotify { background: rgba(255,255,255,.05); }
.service-icon.spotify svg { color: #1DB954; }

.service-icon.twitch { background: rgba(255,255,255,.05); }
.service-icon.twitch svg { color: #9146FF; }

.service-icon.threads { background: rgba(255,255,255,.05); }
.service-icon.threads svg { color: #fff; }

.service-icon.discord { background: rgba(255,255,255,.05); }
.service-icon.discord svg { color: #5865F2; }

.service-info {
  flex: 1;
  min-width: 0;
}

.service-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 4px;
}

.service-info p {
  font-size: .85rem;
  color: var(--t2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-arrow {
  color: var(--t3);
  transition: all .3s ease;
}

.service-card:hover .service-arrow {
  color: var(--accent);
  transform: translateX(4px);
}

/* Platform-specific icon colors */
.service-icon.youtube { background: #FF0000; }
.service-icon.youtube .letter-icon { color: #fff !important; }

.service-icon.tiktok { background: linear-gradient(135deg, #00f2ea, #ff0050); }
.service-icon.tiktok .letter-icon { color: #fff !important; }

.service-icon.facebook { background: #1877F2; }
.service-icon.facebook .letter-icon { color: #fff !important; }

.service-icon.twitter, .service-icon.x { background: #000; }
.service-icon.twitter .letter-icon, .service-icon.x .letter-icon { color: #fff !important; }

.service-icon.telegram { background: #26A5E4; }
.service-icon.telegram .letter-icon { color: #fff !important; }

.service-icon.spotify { background: #1DB954; }
.service-icon.spotify .letter-icon { color: #fff !important; }

.service-icon.twitch { background: #9146FF; }
.service-icon.twitch .letter-icon { color: #fff !important; }

.service-icon.threads { background: #000; }
.service-icon.threads .letter-icon { color: #fff !important; }

.service-icon.discord { background: #5865F2; }
.service-icon.discord .letter-icon { color: #fff !important; }

/* Responsive */
@media (max-width: 720px) {
  .platform-header {
    flex-direction: column;
    text-align: center;
  }
  .platform-title p {
    margin: 0 auto;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.hero-stat-blue .hero-stat-value,
.hero-stat-wide .hero-stat-value {
  color: #fff;
}

.hero-stat-label {
  font-size: .8rem;
  color: #64748b;
  font-weight: 500;
}

.hero-stat-blue .hero-stat-label {
  color: rgba(255,255,255,.85);
}

.hero-stat-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,.3);
  border-radius: 99px;
  overflow: hidden;
}

/* ═══════════════════════════
   PLATFORMS GRID - SMALL ICONS (2 rows x 5 cols)
   ═══════════════════════════ */
.platforms-grid-small {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 28px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.platform-card-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 28px 20px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 20px;
  transition: all .25s ease;
  min-height: 260px;
}

.platform-card-small:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}

html[data-theme="light"] .platform-card-small:hover {
  box-shadow: 0 8px 24px rgba(37,99,235,.15);
}

.platform-card-small .plat-ico-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  transition: all .25s ease;
  flex-shrink: 0;
}

.platform-card-small svg {
  width: 36px;
  height: 36px;
}

.platform-card-small .plat-title {
  font-size: .9rem;
  font-weight: 600;
  color: var(--t1);
  text-align: center;
}

.platform-card-small .plat-services {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
  text-align: center;
}

.platform-card-small .plat-services div {
  font-size: .82rem;
  font-weight: 500;
  color: var(--t2);
  line-height: 1.4;
}

/* Platform brand colors for small cards - ALWAYS colored */
.platform-card-small .plat-ico-wrap.youtube { background: rgba(255,0,0,.08); }
.platform-card-small .plat-ico-wrap.youtube svg { color: #FF0000; }

.platform-card-small .plat-ico-wrap.instagram { background: linear-gradient(135deg, rgba(241,68,55,.08), rgba(193,53,132,.08)); }
.platform-card-small .plat-ico-wrap.instagram svg { color: #E4405F; }

.platform-card-small .plat-ico-wrap.tiktok { background: rgba(0, 0, 0, .15); }
.platform-card-small .plat-ico-wrap.tiktok svg { color: #fff; }

html[data-theme="light"] .platform-card-small .plat-ico-wrap.tiktok { background: rgba(0, 0, 0, .06); }
html[data-theme="light"] .platform-card-small .plat-ico-wrap.tiktok svg { color: #000; }

.platform-card-small .plat-ico-wrap.facebook { background: rgba(24,119,242,.08); }
.platform-card-small .plat-ico-wrap.facebook svg { color: #1877F2; }

.platform-card-small .plat-ico-wrap.x { background: rgba(255,255,255,.15); }
.platform-card-small .plat-ico-wrap.x svg { color: #000; }

.platform-card-small .plat-ico-wrap.telegram { background: rgba(38,165,228,.08); }
.platform-card-small .plat-ico-wrap.telegram svg { color: #26A5E4; }

.platform-card-small .plat-ico-wrap.spotify { background: rgba(29,185,84,.08); }
.platform-card-small .plat-ico-wrap.spotify svg { color: #1DB954; }

.platform-card-small .plat-ico-wrap.twitch { background: rgba(145,70,255,.08); }
.platform-card-small .plat-ico-wrap.twitch svg { color: #9146FF; }

.platform-card-small .plat-ico-wrap.threads { background: rgba(0,0,0,.08); }
.platform-card-small .plat-ico-wrap.threads svg { color: #000; }

.platform-card-small .plat-ico-wrap.discord { background: rgba(88,101,242,.08); }
.platform-card-small .plat-ico-wrap.discord svg { color: #5865F2; }

.platform-card-small .plat-ico-wrap.linkedin { background: rgba(0,119,181,.08); }
.platform-card-small .plat-ico-wrap.linkedin svg { color: #0077B5; }

/* Dark theme brand colors */
html[data-theme="dark"] .platform-card-small .plat-ico-wrap.x { background: rgba(255,255,255,.08); }
html[data-theme="dark"] .platform-card-small .plat-ico-wrap.x svg { color: #fff; }
html[data-theme="dark"] .platform-card-small .plat-ico-wrap.threads { background: rgba(255,255,255,.08); }
html[data-theme="dark"] .platform-card-small .plat-ico-wrap.threads svg { color: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .platforms-grid-small {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .platforms-grid-small {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .platform-card-small {
    padding: 18px 14px;
  }
  .platform-card-small .plat-ico-wrap {
    width: 48px;
    height: 48px;
  }
  .platform-card-small svg {
    width: 28px;
    height: 28px;
  }
  .platform-card-small .plat-title {
    font-size: .75rem;
  }
  .platform-card-small .plat-services {
    gap: 4px;
  }
  .platform-card-small .plat-services a {
    font-size: .62rem;
    padding: 3px 6px;
  }
}

@media (max-width: 420px) {
  .platforms-grid-small {
    gap: 12px;
  }
  .platform-card-small {
    padding: 16px 12px;
  }
  .platform-card-small .plat-ico-wrap {
    width: 44px;
    height: 44px;
  }
  .platform-card-small svg {
    width: 24px;
    height: 24px;
  }
}

.hero-stat-progress {
  width: 70%;
  height: 100%;
  background: #fff;
  border-radius: 99px;
  animation: progressPulse 2s ease-in-out infinite;
}

@keyframes progressPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: .7; }
}

.hero-status-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(30,41,59,.6);
}

.hero-status-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-status-content span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e3a8a;
}

.hero-shield-icon {
  width: 24px;
  height: 24px;
  color: #1e40af;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-cards {
    align-items: stretch;
  }
  .hero-stat-card {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 640px) {
  .hero-new {
    padding: 48px 0 32px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.4rem);
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-stat-card {
    padding: 20px;
  }
}
.hero-metric {
  padding: 16px 16px;
}
.hero-metric .k {
  font-weight: 800;
  color: var(--t1);
  font-family: var(--head);
  font-size: 1.15rem;
}
.hero-metric .l {
  margin-top: 6px;
  color: var(--t3);
  font-size: .82rem;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { align-items: stretch; }
  .hero-metrics { grid-template-columns: 1fr; }
}


/* ═══════════════════════════
   BUILDER
   ═══════════════════════════ */
.bld {
  background: var(--bg); border: 1px solid var(--bd); border-radius: var(--rl);
  padding: 32px; transition: all var(--ease);
}
.bld h2 { margin-bottom: 20px; }
.bgr { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.bfi { display: flex; flex-direction: column; gap: 6px; }
.bfi.f { grid-column: 1 / -1; }
.blb { font-size: .72rem; font-weight: 600; color: var(--t3); text-transform: uppercase; letter-spacing: .04em; }
.bi, .bs, .bt {
  width: 100%; padding: 10px 13px; background: var(--bg-in);
  border: 1px solid var(--bd); border-radius: var(--rs); color: var(--t2);
  font-size: .9rem; transition: border var(--ease); min-height: 44px;
}
.bi:focus, .bs:focus, .bt:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 12%, transparent); }
.bt { resize: vertical; min-height: 68px; }

/* Platform chips */
.pch { display: grid; grid-template-columns: repeat(auto-fill, minmax(62px, 1fr)); gap: 5px; }
.pc {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 9px 2px 7px; border: 1px solid var(--bd); border-radius: var(--rs);
  color: var(--t3); font-size: .62rem; font-weight: 500; cursor: pointer;
  transition: all var(--ease); background: var(--bg-in); text-align: center;
}
.pc:hover { border-color: var(--t3); color: var(--t2); }
.pc.on { border-color: var(--accent); background: var(--accent-l); color: var(--accent); }
.pc svg { width: 20px; height: 20px; }

/* Quantity */
.qr { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.qi { width: 120px; text-align: center; font-weight: 600; font-family: var(--mono); }
.qs { flex: 1; min-width: 100px; accent-color: var(--accent); height: 4px; }
.qc { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 2px; }
.qh {
  padding: 4px 12px; font-size: .75rem; font-weight: 600;
  border: 1px solid var(--bd); border-radius: 99px; color: var(--t3);
  cursor: pointer; transition: all var(--ease); background: var(--bg-in); min-height: 32px;
  display: flex; align-items: center;
}
.qh:hover { border-color: var(--accent); color: var(--accent); }
.qh.on { background: var(--accent); border-color: var(--accent); color: inherit; }
.qm { color: #ef4444; font-size: .75rem; min-height: 1.1em; margin-top: 2px; }
.qm.valid { color: #22c55e; }

/* Price */
.prb {
  margin-top: 18px; padding: 16px 18px; background: var(--bg2); border-radius: var(--r);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.prn { font-size: .8rem; color: var(--t3); }
.prr { font-size: .72rem; color: var(--t3); opacity: .7; }
.prt { font-size: 1.55rem; font-weight: 700; color: var(--t1); font-family: var(--mono); }

/* ═══════════════════════════
   PLATFORMS
   ═══════════════════════════ */
.pgr { display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 24px; }
.pcd, .plat-card, .platform-card {
  background: var(--bg2); border: 1px solid var(--bd); border-radius: var(--r);
  padding: 20px 12px; text-align: center; transition: all var(--ease);
}
.pcd:hover, .plat-card:hover, .platform-card:hover {
  border-color: var(--accent); box-shadow: var(--card-sh);
}
.pcd svg { width: 28px; height: 28px; margin: 0 auto 8px; color: var(--t3); transition: color var(--ease); }
.pcd:hover svg { color: var(--accent); }
.pcd h3 { font-size: .82rem; }
.pcd p { font-size: .72rem; color: var(--t3); margin-top: 3px; }

/* ═══════════════════════════
   STEPS
   ═══════════════════════════ */
.st, .step, .wc, .why-card {
  padding: 24px 20px; border: 1px solid var(--bd); border-radius: var(--r);
  transition: border var(--ease); background: var(--bg2);
}
.st:hover, .step:hover { border-color: var(--accent); }
.sn, .step-n { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--accent); color: #fff; font-size: .8rem; font-weight: 700; margin-bottom: 12px; }
.st p, .step p { font-size: .85rem; color: var(--t2); margin-top: 6px; line-height: 1.55; }

/* ═══════════════════════════
   WHY
   ═══════════════════════════ */
.wgr { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 12px; margin-top: 24px; }
.wc { padding: 24px 20px; border: 1px solid var(--bd); border-radius: var(--r); transition: border var(--ease); }
.wc:hover { border-color: var(--accent); }
.wi { width: 36px; height: 36px; border-radius: var(--rs); background: var(--accent-l);
  color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.wi svg { width: 16px; height: 16px; }
.wc p { font-size: .83rem; color: var(--t2); margin-top: 5px; line-height: 1.55; }

/* Why Horizontal - connected dots with cycling progress */
.why-horizontal {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 40px;
  position: relative;
}

.why-h-item {
  text-align: center;
  padding: 24px 12px;
  flex: 1;
  max-width: 220px;
  position: relative;
}

.why-h-item:hover .why-h-ico {
  color: var(--accent);
  transform: translateY(-4px);
}

.why-h-item:hover .why-dot {
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent-l);
}

.why-h-ico {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  color: var(--t1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.why-h-ico svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.why-h-item h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.why-h-item p {
  font-size: 0.8rem;
  color: var(--t2);
  line-height: 1.5;
  margin: 0;
}

/* Dot under each item */
.why-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bd);
  margin: 16px auto 0;
  transition: all 0.3s ease;
}

/* Connector line with animated progress */
.why-connector-line {
  position: relative;
  width: 80%;
  max-width: 700px;
  height: 2px;
  background: var(--bd);
  margin: -8px auto 0;
  border-radius: 2px;
  overflow: hidden;
}

.why-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg,
    transparent,
    var(--accent-l),
    var(--accent),
    var(--accent-l),
    transparent);
  border-radius: 2px;
  animation: smoothCycle 3s linear infinite;
}

@keyframes smoothCycle {
  0% {
    left: -30%;
    opacity: 0.5;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0.5;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .why-horizontal {
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
  }

  .why-connector-line {
    display: none;
  }

  .why-h-item {
    max-width: 180px;
    padding: 20px 16px;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .why-horizontal {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-top: 28px;
  }

  .why-connector-line {
    display: none;
  }

  .why-h-item {
    padding: 16px;
  }

  .why-h-ico {
    width: 44px;
    height: 44px;
    margin-bottom: 12px;
  }

  .why-h-ico svg {
    width: 32px;
    height: 32px;
  }

  .why-h-item h3 {
    font-size: 0.9rem;
  }

  .why-h-item p {
    font-size: 0.78rem;
  }
}

/* ═══════════════════════════
   FAQ (smooth accordion)
   ═══════════════════════════ */
.fql { max-width: 660px; margin: 24px 0 0; }
.fq { border-bottom: 1px solid var(--bd); }
.fq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; font-size: .93rem; font-weight: 600; color: var(--t1);
  min-height: 43px; transition: color var(--ease); cursor: pointer; width: 100%;
  background: none; border: none; text-align: left;
}
.fq-q:hover { color: var(--accent); }
.fq-q svg { width: 16px !important; height: 16px !important; color: var(--t3); transition: transform .3s ease; flex-shrink: 0; }
.fq-body {
  display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s ease;
}
.fq.open .fq-body { grid-template-rows: 1fr; }
.fq-a { overflow: hidden; }
.fq-a-inner { padding-bottom: 16px; font-size: .85rem; color: var(--t2); line-height: 1.65; }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.ftr { border-top: 1px solid var(--bd); padding: 40px 0 24px; }
.fg { display: flex; justify-content: space-between; gap: 32px; }
.fb p { color: var(--t2); font-size: .82rem; margin-top: 8px; max-width: 280px; line-height: 1.55; }
.ft { font-size: .7rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  color: var(--t3); margin-bottom: 12px; }
.fl li { margin-bottom: 7px; }
.fl a { font-size: .82rem; color: var(--t2); }
.fl a:hover { color: var(--t1); }
.fso { display: flex; gap: 12px; margin-top: 16px; }
.fso a { color: var(--t3); transition: color var(--ease); }
.fso a:hover { color: var(--t1); }
.fso svg { width: 17px; height: 17px; }
.fbt { margin-top: 32px; padding-top: 18px; border-top: 1px solid var(--bd);
  font-size: .76rem; color: var(--t3); }

/* ═══════════════════════════
   NAME ALIASES (long-form classes used by agent-generated pages)
   ═══════════════════════════ */
.skip-link { position: absolute; top: -100px; left: 16px; background: var(--accent); color: #fff;
  padding: 8px 16px; border-radius: var(--rs); font-weight: 600; font-size: .85rem; z-index: 999; }
.skip-link:focus { top: 8px; }
.container { max-width: var(--mw); margin: 0 auto; padding: 0 20px; }
.header { position: sticky; top: 0; z-index: 100; background: var(--bg);
  border-bottom: 1px solid var(--bd); height: 60px; backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); transition: background var(--ease), border var(--ease); }
.header .container { display: flex; align-items: center; height: 100%; gap: 14px; }
.header-actions { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.lang-sel, .lang-wrap { position: relative; }
.lang-btn { height: 38px; padding: 0 10px; font-size: .76rem; font-weight: 600; color: var(--t3);
  border-radius: var(--rs); display: flex; align-items: center; gap: 3px; min-width: 42px;
  justify-content: center; background: none; border: none; cursor: pointer;
  transition: all var(--ease); }
.lang-btn:hover { background: var(--bg2); color: var(--t1); }
.lang-btn svg { width: 13px; height: 13px; }
.lang-drop { position: absolute; top: calc(100% + 6px); right: 0; background: var(--bg);
  border: 1px solid var(--bd); border-radius: var(--r); box-shadow: 0 6px 20px rgba(0,0,0,.1);
  min-width: 140px; padding: 5px; opacity: 0; visibility: hidden;
  transform: translateY(-4px); transition: all .15s ease; z-index: 200; }
html[dir="rtl"] .lang-drop { right: auto; left: 0; }
.lang-drop.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-drop a { display: block; padding: 8px 12px; font-size: .83rem; color: var(--t2);
  border-radius: var(--rs); transition: background .12s; }
.lang-drop a:hover { background: var(--bg2); color: var(--t1); }
.lang-drop a[aria-current="true"] { color: var(--accent); font-weight: 600; }
.theme-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--rs); color: var(--t3); background: none; border: none; cursor: pointer;
  transition: all var(--ease); }
.theme-btn:hover { background: var(--bg2); color: var(--t1); }
.theme-btn { position: relative; display: flex !important; align-items: center !important; justify-content: center !important; }
.theme-btn svg {
  width: 18px; height: 18px;
  position: absolute; inset: 0; margin: auto;
  transition: all .4s cubic-bezier(.4, 0, .2, 1);
}
/* Sun/Moon: overlaid, morphing animation */
/* Dark mode (default): show moon */
.theme-sun {
  transform: rotate(180deg) scale(0.4); opacity: 0;
}
.theme-moon {
  transform: rotate(0deg) scale(1); opacity: 1;
}
/* Light mode: show sun */
html[data-theme="light"] .theme-sun {
  transform: rotate(0deg) scale(1) !important; opacity: 1;
}
html[data-theme="light"] .theme-moon {
  transform: rotate(-180deg) scale(0.4) !important; opacity: 0;
}

.nav-links { display: flex; gap: 22px; margin-left: 24px; }
.nav-links a { font-size: .85rem; color: var(--t2); font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--t1); }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 9px 18px; border-radius: var(--r); font-weight: 600; font-size: .83rem;
  transition: all var(--ease); white-space: nowrap; min-height: 40px; text-decoration: none; }
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff !important; }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-1px); color: #fff !important; }
.btn-outline { border: 1px solid var(--bd); color: var(--t2); }
.btn-outline:hover { border-color: var(--t3); color: var(--t1); }
.btn-block { width: 100%; }
.icon-btn { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center;
  border-radius: var(--rs); color: var(--t3); background: none; border: none; cursor: pointer;
  transition: all var(--ease); }
.icon-btn:hover { background: var(--bg2); color: var(--t1); }
.menu-toggle { display: none; }

.drawer-overlay { position: fixed; inset: 0; background: var(--ov); z-index: 150;
  opacity: 0; visibility: hidden; transition: all .2s ease; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 280px; background: var(--bg);
  z-index: 200; padding: 16px 20px; transform: translateX(100%); transition: transform .25s ease;
  overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
.drawer.open { transform: translateX(0); }
.drawer-close { align-self: flex-end; width: 38px; height: 38px; display: flex;
  align-items: center; justify-content: center; border-radius: var(--rs);
  color: var(--t3); background: none; border: none; cursor: pointer; }
.drawer-close:hover { background: var(--bg2); color: var(--t1); }
.drawer-close svg { width: 20px; height: 20px; }
.drawer a { display: block; padding: 13px 0; font-size: .93rem; font-weight: 500;
  color: var(--t1); border-bottom: 1px solid var(--bd); text-decoration: none; }

.section { padding: 64px 0; }
.section-alt { background: var(--bg2); }
.section-label { display: inline-block; font-size: .7rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 8px; }
.body-lg { font-size: 1.02rem; color: var(--t2); max-width: 580px; line-height: 1.65; }
.section-desc { color: var(--t2); max-width: 500px; line-height: 1.6; font-size: .93rem; }

.order-builder, .builder { background: var(--bg); border: 1px solid var(--bd);
  border-radius: var(--rl); padding: 40px; transition: all var(--ease); }
.order-builder h2, .builder h2 { margin-bottom: 24px; }
.bg-grid, .ob-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.bg-field, .ob-field { display: flex; flex-direction: column; gap: 8px; }
.bg-field.full, .ob-field.full { grid-column: 1 / -1; }
.bg-label, .ob-label { font-size: .74rem; font-weight: 600; color: var(--t3);
  text-transform: uppercase; letter-spacing: .04em; }
.bg-input, .bg-select, .bg-textarea, .bg-url, .ob-input, .ob-select, .ob-textarea {
  width: 100%; padding: 14px 16px; background: var(--bg-in); border: 1px solid var(--bd);
  border-radius: var(--r); color: var(--t2); font-size: .95rem; transition: border var(--ease);
  min-height: 52px; }
.bg-input:focus, .bg-select:focus, .bg-textarea:focus, .bg-url:focus,
.ob-input:focus, .ob-select:focus, .ob-textarea:focus {
  border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.bg-textarea, .ob-textarea { resize: vertical; min-height: 90px; width: 100%; box-sizing: border-box; }
.bg-grid > .bg-field:last-of-type { grid-column: 1 / -1; }

.plat-chips { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; }
@media (max-width: 720px) { .plat-chips { grid-template-columns: repeat(3, 1fr); gap: 6px; } }
@media (max-width: 480px) { .plat-chips { grid-template-columns: repeat(2, 1fr); gap: 6px; } }
.plat-chip { display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 16px 8px; border: 2px solid var(--bd); border-radius: var(--r);
  color: var(--t3); font-size: .78rem; font-weight: 600; cursor: pointer;
  transition: all var(--ease); background: var(--bg-in); text-align: center; min-height: 64px;
  justify-content: center; }
.plat-chip:hover { border-color: var(--t3); color: var(--t2); }
.plat-chip.active { border-color: var(--accent); background: var(--accent-l); color: var(--accent); }
.plat-chip svg { width: 20px; height: 20px; }

/* Platform brand colors for active chip */
.plat-chip[data-platform="youtube"].active { border-color: #FF0000; background: rgba(255,0,0,.08); color: #FF0000; }
.plat-chip[data-platform="instagram"].active { border-color: #C13584; background: rgba(193,53,132,.08); color: #C13584; }
.plat-chip[data-platform="tiktok"].active { border-color: #00f2ea; background: rgba(0,242,234,.08); color: #00f2ea; }
.plat-chip[data-platform="facebook"].active { border-color: #1877F2; background: rgba(24,119,242,.08); color: #1877F2; }
/* Platform brand colors for active chip (light theme default) */
.plat-chip[data-platform="twitter"].active { border-color: #010101; background: rgba(0,0,0,.08); color: #010101; }
.plat-chip[data-platform="threads"].active { border-color: #969696; background: rgba(150,150,150,.08); color: #666; }
.plat-chip[data-platform="telegram"].active { border-color: #26A5E4; background: rgba(38,165,228,.08); color: #26A5E4; }
.plat-chip[data-platform="spotify"].active { border-color: #1DB954; background: rgba(29,185,84,.08); color: #1DB954; }
.plat-chip[data-platform="twitch"].active { border-color: #9146FF; background: rgba(145,70,255,.08); color: #9146FF; }
.plat-chip[data-platform="threads"].active { border-color: #969696; background: rgba(150,150,150,.08); color: #c8c8c8; }

.qty-row { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.qty-wrap { display: flex; align-items: center; gap: 4px; }
.qty-btn {
  width: 52px; height: 52px; display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--bd); background: var(--bg-in); cursor: pointer;
  border-radius: var(--r); color: var(--t2); font-size: 1.5rem; font-weight: 400;
  transition: all .2s ease; line-height: 1; padding: 0; user-select: none;
}
/* /* .qty-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; } */ */
.qty-btn:active { transform: scale(.95); }
.qty-input {
  width: 130px; min-width: 0; text-align: center; font-weight: 700; font-family: var(--font);
  font-size: 1.15rem; appearance: textfield !important;
  -moz-appearance: textfield !important;
  height: 52px;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
.qty-slider { flex: 1; min-width: 100px; accent-color: var(--accent); height: 6px; cursor: pointer; }
.qty-chips { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
@media (max-width: 720px) { .qty-chips { grid-template-columns: repeat(3, 1fr); gap: 8px; } }
@media (max-width: 480px) { .qty-chips { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
.qty-chip {
  padding: 18px 8px; font-size: 1.2rem; font-weight: 800; border: 2px solid var(--bd);
  border-radius: var(--r); color: var(--t2); cursor: pointer; transition: all var(--ease);
  background: var(--bg-in); min-height: 70px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px; line-height: 1;
  text-align: center; width: 100%;
}
.qty-chip:hover { border-color: var(--accent); color: var(--t1); transform: translateY(-1px); }
.qty-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; box-shadow: 0 4px 16px rgba(79,70,229,.3); }
.discount-badge {
  background: #22c55e; color: #fff; font-size: .72rem; font-weight: 800;
  padding: 3px 10px; border-radius: 99px; flex-shrink: 0; letter-spacing: .03em;
}
.qty-chip.active .discount-badge {
  background: rgba(255,255,255,.25); color: #fff;
}
/* Dark theme qty-chip */
html[data-theme="dark"] .qty-chip {
 background: rgba(255,255,255,.04) !important;
  border: 2px solid rgba(255,255,255,.08) !important; color: #8a96a2 !important;
}

html[data-theme="dark"] .qty-chip:hover {
 background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.15) !important; color: #c8d0d8 !important;
}

html[data-theme="dark"] .qty-chip.active {
 background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  border-color: transparent !important; color: #fff !important; box-shadow: 0 4px 16px rgba(37,99,235,.3) !important;
}

/* Light theme qty-chip */
html[data-theme="light"] .qty-chip {
  background: rgba(240,244,255,.7) !important;
  border: 2px solid rgba(37,99,235,.18) !important;
  color: #475569 !important;
}

html[data-theme="light"] .qty-chip:hover {
  background: rgba(240,244,255,.95) !important;
  border-color: rgba(37,99,235,.30) !important;
  color: #1e293b !important;
}

html[data-theme="light"] .qty-chip.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 4px 16px rgba(37,99,235,.25) !important;
}

.discount-badge {
 background: #16a34a !important; 
}

.qty-msg, .qty-error { color: #ef4444; font-size: .75rem; min-height: 1.1em; margin-top: 4px; }
.qty-msg.show, .qty-error.show { display: block; }

.price-bar, .price-display { margin-top: 18px; padding: 20px 24px; background: var(--bg2);
  border-radius: var(--r); display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px; }
.price-name, .price-label { font-size: .8rem; color: var(--t3); }
.price-rate, .price-unit { font-size: .72rem; color: var(--t3); opacity: .7; }
.price-total, .price-value { font-size: 1.55rem; font-weight: 700; color: var(--t1); font-family: var(--mono); }

.plats-grid, .platforms-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(120px, 1fr)); gap: 10px; margin-top: 24px; }
.plat-card, .platform-card { background: var(--bg); border: 1px solid var(--bd);
  border-radius: var(--r); padding: 20px 12px; text-align: center; transition: all var(--ease); }
.plat-card:hover, .platform-card:hover { border-color: var(--accent); box-shadow: 0 3px 12px rgba(0,0,0,.06); }
.plat-card svg, .platform-card svg { width: 28px; height: 28px; margin: 0 auto 8px;
  color: var(--t3); transition: color var(--ease); }
.plat-card:hover svg, .platform-card:hover svg { color: var(--accent); }
.plat-card h3, .platform-card h3 { font-size: .82rem; }
.plat-card p { font-size: .72rem; color: var(--t3); margin-top: 3px; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
.step { padding: 24px 20px; border: 1px solid var(--bd); border-radius: var(--r); transition: border var(--ease); }
.step:hover { border-color: var(--accent); }
.step-n { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px;
  border-radius: 50%; background: var(--accent); color: #fff; font-size: .8rem; font-weight: 700; margin-bottom: 12px; }
.step p { font-size: .85rem; color: var(--t2); margin-top: 6px; line-height: 1.55; }

.why-grid, .whyGrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 32px; max-width: none !important; margin-left: auto !important; margin-right: auto !important; }
.why-card { padding: 24px 20px; border: 1px solid var(--bd); border-radius: 16px; transition: all .25s ease; background: var(--bg); }
.why-card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,.08); }
.why-card .ico { width: 36px; height: 36px; border-radius: var(--rs); background: var(--accent-l);
  color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.why-card .ico svg { width: 18px; height: 18px; }
.why-card p { font-size: .83rem; color: var(--t2); margin-top: 5px; line-height: 1.55; }

.faq-list { max-width: 660px; margin: 24px 0 0; }
.faq-item { border-bottom: 1px solid var(--bd); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 16px 0; font-size: .93rem; font-weight: 600; color: var(--t1);
  min-height: 43px; transition: color var(--ease); width: 100%; background: none;
  border: none; cursor: pointer; text-align: left; }
.faq-q:hover { color: var(--accent); }
.faq-q svg { width: 16px; height: 16px; color: var(--t3); transition: transform .3s ease; flex-shrink: 0; }
.faq-q svg line { transition: opacity .3s ease; }
.faq.open .faq-q svg line:nth-child(1) { opacity: 0; }
.faq-a { padding-bottom: 16px; font-size: .85rem; color: var(--t2); line-height: 1.65; }

/* ═══════════════════════════
   FOOTER
   ═══════════════════════════ */
.footer { border-top: 1px solid var(--bd); padding: 48px 0 28px; }
.f-grid, .footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px 24px;
}
.f-brand { padding-top: 0; }
.f-brand .logo { margin-bottom: 10px; }
.f-brand p { color: var(--t2); font-size: .82rem; margin-top: 0; max-width: 260px; line-height: 1.55; }
.f-so { display: flex; gap: 10px; margin-top: 14px; }
.f-so .letter-icon {
  width: 30px; height: 30px; font-size: .7rem;
  display: inline-flex; align-items: center; justify-content: center;
}
.f-title { font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--t1); margin-bottom: 14px; }
.f-list { list-style: none; padding: 0; margin: 0; }
.f-list li { margin-bottom: 8px; }
.f-list a { font-size: .85rem; color: var(--t2); text-decoration: none;
  transition: color .2s ease; }
.f-list a:hover { color: var(--accent); }

.f-bottom {
  margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--bd);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .75rem; color: var(--t3);
}

/* Tablet */
@media (max-width: 820px) {
  .f-grid, .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }
  .f-brand { grid-column: 1 / -1; }
}
/* Phone */
@media (max-width: 500px) {
  .f-grid, .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .f-brand { grid-column: 1; }
}

/* Legacy aliases */
.footer h4 { font-size: .75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .07em; color: var(--t1); margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: .85rem; color: var(--t2); text-decoration: none; }
.footer ul a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 14px; }
.social-links a { color: var(--t3); text-decoration: none; }
.social-links a:hover { color: var(--t1); }
.social-links svg, .f-socials svg { width: 16px; height: 16px; }
.footer-bottom { margin-top: 40px; padding-top: 20px;
  border-top: 1px solid var(--bd); font-size: .75rem; color: var(--t3);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; }

@media (max-width: 960px) {
  .nav, .nav-links { display: none; }
  .menu-toggle, .icon-btn.menu-toggle { display: flex; }
  .bg-grid, .ob-grid { grid-template-columns: 1fr; }
  .steps, .stp { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .wgr { grid-template-columns: repeat(2, 1fr); }
  .order-builder, .builder, .bld { padding: 32px 24px; }
  .section { padding: 56px 0; }
  .plat-chips { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 720px) {
  .steps, .stp { grid-template-columns: 1fr; gap: 12px; }
  .why-grid, .wgr { grid-template-columns: 1fr; }
  .order-builder, .builder, .bld { padding: 24px 20px; }
  .section { padding: 44px 0; }
  .hero { padding: 40px 0 20px; }
  .plats-grid, .platforms-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); }
}
@media (max-width: 480px) {
  .price-bar, .price-display, .prb { flex-direction: column; align-items: flex-start; }
  .plats-grid, .platforms-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .pcd, .plat-card, .platform-card { padding: 16px 8px; }
  .why-grid, .wgr { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
  .wrap, .container { padding: 0 16px; }
}

/* ═══════════════════════════
   LETTER ICONS (replaces SVG platform icons)
   ═══════════════════════════ */
.letter-icon {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 6px; background: var(--bg-in); border: 1px solid var(--bd);
  color: var(--t1); font-weight: 700; font-family: var(--font);
}
/* Builder chips: small */
.pch .letter-icon, .plat-chips .letter-icon {
  width: 34px; height: 34px; font-size: .92rem; border-radius: 7px;
}
/* Platform grid cards: medium */
.pcd .letter-icon, .pcd .letter-icon, .platforms-grid .letter-icon, .plats-grid .letter-icon,
.platform-card .letter-icon, .plat-card .letter-icon {
  width: 32px; height: 32px; font-size: .95rem; border-radius: 7px; margin: 0 auto 8px;
}
/* Footer social links: extra small */
.fso .letter-icon, .f-socials .letter-icon {
  width: 20px; height: 20px; font-size: .65rem; border-radius: 4px;
}


/* ═══════════════════════════
   LIQUID GLASS — Apple style
   ═══════════════════════════ */

/* — Background orbs (gradient-only, no blur filter for smoothness) — */
/* Dark theme orbs */
html:not([data-theme="light"]) body::before {
  content: ''; position: fixed;
  width: 1200px; height: 1400px;
  pointer-events: none; z-index: 0;
  top: -10%; left: -400px;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(96,165,250,.04) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 55%, rgba(37,99,235,.03) 0%, transparent 45%);
}

html:not([data-theme="light"]) body::after {
  content: ''; position: fixed;
  width: 1000px; height: 1200px;
  pointer-events: none; z-index: 0;
  top: -5%; right: -350px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(59,130,246,.04) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, rgba(96,165,250,.02) 0%, transparent 40%);
}

/* Light theme orbs */
html[data-theme="light"] body::before {
  content: ''; position: fixed;
  width: 1200px; height: 1400px;
  pointer-events: none; z-index: 0;
  top: -10%; left: -400px;
  background:
    radial-gradient(ellipse at 50% 45%, rgba(96,165,250,.08) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 55%, rgba(37,99,235,.06) 0%, transparent 45%);
}

html[data-theme="light"] body::after {
  content: ''; position: fixed;
  width: 1000px; height: 1200px;
  pointer-events: none; z-index: 0;
  top: -5%; right: -350px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(59,130,246,.08) 0%, transparent 50%),
    radial-gradient(ellipse at 40% 60%, rgba(96,165,250,.06) 0%, transparent 40%);
}


/* — Builder (order form) — */
html[data-theme="dark"] .bld,
html[data-theme="dark"] .builder {

  position: relative; z-index: 1;
  background: linear-gradient(160deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(40px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(40px) saturate(1.6) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow:
    0 12px 48px rgba(0,0,0,.35),
    inset 0 1px 0 rgba(255,255,255,.08),
    inset 0 0 1px rgba(255,255,255,.04) !important;
  border-radius: 20px !important;

}

html[data-theme="light"] .bld,
html[data-theme="light"] .builder {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%) !important;
  backdrop-filter: blur(20px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.4) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
  box-shadow:
    0 8px 32px rgba(37,99,235,.12),
    inset 0 1px 0 rgba(255,255,255,.8) !important;
  border-radius: 20px !important;
}


/* — Platform chips in builder — */
html[data-theme="dark"] .pc {

  background: rgba(255,255,255,.04) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 12px !important;
  color: #8a96a2 !important;
  transition: all .3s ease;

}

html[data-theme="dark"] .pc:hover {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.12) !important;
  color: #c8d0d8 !important;

}

html[data-theme="dark"] .pc.on {

  background: linear-gradient(135deg, rgba(59,130,246,.15) 0%, rgba(37,99,235,.1) 100%) !important;
  border-color: rgba(59,130,246,.35) !important;
  color: #93c5fd !important;
  box-shadow: 0 2px 12px rgba(59,130,246,.15);

}

html[data-theme="dark"] .letter-icon {

  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  color: #d0d5dc !important;

}

html[data-theme="dark"] .pc.on .letter-icon {

  background: rgba(59,130,246,.15) !important;
  border-color: rgba(59,130,246,.3) !important;
  color: #93c5fd !important;

}

/* Light theme platform chips */
html[data-theme="light"] .pc {
  background: rgba(240,244,255,.6) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
  border-radius: 12px !important;
  color: #475569 !important;
  transition: all .3s ease;
}

html[data-theme="light"] .pc:hover {
  background: rgba(240,244,255,.9) !important;
  border-color: rgba(37,99,235,.25) !important;
  color: #1e293b !important;
}

html[data-theme="light"] .pc.on {
  background: linear-gradient(135deg, rgba(37,99,235,.15) 0%, rgba(59,130,246,.12) 100%) !important;
  border-color: rgba(37,99,235,.45) !important;
  color: #1e40af !important;
  box-shadow: 0 2px 12px rgba(37,99,235,.20);
}

html[data-theme="light"] .letter-icon {
  background: rgba(240,244,255,.7) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
  color: #334155 !important;
}

html[data-theme="light"] .pc.on .letter-icon {
  background: rgba(37,99,235,.20) !important;
  border-color: rgba(37,99,235,.45) !important;
  color: #1e40af !important;
}


/* — Quantity chips — */
html[data-theme="dark"] .qh {

  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  color: #8a96a2 !important;
  border-radius: 99px !important;
  transition: all .3s ease;

}

html[data-theme="dark"] .qh:hover {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.15) !important;

}

html[data-theme="dark"] .qh.on {

  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  border-color: transparent !important;
  color: #fff !important;
  box-shadow: 0 2px 12px rgba(37,99,235,.3);

}

html[data-theme="light"] .qh {
  background: rgba(240,244,255,.7) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
  color: #475569 !important;
  border-radius: 99px !important;
  transition: all .3s ease;
}

html[data-theme="light"] .qh:hover {
  background: rgba(240,244,255,.95) !important;
  border-color: rgba(37,99,235,.30) !important;
  color: #475569 !important;
}

html[data-theme="light"] .qh.on {
background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
border-color: transparent !important;
color: #0a1020 !important;
box-shadow: 0 2px 12px rgba(37,99,235,.25);
}
html[data-theme="dark"] .bi,
html[data-theme="dark"] .bs,
html[data-theme="dark"] .bt {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}

html[data-theme="dark"] .bi:focus,
html[data-theme="dark"] .bs:focus,
html[data-theme="dark"] .bt:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}

/* Light theme form inputs */
html[data-theme="light"] .bi,
html[data-theme="light"] .bs,
html[data-theme="light"] .bt {
  background: rgba(255,255,255,.7) !important;
  border: 1px solid rgba(37,99,235,.20) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #1e293b !important;
}

html[data-theme="light"] .bi:focus,
html[data-theme="light"] .bs:focus,
html[data-theme="light"] .bt:focus {
  background: #ffffff !important;
  border-color: rgba(37,99,235,.45) !important;
  box-shadow: 0 0 0 3px rgba(37,99,235,.12) !important;
}

.bt {
 resize: none !important; 
}


/* — Price bar — */
html[data-theme="dark"] .prb {

  background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(37,99,235,.04)) !important;
  border: 1px solid rgba(59,130,246,.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 16px !important;

}

html[data-theme="dark"] .prt {
 color: #93c5fd !important;
}

/* Light theme price bar */
html[data-theme="light"] .prb {
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(59,130,246,.05)) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 16px !important;
}

html[data-theme="light"] .prt {
  color: #1e40af !important;
}


/* — Platform grid cards — */
html[data-theme="dark"] .pcd {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px !important;
  transition: all .3s ease;

}

html[data-theme="dark"] .pcd:hover {

  background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%) !important;
  border-color: rgba(59,130,246,.2) !important;
  box-shadow: 0 4px 24px rgba(59,130,246,.1) !important;
  transform: translateY(-2px);

}

/* Light theme platform cards */
html[data-theme="light"] .pcd,
html[data-theme="light"] .plat-card,
html[data-theme="light"] .platform-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
  border-radius: 16px !important;
  transition: all .3s ease;
}

html[data-theme="light"] .pcd:hover,
html[data-theme="light"] .plat-card:hover,
html[data-theme="light"] .platform-card:hover {
  background: linear-gradient(160deg, #ffffff 0%, #eff6ff 100%) !important;
  border-color: rgba(37,99,235,.30) !important;
  box-shadow: 0 6px 20px rgba(37,99,235,.12) !important;
  transform: translateY(-2px);
}


/* — Steps — */
html[data-theme="dark"] .st {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px !important;

}

html[data-theme="light"] .st,
html[data-theme="light"] .step {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
  border-radius: 16px !important;
}


/* — Why cards — */
html[data-theme="dark"] .wc {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px !important;

}

html[data-theme="light"] .wc,
html[data-theme="light"] .why-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
  border-radius: 16px !important;
}


/* — Step number circles — */
.sn {

  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  box-shadow: 0 3px 12px rgba(37,99,235,.3);

}


/* — Header — */
.hdr {

  background: rgba(9,11,16,.8) !important;
  backdrop-filter: blur(40px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(40px) saturate(1.5) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;

}


/* — Primary button — */
.bp {

  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 20px rgba(37,99,235,.3) !important;

}

.bp:hover {

  background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
  box-shadow: 0 6px 28px rgba(37,99,235,.4) !important;

}


/* — Language dropdown — */
.ld {

  background: rgba(9,11,16,.9) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 16px !important;

}


/* — Drawer — */
.drw {

  background: rgba(9,11,16,.92) !important;
  backdrop-filter: blur(40px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(40px) saturate(1.5) !important;

}


/* — Alt sections — */
html[data-theme="dark"] .sep-alt {
 background: rgba(255,255,255,.01) !important;
}


/* — Drawer overlay — */
html[data-theme="dark"] .dov {
 background: rgba(2,4,8,.5) !important;
}


/* — Notes counter — */
html[data-theme="dark"] .notes-counter {
 color: rgba(176,184,196,.5) !important;
}


/* — Long-form class aliases (agent-generated pages) — DARK THEME ONLY */
html[data-theme="dark"] .builder {

  position: relative; z-index: 1;
  background: linear-gradient(160deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(40px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(40px) saturate(1.6) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 12px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08) !important;

}

html[data-theme="dark"] .order-builder {

  position: relative; z-index: 1;
  background: linear-gradient(160deg, rgba(255,255,255,.07) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(40px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(40px) saturate(1.6) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  box-shadow: 0 12px 48px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.08) !important;

}

html[data-theme="dark"] .plat-chip {

  background: rgba(255,255,255,.04) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 12px !important;
  color: #8a96a2 !important;
  transition: all .3s ease;

}

html[data-theme="dark"] .plat-chip:hover {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(255,255,255,.12) !important;
  color: #c8d0d8 !important;

}

html[data-theme="dark"] .plat-chip.active {

  background: linear-gradient(135deg, rgba(59,130,246,.15) 0%, rgba(37,99,235,.1) 100%);
  border-color: rgba(59,130,246,.35);
  color: #93c5fd;
  box-shadow: 0 2px 12px rgba(59,130,246,.15);

}

html[data-theme="dark"] .plat-chip[data-platform="youtube"].active {
 background: rgba(255,0,0,.12) !important; border-color: rgba(255,0,0,.5) !important; color: #FF0000 !important;
}

html[data-theme="dark"] .plat-chip[data-platform="instagram"].active {
 background: rgba(193,53,132,.12) !important; border-color: rgba(193,53,132,.5) !important; color: #C13584 !important;
}

html[data-theme="dark"] .plat-chip[data-platform="tiktok"].active {
 background: rgba(0,242,234,.12) !important; border-color: rgba(0,242,234,.5) !important; color: #00f2ea !important;
}

html[data-theme="dark"] .plat-chip[data-platform="facebook"].active {
 background: rgba(24,119,242,.12) !important; border-color: rgba(24,119,242,.5) !important; color: #1877F2 !important;
}

html[data-theme="dark"] .plat-chip[data-platform="twitter"].active {
 background: rgba(255,255,255,.08) !important; border-color: rgba(255,255,255,.4) !important; color: #fff !important;
}

html[data-theme="dark"] .plat-chip[data-platform="telegram"].active {
 background: rgba(38,165,228,.12) !important; border-color: rgba(38,165,228,.5) !important; color: #26A5E4 !important;
}

html[data-theme="dark"] .plat-chip[data-platform="spotify"].active {
 background: rgba(29,185,84,.12) !important; border-color: rgba(29,185,84,.5) !important; color: #1DB954 !important;
}

html[data-theme="dark"] .plat-chip[data-platform="twitch"].active {
 background: rgba(145,70,255,.12) !important; border-color: rgba(145,70,255,.5) !important; color: #9146FF !important;
}

html[data-theme="dark"] .plat-chip[data-platform="threads"].active {
 background: rgba(200,200,200,.08) !important; border-color: rgba(200,200,200,.3) !important; color: #c8c8c8 !important;
}

html[data-theme="dark"] .plat-chip[data-platform="discord"].active {
 background: rgba(88,101,242,.12) !important; border-color: rgba(88,101,242,.5) !important; color: #5865F2 !important;
}

html[data-theme="dark"] .plat-chip.active .letter-icon {

  background: rgba(59,130,246,.15) !important;
  border-color: rgba(59,130,246,.3) !important;
  color: #93c5fd !important;

}

html[data-theme="dark"] .bg-input {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}
html[data-theme="dark"] .bg-select {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}
html[data-theme="dark"] .bg-textarea {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}
html[data-theme="dark"] .bg-url {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}
html[data-theme="dark"] .ob-input {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}
html[data-theme="dark"] .ob-select {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}
html[data-theme="dark"] .ob-textarea {

  background: rgba(255,255,255,.05) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 12px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  color: #e0e5ec !important;

}

html[data-theme="dark"] .bg-input:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}
html[data-theme="dark"] .bg-select:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}
html[data-theme="dark"] .bg-textarea:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}
html[data-theme="dark"] .bg-url:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}
html[data-theme="dark"] .ob-input:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}
html[data-theme="dark"] .ob-select:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}
html[data-theme="dark"] .ob-textarea:focus {

  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.35) !important;
  box-shadow: 0 0 0 3px rgba(59,130,246,.15) !important;

}

html[data-theme="dark"] .bg-textarea {
 resize: none !important;
}
html[data-theme="dark"] .ob-textarea {
 resize: none !important;
}

html[data-theme="dark"] .price-bar {

  background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(37,99,235,.04)) !important;
  border: 1px solid rgba(59,130,246,.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 16px !important;

}
html[data-theme="dark"] .price-display {

  background: linear-gradient(135deg, rgba(59,130,246,.08), rgba(37,99,235,.04)) !important;
  border: 1px solid rgba(59,130,246,.12) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-radius: 16px !important;

}

html[data-theme="dark"] .price-total {
 color: #93c5fd !important;
}
html[data-theme="dark"] .price-value {
 color: #93c5fd !important;
}
html[data-theme="dark"] .pricing {
 color: #93c5fd !important;
}

html[data-theme="dark"] .plat-card {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px !important;
  transition: all .3s ease;

}
html[data-theme="dark"] .platform-card {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px !important;
  transition: all .3s ease;

}

html[data-theme="dark"] .plat-card:hover {

  background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%) !important;
  border-color: rgba(59,130,246,.2) !important;
  box-shadow: 0 4px 24px rgba(59,130,246,.1) !important;
  transform: translateY(-2px);

}
html[data-theme="dark"] .platform-card:hover {

  background: linear-gradient(160deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,.03) 100%) !important;
  border-color: rgba(59,130,246,.2) !important;
  box-shadow: 0 4px 24px rgba(59,130,246,.1) !important;
  transform: translateY(-2px);

}

html[data-theme="dark"] .step {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px !important;

}

html[data-theme="dark"] .why-card {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 16px !important;

}

html[data-theme="dark"] .step-n {

  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  box-shadow: 0 3px 12px rgba(37,99,235,.3);

}

html[data-theme="dark"] .header {

  background: rgba(9,11,16,.8) !important;
  backdrop-filter: blur(40px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(40px) saturate(1.5) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;

}

html[data-theme="dark"] .btn-primary {

  background: linear-gradient(135deg, var(--accent), var(--accent-h)) !important;
  border: 1px solid rgba(255,255,255,.10) !important;
  border-radius: 14px !important;
  box-shadow: 0 10px 26px rgba(37,99,235,.18) !important;

}

html[data-theme="dark"] .btn-primary:hover {

  background: linear-gradient(135deg, var(--accent-h), #60a5fa) !important;
  box-shadow: 0 14px 30px rgba(37,99,235,.22) !important;

}

html[data-theme="dark"] .lang-drop {

  background: rgba(9,11,16,.9) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 16px !important;

}

html[data-theme="dark"] .drawer {

  background: rgba(9,11,16,.92) !important;
  backdrop-filter: blur(40px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(40px) saturate(1.5) !important;

}

html[data-theme="dark"] .drawer-overlay {

  background: rgba(2,4,8,.5) !important;

}

html[data-theme="dark"] .section-alt {

  background: rgba(255,255,255,.01) !important;

}

html[data-theme="dark"] .notes-counter {
 color: rgba(176,184,196,.5) !important;
}


/* ═══════════════════════════
   REVIEWS
   ═══════════════════════════ */
.reviews-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px; margin-top: 28px;
}
.review-card {
  padding: 24px; border: 1px solid var(--bd); border-radius: 16px;
  background: var(--bg); transition: all .25s ease;
}
.review-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.review-stars { font-size: 1.1rem; color: #f59e0b; letter-spacing: 2px; margin-bottom: 12px; }
.review-text { font-size: .9rem; color: var(--t2); line-height: 1.6; margin-bottom: 16px; min-height: 60px; }
.review-author { display: flex; flex-direction: column; gap: 2px; }
.review-name { font-size: .85rem; font-weight: 600; color: var(--t1); }
.review-role { font-size: .75rem; color: var(--t3); }

@media (max-width: 960px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

html[data-theme="dark"] .review-card {

  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255,255,255,.06) !important;

}

/* ═══════════════════════════
   REVIEWS TRUST (Wavy divider design)
   ═══════════════════════════ */
.reviews-trust-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  margin-top: 50px;
  position: relative;
}

.trust-review {
  position: relative;
  padding: 24px 40px 24px 40px;
}

/* Wavy divider on the right side of each review */
.trust-review::after {
  content: '';
  position: absolute;
  top: 0;
  right: -32px;
  width: 64px;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='300' viewBox='0 0 64 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 0 C45 37.5 19 62.5 32 100 C45 137.5 19 162.5 32 200 C45 237.5 19 262.5 32 300' stroke='rgba(37,99,235,0.25)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: repeat-y;
  background-size: 64px 300px;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}

html[data-theme="light"] .trust-review::after {
  background-image: url("data:image/svg+xml,%3Csvg width='64' height='300' viewBox='0 0 64 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M32 0 C45 37.5 19 62.5 32 100 C45 137.5 19 162.5 32 200 C45 237.5 19 262.5 32 300' stroke='rgba(37,99,235,0.35)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
}

.trust-review:hover::after {
  opacity: 1;
}

/* Decorative wave accent at top of each review */
.trust-review::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='12' viewBox='0 0 48 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 6 Q12 0 24 6 Q36 12 48 6' stroke='rgba(37,99,235,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.trust-review:hover::before {
  opacity: 1;
  width: 56px;
}

.trust-quote {
  margin-bottom: 16px;
}

.quote-mark {
  width: 32px;
  height: 32px;
  color: rgba(37, 99, 235, 0.3);
  transition: color 0.3s ease;
}

html[data-theme="dark"] .quote-mark {
  color: rgba(96, 165, 250, 0.25);
}

.trust-review:hover .quote-mark {
  color: rgba(37, 99, 235, 0.5);
}

html[data-theme="dark"] .trust-review:hover .quote-mark {
  color: rgba(96, 165, 250, 0.4);
}

.trust-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t1);
  margin-bottom: 20px;
  min-height: 64px;
  font-weight: 400;
}

html[data-theme="dark"] .trust-text {
  color: #e2e8f0 !important;
}

.trust-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Unique gradient for each avatar */
.trust-review:nth-child(1) .trust-avatar {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.trust-review:nth-child(2) .trust-avatar {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.trust-review:nth-child(3) .trust-avatar {
  background: linear-gradient(135deg, #ec4899, #f472b6);
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}

.trust-review:nth-child(4) .trust-avatar {
  background: linear-gradient(135deg, #10b981, #34d399);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.trust-review:nth-child(5) .trust-avatar {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.trust-review:nth-child(6) .trust-avatar {
  background: linear-gradient(135deg, #06b6d4, #22d3ee);
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

html[data-theme="dark"] .trust-review:nth-child(1) .trust-avatar {
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.5);
}

html[data-theme="dark"] .trust-review:nth-child(2) .trust-avatar {
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.5);
}

html[data-theme="dark"] .trust-review:nth-child(3) .trust-avatar {
  box-shadow: 0 4px 12px rgba(236, 72, 153, 0.5);
}

html[data-theme="dark"] .trust-review:nth-child(4) .trust-avatar {
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.5);
}

html[data-theme="dark"] .trust-review:nth-child(5) .trust-avatar {
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

html[data-theme="dark"] .trust-review:nth-child(6) .trust-avatar {
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.5);
}

.trust-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.trust-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--t1);
}

.trust-role {
  font-size: 0.78rem;
  color: var(--t3);
}

.trust-stars {
  font-size: 1rem;
  color: #fbbf24;
  letter-spacing: 2px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 960px) {
  .reviews-trust-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .reviews-trust-flow {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .trust-review:not(:last-child)::after {
    display: none;
  }
  .trust-review::before {
    width: 40px;
    top: -6px;
  }
  .trust-review {
    padding: 24px 0;
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  }
  html[data-theme="light"] .trust-review {
    border-bottom-color: rgba(37, 99, 235, 0.15);
  }
  .trust-review:last-child {
    border-bottom: none;
  }
  .trust-text {
    min-height: auto;
  }
}

/* Dark theme specific */
html[data-theme="dark"] .trust-name {
  color: #f1f5f9 !important;
}

html[data-theme="dark"] .trust-role {
  color: #64748b !important;
}


/* — Qty chips responsive: 5 cols on wide, 3 on mid, 2 on narrow — */
@media (max-width: 720px) {
  .qty-chips { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .qty-chips { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════
   SUBSCRIPTION
   ═══════════════════════════ */
.sub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 32px;
}
.sub-card {
  position: relative; display: flex; flex-direction: column;
  padding: 32px 24px; border: 1px solid var(--bd);
  border-radius: 20px; background: var(--bg); text-align: center;
  transition: all .3s ease;
}
.sub-card:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,.08); }
.sub-card.popular {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-l) 0%, var(--bg) 60%);
  box-shadow: 0 4px 20px rgba(79,70,229,.12);
}
.sub-popular {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: .7rem; font-weight: 700;
  padding: 4px 16px; border-radius: 99px; text-transform: uppercase; letter-spacing: .06em;
  white-space: nowrap;
}
.sub-badge {
  display: inline-block; font-size: .85rem; font-weight: 700; color: var(--t1);
  margin-bottom: 8px;
}
.sub-price {
  font-size: 2.2rem; font-weight: 800; color: var(--t1);
  font-family: var(--head); margin: 12px 0 24px;
}
.sub-price span { font-size: .9rem; font-weight: 500; color: var(--t3); }
.sub-features {
  flex: 1; list-style: none; padding: 0; margin: 0 0 28px; text-align: left;
}
.sub-features li {
  padding: 8px 0; font-size: .88rem; color: var(--t2);
  border-bottom: 1px solid var(--bd);
}
.sub-features li:last-child { border-bottom: none; }
.sub-features li::before { content: '✓'; color: var(--accent); font-weight: 700; margin-right: 8px; }
.btn-subscribe {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 11px 28px; border-radius: var(--r); font-weight: 600; font-size: .88rem;
  transition: all var(--ease); white-space: nowrap; min-height: 44px; width: 100%;
  border: 1px solid var(--accent); color: var(--accent); background: transparent;
  margin-top: auto;
}
.btn-subscribe:hover { background: var(--accent); color: #fff; }
.btn-subscribe.btn-popular {
  background: var(--accent); color: #fff;
}
.btn-subscribe.btn-popular:hover {
  background: var(--accent-h); transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(79,70,229,.25);
}

/* Custom subscription form */
.sub-custom {
  margin-top: 64px; padding: 40px; border: 1px solid var(--bd);
  border-radius: 20px; background: var(--bg2);
}
.sub-custom h3 { color: var(--t1); }
.sub-custom > p { color: var(--t2); margin-bottom: 28px; font-size: .92rem; }
.sub-form { display: flex; flex-direction: column; gap: 18px; }
.sub-form-row { display: flex; gap: 18px; }
.sub-form-row:has(.sub-field.full) { display: block; }
.sub-field { flex: 1; display: flex; flex-direction: column; gap: 6px; }
.sub-field.full { display: block; }
.sub-field label { font-size: .75rem; font-weight: 600; color: var(--t3); text-transform: uppercase; letter-spacing: .04em; }
.sub-input, .sub-select {
  padding: 10px 13px; background: var(--bg-in); border: 1px solid var(--bd);
  border-radius: var(--rs); color: var(--t2); font-size: .9rem;
  transition: border var(--ease); min-height: 44px; width: 100%;
}
.sub-select { cursor: pointer; }
.sub-input:focus, .sub-select:focus {
  border-color: var(--accent); outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,.1);
}
.sub-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.sub-chip {
  padding: 6px 14px; font-size: .78rem; font-weight: 600;
  border: 1px solid var(--bd); border-radius: 99px; color: var(--t3);
  cursor: pointer; transition: all var(--ease); background: var(--bg-in);
  min-height: 34px; display: inline-flex; align-items: center;
}
.sub-chip:hover { border-color: var(--accent); color: var(--accent); }
.sub-chip.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.sub-textarea {
  width: 100%; padding: 10px 13px; background: var(--bg-in); border: 1px solid var(--bd);
  border-radius: var(--rs); color: var(--t2); font-size: .9rem;
  transition: border var(--ease); min-height: 80px; resize: vertical;
}
.sub-textarea:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(79,70,229,.1); }
.sub-form-msg { font-size: .88rem; min-height: 1.4em; text-align: center; }

/* ═══════════════════════════
   SUBSCRIPTION — Stats Bar
   ═══════════════════════════ */
.sub-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  margin: 16px 0 48px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800;
  color: var(--accent); font-family: var(--head);
}
.stat-label { font-size: .78rem; color: var(--t3); margin-top: 2px; }

/* ═══════════════════════════
   SUBSCRIPTION — Platform Icons
   ═══════════════════════════ */
.sub-platforms {
  text-align: center; margin: 0 0 56px;
}
.sub-platforms p { font-size: .82rem; color: var(--t3); margin-bottom: 16px; }
.plat-icons { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.plat-icon {
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  border-radius: 12px; border: 1px solid var(--bd); background: var(--bg2);
  transition: all .25s ease; color: var(--t3); font-size: .75rem;
}
.plat-icon:hover { border-color: var(--accent); transform: translateY(-2px); color: var(--accent); }
.plat-icon svg { width: 22px; height: 22px; }

/* ═══════════════════════════
   SUBSCRIPTION — Feature Grid
   ═══════════════════════════ */
.sub-features-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  padding: 48px 0 0; margin-bottom: 48px;
}
.sub-feature-card {
  padding: 24px; border: 1px solid var(--bd); border-radius: 16px;
  background: var(--bg); transition: all .3s ease;
}
.sub-feature-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.sub-feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--accent-l); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.sub-feature-icon svg { width: 20px; height: 20px; }
.sub-feature-card h4 { font-size: .95rem; font-weight: 600; color: var(--t1); margin-bottom: 6px; font-family: var(--head); }
.sub-feature-card p { font-size: .82rem; color: var(--t2); line-height: 1.55; }

@media (max-width: 820px) {
  .sub-features-grid { grid-template-columns: 1fr; }
  .sub-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .sub-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .plat-icon { width: 40px; height: 40px; }
}

/* Light theme feature cards */
html[data-theme="light"] .sub-feature-card {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
}

html[data-theme="light"] .plat-icon {
  background: rgba(240,244,255,.6) !important;
  border-color: rgba(37,99,235,.15) !important;
}

html[data-theme="light"] .plat-icon:hover {
  background: rgba(240,244,255,.95) !important;
  border-color: rgba(37,99,235,.35) !important;
  color: #1e40af !important;
}

/* Dark theme overrides */
html[data-theme="dark"] .sub-feature-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}

html[data-theme="dark"] .plat-icon {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.06) !important;
}

html[data-theme="dark"] .plat-icon:hover {
  background: rgba(255,255,255,.07) !important;
  border-color: rgba(59,130,246,.3) !important;
  color: #93c5fd !important;
}


@media (max-width: 820px) {
  .sub-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .sub-form-row { flex-direction: column; }
}
@media (max-width: 500px) {
  .sub-custom { padding: 24px 20px; }
}

/* Dark theme subscription cards */
html[data-theme="dark"] .sub-card {
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}

html[data-theme="dark"] .sub-card.popular {
  border-color: rgba(59,130,246,.3) !important;
  box-shadow: 0 4px 20px rgba(59,130,246,.15);
}

html[data-theme="dark"] .sub-popular {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
}

html[data-theme="dark"] .sub-custom {
  background: linear-gradient(160deg, rgba(255,255,255,.05) 0%, rgba(255,255,255,.02) 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
}

html[data-theme="dark"] .sub-chip {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  color: #8a96a2 !important;
}

html[data-theme="dark"] .sub-chip.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  border-color: transparent !important;
  color: #fff !important;
}

/* Light theme subscription cards */
html[data-theme="light"] .sub-card {
  background: linear-gradient(160deg, #ffffff 0%, #f0f4ff 100%) !important;
  backdrop-filter: blur(30px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(30px) saturate(1.4) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
}

html[data-theme="light"] .sub-card.popular {
  border-color: rgba(37,99,235,.45) !important;
  box-shadow: 0 8px 28px rgba(37,99,235,.18);
}

html[data-theme="light"] .sub-popular {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
}

html[data-theme="light"] .sub-custom {
  background: linear-gradient(160deg, #ffffff 0%, #f8fafc 100%) !important;
  backdrop-filter: blur(20px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(20px) saturate(1.3) !important;
  border: 1px solid rgba(37,99,235,.15) !important;
}

html[data-theme="light"] .sub-chip {
  background: rgba(240,244,255,.7) !important;
  border: 1px solid rgba(37,99,235,.18) !important;
  color: #475569 !important;
}

html[data-theme="light"] .sub-chip.active {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  border-color: transparent !important;
  color: #fff !important;
}


/* ═══════════════════════════
   MOBILE OPTIMIZATION
   ═══════════════════════════ */

/* Header for mobile */
@media (max-width: 768px) {
  .header-actions .btn {
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .header-actions .btn-sm-hide {
    display: none;
  }

  .lang-btn {
    min-width: 38px;
    height: 36px;
    padding: 0 8px;
    font-size: 0.7rem;
  }

  .theme-btn {
    width: 36px;
    height: 36px;
  }

  .theme-btn svg {
    width: 16px;
    height: 16px;
  }

  .logo span {
    display: none;
  }
}

/* Large phones (iPhone 14 Pro Max, etc.) */
@media (max-width: 428px) {
  .wrap, .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
  }

  .platform-header {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .platform-icon {
    width: 64px;
    height: 64px;
  }

  .platform-title h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
  }

  .platform-title p {
    margin: 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .why-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .why-card {
    padding: 20px 16px;
  }

  /* Order builder mobile */
  .bgr {
    grid-template-columns: 1fr;
  }

  .plat-chips {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .qty-chips {
    grid-template-columns: repeat(2, 1fr);
  }

  .qty-input {
    width: 100px;
    font-size: 1rem;
  }

  .price-bar {
    padding: 16px;
  }

  .price-total {
    font-size: 1.3rem;
  }

  /* Footer mobile */
  .f-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .f-brand {
    grid-column: 1;
  }
}

/* Small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
  .wrap, .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero-title {
    font-size: 1.4rem;
  }

  .btn {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .plat-chips {
    grid-template-columns: repeat(2, 1fr);
  }

  .sub-grid {
    grid-template-columns: 1fr;
  }

  .sub-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-num {
    font-size: 1.2rem;
  }
}

/* Tablets (iPad portrait) */
@media (min-width: 769px) and (max-width: 1024px) {
  .platforms-grid, .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-title {
    font-size: 2.2rem;
  }

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

/* Tablet landscape */
@media (min-width: 1025px) and (max-width: 1280px) {
  .wrap, .container {
    max-width: 95%;
  }
}

/* ═══════════════════════════
   PROCESS STEPS - HOW IT WORKS (NEW CREATIVE DESIGN)
   ═══════════════════════════ */
.process-steps-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.process-step-new {
  display: grid;
  grid-template-columns: auto 1fr 1.2fr;
  gap: 30px;
  align-items: center;
  padding: 25px 25px 25px 0;
  position: relative;
  z-index: 1;
}

.step-num-circle {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.15),
    0 0 30px rgba(37, 99, 235, 0.3),
    inset 0 2px 10px rgba(255, 255, 255, 0.1);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html[data-theme="light"] .step-num-circle {
background: linear-gradient(135deg, #ffffff, #f1f5f9);
color: #1e293b;
box-shadow:
0 0 0 4px rgba(37, 99, 235, 0.15),
0 0 30px rgba(37, 99, 235, 0.2),
inset 0 2px 10px rgba(255, 255, 255, 0.8);
}

html[data-theme="light"] .process-step-new:hover .step-num-circle {
box-shadow:
0 0 0 4px rgba(37, 99, 235, 0.3),
0 0 50px rgba(37, 99, 235, 0.35),
inset 0 2px 10px rgba(255, 255, 255, 1);
}

.step-num-circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(37, 99, 235, 0.4);
  animation: rotateNum 10s linear infinite;
}

@keyframes rotateNum {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.process-step-new:hover .step-num-circle {
  transform: scale(1.05);
  box-shadow:
    0 0 0 4px rgba(37, 99, 235, 0.3),
    0 0 50px rgba(37, 99, 235, 0.5),
    inset 0 2px 10px rgba(255, 255, 255, 0.15);
}

.step-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 8px;
  font-family: var(--head);
}

.step-content p {
  font-size: 0.9rem;
  color: var(--t2);
  line-height: 1.6;
  margin: 0;
}

.step-visual-new {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* Floating orb background for each step */
.step-visual-new::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
    rgba(37, 99, 235, 0.15) 0%,
    rgba(59, 130, 246, 0.05) 40%,
    transparent 70%);
  filter: blur(20px);
  animation: orbFloat 6s ease-in-out infinite;
}

.step-visual-1::before {
  animation-delay: 0s;
}

.step-visual-2::before {
  animation-delay: 2s;
}

.step-visual-3::before {
  animation-delay: 4s;
}

@keyframes orbFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
    opacity: 0.9;
  }
}

/* Step visual inner container */
.step-visual-new > * {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* Step 1: Platform Carousel Animation */
.platform-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: carouselScroll 15s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-item {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background: var(--bg);
  border: 2px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: carouselFloat 3s ease-in-out infinite;
}

.carousel-item:nth-child(odd) {
  animation-delay: 0.5s;
}

.carousel-item:nth-child(even) {
  animation-delay: 1s;
}

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

.carousel-item svg {
  width: 32px;
  height: 32px;
}

.carousel-item.youtube { border-color: #FF0000; }
.carousel-item.youtube svg { color: #FF0000; }
.carousel-item.instagram { border-color: #E4405F; }
.carousel-item.instagram svg { color: #E4405F; }
.carousel-item.tiktok { border-color: #00f2ea; background: #000; }
.carousel-item.tiktok svg { color: #fff; }
.carousel-item.facebook { border-color: #1877F2; }
.carousel-item.facebook svg { color: #1877F2; }
.carousel-item.x { border-color: #333; background: #000; }
.carousel-item.x svg { color: #fff; }
.carousel-item.telegram { border-color: #26A5E4; }
.carousel-item.telegram svg { color: #26A5E4; }
.carousel-item.spotify { border-color: #1DB954; }
.carousel-item.spotify svg { color: #1DB954; }
.carousel-item.twitch { border-color: #9146FF; }
.carousel-item.twitch svg { color: #9146FF; }

/* Duplicate items for seamless loop */
.carousel-track::after {
  content: '';
  display: flex;
  gap: 20px;
}

/* Step 2: Quantity Slider Animation */
.quantity-animation {
  width: 100%;
  padding: 20px;
}

.qty-bar {
  width: 100%;
  height: 12px;
  background: rgba(59, 130, 246, 0.15);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 24px;
}

.qty-fill {
  height: 100%;
  background: linear-gradient(90deg, #2563eb, #3b82f6, #60a5fa);
  border-radius: 99px;
  animation: qtyProgress 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

@keyframes qtyProgress {
  0% {
    width: 0%;
  }
  25% {
    width: 35%;
  }
  50% {
    width: 65%;
  }
  75% {
    width: 85%;
  }
  100% {
    width: 100%;
  }
}

.qty-icons {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
}

.qty-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: iconBounce 2s ease-in-out infinite;
}

.qty-icon.followers { animation-delay: 0s; }
.qty-icon.likes { animation-delay: 0.3s; }
.qty-icon.views { animation-delay: 0.6s; }

@keyframes iconBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-6px);
    opacity: 1;
  }
}

.qty-icon svg {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.qty-label {
  font-size: 0.7rem;
  color: var(--t3);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.qty-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--t1);
  font-family: var(--head);
}

/* Step 3: Payment Animation */
.payment-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 20px;
}

.payment-card {
  width: 200px;
  height: 120px;
  background: linear-gradient(135deg, #1e3a8a, #3b82f6);
  border-radius: 12px;
  padding: 16px;
  position: relative;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
  animation: cardFloat 3s ease-in-out infinite;
}

@keyframes cardFloat {
  0%, 100% {
    transform: translateY(0) rotate(-5deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

.card-chip {
  width: 32px;
  height: 24px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  border-radius: 4px;
  margin-bottom: 12px;
}

.card-number {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--mono);
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.card-details {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  font-weight: 600;
}

.payment-flow {
  position: relative;
  width: 100px;
  height: 50px;
}

.flow-arrow {
  width: 100%;
  height: 100%;
  color: var(--accent);
  animation: arrowFlow 2s ease-in-out infinite;
}

@keyframes arrowFlow {
  0%, 100% {
    opacity: 0.5;
    transform: translateX(0);
  }
  50% {
    opacity: 1;
    transform: translateX(5px);
  }
}

.secure-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.secure-badge svg {
  width: 16px;
  height: 16px;
}

html[data-theme="light"] .how-visual {
  background: linear-gradient(135deg,
    rgba(37,99,235,0.12) 0%,
    rgba(59,130,246,0.04) 100%);
}

.how-visual::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle,
    rgba(37,99,235,0.08) 0%,
    transparent 70%);
  animation: rotateBg 20s linear infinite;
  pointer-events: none;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.how-visual:hover {
  transform: translateY(-8px);
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(37,99,235,0.2);
}

html[data-theme="light"] .how-visual:hover {
  box-shadow: 0 20px 60px rgba(37,99,235,0.15);
}

/* Platform Carousel - Floating bubbles */
.platform-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: carouselScroll 25s linear infinite;
  width: max-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(135deg,
    rgba(37,99,235,0.1) 0%,
    rgba(59,130,246,0.02) 100%);
  border-radius: 50%;
  width: 90px;
  height: 90px;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(37,99,235,0.2);
}

html[data-theme="light"] .carousel-item {
  background: linear-gradient(135deg,
    rgba(37,99,235,0.15) 0%,
    rgba(59,130,246,0.05) 100%);
}

.carousel-item:hover {
  transform: scale(1.15) rotate(5deg);
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(37,99,235,0.3);
  background: linear-gradient(135deg,
    rgba(37,99,235,0.2) 0%,
    rgba(59,130,246,0.08) 100%);
}

.carousel-item svg {
  width: 36px;
  height: 36px;
  color: var(--accent);
  filter: drop-shadow(0 2px 8px rgba(37,99,235,0.3));
}

.carousel-item span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--t1);
  white-space: nowrap;
  opacity: 0.9;
}

@keyframes carouselScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Metrics Display - Orbiting counters */
.metrics-display {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.metric-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transition: all 0.4s ease;
}

.metric-item:hover {
  transform: translateY(-8px);
}

.metric-item:hover .metric-icon {
  transform: scale(1.1);
}

.metric-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(37,99,235,0.15) 0%,
    rgba(59,130,246,0.05) 100%);
  border: 2px solid rgba(37,99,235,0.3);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.metric-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(37,99,235,0.3);
  animation: rotateRing 15s linear infinite;
}

@keyframes rotateRing {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.metric-icon svg {
  width: 32px;
  height: 32px;
  filter: drop-shadow(0 2px 8px rgba(37,99,235,0.3));
}

.metric-counter {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--t1);
  font-family: var(--head);
  line-height: 1;
  background: linear-gradient(135deg, var(--t1), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.metric-label {
  font-size: 0.75rem;
  color: var(--t3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Order Animation - Secure vault style */
.order-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.order-track {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

/* Animated shield */
.order-shield {
  width: 120px;
  height: 140px;
  position: relative;
  animation: shieldFloat 3s ease-in-out infinite;
}

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

.order-shield svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 24px rgba(37,99,235,0.4));
}

.order-shield .shield-bg {
  fill: url(#shieldGradient);
}

.order-shield .shield-icon {
  stroke: #22c55e;
  stroke-width: 2;
  fill: none;
}

/* Payment orb */
.payment-orb {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg,
    rgba(37,99,235,0.2) 0%,
    rgba(59,130,246,0.1) 100%);
  border: 2px solid rgba(37,99,235,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: orbPulse 2s ease-in-out infinite;
}

@keyframes orbPulse {
  0%, 100% {
    box-shadow: 0 0 30px rgba(37,99,235,0.3);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 50px rgba(37,99,235,0.5);
    transform: scale(1.05);
  }
}

.payment-orb::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(37,99,235,0.3);
  animation: rotateOrb 10s linear infinite;
}

@keyframes rotateOrb {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.payment-orb svg {
  width: 48px;
  height: 48px;
  color: var(--accent);
}

/* Connection line between shield and orb */
.order-connector {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(37,99,235,0.3),
    var(--accent),
    rgba(37,99,235,0.3));
  overflow: hidden;
}

.order-connector::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
    transparent,
    var(--accent),
    transparent);
  animation: connectorFlow 1.5s ease-in-out infinite;
}

@keyframes connectorFlow {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.order-status {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  background: linear-gradient(135deg,
    rgba(34,197,94,0.1) 0%,
    rgba(22,163,74,0.05) 100%);
  border-radius: 99px;
  border: 1px solid rgba(34,197,94,0.3);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  animation: dotBlink 1.5s ease-in-out infinite;
  box-shadow: 0 0 15px rgba(34,197,94,0.6);
}

@keyframes dotBlink {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(34,197,94,0.6);
  }
  50% {
    opacity: 0.4;
    box-shadow: 0 0 5px rgba(34,197,94,0.3);
  }
}

.order-status span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #22c55e;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Responsive - How It Works */
@media (max-width: 1024px) {
  .how-flow-line {
    display: none;
  }

  .how-step {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
  }

  .how-step:nth-child(even) {
    direction: ltr;
  }

  .how-num {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: 0 auto 30px;
  }

  .how-content {
    text-align: center;
  }

  .how-visual {
    padding: 30px 20px;
  }
}

@media (max-width: 768px) {
  .how-container {
    margin-top: 40px;
    padding: 30px 0;
  }

  .how-step {
    gap: 30px;
    margin-bottom: 50px;
  }

  .how-num {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }

  .how-content h3 {
    font-size: 1.2rem;
  }

  .metrics-display {
    gap: 30px;
  }

  .metric-item {
    gap: 12px;
  }

  .metric-icon {
    width: 70px;
    height: 70px;
  }

  .metric-icon svg {
    width: 28px;
    height: 28px;
  }

  .metric-counter {
    font-size: 1.5rem;
  }

  .order-shield {
    width: 100px;
    height: 115px;
  }

  .payment-orb {
    width: 85px;
    height: 85px;
  }

  .payment-orb svg {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 480px) {
  .how-step {
    gap: 24px;
    margin-bottom: 40px;
  }

  .how-num {
    width: 52px;
    height: 52px;
    font-size: 1.1rem;
  }

  .carousel-item {
    width: 75px;
    height: 75px;
    padding: 16px;
  }

  .carousel-item svg {
    width: 30px;
    height: 30px;
  }

  .carousel-item span {
    font-size: 0.65rem;
  }

  .metric-icon {
    width: 60px;
    height: 60px;
  }

  .metric-icon svg {
    width: 24px;
    height: 24px;
  }

  .metric-counter {
    font-size: 1.3rem;
  }

  .order-track {
    gap: 30px;
  }

  .order-shield {
    width: 80px;
    height: 95px;
  }

  .payment-orb {
    width: 70px;
    height: 70px;
  }

  .order-connector {
    display: none;
  }

  .order-status {
    padding: 10px 18px;
  }

  .order-status span {
    font-size: 0.75rem;
  }

  .status-dot {
    width: 8px;
    height: 8px;
  }
}

/* Responsive - Process Steps New */
@media (max-width: 900px) {
  .process-step-new {
    grid-template-columns: auto 1fr;
    gap: 20px;
    padding-left: 0;
  }

  .step-visual-new {
    grid-column: 1 / -1;
    min-height: 140px;
  }
}

@media (max-width: 600px) {
  .process-step-new {
    padding: 15px 15px 15px 0;
    gap: 16px;
  }

  .step-num-circle {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .step-num-circle::after {
    display: none;
  }

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .step-visual-new {
    min-height: 120px;
  }

  .step-visual-new::before {
    width: 140px;
    height: 140px;
  }

  .carousel-item {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .carousel-item svg {
    width: 26px;
    height: 26px;
  }

  .qty-bar {
    height: 8px;
    margin-bottom: 16px;
  }

  .qty-icon svg {
    width: 26px;
    height: 26px;
  }

  .qty-label {
    font-size: 0.65rem;
  }

  .qty-value {
    font-size: 0.9rem;
  }

  .payment-card {
    width: 160px;
    height: 100px;
    padding: 12px;
  }

  .card-chip {
    width: 24px;
    height: 18px;
    margin-bottom: 8px;
  }

  .card-number {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .card-details {
    font-size: 0.6rem;
  }

  .payment-flow {
    width: 80px;
    height: 40px;
  }

  .flow-dot {
    width: 10px;
    height: 10px;
  }

  .secure-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .secure-badge svg {
    width: 14px;
    height: 14px;
  }
}

  .step-content h3 {
    font-size: 1.1rem;
  }

  .step-content p {
    font-size: 0.85rem;
  }

  .step-visual {
    min-height: 100px;
    border-radius: 16px;
  }

  .carousel-item {
    width: 56px;
    height: 56px;
    border-radius: 12px;
  }

  .carousel-item svg {
    width: 26px;
    height: 26px;
  }

  .qty-bar {
    height: 8px;
    margin-bottom: 16px;
  }

  .qty-icon svg {
    width: 26px;
    height: 26px;
  }

  .qty-label {
    font-size: 0.65rem;
  }

  .qty-value {
    font-size: 0.9rem;
  }

  .payment-card {
    width: 160px;
    height: 100px;
    padding: 12px;
  }

  .card-chip {
    width: 24px;
    height: 18px;
    margin-bottom: 8px;
  }

  .card-number {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }

  .card-details {
    font-size: 0.6rem;
  }

  .payment-flow {
    width: 80px;
    height: 40px;
  }

  .flow-dot {
    width: 10px;
    height: 10px;
  }

  .secure-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .secure-badge svg {
    width: 14px;
    height: 14px;
  }
}

/* ═══════════════════════════
   GROWTH FLOW - ANIMATED VISUAL EXPERIENCE
   ═══════════════════════════ */
.flow-showcase {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

/* Orbit Ring - Central Visual with 3D elliptical motion */
.orbit-ring {
  position: relative;
  width: 420px;
  height: 420px;
  margin: 0 auto;
  perspective: 800px;
  transform-style: preserve-3d;
}

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2), transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.center-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 0.4; }
}

.center-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-h));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
  z-index: 2;
}

.center-icon svg {
  width: 28px;
  height: 28px;
}

.center-label {
  margin-top: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t1);
  text-align: center;
  z-index: 2;
}

/* Orbit Path - elliptical 3D */
.orbit-path {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(59, 130, 246, 0.15);
  transform: rotateX(60deg);
  animation: none;
}

/* Individual platform orb with 3D elliptical animation */
.platform-orb {
  position: absolute;
  width: 52px;
  height: 52px;
  left: 50%;
  top: 50%;
  margin-left: -26px;
  margin-top: -26px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  animation: ellipticalOrbit 6s ease-in-out infinite;
  animation-delay: calc(var(--angle) / 360 * -6s);
}

@keyframes ellipticalOrbit {
  0% {
    transform: rotate(0deg) translateX(185px) rotate(0deg) scale(0.7);
    opacity: 0.5;
    z-index: 1;
  }
  25% {
    transform: rotate(90deg) translateX(185px) rotate(-90deg) scale(1);
    opacity: 0.8;
    z-index: 5;
  }
  50% {
    transform: rotate(180deg) translateX(185px) rotate(-180deg) scale(1.15);
    opacity: 1;
    z-index: 10;
  }
  75% {
    transform: rotate(270deg) translateX(185px) rotate(-270deg) scale(1);
    opacity: 0.8;
    z-index: 5;
  }
  100% {
    transform: rotate(360deg) translateX(185px) rotate(-360deg) scale(0.7);
    opacity: 0.5;
    z-index: 1;
  }
}

.platform-orb:hover {
  animation-play-state: paused;
  transform: rotate(var(--angle)) translateX(185px) rotate(calc(-1 * var(--angle))) scale(1.2);
  z-index: 20;
}

.orb-glow {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(8px);
  animation: orbPulse 2s ease-in-out infinite;
}

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

.orb-glow.youtube { background: #FF0000; }
.orb-glow.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.orb-glow.tiktok { background: linear-gradient(135deg, #00f2ea, #ff0050); }
.orb-glow.facebook { background: #1877F2; }
.orb-glow.x { background: #000; }
.orb-glow.telegram { background: #26A5E4; }
.orb-glow.spotify { background: #1DB954; }
.orb-glow.twitch { background: #9146FF; }
.orb-glow.threads { background: #000; }
.orb-glow.discord { background: #5865F2; }

.orb-icon {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bd);
  transition: all 0.3s ease;
  overflow: hidden;
}

.orb-icon svg {
  width: 26px;
  height: 26px;
  transition: all 0.3s ease;
}

.orb-icon.youtube { border-color: #FF0000; }
.orb-icon.youtube svg { color: #FF0000; }
.orb-icon.instagram { border-color: #E4405F; }
.orb-icon.instagram svg { color: #E4405F; }
.orb-icon.tiktok { border-color: #00f2ea; }
.orb-icon.tiktok svg { color: #fff; }
.orb-icon.facebook { border-color: #1877F2; }
.orb-icon.facebook svg { color: #1877F2; }
.orb-icon.x { border-color: #333; background: #000; }
.orb-icon.x svg { color: #fff; }
.orb-icon.telegram { border-color: #26A5E4; }
.orb-icon.telegram svg { color: #26A5E4; }
.orb-icon.spotify { border-color: #1DB954; }
.orb-icon.spotify svg { color: #1DB954; }
.orb-icon.twitch { border-color: #9146FF; }
.orb-icon.twitch svg { color: #9146FF; }
.orb-icon.threads { border-color: #333; background: #000; }
.orb-icon.threads svg { color: #fff; }
.orb-icon.discord { border-color: #5865F2; }
.orb-icon.discord svg { color: #5865F2; }

.platform-orb:hover .orb-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.platform-orb.active .orb-icon {
  background: var(--accent);
  border-color: var(--accent);
}

.platform-orb.active .orb-icon svg {
  color: #fff;
}

/* Flow Steps Cards */
.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.flow-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: var(--bg2);
  border: 1px solid var(--bd);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.flow-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.flow-card:hover {
  transform: translateX(8px);
  border-color: rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.12);
}

.flow-card:hover::before {
  opacity: 1;
}

.flow-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.flow-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.flow-card-content {
  flex: 1;
  z-index: 1;
}

.flow-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--t3);
  margin-bottom: 8px;
}

.flow-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 10px;
  color: var(--t1);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.flow-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.service-price-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  gap: 16px;
}

.price-tag {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--head);
}

.range-tag {
  font-size: 0.75rem;
  color: var(--t3);
}

.range-tag strong {
  color: var(--t2);
}

/* Quantity Display */
.quantity-display {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flow-qty-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  color: var(--t1);
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.flow-qty-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.qty-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--t1);
  font-family: var(--head);
  min-width: 100px;
  text-align: center;
}

.qty-presets-flow {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.qty-chip-flow {
  padding: 6px 14px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--t2);
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.qty-chip-flow:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.qty-chip-flow.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.discount-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  background: #22c55e;
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  padding: 2px 5px;
  border-radius: 99px;
}

/* Checkout Preview */
.checkout-preview {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 14px;
  margin-top: 12px;
}

.preview-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.85rem;
}

.preview-label {
  color: var(--t3);
}

.preview-value {
  color: var(--t1);
  font-weight: 600;
}

.preview-row.preview-total {
  border-top: 1px solid var(--bd);
  margin-top: 8px;
  padding-top: 10px;
  font-size: 1.05rem;
}

.preview-row.preview-total .preview-label {
  color: var(--t2);
  font-weight: 600;
}

.preview-price {
  color: var(--accent);
  font-weight: 800;
  font-family: var(--head);
  font-size: 1.2rem;
}

/* Flow CTA */
.flow-cta {
  margin-top: 14px;
}

.flow-url-input {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 10px;
  color: var(--t1);
  font-size: 0.9rem;
  margin-bottom: 8px;
  transition: all 0.2s ease;
}

.flow-url-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-launch {
  width: 100%;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-h));
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.btn-launch:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}

.btn-launch svg {
  width: 20px;
  height: 20px;
}

.step-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--t1);
  margin: 0;
}

.step-header p {
  color: var(--t3);
  font-size: 0.9rem;
  margin: 0;
}

/* Platform Grid */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
}

.platform-btn {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--t2);
}

.platform-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.platform-btn.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.platform-btn-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.platform-btn-icon svg {
  width: 28px;
  height: 28px;
}

.platform-btn-icon.youtube { background: #FF0000; }
.platform-btn-icon.youtube svg { color: #fff; }
.platform-btn-icon.instagram { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-btn-icon.instagram svg { color: #fff; }
.platform-btn-icon.tiktok { background: linear-gradient(135deg, #00f2ea, #ff0050); }
.platform-btn-icon.tiktok svg { color: #fff; }
.platform-btn-icon.facebook { background: #1877F2; }
.platform-btn-icon.facebook svg { color: #fff; }
.platform-btn-icon.x { background: #000; border: 1px solid var(--bd); }
.platform-btn-icon.x svg { color: #fff; }
.platform-btn-icon.telegram { background: #26A5E4; }
.platform-btn-icon.telegram svg { color: #fff; }
.platform-btn-icon.spotify { background: #1DB954; }
.platform-btn-icon.spotify svg { color: #fff; }
.platform-btn-icon.twitch { background: #9146FF; }
.platform-btn-icon.twitch svg { color: #fff; }
.platform-btn-icon.threads { background: #000; border: 1px solid var(--bd); }
.platform-btn-icon.threads svg { color: #fff; }
.platform-btn-icon.discord { background: #5865F2; }
.platform-btn-icon.discord svg { color: #fff; }

.platform-btn span {
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}

.platform-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: none;
  align-items: center;
  justify-content: center;
}

.platform-check svg {
  width: 12px;
  height: 12px;
  color: #fff;
}

.platform-btn.active .platform-check {
  display: flex;
}

/* Service & Quantity Grid */
.service-quantity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.service-select-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 24px;
}

.service-select-card label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.builder-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 12px;
  color: var(--t1);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.builder-select:hover {
  border-color: var(--accent);
}

.builder-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.service-description {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bd);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.service-info {
  font-size: 0.85rem;
  color: var(--t3);
}

.service-info strong {
  color: var(--t2);
}

/* Quantity Card */
.quantity-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 24px;
}

.quantity-card > label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}

.quantity-input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  color: var(--t1);
  font-size: 1.4rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.qty-input {
  flex: 1;
  padding: 14px 16px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 12px;
  color: var(--t1);
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
}

.qty-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.qty-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: var(--bg-in);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.qty-slider::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  transition: all 0.2s ease;
}

.qty-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.qty-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.qty-presets {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.qty-chip {
  padding: 10px 8px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 8px;
  color: var(--t2);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.qty-chip:hover {
  border-color: var(--accent);
  background: rgba(59, 130, 246, 0.1);
}

.qty-chip.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.discount-badge {
  position: absolute;
  top: -6px;
  right: -4px;
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 5px;
  border-radius: 4px;
  white-space: nowrap;
}

.qty-message {
  margin-top: 8px;
  font-size: 0.85rem;
  color: #ef4444;
  min-height: 20px;
}

/* Checkout Grid */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.order-summary-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 24px;
  height: fit-content;
}

.order-summary-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bd);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--bd);
}

.summary-row:last-of-type {
  border-bottom: none;
}

.summary-label {
  color: var(--t3);
  font-size: 0.9rem;
}

.summary-value {
  color: var(--t1);
  font-weight: 600;
  font-size: 0.95rem;
}

.summary-total .summary-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--t1);
}

.summary-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  font-family: var(--head);
}

.summary-rate {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed var(--bd);
  font-size: 0.85rem;
  color: var(--t3);
}

/* Checkout Form Card */
.checkout-form-card {
  background: var(--bg);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 24px;
}

.checkout-form-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bd);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 12px;
  color: var(--t1);
  font-size: 1rem;
  transition: all 0.2s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-input::placeholder {
  color: var(--t3);
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-in);
  border: 1px solid var(--bd);
  border-radius: 12px;
  color: var(--t1);
  font-size: 1rem;
  resize: vertical;
  font-family: var(--font);
  transition: all 0.2s ease;
}

.form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-textarea::placeholder {
  color: var(--t3);
}

.char-count {
  text-align: right;
  font-size: 0.75rem;
  color: var(--t3);
  margin-top: 6px;
}

.form-message {
  margin-top: 6px;
  font-size: 0.85rem;
  min-height: 18px;
}

.form-message.valid {
  color: #22c55e;
}

/* Checkout Button */
.btn-checkout {
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, var(--accent), var(--accent-h));
  color: #fff;
  border: none;
  border-radius: 14px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.btn-checkout:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(59, 130, 246, 0.35);
}

.btn-checkout svg {
  width: 22px;
  height: 22px;
}

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  padding: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
}

.secure-badge svg {
  width: 18px;
  height: 18px;
  color: #22c55e;
}

.secure-badge span {
  font-size: 0.85rem;
  color: #22c55e;
  font-weight: 500;
}

/* Responsive - Growth Flow with 3D elliptical orbit */
@media (max-width: 1000px) {
  .flow-showcase {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .orbit-ring {
    width: 340px;
    height: 340px;
    perspective: 600px;
  }

  .platform-orb {
    width: 46px;
    height: 46px;
    margin-left: -23px;
    margin-top: -23px;
  }

  @keyframes ellipticalOrbit {
    0% {
      transform: rotate(0deg) translateX(145px) rotate(0deg) scale(0.7);
      opacity: 0.5;
      z-index: 1;
    }
    25% {
      transform: rotate(90deg) translateX(145px) rotate(-90deg) scale(1);
      opacity: 0.8;
      z-index: 5;
    }
    50% {
      transform: rotate(180deg) translateX(145px) rotate(-180deg) scale(1.1);
      opacity: 1;
      z-index: 10;
    }
    75% {
      transform: rotate(270deg) translateX(145px) rotate(-270deg) scale(1);
      opacity: 0.8;
      z-index: 5;
    }
    100% {
      transform: rotate(360deg) translateX(145px) rotate(-360deg) scale(0.7);
      opacity: 0.5;
      z-index: 1;
    }
  }
}

@media (max-width: 600px) {
  .orbit-ring {
    width: 280px;
    height: 280px;
    perspective: 500px;
  }

  .orbit-center {
    width: 90px;
    height: 90px;
  }

  .center-icon {
    width: 44px;
    height: 44px;
  }

  .center-icon svg {
    width: 22px;
    height: 22px;
  }

  .platform-orb {
    width: 38px;
    height: 38px;
    margin-left: -19px;
    margin-top: -19px;
  }

  @keyframes ellipticalOrbit {
    0% {
      transform: rotate(0deg) translateX(115px) rotate(0deg) scale(0.7);
      opacity: 0.5;
      z-index: 1;
    }
    25% {
      transform: rotate(90deg) translateX(115px) rotate(-90deg) scale(1);
      opacity: 0.8;
      z-index: 5;
    }
    50% {
      transform: rotate(180deg) translateX(115px) rotate(-180deg) scale(1.05);
      opacity: 1;
      z-index: 10;
    }
    75% {
      transform: rotate(270deg) translateX(115px) rotate(-270deg) scale(1);
      opacity: 0.8;
      z-index: 5;
    }
    100% {
      transform: rotate(360deg) translateX(115px) rotate(-360deg) scale(0.7);
      opacity: 0.5;
      z-index: 1;
    }
  }

  .platform-orb:hover {
    transform: scale(1.15);
    z-index: 20;
  }

  .orb-icon svg {
    width: 18px;
    height: 18px;
  }

  .flow-card {
    padding: 16px 18px;
    gap: 14px;
  }

  .flow-card-icon {
    width: 44px;
    height: 44px;
  }

  .flow-card-icon svg {
    width: 22px;
    height: 22px;
  }

  .qty-value {
    font-size: 1.1rem;
    min-width: 80px;
  }

  .flow-qty-btn {
    width: 36px;
    height: 36px;
  }

  .qty-presets-flow {
    gap: 6px;
  }

  .qty-chip-flow {
    padding: 5px 10px;
    font-size: 0.75rem;
  }

  .preview-price {
    font-size: 1.1rem;
  }

  .btn-launch {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
}

/* Responsive - Legacy Builder */
@media (max-width: 900px) {
  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  }

  .service-quantity-grid,
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .builder-step {
    padding: 20px 16px;
  }

  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .platform-grid {
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  }

  .platform-btn {
    padding: 14px 10px;
  }

  .platform-btn-icon {
    width: 40px;
    height: 40px;
  }

  .platform-btn-icon svg {
    width: 22px;
    height: 22px;
  }

  .platform-btn span {
    font-size: 0.75rem;
  }

  .qty-presets {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ═══════════════════════════
   ORBIT SHOWCASE - INFO PARTICLES & STATS
   ═══════════════════════════ */
.orbit-info {
  position: absolute;
  inset: -60px;
  pointer-events: none;
  z-index: 1;
}

.info-particle {
  position: absolute;
  padding: 8px 16px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 99px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: floatParticle 4s ease-in-out infinite;
  animation-delay: var(--delay);
}

.info-particle .particle-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--t1);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@keyframes floatParticle {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-12px);
    opacity: 1;
  }
}

.info-particle:nth-child(1) { top: 10%; left: 5%; }
.info-particle:nth-child(2) { top: 20%; right: 8%; animation-delay: 0.3s; }
.info-particle:nth-child(3) { bottom: 25%; left: 8%; animation-delay: 0.6s; }
.info-particle:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 0.9s; }

/* Orbit Stats - Circular orbs below showcase */
.orbit-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-orb {
  position: relative;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(37, 99, 235, 0.06));
  border: 2px solid rgba(59, 130, 246, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbFloat 3s ease-in-out infinite;
  box-shadow:
    0 8px 32px rgba(59, 130, 246, 0.15),
    inset 0 0 40px rgba(59, 130, 246, 0.08);
}

.stat-orb-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
  animation: orbGlow 2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes orbGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

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

.stat-orb:nth-child(2) { animation-delay: 0.3s; }
.stat-orb:nth-child(3) { animation-delay: 0.6s; }

.stat-orb-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--t1);
  font-family: var(--head);
  background: linear-gradient(135deg, var(--t1), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.65rem;
  color: var(--t3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  max-width: 100px;
}

/* Responsive for orbit info and stats */
@media (max-width: 1000px) {
  .orbit-info {
    inset: -40px;
  }

  .info-particle {
    padding: 6px 12px;
  }

  .info-particle .particle-label {
    font-size: 0.65rem;
  }
}

@media (max-width: 600px) {
  .orbit-stats {
    gap: 24px;
    margin-top: 30px;
  }

  .stat-orb {
    width: 110px;
    height: 110px;
  }

  .stat-value {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.55rem;
    max-width: 80px;
  }
}

/* YouTube Page Styles */
.platform-header-center { text-align: center; padding: 20px 0 40px; }
.platform-logo { display: inline-flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.platform-logo .plat-ico-wrap { width: 80px; height: 80px; background: rgba(255,0,0,.08); border-radius: 20px; display: flex; align-items: center; justify-content: center; }
.platform-logo .plat-ico-wrap svg { width: 48px; height: 48px; color: #FF0000; }
.platform-logo h1 { font-size: 2.5rem; font-weight: 800; color: var(--t1); margin: 0; font-family: var(--head); }
.platform-desc { font-size: 1.1rem; color: var(--t2); max-width: 500px; margin: 0 auto; line-height: 1.6; }

.services-section { padding: 40px 0 60px; }
.services-grid-horizontal { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; padding: 0 20px; }
.service-card-icon { display: flex; flex-direction: column; align-items: center; padding: 32px 24px; background: var(--bg2); border: 1px solid var(--bd); border-radius: 20px; transition: all .3s ease; text-decoration: none; }
.service-card-icon:hover { border-color: var(--accent); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
html[data-theme="light"] .service-card-icon:hover { box-shadow: 0 8px 24px rgba(37,99,235,.15); }
.service-icon { width: 64px; height: 64px; background: var(--accent-l); border-radius: 16px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; transition: all .3s ease; }
.service-icon svg { width: 32px; height: 32px; color: var(--accent); }
.service-card-icon:hover .service-icon { background: var(--accent); }
.service-card-icon:hover .service-icon svg { color: #fff; }
.service-card-icon h3 { font-size: 1.1rem; font-weight: 700; color: var(--t1); margin: 0; font-family: var(--head); }

@media (max-width: 900px) { .services-grid-horizontal { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid-horizontal { grid-template-columns: 1fr; } .platform-logo h1 { font-size: 2rem; } .platform-logo .plat-ico-wrap { width: 64px; height: 64px; } .platform-logo .plat-ico-wrap svg { width: 36px; height: 36px; } }

/* Back button */
.platform-header-wrapper {
position: relative;
max-width: 900px;
margin: 0 auto;
}

.back-btn {
display: inline-flex;
align-items: center;
gap: 8px;
color: var(--t3);
font-size: .85rem;
font-weight: 500;
transition: all .2s ease;
text-decoration: none;
padding: 8px;
}

.back-btn:hover {
color: var(--accent);
transform: translateX(-2px);
}

.back-btn svg {
width: 18px;
height: 18px;
}

/* Platform-specific hero backgrounds */
.platform-hero.youtube { background: linear-gradient(135deg, rgba(255,0,0,.08) 0%, rgba(255,0,0,.03) 100%); }
.platform-hero.instagram { background: linear-gradient(135deg, rgba(240,148,51,.08), rgba(220,39,67,.08)); }
.platform-hero.tiktok { background: linear-gradient(135deg, rgba(0,242,234,.08), rgba(255,0,80,.08)); }
.platform-hero.facebook { background: linear-gradient(135deg, rgba(24,119,242,.08), rgba(24,119,242,.03)); }
.platform-hero.x { background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); }
.platform-hero.telegram { background: linear-gradient(135deg, rgba(38,165,228,.08), rgba(38,165,228,.03)); }
.platform-hero.spotify { background: linear-gradient(135deg, rgba(29,185,84,.08), rgba(29,185,84,.03)); }
.platform-hero.twitch { background: linear-gradient(135deg, rgba(145,70,255,.08), rgba(145,70,255,.03)); }
.platform-hero.threads { background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); }
.platform-hero.discord { background: linear-gradient(135deg, rgba(88,101,242,.08), rgba(88,101,242,.03)); }
.platform-hero.linkedin { background: linear-gradient(135deg, rgba(0,119,181,.08), rgba(0,119,181,.03)); }

html[data-theme="light"] .platform-hero.youtube { background: linear-gradient(135deg, rgba(255,0,0,.10), rgba(255,0,0,.05)); }
html[data-theme="light"] .platform-hero.instagram { background: linear-gradient(135deg, rgba(240,148,51,.10), rgba(220,39,67,.10)); }
html[data-theme="light"] .platform-hero.tiktok { background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.03)); }
html[data-theme="light"] .platform-hero.facebook { background: linear-gradient(135deg, rgba(24,119,242,.10), rgba(24,119,242,.05)); }
html[data-theme="light"] .platform-hero.x { background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.03)); }
html[data-theme="light"] .platform-hero.telegram { background: linear-gradient(135deg, rgba(38,165,228,.10), rgba(38,165,228,.05)); }
html[data-theme="light"] .platform-hero.spotify { background: linear-gradient(135deg, rgba(29,185,84,.10), rgba(29,185,84,.05)); }
html[data-theme="light"] .platform-hero.twitch { background: linear-gradient(135deg, rgba(145,70,255,.10), rgba(145,70,255,.05)); }
html[data-theme="light"] .platform-hero.threads { background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(0,0,0,.03)); }
html[data-theme="light"] .platform-hero.discord { background: linear-gradient(135deg, rgba(88,101,242,.10), rgba(88,101,242,.05)); }
html[data-theme="light"] .platform-hero.linkedin { background: linear-gradient(135deg, rgba(0,119,181,.10), rgba(0,119,181,.05)); }

/* Platform brand colors for plat-ico-wrap */
.plat-ico-wrap.youtube { background: #FF0000; }
.plat-ico-wrap.youtube svg { color: #fff; }

.plat-ico-wrap.instagram { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.plat-ico-wrap.instagram svg { color: #fff; }

.plat-ico-wrap.tiktok { background: linear-gradient(135deg, #00f2ea 0%, #ff0050 100%); }
.plat-ico-wrap.tiktok svg { color: #fff; }

.plat-ico-wrap.facebook { background: #1877F2; }
.plat-ico-wrap.facebook svg { color: #fff; }

.plat-ico-wrap.x { background: #000000; }
.plat-ico-wrap.x svg { color: #fff; }

.plat-ico-wrap.telegram { background: #26A5E4; }
.plat-ico-wrap.telegram svg { color: #fff; }

.plat-ico-wrap.spotify { background: #1DB954; }
.plat-ico-wrap.spotify svg { color: #fff; }

.plat-ico-wrap.twitch { background: #9146FF; }
.plat-ico-wrap.twitch svg { color: #fff; }

.plat-ico-wrap.threads { background: #000000; }
.plat-ico-wrap.threads svg { color: #fff; }

.plat-ico-wrap.discord { background: #5865F2; }
.plat-ico-wrap.discord svg { color: #fff; }

.plat-ico-wrap.linkedin { background: #0077B5; }
.plat-ico-wrap.linkedin svg { color: #fff; }

/* Service icon brand colors */
.service-icon.youtube svg { color: #FF0000; }
.service-icon.instagram svg { color: #E4405F; }
.service-icon.tiktok svg { color: #000000; }
html[data-theme="dark"] .service-icon.tiktok svg { color: #fff; }
.service-icon.facebook svg { color: #1877F2; }
.service-icon.x svg { color: #000000; }
html[data-theme="dark"] .service-icon.x svg { color: #fff; }
.service-icon.telegram svg { color: #26A5E4; }
.service-icon.spotify svg { color: #1DB954; }
.service-icon.twitch svg { color: #9146FF; }
.service-icon.threads svg { color: #000000; }
html[data-theme="dark"] .service-icon.threads svg { color: #fff; }
.service-icon.discord svg { color: #5865F2; }
.service-icon.linkedin svg { color: #0077B5; }

/* Hero Stats Tile - Compact single tile with rotating stats */
.hero-stats-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 18px;
  max-width: 520px;
  min-height: 70px;
}

.hero-stat-mini {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex: 1;
  animation: fadeIn 0.4s ease;
}

.hero-stat-mini.active {
  display: flex;
}

.stat-icon-small {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent);
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--t3);
  font-weight: 500;
}

.stat-label-mini {
  font-size: 0.65rem;
  color: var(--t3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}

.stat-bar {
  width: 80px;
  height: 4px;
  background: var(--bd);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}

.stat-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 75%;
  animation: progressGlow 2s ease-in-out infinite;
}

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

@keyframes progressGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Light theme adjustments */
html[data-theme="light"] .hero-stats-tile {
  background: var(--bg-2);
}
CSSESEOF

/* Hero Stats Tile - Compact single tile with rotating stats */
.hero-stats-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-2);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 14px 18px;
  margin-top: 18px;
  max-width: 520px;
  min-height: 70px;
}

.hero-stat-mini {
  display: flex !important;
  align-items: center;
  gap: 10px;
  flex: 1;
  animation: fadeIn 0.4s ease;
}

.hero-stat-mini.active {
  display: flex;
}

.stat-icon-small {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--accent);
}

.stat-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--t3);
  font-weight: 500;
}

.stat-label-mini {
  font-size: 0.65rem;
  color: var(--t3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1px;
}

.stat-bar {
  width: 80px;
  height: 4px;
  background: var(--bd);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 2px;
}

.stat-progress {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 75%;
  animation: progressGlow 2s ease-in-out infinite;
}

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

@keyframes progressGlow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

html[data-theme="light"] .hero-stats-tile {
  background: var(--bg-2);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.phone-mockup {
  width: 280px;
  height: 560px;
  position: relative;
  perspective: 1000px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), inset 0 0 0 3px #000, inset 0 2px 4px rgba(255, 255, 255, 0.1);
    0 25px 50px -12px rgba(0, 0, 0, 0.5),
    inset 0 2px 4px rgba(255, 255, 255, 0.1);
  position: relative;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: transform 0.3s ease;
  border: 8px solid #1a1a1a;
}

.phone-mockup:hover .phone-screen {
  transform: rotateY(0deg) rotateX(0deg);
}

.phone-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  z-index: 0;
}

.phone-bezel {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.phone-mockup:hover .phone-bezel {
  width: 140px;
  height: 28px;
}

.screen-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%231a1a2e" width="100" height="100"/></svg>') center/cover;
}

.engagement-overlay {
  position: absolute;
  right: 20px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.engagement-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: floatUp 2.5s ease-in-out infinite;
}

.engagement-item.like {
  animation-delay: 0s;
}

.engagement-item.comment {
  animation-delay: 0.8s;
}

.engagement-item.share {
  animation-delay: 1.6s;
}

.engagement-item svg {
  width: 48px;
  height: 48px;
  color: #fff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.engagement-item.like svg {
  fill: #ff3860;
  animation: likeHeart 1s ease-in-out infinite;
}

.engagement-item:hover svg {
  transform: scale(1.2);
}

.engagement-item .count {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(-10px);
    opacity: 0.9;
  }
}

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

/* Responsive */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
  }
  
  .hero-visual {
    margin-top: 40px;
  }
  
  .phone-mockup {
    width: 240px;
    height: 480px;
  }
}

/* Phone Mockup Initial State for Animation */
.phone-mockup {
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: scale(0.8);
}

.phone-mockup.showing {
  opacity: 1;
  transform: scale(1);
}

/* Adjust screen content to have proper background */
.screen-content {
  background: transparent;
}
.checkout-message {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--t3);
}

.checkout-message.success {
  color: #22c55e;
}

.checkout-message.error {
  color: #ef4444;
}

.checkout-btn:disabled,
.btn-checkout:disabled,
.btn-launch:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none !important;
}
