/* === БАЗОВЫЕ НАСТРОЙКИ === */
:root {
  --bg-1: #070b1f; --bg-2: #141a3e;
  --accent: #21a8ff; --accent-2: #7c5cff; --accent-3: #00e0c6;
  --gold: #ffcb45; --green: #3ddc97;
  --red: #ff4d6d; --orange: #ff9f43;
  --ink: #e8ecff;
  --glass: rgba(255,255,255,.045);
  --glass-bd: rgba(255,255,255,.09);
  --r-lg: 20px; --r-md: 14px; --r-sm: 10px;
}
* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; -webkit-touch-callout: none; }
html, body { height: 100%; overflow: hidden; font-family: 'Inter', 'Segoe UI', -apple-system, sans-serif; color: var(--ink); user-select: none; }
body {
  background: radial-gradient(ellipse at 50% -10%, var(--bg-2) 0%, var(--bg-1) 55%, #03050f 100%);
  display: flex; align-items: center; justify-content: center; position: relative;
}
body::before {
  content: ''; position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(33,168,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,168,255,.028) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 80%);
  animation: gridMove 34s linear infinite; pointer-events: none; z-index: 0;
}
@keyframes gridMove { to { background-position: 54px 54px; } }

#bgCode { position: fixed; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; opacity: .22; }
.orb { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .28; pointer-events: none; z-index: 0; }
.orb.o1 { width: 320px; height: 320px; background: var(--accent); top: -110px; left: -110px; animation: float1 20s ease-in-out infinite; }
.orb.o2 { width: 420px; height: 420px; background: var(--accent-2); bottom: -170px; right: -160px; animation: float2 24s ease-in-out infinite; }
.orb.o3 { width: 240px; height: 240px; background: var(--accent-3); top: 40%; left: 60%; opacity: .18; animation: float1 28s ease-in-out infinite; }
@keyframes float1 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(50px,80px); } }
@keyframes float2 { 0%,100% { transform: translate(0,0); } 50% { transform: translate(-80px,-50px); } }

/* === ХЛЕБНЫЕ КРОШКИ === */
.breadcrumbs { position: fixed; top: 10px; left: 10px; z-index: 100; font-size: 11px; opacity: .6; }
.breadcrumbs-inner { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; background: var(--glass); padding: 6px 12px; border-radius: 20px; border: 1px solid var(--glass-bd); backdrop-filter: blur(10px); }
.breadcrumbs a { color: var(--accent); text-decoration: none; }
.breadcrumbs a:hover { text-decoration: underline; }
.bc-sep { opacity: .4; }
.bc-current { color: var(--ink); }

/* === ФУТЕР === */
.site-footer { display: none; }
@media (min-width: 768px) {
  .site-footer {
    display: block; position: fixed; bottom: 0; left: 0; right: 0;
    background: rgba(7,11,31,.95); backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-bd); padding: 20px 20px 12px;
    z-index: 50; font-size: 12px;
  }
  .footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .footer-col h4 { font-size: 13px; margin-bottom: 10px; color: var(--accent); }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 6px; }
  .footer-col a { color: var(--ink); opacity: .7; text-decoration: none; transition: .2s; }
  .footer-col a:hover { opacity: 1; color: var(--accent); }
  .footer-logo { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
  .footer-bottom { text-align: center; margin-top: 16px; opacity: .4; font-size: 11px; border-top: 1px solid rgba(255,255,255,.05); padding-top: 12px; }
}
@media (max-width: 767px) {
  .site-footer {
    display: block; background: rgba(7,11,31,.95); padding: 16px;
    border-top: 1px solid var(--glass-bd); font-size: 11px;
  }
  .footer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
  .footer-col h4 { font-size: 12px; margin-bottom: 6px; color: var(--accent); }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 4px; }
  .footer-col a { color: var(--ink); opacity: .7; text-decoration: none; }
  .footer-logo { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
  .footer-bottom { text-align: center; margin-top: 12px; opacity: .4; font-size: 10px; border-top: 1px solid rgba(255,255,255,.05); padding-top: 8px; }
}

/* === СЕРВИСЫ GRID === */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin: 16px 0; }
.service-card { background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 12px; padding: 14px; text-align: center; transition: .3s; }
.service-card:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(33,168,255,.15); }
.service-icon { font-size: 28px; margin-bottom: 8px; }
.service-card h3 { font-size: 14px; margin-bottom: 6px; }
.service-card p { font-size: 11px; opacity: .7; margin-bottom: 8px; line-height: 1.4; }
.service-link { color: var(--accent); text-decoration: none; font-size: 12px; font-weight: 600; }

/* === КАК МЫ РАБОТАЕМ === */
.how-we-work { margin: 20px 0; }
.how-title { font-size: 16px; font-weight: 800; margin-bottom: 14px; background: linear-gradient(115deg, #fff, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.process-steps { display: flex; flex-direction: column; gap: 12px; }
.process-step { display: flex; gap: 12px; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 12px; padding: 12px; }
.ps-number { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0; }
.ps-content h3 { font-size: 13px; margin-bottom: 4px; color: var(--accent); }
.ps-content p { font-size: 11px; opacity: .75; line-height: 1.5; }
.ps-content a { color: var(--accent); }

/* === ПЕРЕЛИНКОВКА === */
.internal-links { margin: 20px 0; }
.internal-links h3 { font-size: 14px; margin-bottom: 10px; color: var(--accent); }
.links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.ilink { display: block; padding: 10px 14px; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 10px; color: var(--ink); text-decoration: none; font-size: 12px; font-weight: 600; transition: .2s; }
.ilink:hover { border-color: var(--accent); background: rgba(33,168,255,.1); color: var(--accent); }

/* === ОСТАЛЬНЫЕ СТИЛИ (из оригинала) === */
/* ... весь CSS из оригинала без изменений ... */
#game { position: relative; width: 100%; height: 100%; max-width: 520px; overflow: hidden; z-index: 1; }
canvas#fx { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 5; }
.hud { position: absolute; top: 0; left: 0; right: 0; z-index: 8; display: flex; justify-content: space-between; align-items: center; padding: 16px 18px; font-size: 10.5px; letter-spacing: 1.8px; opacity: .8; pointer-events: none; }
.hud .left { font-weight: 600; font-family: 'SF Mono', ui-monospace, monospace; display: flex; align-items: center; gap: 8px; }
.hud .left::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 1.6s infinite; }
@keyframes blink { 50% { opacity: .3; } }
.hud .right { display: flex; gap: 8px; pointer-events: auto; }
.hud button { background: var(--glass); border: 1px solid var(--glass-bd); color: #fff; border-radius: 50%; font-size: 14px; cursor: pointer; transition: all .2s; line-height: 1; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(8px); }
.hud button:hover { background: rgba(255,255,255,.12); transform: scale(1.08); }
.scene { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 24px 18px; opacity: 0; pointer-events: none; transition: opacity .55s ease, transform .55s ease; transform: scale(.985); z-index: 2; overflow-y: auto; }
.scene.active { opacity: 1; pointer-events: auto; transform: scale(1); }
.logo-icon { width: 84px; height: 84px; border-radius: 24px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-size: 42px; margin-bottom: 26px; box-shadow: 0 24px 60px rgba(33,168,255,.4), 0 0 0 1px rgba(255,255,255,.12) inset; animation: logoFloat 3.4s ease-in-out infinite; position: relative; }
.logo-icon::after { content: ''; position: absolute; inset: -6px; border-radius: 30px; border: 1px solid rgba(33,168,255,.3); animation: ring 3s ease-in-out infinite; }
@keyframes ring { 0%,100% { opacity: .4; transform: scale(1); } 50% { opacity: 0; transform: scale(1.15); } }
@keyframes logoFloat { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(3deg); } }
.eyebrow { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; font-weight: 700; color: var(--accent); margin-bottom: 14px; opacity: .9; display: flex; align-items: center; gap: 8px; }
.eyebrow::before, .eyebrow::after { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--accent)); }
.eyebrow::after { background: linear-gradient(90deg, var(--accent), transparent); }
.title { font-size: clamp(27px, 7vw, 40px); font-weight: 800; letter-spacing: -.8px; line-height: 1.08; background: linear-gradient(115deg, #fff 0%, var(--accent) 55%, var(--accent-2) 100%); background-size: 200% auto; -webkit-background-clip: text; background-clip: text; color: transparent; text-align: center; margin-bottom: 16px; animation: gradientShift 5s ease-in-out infinite; }
@keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.subtitle { font-size: 15px; opacity: .62; text-align: center; margin-bottom: 34px; max-width: 340px; line-height: 1.55; }
.btn { cursor: pointer; border: none; color: #fff; font-weight: 700; font-size: 16px; padding: 17px 46px; border-radius: 50px; letter-spacing: .3px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%); box-shadow: 0 12px 38px rgba(33,168,255,.42), 0 0 0 1px rgba(255,255,255,.12) inset; transition: transform .2s, box-shadow .2s; position: relative; overflow: hidden; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 18px 48px rgba(33,168,255,.6); }
.btn:active { transform: translateY(0) scale(.98); }
.btn::before { content: ''; position: absolute; top: 0; left: -120%; width: 60%; height: 100%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent); animation: sweep 3s infinite; }
@keyframes sweep { to { left: 160%; } }
.start-badges { display: flex; gap: 8px; margin-top: 24px; flex-wrap: wrap; justify-content: center; }
.start-badge { font-size: 10.5px; font-weight: 600; letter-spacing: .4px; opacity: .85; background: var(--glass); border: 1px solid var(--glass-bd); padding: 7px 13px; border-radius: 30px; display: flex; align-items: center; gap: 6px; backdrop-filter: blur(8px); }
.start-badge .wp { color: var(--accent); }
.records { margin-top: 26px; display: flex; gap: 28px; font-size: 10px; opacity: .45; text-align: center; letter-spacing: 1px; text-transform: uppercase; }
.records b { color: var(--gold); font-size: 18px; display: block; margin-bottom: 3px; }
.act-title { font-size: 12px; font-weight: 700; letter-spacing: 3px; margin-bottom: 16px; text-transform: uppercase; background: linear-gradient(90deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.browser { width: 95%; max-width: 400px; height: 380px; background: var(--glass); backdrop-filter: blur(22px); border: 1px solid var(--glass-bd); border-radius: var(--r-md); overflow: hidden; box-shadow: 0 34px 80px rgba(0,0,0,.55), 0 0 60px rgba(33,168,255,.13); display: flex; flex-direction: column; position: relative; animation: browserFloat 4.5s ease-in-out infinite; }
@keyframes browserFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.browser-bar { height: 36px; background: rgba(0,0,0,.32); display: flex; align-items: center; padding: 0 13px; gap: 6px; border-bottom: 1px solid rgba(255,255,255,.06); }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.r { background: #ff5f57; } .dot.y { background: #febc2e; } .dot.g { background: #28c840; }
.url { flex: 1; margin-left: 12px; font-size: 11px; opacity: .7; font-family: 'SF Mono', ui-monospace, monospace; display: flex; align-items: center; gap: 5px; min-width: 0; overflow: hidden; white-space: nowrap; }
.url::before { content: '🔒'; font-size: 9px; flex-shrink: 0; }
.url-text { overflow: hidden; text-overflow: ellipsis; }
.cursor-blink { display: inline-block; width: 2px; height: 11px; background: var(--accent); margin-left: 1px; animation: cursorBlink .8s infinite; vertical-align: middle; }
@keyframes cursorBlink { 50% { opacity: 0; } }
.wp-badge { position: absolute; top: 42px; right: 10px; z-index: 4; font-size: 9px; font-weight: 700; letter-spacing: .5px; background: rgba(33,168,255,.15); border: 1px solid rgba(33,168,255,.35); color: var(--accent); padding: 3px 8px; border-radius: 20px; display: flex; align-items: center; gap: 4px; backdrop-filter: blur(6px); opacity: 0; transform: translateY(-6px); transition: .4s; }
.wp-badge.show { opacity: 1; transform: translateY(0); }
.canvas-area { flex: 1; position: relative; display: flex; flex-direction: column; padding: 10px; gap: 7px; cursor: pointer; background: rgba(255,255,255,.015); overflow: hidden; }
.block { width: 100%; border-radius: var(--r-sm); opacity: 0; transform: translateY(-30px) scale(.82); transition: all .55s cubic-bezier(.34,1.56,.64,1); position: relative; overflow: hidden; flex-shrink: 0; }
.block.in { opacity: 1; transform: translateY(0) scale(1); }
.block::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent); transform: translateX(-100%); }
.block.in::after { animation: shine .8s ease-out .2s; }
@keyframes shine { to { transform: translateX(100%); } }
.b-header { height: 38px; background: linear-gradient(90deg, rgba(33,168,255,.16), rgba(124,92,255,.16)); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; padding: 0 10px; gap: 8px; }
.b-logo { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; }
.b-logo-text { font-size: 11px; font-weight: 700; letter-spacing: .5px; flex: 1; }
.b-menu { display: flex; gap: 8px; }
.b-menu i { width: 18px; height: 4px; background: rgba(255,255,255,.3); border-radius: 2px; display: block; }
.b-nav { height: 26px; background: rgba(255,255,255,.04); display: flex; align-items: center; padding: 0 10px; gap: 14px; }
.b-nav span { font-size: 9px; opacity: .7; font-weight: 600; letter-spacing: .3px; }
.b-nav span.act { color: var(--accent); opacity: 1; }
.b-nav span.act::after { content: ''; display: block; height: 2px; background: var(--accent); margin-top: 3px; border-radius: 2px; }
.b-hero { height: 80px; background: linear-gradient(135deg, #16245c, #2f1c57); display: flex; align-items: center; padding: 0 12px; gap: 10px; position: relative; }
.b-hero-text { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.b-hero-text i { display: block; background: rgba(255,255,255,.7); border-radius: 3px; height: 7px; }
.b-hero-text i:nth-child(1) { width: 80%; height: 9px; }
.b-hero-text i:nth-child(2) { width: 60%; height: 5px; background: rgba(255,255,255,.4); }
.b-hero-btn { background: linear-gradient(135deg, var(--accent), var(--accent-2)); padding: 5px 10px; border-radius: 14px; font-size: 9px; font-weight: 700; flex-shrink: 0; box-shadow: 0 4px 12px rgba(33,168,255,.4); }
.b-hero-img { width: 50px; height: 50px; border-radius: 10px; flex-shrink: 0; background: linear-gradient(135deg, var(--accent-3), var(--accent)); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.b-services { display: flex; gap: 6px; height: 60px; }
.b-service { flex: 1; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; }
.b-service .ic { font-size: 18px; }
.b-service .tx { font-size: 8px; opacity: .7; font-weight: 600; }
.b-reviews { height: 54px; background: rgba(255,255,255,.04); border-radius: 8px; display: flex; align-items: center; padding: 0 10px; gap: 8px; }
.b-avatar { width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--orange), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.b-review-content { flex: 1; display: flex; flex-direction: column; gap: 3px; }
.b-stars { color: var(--gold); font-size: 10px; letter-spacing: 1px; }
.b-review-content i { display: block; background: rgba(255,255,255,.25); border-radius: 2px; height: 4px; width: 90%; }
.b-form { height: 54px; background: linear-gradient(135deg, rgba(61,220,151,.1), rgba(33,168,255,.1)); border: 1px dashed rgba(33,168,255,.3); border-radius: 8px; padding: 7px 10px; display: flex; flex-direction: column; gap: 5px; }
.b-form-input { height: 14px; background: rgba(0,0,0,.3); border-radius: 4px; }
.b-form-btn { height: 14px; background: linear-gradient(135deg, var(--green), #1fae74); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 700; color: #00261a; }
.build-toolbar { width: 95%; max-width: 400px; margin-top: 16px; display: flex; flex-direction: column; gap: 9px; }
.build-progress { height: 6px; background: rgba(255,255,255,.05); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.05); }
.build-progress-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent-2)); border-radius: 10px; transition: width .4s ease; box-shadow: 0 0 10px var(--accent); }
.build-steps { display: flex; gap: 5px; justify-content: space-between; }
.build-step { flex: 1; height: 34px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .3s; position: relative; opacity: .4; }
.build-step.done { background: linear-gradient(135deg, rgba(33,168,255,.2), rgba(124,92,255,.2)); border-color: var(--accent); opacity: 1; }
.build-step.active { background: linear-gradient(135deg, rgba(255,203,69,.3), rgba(255,159,67,.3)); border-color: var(--gold); opacity: 1; animation: stepPulse 1s ease-in-out infinite; }
@keyframes stepPulse { 0%,100% { box-shadow: 0 0 0 0 rgba(255,203,69,.5); } 50% { box-shadow: 0 0 0 6px rgba(255,203,69,0); } }
.hint { margin-top: 16px; font-size: 13.5px; opacity: .65; text-align: center; animation: pulse 1.6s ease-in-out infinite; line-height: 1.45; }
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: .92; } }
.seo-tabs { display: flex; gap: 6px; margin-bottom: 11px; background: var(--glass); padding: 4px; border-radius: 30px; border: 1px solid var(--glass-bd); }
.seo-tab { padding: 7px 16px; border-radius: 20px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all .25s; display: flex; align-items: center; gap: 6px; opacity: .6; }
.seo-tab.active { background: linear-gradient(135deg, rgba(33,168,255,.25), rgba(124,92,255,.25)); opacity: 1; box-shadow: 0 0 20px rgba(33,168,255,.2); }
.seo-tab .ico { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 11px; border-radius: 4px; }
.seo-tab .yandex-ic { background: #fc3f1d; color: #fff; font-family: Arial, sans-serif; }
.seo-tab .google-ic { background: #fff; color: #4285f4; font-family: Arial, sans-serif; }
.seo-goal { width: 95%; max-width: 400px; margin-bottom: 10px; display: flex; align-items: center; justify-content: space-between; gap: 10px; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 14px; padding: 10px 14px; }
.seo-goal .g-left { display: flex; flex-direction: column; gap: 2px; }
.seo-goal .g-label { font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .55; }
.seo-goal .g-pos { font-size: 13px; font-weight: 800; }
.seo-goal .g-pos b { font-size: 22px; color: var(--accent); transition: color .3s; }
.seo-goal .g-target { font-size: 10px; font-weight: 700; color: var(--gold); background: rgba(255,203,69,.12); border: 1px solid rgba(255,203,69,.3); padding: 7px 12px; border-radius: 30px; text-align: center; line-height: 1.3; }
.seo-power { width: 95%; max-width: 400px; margin-bottom: 10px; display: flex; flex-direction: column; gap: 5px; }
.seo-power-info { display: flex; justify-content: space-between; font-size: 10px; opacity: .8; }
.seo-power-info .sp-name { font-weight: 700; color: var(--accent); letter-spacing: .5px; }
.seo-power-track { height: 9px; background: rgba(255,255,255,.06); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.06); position: relative; }
.seo-power-fill { height: 100%; width: 0%; border-radius: 10px; transition: width .3s cubic-bezier(.34,1.4,.64,1); background: linear-gradient(90deg, var(--green), var(--accent) 55%, var(--gold)); box-shadow: 0 0 12px var(--accent); }
.seo-power-track .tick { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(255,255,255,.25); }
.seo-power-track .tick.t10 { left: 50%; }
.seo-power-track .tick.t3 { left: 80%; }
.serp { width: 95%; max-width: 400px; height: 300px; position: relative; background: rgba(255,255,255,.03); border-radius: var(--r-md); border: 1px solid var(--glass-bd); overflow: hidden; backdrop-filter: blur(22px); box-shadow: 0 24px 60px rgba(0,0,0,.45); }
.serp-header { position: absolute; top: 0; left: 0; right: 0; height: 38px; z-index: 5; background: rgba(0,0,0,.6); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; padding: 0 12px; gap: 8px; }
.serp-search { flex: 1; height: 24px; background: rgba(255,255,255,.08); border-radius: 13px; display: flex; align-items: center; padding: 0 12px; font-size: 10px; opacity: .9; gap: 6px; }
.serp-search::before { content: '🔍'; font-size: 10px; }
.serp-list { position: absolute; left: 0; right: 0; top: 38px; bottom: 0; padding: 9px 11px; display: flex; flex-direction: column; gap: 5px; transition: transform .4s cubic-bezier(.4,0,.2,1); overflow: hidden; }
.serp-item { height: 38px; background: rgba(255,255,255,.05); border-radius: 9px; display: flex; align-items: center; padding: 0 11px; font-size: 11px; gap: 8px; border: 1px solid rgba(255,255,255,.05); flex-shrink: 0; position: relative; }
.serp-item .pos { width: 20px; height: 20px; border-radius: 7px; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 10px; flex-shrink: 0; }
.serp-item .si-content { flex: 1; display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.serp-item .si-title { font-size: 10.5px; font-weight: 600; color: #7eb6ff; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.serp-item .si-url { font-size: 8.5px; opacity: .5; font-family: monospace; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.serp-item.you { background: linear-gradient(90deg, rgba(33,168,255,.25), rgba(124,92,255,.25)); border: 1px solid var(--accent); box-shadow: 0 0 30px rgba(33,168,255,.4); }
.serp-item.you .si-title { color: #fff; font-weight: 700; }
.serp-item.you .pos { background: var(--gold); color: #000; }
.serp-item.you::after { content: '⭐ ВЫ'; font-size: 9px; background: var(--gold); color: #000; padding: 3px 7px; border-radius: 10px; font-weight: 800; flex-shrink: 0; }
.seo-task { position: absolute; top: -46px; z-index: 6; cursor: pointer; background: linear-gradient(135deg, var(--gold), var(--orange)); color: #3a2600; padding: 8px 12px; border-radius: 14px; font-size: 10.5px; font-weight: 800; line-height: 1.2; text-align: center; box-shadow: 0 6px 22px rgba(255,203,69,.5); border: 1px solid rgba(255,255,255,.45); display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 84px; animation: taskFall 3.6s linear forwards; }
.seo-task .st-ic { font-size: 16px; }
.seo-task .st-sub { font-size: 8px; font-weight: 600; opacity: .8; }
@keyframes taskFall { 0% { top: -46px; opacity: 0; } 8% { opacity: 1; } 100% { top: 100%; opacity: .25; } }
.seo-task.tapped { animation: taskPop .35s ease forwards; }
@keyframes taskPop { to { transform: scale(2) rotate(-12deg); opacity: 0; } }
.seo-threat { position: absolute; top: -46px; z-index: 6; cursor: pointer; background: linear-gradient(135deg, rgba(255,77,109,.96), rgba(150,30,50,.96)); color: #fff; padding: 8px 12px; border-radius: 14px; font-size: 10.5px; font-weight: 800; line-height: 1.2; text-align: center; box-shadow: 0 6px 22px rgba(255,50,50,.5); border: 1px solid rgba(255,120,120,.5); display: flex; flex-direction: column; align-items: center; gap: 2px; min-width: 90px; animation: taskFall 4.2s linear forwards; }
.seo-threat .st-ic { font-size: 16px; }
.seo-threat .st-sub { font-size: 8px; font-weight: 600; opacity: .85; }
@keyframes threatBust { to { transform: scale(2.2) rotate(15deg); opacity: 0; } }
.seo-threat.busted { animation: threatBust .35s ease forwards; }
.serp.hit { animation: serpHit .4s ease; }
@keyframes serpHit { 0%,100% { box-shadow: 0 24px 60px rgba(0,0,0,.45); } 40% { box-shadow: 0 24px 60px rgba(0,0,0,.45), inset 0 0 60px rgba(255,77,109,.5); } }
.seo-stats { width: 95%; max-width: 400px; margin-top: 11px; display: flex; justify-content: space-between; gap: 8px; }
.seo-stat { flex: 1; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 12px; padding: 7px 8px; text-align: center; }
.seo-stat .v { font-size: 14px; font-weight: 700; color: var(--accent); }
.seo-stat .l { font-size: 8px; opacity: .5; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.act2-intro { position: absolute; inset: 0; background: rgba(7,11,31,.96); backdrop-filter: blur(10px); z-index: 10; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 28px; text-align: center; gap: 14px; border-radius: var(--r-md); transition: opacity .4s; }
.act2-intro.hide { opacity: 0; pointer-events: none; }
.act2-intro h3 { font-size: 18px; font-weight: 800; background: linear-gradient(135deg, var(--accent), var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.act2-rules { display: flex; flex-direction: column; gap: 10px; width: 100%; max-width: 280px; }
.act2-rule { display: flex; align-items: center; gap: 11px; text-align: left; font-size: 12px; line-height: 1.35; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 12px; padding: 10px 12px; }
.act2-rule .r-ic { font-size: 20px; flex-shrink: 0; width: 30px; text-align: center; }
.act2-rule b { color: var(--accent); }
.act2-rule.bad b { color: var(--red); }
.act2-countdown { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: flex; align-items: center; justify-content: center; font-size: 30px; font-weight: 800; box-shadow: 0 10px 40px rgba(33,168,255,.5); }
.leads-area { width: 100%; height: 100%; position: relative; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 62px 10px 10px; }
.counter { font-size: 42px; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 4px; text-shadow: 0 0 40px rgba(255,203,69,.3); transition: transform .15s; }
.counter.bump { transform: scale(1.18); }
.counter-label { font-size: 10px; opacity: .55; letter-spacing: 2px; margin-bottom: 12px; text-transform: uppercase; }
.level-bar { width: 90%; max-width: 340px; margin-bottom: 13px; display: flex; flex-direction: column; gap: 5px; }
.level-info { display: flex; justify-content: space-between; align-items: center; font-size: 10px; opacity: .85; }
.level-info .lv-name { font-weight: 700; color: var(--gold); letter-spacing: 1px; }
.level-info .lv-next { opacity: .5; }
.level-track { height: 5px; background: rgba(255,255,255,.05); border-radius: 10px; overflow: hidden; border: 1px solid rgba(255,255,255,.05); }
.level-fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--gold), var(--orange), var(--accent-2)); border-radius: 10px; transition: width .3s ease; box-shadow: 0 0 8px var(--gold); }
.combo { position: absolute; top: 35%; left: 50%; transform: translateX(-50%); font-size: 34px; font-weight: 900; background: linear-gradient(135deg, var(--accent-2), var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0; pointer-events: none; text-shadow: 0 0 30px rgba(124,92,255,.5); z-index: 4; text-align: center; }
.combo.show { animation: comboShow 1s ease-out; }
@keyframes comboShow { 0% { opacity: 0; transform: translateX(-50%) scale(.5) rotate(-10deg); } 30% { opacity: 1; transform: translateX(-50%) scale(1.2) rotate(5deg); } 70% { opacity: 1; transform: translateX(-50%) scale(1) rotate(-2deg); } 100% { opacity: 0; transform: translateX(-50%) scale(.9) translateY(-30px); } }
.multiplier { position: absolute; top: 66px; right: 14px; z-index: 6; background: linear-gradient(135deg, var(--accent-2), var(--orange)); padding: 5px 11px; border-radius: 20px; font-size: 11px; font-weight: 800; box-shadow: 0 5px 20px rgba(124,92,255,.5); display: none; align-items: center; gap: 4px; border: 1px solid rgba(255,255,255,.3); }
.multiplier.show { display: flex; animation: multiPulse .6s ease-in-out infinite; }
@keyframes multiPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
.leads-counter { display: flex; gap: 8px; margin-bottom: 11px; flex-wrap: wrap; justify-content: center; }
.stat { text-align: center; padding: 6px 9px; border-radius: 11px; background: var(--glass); border: 1px solid var(--glass-bd); min-width: 52px; }
.stat .v { font-size: 16px; font-weight: 700; color: var(--accent); }
.stat .l { font-size: 8px; opacity: .5; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
.timer-wrap { width: 90%; max-width: 340px; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
.timer-bar { flex: 1; height: 6px; background: rgba(255,255,255,.05); border-radius: 10px; overflow: hidden; }
.timer-fill { height: 100%; width: 100%; background: linear-gradient(90deg, var(--green), var(--accent)); transition: width .1s linear; box-shadow: 0 0 10px var(--green); }
.timer-fill.warn { background: linear-gradient(90deg, var(--orange), var(--red)); box-shadow: 0 0 10px #ff5500; }
.timer-text { font-size: 11px; font-weight: 700; font-family: monospace; color: var(--green); min-width: 30px; text-align: right; }
.timer-text.warn { color: var(--red); }
.lead-bubble { position: absolute; padding: 8px 13px; border-radius: 30px; background: rgba(255,255,255,.1); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,.15); font-size: 11px; display: flex; align-items: center; gap: 5px; cursor: pointer; font-weight: 600; color: #fff; box-shadow: 0 10px 30px rgba(0,0,0,.4); animation: bubbleIn .4s cubic-bezier(.34,1.56,.64,1); z-index: 3; white-space: nowrap; }
.lead-bubble.call { background: linear-gradient(135deg, var(--green), #1fae74); }
.lead-bubble.form { background: linear-gradient(135deg, var(--accent), #0066d6); }
.lead-bubble.msg { background: linear-gradient(135deg, var(--accent-2), #ff5500); }
.lead-bubble.order { background: linear-gradient(135deg, #9d6cff, #5a2cd6); }
.lead-bubble.email { background: linear-gradient(135deg, var(--accent-3), #0077aa); }
.lead-bubble.vip { background: linear-gradient(135deg, var(--gold), var(--orange)); color: #3a2600; box-shadow: 0 10px 30px rgba(255,203,69,.5), 0 0 0 2px rgba(255,255,255,.3) inset; animation: bubbleIn .4s cubic-bezier(.34,1.56,.64,1), vipPulse 1s ease-in-out infinite; }
.lead-bubble.boost { background: linear-gradient(135deg, #fff, #aaeeff); color: #003; box-shadow: 0 10px 30px rgba(255,255,255,.5), 0 0 0 2px var(--accent) inset; animation: bubbleIn .4s cubic-bezier(.34,1.56,.64,1), boostPulse .5s ease-in-out infinite; }
@keyframes vipPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.08); } }
@keyframes boostPulse { 0%,100% { transform: scale(1) rotate(-3deg); } 50% { transform: scale(1.1) rotate(3deg); } }
.lead-bubble.spam { background: linear-gradient(135deg, #666, #333); opacity: .85; }
.lead-bubble.popped { animation: popOut .35s ease forwards; pointer-events: none; }
@keyframes bubbleIn { from { opacity: 0; transform: scale(.3); } to { opacity: 1; transform: scale(1); } }
@keyframes popOut { to { opacity: 0; transform: scale(1.6) translateY(-30px); } }
.boost-overlay { position: absolute; inset: 0; pointer-events: none; z-index: 2; background: radial-gradient(ellipse at center, transparent 0%, rgba(255,203,69,.15) 100%); border: 3px solid var(--gold); border-radius: var(--r-md); opacity: 0; transition: opacity .3s; box-shadow: inset 0 0 60px rgba(255,203,69,.3); }
.boost-overlay.on { opacity: 1; animation: boostFlash .5s ease-in-out infinite; }
@keyframes boostFlash { 0%,100% { box-shadow: inset 0 0 60px rgba(255,203,69,.3); } 50% { box-shadow: inset 0 0 100px rgba(255,203,69,.6); } }
.final { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 13px; width: 100%; max-width: 430px; padding: 16px 0; }
.final-result { background: var(--glass); border: 1px solid rgba(255,203,69,.3); border-radius: var(--r-md); padding: 11px 18px; backdrop-filter: blur(20px); box-shadow: 0 0 40px rgba(255,203,69,.13); display: flex; gap: 20px; }
.final-result .item { text-align: center; }
.final-result .label { font-size: 9px; opacity: .6; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 3px; }
.final-result .value { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, var(--gold), var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-title { font-size: clamp(19px, 5vw, 24px); font-weight: 800; line-height: 1.18; background: linear-gradient(120deg, #fff, var(--gold)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.final-sub { font-size: 12.5px; opacity: .68; max-width: 350px; line-height: 1.5; }
.seo-content { width: 100%; text-align: left; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--r-md); padding: 14px 15px 6px; backdrop-filter: blur(18px); margin-top: 2px; }
.seo-content h2 { font-size: 13px; font-weight: 800; margin-bottom: 7px; line-height: 1.3; background: linear-gradient(115deg, #fff, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.seo-content p { font-size: 11px; line-height: 1.5; opacity: .72; margin-bottom: 9px; }
.seo-content p strong { color: var(--accent); font-weight: 700; opacity: 1; }
.seo-content ul, .seo-content ol { font-size: 11px; line-height: 1.6; opacity: .72; margin-bottom: 9px; padding-left: 18px; }
.seo-content li { margin-bottom: 3px; }
.seo-content li strong { color: var(--accent); }
.seo-content a { color: var(--accent); text-decoration: none; }
.seo-content a:hover { text-decoration: underline; }
.seo-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.seo-tag { font-size: 9.5px; font-weight: 600; padding: 4px 10px; border-radius: 30px; background: rgba(33,168,255,.1); border: 1px solid rgba(33,168,255,.25); color: var(--accent); opacity: .9; }
.faq-title { font-size: 10.5px; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; opacity: .55; margin-bottom: 6px; display: flex; align-items: center; gap: 7px; }
.faq-title::before { content: '❓'; font-size: 11px; }
.faq-item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq-item:last-child { border-bottom: none; }
.faq-q { width: 100%; background: none; border: none; color: var(--ink); font-size: 12px; font-weight: 600; text-align: left; cursor: pointer; padding: 10px 24px 10px 0; position: relative; font-family: inherit; line-height: 1.35; transition: color .2s; }
.faq-q:hover { color: var(--accent); }
.faq-q::after { content: '+'; position: absolute; right: 2px; top: 50%; transform: translateY(-50%); font-size: 17px; font-weight: 400; color: var(--accent); transition: transform .3s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; font-size: 11px; line-height: 1.5; opacity: .72; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-a { max-height: 300px; padding: 0 0 11px; }
.lead-form { width: 100%; display: flex; flex-direction: column; gap: 11px; margin-top: 4px; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 18px; padding: 17px; backdrop-filter: blur(20px); }
.form-row { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.form-row label { font-size: 10px; opacity: .6; letter-spacing: 1.5px; text-transform: uppercase; font-weight: 600; }
.form-input { background: rgba(0,0,0,.3); border: 1px solid rgba(255,255,255,.15); color: #fff; padding: 13px 16px; border-radius: 12px; font-size: 16px; font-family: inherit; outline: none; transition: all .2s; width: 100%; }
.form-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(33,168,255,.15); background: rgba(0,0,0,.5); }
.form-input.error { border-color: var(--red); animation: shake .3s; }
@keyframes shake { 0%,100% { transform: translateX(0); } 25% { transform: translateX(-5px); } 75% { transform: translateX(5px); } }
.form-check { display: flex; align-items: flex-start; gap: 10px; font-size: 11px; opacity: .8; line-height: 1.5; cursor: pointer; text-align: left; }
.form-check input { appearance: none; -webkit-appearance: none; width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid rgba(255,255,255,.3); background: rgba(0,0,0,.3); cursor: pointer; flex-shrink: 0; margin-top: 1px; position: relative; transition: all .2s; }
.form-check input:checked { background: var(--accent); border-color: var(--accent); }
.form-check input:checked::after { content: '✓'; position: absolute; color: #000; font-weight: 900; font-size: 13px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.form-check a { color: var(--accent); text-decoration: none; }
.submit-btn { width: 100%; padding: 15px; border: none; border-radius: 50px; cursor: pointer; background: linear-gradient(135deg, var(--green), #1fae74); color: #00261a; font-weight: 800; font-size: 16px; box-shadow: 0 10px 30px rgba(61,220,151,.3); transition: all .2s; display: flex; align-items: center; justify-content: center; gap: 10px; }
.submit-btn:hover:not(:disabled) { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(61,220,151,.5); }
.submit-btn:active { transform: translateY(0) scale(.98); }
.submit-btn:disabled { opacity: .6; cursor: not-allowed; }
.form-status { font-size: 12px; text-align: center; min-height: 16px; transition: all .3s; }
.form-status.error { color: #ff6688; }
.form-status.success { color: var(--green); }
.spinner { width: 16px; height: 16px; border: 2px solid rgba(0,0,0,.2); border-top-color: #000; border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.success-screen { text-align: center; padding: 30px 20px; display: none; flex-direction: column; align-items: center; gap: 18px; }
.success-screen.show { display: flex; animation: bubbleIn .5s cubic-bezier(.34,1.56,.64,1); }
.success-icon { width: 82px; height: 82px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #1fae74); display: flex; align-items: center; justify-content: center; font-size: 42px; box-shadow: 0 20px 60px rgba(61,220,151,.4); }
.hp { position: absolute !important; left: -9999px !important; opacity: 0 !important; pointer-events: none; }
.scene::-webkit-scrollbar { width: 5px; }
.scene::-webkit-scrollbar-thumb { background: rgba(33,168,255,.3); border-radius: 10px; }

/* === ВНУТРЕННИЕ СТРАНИЦЫ === */
.internal-page { min-height: 100vh; display: flex; flex-direction: column; align-items: center; padding: 80px 20px 40px; position: relative; z-index: 1; overflow-y: auto; }
.internal-page h1 { font-size: clamp(24px, 6vw, 36px); font-weight: 800; text-align: center; margin-bottom: 16px; background: linear-gradient(115deg, #fff, var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1.2; }
.internal-page .page-subtitle { font-size: 15px; opacity: .7; text-align: center; margin-bottom: 30px; max-width: 600px; }
.content-block { width: 100%; max-width: 800px; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: var(--r-md); padding: 24px; backdrop-filter: blur(20px); margin-bottom: 20px; }
.content-block h2 { font-size: 18px; font-weight: 700; margin-bottom: 12px; color: var(--accent); }
.content-block h3 { font-size: 15px; font-weight: 600; margin: 16px 0 8px; color: var(--ink); }
.content-block p { font-size: 14px; line-height: 1.6; opacity: .85; margin-bottom: 12px; }
.content-block ul, .content-block ol { font-size: 14px; line-height: 1.6; opacity: .85; margin-bottom: 12px; padding-left: 20px; }
.content-block li { margin-bottom: 6px; }
.content-block strong { color: var(--accent); }
.content-block a { color: var(--accent); text-decoration: none; }
.content-block a:hover { text-decoration: underline; }
.back-link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 24px; background: var(--glass); border: 1px solid var(--glass-bd); border-radius: 50px; color: var(--accent); text-decoration: none; font-weight: 600; margin-top: 20px; transition: .2s; }
.back-link:hover { border-color: var(--accent); background: rgba(33,168,255,.1); }
.cta-block { width: 100%; max-width: 800px; background: linear-gradient(135deg, rgba(33,168,255,.1), rgba(124,92,255,.1)); border: 1px solid rgba(33,168,255,.3); border-radius: var(--r-md); padding: 24px; text-align: center; margin: 20px 0; }
.cta-block h3 { font-size: 18px; margin-bottom: 8px; }
.cta-block p { font-size: 14px; opacity: .8; margin-bottom: 16px; }
.cta-btn { display: inline-block; padding: 14px 32px; background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #fff; text-decoration: none; border-radius: 50px; font-weight: 700; font-size: 15px; box-shadow: 0 10px 30px rgba(33,168,255,.3); transition: .2s; }
.cta-btn:hover { transform: translateY(-2px); box-shadow: 0 15px 40px rgba(33,168,255,.5); }