/* =========================================
   VENDRIX — Cyber Premium Style
   Dark + Neon Green #00FF88 + Violet #8B5CF6
   ========================================= */

:root {
  /* Neon palette */
  --neon: #00FF88;
  --neon-dark: #00C853;
  --neon-deep: #009B40;
  --neon-glow: rgba(0, 255, 136, 0.5);
  --neon-soft: rgba(0, 255, 136, 0.12);
  --violet: #8B5CF6;
  --violet-dark: #7C3AED;
  --violet-glow: rgba(139, 92, 246, 0.5);
  --violet-soft: rgba(139, 92, 246, 0.12);

  /* Cyber dark */
  --bg: #05070A;
  --bg-1: #0A0E13;
  --bg-2: #0F1419;
  --bg-3: #141A20;
  --surface: #0D1218;
  --surface-2: #121820;
  --border: rgba(255, 255, 255, 0.06);
  --border-strong: rgba(255, 255, 255, 0.12);
  --border-neon: rgba(0, 255, 136, 0.3);

  /* Text */
  --text: #FFFFFF;
  --text-2: rgba(255, 255, 255, 0.72);
  --text-3: rgba(255, 255, 255, 0.5);
  --text-4: rgba(255, 255, 255, 0.35);

  /* Fonts */
  --font-mono: 'JetBrains Mono', monospace;

  /* Radii */
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  /* Shadows */
  --shadow-neon: 0 0 60px rgba(0, 255, 136, 0.25);
  --shadow-violet: 0 0 60px rgba(139, 92, 246, 0.25);
  --shadow-card: 0 30px 80px rgba(0, 0, 0, 0.5);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.loading { overflow: hidden; }
body.modal-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
svg { color: currentColor; flex-shrink: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== GRADIENT TEXT ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--neon) 0%, var(--violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatY2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}
@keyframes orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -50px) scale(1.15); }
  66% { transform: translate(-40px, 40px) scale(.9); }
}
@keyframes growBar {
  from { transform: scaleY(0); }
  to { transform: scaleY(1); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(20px); opacity: 0; }
}
@keyframes drawPath { to { stroke-dashoffset: 0; } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(0, 255, 136, .4); }
  50% { box-shadow: 0 8px 44px rgba(0, 255, 136, .8); }
}
@keyframes leadFloat {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(0); }
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}
@keyframes ringPulse {
  0% { transform: translate(-50%, -50%) scale(.4); opacity: .8; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(12px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hintBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}
@keyframes cursorMove {
  0% { transform: translate(0, 0); }
  40% { transform: translate(160px, 120px); }
  60% { transform: translate(160px, 120px) scale(1.3); }
  70% { transform: translate(160px, 120px) scale(1); }
  100% { transform: translate(0, 0); }
}
@keyframes gridPulse {
  0%, 100% { opacity: .35; }
  50% { opacity: .55; }
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(30px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes modalOut {
  from { opacity: 1; transform: translateY(0) scale(1); }
  to { opacity: 0; transform: translateY(20px) scale(.97); }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .7s, visibility .7s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  position: relative;
}
.preloader-logo {
  position: relative;
  animation: preloaderPulse 2s ease-in-out infinite;
}
@keyframes preloaderPulse {
  0%, 100% { filter: drop-shadow(0 0 20px rgba(0,255,136,.3)); }
  50% { filter: drop-shadow(0 0 40px rgba(0,255,136,.7)); }
}
.preloader-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: drawPath 1.4s cubic-bezier(.65, 0, .35, 1) forwards;
}
.preloader-text {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 8px;
  color: var(--text);
  opacity: 0;
  animation: fadeInUp .6s .5s forwards;
}
.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: 100px;
  overflow: hidden;
  opacity: 0;
  animation: fadeInUp .6s .7s forwards;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--violet));
  border-radius: 100px;
  transition: width .3s ease;
  box-shadow: 0 0 20px var(--neon-glow);
}
.preloader {
  display: none !important;
}



/* ===== HERO ANIMS ===== */
[data-anim] { opacity: 0; }
body.ready [data-anim] {
  animation-duration: 1.1s;
  animation-timing-function: cubic-bezier(.16, 1, .3, 1);
  animation-fill-mode: forwards;
}
body.ready [data-anim="fade-up"] { animation-name: animFadeUp; }
body.ready [data-anim="blur-in"] { animation-name: animBlurIn; }
body.ready [data-anim="scale-in"] { animation-name: animScaleIn; }
body.ready [data-delay="0"] { animation-delay: .05s; }
body.ready [data-delay="1"] { animation-delay: .15s; }
body.ready [data-delay="2"] { animation-delay: .25s; }
body.ready [data-delay="3"] { animation-delay: .35s; }
body.ready [data-delay="4"] { animation-delay: .45s; }
body.ready [data-delay="5"] { animation-delay: .60s; }
body.ready [data-delay="6"] { animation-delay: .75s; }
body.ready [data-delay="7"] { animation-delay: .90s; }
body.ready [data-delay="8"] { animation-delay: 1.05s; }

@keyframes animFadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes animBlurIn {
  from { opacity: 0; transform: translateY(40px); filter: blur(14px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes animScaleIn {
  from { opacity: 0; transform: scale(.92) translateY(30px); filter: blur(8px); }
  to { opacity: 1; transform: scale(1) translateY(0); filter: blur(0); }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.16, 1, .3, 1), transform .9s cubic-bezier(.16, 1, .3, 1);
}
.reveal.active { opacity: 1; transform: translateY(0); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: all .4s;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(5, 7, 10, .85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--neon) 0%, var(--violet) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 0 20px rgba(0, 255, 136, .3);
}
.logo:hover .logo-mark {
  transform: rotate(-8deg) scale(1.08);
  box-shadow: 0 0 30px rgba(0, 255, 136, .5);
}
.logo-mark svg { color: #000; }

.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  color: var(--text-3);
  font-size: 14px;
  font-weight: 500;
  transition: color .3s;
  position: relative;
}
.nav-links a:hover { color: var(--neon); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 2px;
  background: var(--neon);
  border-radius: 2px;
  transition: width .35s cubic-bezier(.16, 1, .3, 1);
  box-shadow: 0 0 8px var(--neon-glow);
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: #000;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(0, 255, 136, .35);
}
.nav-cta svg { color: #000; transition: transform .35s; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(0, 255, 136, .6);
}
.nav-cta:hover svg { transform: translateX(3px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.burger span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: all .3s;
  border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: radial-gradient(ellipse at top, #0B1420 0%, var(--bg) 60%);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .55;
}
.hero-orb-1 {
  top: -200px; right: -100px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, .35) 0%, transparent 70%);
  animation: orb 22s ease-in-out infinite;
}
.hero-orb-2 {
  bottom: -300px; left: -200px;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(139, 92, 246, .3) 0%, transparent 70%);
  animation: orb 28s ease-in-out infinite reverse;
}
.hero-orb-3 {
  top: 30%; left: 40%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, .15) 0%, transparent 70%);
  animation: orb 35s ease-in-out infinite;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, .04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 40%, black 30%, transparent 100%);
  animation: gridPulse 6s ease-in-out infinite;
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.hero-particle {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--neon);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px var(--neon-glow);
  animation: particleFloat linear infinite;
}

.hero .container { position: relative; z-index: 2; }
.hero-container { width: 100%; }

.hero-meta {
  position: absolute;
  top: 110px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-4);
  opacity: 0;
  animation: animFadeUp 1s 1.4s cubic-bezier(.16, 1, .3, 1) forwards;
}
.hero-meta-left { left: 24px; }
.hero-meta-right { right: 24px; }
.hero-meta-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon-glow);
  animation: pulse 2s infinite;
}
.hero-meta-divider {
  width: 24px;
  height: 1px;
  background: var(--border-strong);
  margin: 0 4px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--neon);
  margin-bottom: 32px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}

.hero-title {
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3.5px;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-title-line { display: block; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 60px var(--neon-glow);
}
.hero-title .accent-alt {
  background: linear-gradient(135deg, var(--violet) 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 60px var(--violet-glow);
}

.hero-sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.hero-trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero-trust-value {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
  color: var(--text);
}
.hero-trust-value span {
  font-size: 16px;
  color: var(--neon);
  margin-left: 2px;
  text-shadow: 0 0 12px var(--neon-glow);
}
.hero-trust-label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-4);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.hero-trust-divider {
  width: 1px;
  height: 34px;
  background: var(--border-strong);
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative;
  height: 580px;
  perspective: 1400px;
}
.hero-visual-tilt {
  position: relative;
  width: 100%; height: 100%;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
  transform-style: preserve-3d;
}

.mockup-main {
  position: absolute;
  top: 0; right: 0;
  width: 100%;
  max-width: 480px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 80px rgba(0, 255, 136, .2),
    0 50px 120px rgba(0, 0, 0, .7);
  overflow: hidden;
  transform: rotateY(-3deg) rotateX(2deg);
}

.mockup-header {
  padding: 14px 20px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mockup-dot.red { background: #FF5F57; }
.mockup-dot.yellow { background: #FFBD2E; }
.mockup-dot.green { background: #28CA41; }

.mockup-url {
  flex: 1;
  margin-left: 12px;
  background: rgba(255, 255, 255, .04);
  border-radius: 6px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  border: 1px solid var(--border);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mockup-body { padding: 20px; background: var(--bg-1); }

.mockup-hero {
  background: linear-gradient(135deg, #0B1F14 0%, #061812 100%);
  border-radius: 14px;
  padding: 28px 24px;
  color: white;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, .15);
}
.mockup-hero::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, .35) 0%, transparent 70%);
  border-radius: 50%;
}
.mockup-tag {
  display: inline-block;
  background: rgba(0, 255, 136, .15);
  color: var(--neon);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  border: 1px solid rgba(0, 255, 136, .3);
  position: relative;
  z-index: 1;
}
.mockup-hero h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.mockup-hero p {
  font-size: 11px;
  opacity: .65;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.mockup-hero-actions { display: flex; gap: 8px; position: relative; z-index: 1; }
.mockup-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: #000;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  box-shadow: 0 0 20px rgba(0, 255, 136, .4);
}
.mockup-btn-ghost {
  display: inline-block;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .15);
  color: white;
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
}

.mockup-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mockup-card {
  background: var(--surface);
  border-radius: 12px;
  padding: 14px 12px;
  border: 1px solid var(--border);
  transition: all .3s;
}
.mockup-card:hover { transform: translateY(-2px); border-color: var(--border-neon); }
.mockup-card-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: rgba(0, 255, 136, .12);
  border: 1px solid rgba(0, 255, 136, .2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
}
.mockup-card-title { font-size: 10px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.mockup-card-line {
  height: 5px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  margin-bottom: 5px;
}
.mockup-card-line.short { width: 60%; }

.crm-float {
  position: absolute;
  bottom: 30px; left: -20px;
  width: 270px;
  background: rgba(13, 18, 24, .9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 60px rgba(0, 255, 136, .15),
    0 30px 60px rgba(0, 0, 0, .5);
  padding: 18px;
  animation: floatY 6s ease-in-out infinite;
  z-index: 3;
}
.crm-float-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.crm-float-header-left { display: flex; align-items: center; gap: 8px; }
.crm-float-icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(0, 255, 136, .12);
  border: 1px solid rgba(0, 255, 136, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
}
.crm-float-title { font-size: 12.5px; font-weight: 700; color: var(--text); }
.crm-float-badge {
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 100px;
  box-shadow: 0 0 12px rgba(0, 255, 136, .5);
}
.crm-lead {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255, 255, 255, .03);
  border-radius: 10px;
  margin-bottom: 8px;
  transition: all .3s;
  border: 1px solid var(--border);
}
.crm-lead:last-child { margin-bottom: 0; }
.crm-lead-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 255, 136, .4);
}
.crm-lead-avatar.alt {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff;
  box-shadow: 0 0 16px rgba(139, 92, 246, .4);
}
.crm-lead-info { flex: 1; min-width: 0; }
.crm-lead-name { font-size: 11px; font-weight: 700; margin-bottom: 2px; color: var(--text); }
.crm-lead-status { font-size: 10px; color: var(--text-4); }
.crm-lead-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  flex-shrink: 0;
  box-shadow: 0 0 10px var(--neon-glow);
}

.metric-float {
  position: absolute;
  top: 30px; left: -30px;
  background: rgba(13, 18, 24, .9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 60px rgba(139, 92, 246, .15),
    0 30px 60px rgba(0, 0, 0, .5);
  padding: 16px 20px;
  animation: floatY2 7s ease-in-out infinite;
  animation-delay: -1s;
  z-index: 3;
}
.metric-float-label {
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-4);
  font-weight: 700;
  margin-bottom: 4px;
}
.metric-float-value {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  color: var(--text);
}
.metric-float-value span {
  font-size: 16px;
  background: linear-gradient(135deg, var(--neon), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-float-trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  color: var(--neon);
  margin-top: 6px;
}

.lead-flow {
  position: absolute;
  top: 40px; left: -40px;
  background: rgba(13, 18, 24, .9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius);
  border: 1px solid var(--border-strong);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  animation: floatY 8s ease-in-out infinite;
  animation-delay: -2s;
  z-index: 3;
  white-space: nowrap;
}
.lead-flow-step { display: flex; align-items: center; gap: 6px; color: var(--text-4); }
.lead-flow-step.active { color: var(--neon); }
.lead-flow-step .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-strong);
}
.lead-flow-step.active .dot {
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
}
.lead-flow-arrow { color: var(--border-strong); font-size: 10px; }

.scroll-indicator {
  position: absolute;
  bottom: 130px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  opacity: 0;
  animation: animFadeUp 1s 1.6s cubic-bezier(.16, 1, .3, 1) forwards;
}
.scroll-indicator-text {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-4);
}
.scroll-indicator-line {
  width: 24px;
  height: 40px;
  border: 2px solid var(--border-strong);
  border-radius: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-indicator-dot {
  width: 4px; height: 8px;
  background: var(--neon);
  border-radius: 100px;
  box-shadow: 0 0 10px var(--neon-glow);
  animation: scrollDot 1.8s ease-in-out infinite;
}

.marquee {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 10, .7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  z-index: 3;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-3);
  letter-spacing: -.3px;
  transition: color .3s;
}
.marquee-item:hover { color: var(--neon); }
.marquee-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 8px var(--neon-glow);
  flex-shrink: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  cursor: pointer;
  line-height: 1;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--neon) 0%, var(--neon-dark) 100%);
  color: #000;
  box-shadow: 0 0 30px rgba(0, 255, 136, .35);
}
.btn-primary svg { color: #000; }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 50px rgba(0, 255, 136, .7);
}
.btn-ghost {
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(10px);
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-ghost svg { color: var(--neon); }
.btn-ghost:hover {
  border-color: var(--neon);
  background: rgba(0, 255, 136, .08);
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 255, 136, .25);
}
.btn .arrow { transition: transform .35s; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-full { width: 100%; }

/* ===== SECTIONS ===== */
section { padding: 110px 0; position: relative; }

.section-header { max-width: 680px; margin-bottom: 64px; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--neon);
  margin-bottom: 18px;
  padding: 7px 14px;
  background: rgba(0, 255, 136, .08);
  border-radius: 100px;
  border: 1px solid rgba(0, 255, 136, .2);
}
.section-label.light {
  background: rgba(139, 92, 246, .1);
  border-color: rgba(139, 92, 246, .3);
  color: var(--violet);
}
.section-label-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
}

.section-header h2,
.section-title-lg {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text);
}
.section-header p,
.section-desc {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ===== SERVICES ===== */
.services { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--neon), var(--violet));
  border-radius: inherit;
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-neon);
  box-shadow: 0 0 60px rgba(0, 255, 136, .15), 0 30px 60px rgba(0, 0, 0, .5);
}
.service-card-glow {
  position: absolute;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 136, .15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
  top: -50%; right: -50%;
}
.service-card:hover .service-card-glow { opacity: 1; }
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: rgba(0, 255, 136, .1);
  border: 1px solid rgba(0, 255, 136, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
  color: var(--neon);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  transform: scale(1.05) rotate(-6deg);
  box-shadow: 0 0 40px rgba(0, 255, 136, .6);
  color: #000;
}
.service-card:hover .service-icon svg { color: #000; }
.service-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -.5px;
  color: var(--text);
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-3);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-arrow {
  display: inline-flex;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  color: var(--text-3);
}
.service-card:hover .service-arrow {
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  border-color: transparent;
  transform: translateX(4px);
  color: #000;
}
.service-card:hover .service-arrow svg { color: #000; }

/* =========================================
   CINEMATIC JOURNEY
   ========================================= */
.journey {
  position: relative;
  height: 600vh;
  background: radial-gradient(ellipse at center, #0B1420 0%, var(--bg) 70%);
  padding: 0;
}
.journey-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.journey-orb {
  position: absolute;
  top: 20%; right: -20%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, .2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  animation: orb 25s ease-in-out infinite;
}
.journey-orb-2 {
  position: absolute;
  bottom: 10%; left: -15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, .2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  animation: orb 30s ease-in-out infinite reverse;
}
.journey-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 136, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 136, .03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 30%, transparent 100%);
  animation: gridPulse 6s ease-in-out infinite;
}
.journey-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.journey-header { text-align: center; max-width: 720px; }
.journey-header h2 {
  font-size: 44px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--text);
  margin-bottom: 16px;
}
.journey-header p {
  font-size: 16px;
  color: var(--text-3);
  line-height: 1.7;
}

.journey-progress { width: 100%; max-width: 780px; position: relative; }
.journey-progress-track {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, .06);
  border-radius: 100px;
  overflow: hidden;
  position: relative;
}
.journey-progress-fill {
  position: absolute;
  top: 0; left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--neon), var(--violet));
  border-radius: 100px;
  box-shadow: 0 0 14px var(--neon-glow);
  transition: width .5s cubic-bezier(.16, 1, .3, 1);
}
.journey-progress-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
}
.journey-plabel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: all .5s cubic-bezier(.16, 1, .3, 1);
}
.journey-plabel-num {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--text-4);
  letter-spacing: 1px;
}
.journey-plabel-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-4);
  letter-spacing: .5px;
  text-transform: uppercase;
}
.journey-plabel.active .journey-plabel-num {
  color: var(--neon);
  text-shadow: 0 0 12px var(--neon-glow);
}
.journey-plabel.active .journey-plabel-text { color: var(--text); }
.journey-plabel.passed .journey-plabel-num { color: var(--violet); }
.journey-plabel.passed .journey-plabel-text { color: rgba(139, 92, 246, .7); }

.journey-stage {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 460px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.journey-scene {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transform: translateY(60px) scale(.94);
  transition: all .9s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.journey-scene.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.scene-caption { text-align: center; max-width: 460px; }
.scene-caption-num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 3px;
  margin-bottom: 8px;
  opacity: .85;
}
.scene-caption-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.5px;
  margin-bottom: 6px;
}
.scene-caption-desc {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
}

/* Scene 1 */
.scene-browser {
  width: 100%;
  max-width: 560px;
  background: var(--surface);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 80px rgba(0, 255, 136, .2),
    0 40px 100px rgba(0, 0, 0, .7);
  position: relative;
}
.scene-browser-header {
  padding: 12px 18px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--border);
}
.scene-browser-header .mockup-url {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border);
  color: var(--text-3);
  font-size: 10.5px;
}
.scene-browser-body { padding: 24px; }
.scene-hero {
  background: linear-gradient(135deg, #0D2818 0%, #061A0E 100%);
  border-radius: 14px;
  padding: 32px 28px;
  color: white;
  text-align: left;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 255, 136, .15);
}
.scene-hero::after {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 136, .35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.scene-tag {
  display: inline-block;
  background: rgba(0, 255, 136, .2);
  color: var(--neon);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
  border: 1px solid rgba(0, 255, 136, .35);
  position: relative;
  z-index: 1;
}
.scene-hero h4 {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.5px;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.scene-hero p {
  font-size: 12px;
  opacity: .7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.scene-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: #000;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 30px rgba(0, 255, 136, .5);
}
.journey-scene.active .scene-cta { animation: ctaPulse 1.8s ease-in-out infinite; }

.scene-cursor {
  position: absolute;
  width: 26px; height: 26px;
  color: var(--neon);
  filter: drop-shadow(0 0 12px var(--neon-glow));
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s;
  top: 60%; left: 20%;
}
.journey-scene.active .scene-cursor {
  opacity: 1;
  animation: cursorMove 2.4s ease-in-out infinite;
}

/* Scene 2 */
.scene-lead-card {
  width: 100%;
  max-width: 380px;
  background: var(--surface);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(0, 255, 136, .35);
  box-shadow:
    0 0 80px rgba(0, 255, 136, .3),
    0 30px 80px rgba(0, 0, 0, .7);
  position: relative;
}
.journey-scene.active .scene-lead-card { animation: leadFloat 3s ease-in-out infinite; }
.scene-lead-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.scene-lead-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: rgba(0, 255, 136, .15);
  border: 1px solid rgba(0, 255, 136, .35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
}
.scene-lead-title { flex: 1; font-size: 14px; font-weight: 800; color: var(--text); }
.scene-lead-badge {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  color: var(--neon);
  letter-spacing: 1.5px;
  background: rgba(0, 255, 136, .15);
  padding: 3px 8px;
  border-radius: 100px;
  border: 1px solid rgba(0, 255, 136, .35);
}
.scene-lead-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  font-size: 13px;
  border-bottom: 1px dashed rgba(255, 255, 255, .06);
}
.scene-lead-row span { color: var(--text-4); }
.scene-lead-row strong { color: var(--text); font-weight: 700; }
.scene-lead-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--neon);
}
.scene-lead-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  animation: pulse 1.5s infinite;
}

/* Scene 3 */
.scene-crm {
  width: 100%;
  max-width: 680px;
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border-strong);
  padding: 20px;
  box-shadow:
    0 0 80px rgba(139, 92, 246, .2),
    0 40px 100px rgba(0, 0, 0, .7);
}
.scene-crm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.scene-crm-title { font-size: 13px; font-weight: 800; color: var(--text); letter-spacing: -.3px; }
.scene-crm-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: var(--neon);
  padding: 4px 10px;
  background: rgba(0, 255, 136, .1);
  border-radius: 100px;
  border: 1px solid rgba(0, 255, 136, .25);
}
.scene-crm-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  animation: pulse 1.5s infinite;
}
.scene-crm-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.scene-crm-col {
  background: rgba(255, 255, 255, .02);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 8px;
}
.scene-crm-col-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-4);
  margin-bottom: 8px;
}
.scene-crm-card {
  background: rgba(255, 255, 255, .04);
  border-left: 3px solid var(--neon);
  border-radius: 8px;
  padding: 9px 8px;
}
.scene-crm-card.blue { border-left-color: #3B82F6; }
.scene-crm-card.orange { border-left-color: #F59E0B; }
.scene-crm-card.purple { border-left-color: var(--violet); }
.scene-crm-card.green { border-left-color: var(--neon); }
.scene-crm-name { font-size: 9.5px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.scene-crm-meta { font-size: 8.5px; color: var(--text-4); }

/* Scene 4 */
.scene-phone {
  width: 260px;
  background: var(--surface);
  border-radius: 36px;
  padding: 12px;
  position: relative;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 80px rgba(0, 255, 136, .25),
    0 40px 100px rgba(0, 0, 0, .7);
}
.journey-scene.active .scene-phone { animation: phoneFloat 3.5s ease-in-out infinite; }
.scene-phone-notch {
  position: absolute;
  top: 12px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 3;
}
.scene-phone-screen {
  background: linear-gradient(180deg, #0F2419 0%, #050D08 100%);
  border-radius: 26px;
  overflow: hidden;
  padding-top: 30px;
  min-height: 420px;
}
.scene-tg-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, .02);
}
.scene-tg-back { color: var(--neon); font-size: 14px; font-weight: 700; }
.scene-tg-title { flex: 1; font-size: 12px; font-weight: 700; color: var(--text); }
.scene-tg-icon { color: var(--text-4); }
.scene-tg-messages { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.scene-tg-msg {
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 12px;
  border: 1px solid rgba(0, 255, 136, .2);
  position: relative;
}
.scene-tg-msg-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
  font-size: 11px;
  color: var(--neon);
}
.scene-tg-msg-header strong { font-size: 11.5px; color: var(--text); font-weight: 700; }
.scene-tg-msg-line { font-size: 10.5px; color: var(--text-2); padding: 2px 0; line-height: 1.5; }
.scene-tg-msg-time { font-size: 9px; color: var(--text-4); margin-top: 8px; text-align: right; }
.scene-tg-reply {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 0 20px rgba(0, 255, 136, .35);
}
.scene-tg-reply-text { font-size: 11px; font-weight: 800; color: #000; }
.journey-scene.active .scene-tg-msg { animation: msgIn .6s cubic-bezier(.16, 1, .3, 1) .3s both; }
.journey-scene.active .scene-tg-reply { animation: msgIn .6s cubic-bezier(.16, 1, .3, 1) .9s both; }

/* Scene 5 */
.scene-success {
  width: 100% !important;
  max-width: 300px !important;
  background: linear-gradient(135deg, rgba(0, 255, 136, .08) 0%, rgba(139, 92, 246, .08) 100%) !important;
  border: 1px solid rgba(0, 255, 136, .3) !important;
  border-radius: 16px !important;
  padding: 20px 18px !important;
  text-align: center !important;
  position: relative !important;
  overflow: hidden !important;
  box-shadow: 0 0 50px rgba(0, 255, 136, .2), 0 15px 40px rgba(0, 0, 0, .5) !important;
}
.scene-success-rings {
  position: absolute !important;
  top: 50% !important; left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: 100px !important; height: 100px !important;
  pointer-events: none !important;
}
.scene-success-ring {
  position: absolute !important;
  top: 50% !important; left: 50% !important;
  width: 100% !important; height: 100% !important;
  border-radius: 50% !important;
  border: 1.5px solid var(--neon) !important;
  transform: translate(-50%, -50%) scale(.4) !important;
  opacity: 0 !important;
}
.journey-scene.active .ring-1 { animation: ringPulse 2.4s ease-out infinite !important; }
.journey-scene.active .ring-2 { animation: ringPulse 2.4s ease-out .4s infinite !important; }
.journey-scene.active .ring-3 { animation: ringPulse 2.4s ease-out .8s infinite !important; }

.scene-success-icon {
  width: 46px !important; height: 46px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 10px !important;
  color: #000 !important;
  box-shadow: 0 0 30px rgba(0, 255, 136, .6) !important;
  position: relative !important;
  z-index: 2 !important;
}
.scene-success-icon svg {
  width: 24px !important;
  height: 24px !important;
}

.scene-success-title {
  font-size: 16px !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  letter-spacing: -.3px !important;
  margin-bottom: 2px !important;
  position: relative !important;
  z-index: 2 !important;
}

.scene-success-amount {
  font-size: 22px !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, var(--neon), var(--violet)) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  letter-spacing: -.8px !important;
  margin-bottom: 14px !important;
  position: relative !important;
  z-index: 2 !important;
}

.scene-success-stats {
  display: grid !important;
  grid-template-columns: 1fr 1px 1fr 1px 1fr !important;
  gap: 6px !important;
  align-items: center !important;
  padding-top: 12px !important;
  border-top: 1px solid rgba(0, 255, 136, .2) !important;
  position: relative !important;
  z-index: 2 !important;
}

.scene-success-stat { text-align: center !important; }

.scene-success-stat-value {
  font-size: 13px !important;
  font-weight: 900 !important;
  color: var(--text) !important;
  letter-spacing: -.3px !important;
  margin-bottom: 1px !important;
}

.scene-success-stat-label {
  font-family: var(--font-mono) !important;
  font-size: 7px !important;
  font-weight: 700 !important;
  color: var(--text-4) !important;
  letter-spacing: .8px !important;
  text-transform: uppercase !important;
}

.scene-success-divider {
  width: 1px !important;
  height: 18px !important;
  background: rgba(0, 255, 136, .2) !important;
}

/* На телефоне — ещё меньше */
@media (max-width: 768px) {
  .scene-success {
    max-width: 260px !important;
    padding: 16px 14px !important;
  }
  .scene-success-icon {
    width: 40px !important;
    height: 40px !important;
  }
  .scene-success-icon svg {
    width: 20px !important;
    height: 20px !important;
  }
  .scene-success-title { font-size: 14px !important; }
  .scene-success-amount { font-size: 20px !important; margin-bottom: 12px !important; }
  .scene-success-stat-value { font-size: 12px !important; }
  .scene-success-stat-label { font-size: 6.5px !important; letter-spacing: .5px !important; }
  .scene-success-rings { width: 80px !important; height: 80px !important; }
}
/* ===== LANDINGS ===== */
.landings { background: var(--bg); }
.landing-showcase {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.landing-mockup-wrap { perspective: 1200px; }
.landing-mockup {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow:
    0 0 80px rgba(0, 255, 136, .15),
    0 40px 100px rgba(0, 0, 0, .7);
  transform: rotateY(3deg) rotateX(-2deg);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
}
.landing-mockup:hover { transform: rotateY(0) rotateX(0) translateY(-4px); }
.landing-mockup-header {
  padding: 12px 18px;
  background: linear-gradient(180deg, var(--bg-2), var(--bg-1));
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--border);
}
.landing-mockup-dots { display: flex; gap: 6px; }
.landing-mockup-header .mockup-url {
  background: rgba(255, 255, 255, .04);
  border-color: var(--border);
  color: var(--text-3);
  font-size: 10.5px;
  margin: 0;
  flex: 1;
}
.landing-hero-mock {
  background: linear-gradient(135deg, #0B1F14 0%, #0D1A2E 50%, #1A0F2E 100%);
  padding: 44px 36px;
  color: white;
  position: relative;
  overflow: hidden;
}
.landing-hero-mock-glow {
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, .3) 0%, transparent 70%);
  border-radius: 50%;
}
.landing-hero-mock .tag {
  display: inline-block;
  background: rgba(0, 255, 136, .15);
  color: var(--neon);
  padding: 5px 14px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 255, 136, .3);
  position: relative;
  z-index: 1;
}
.landing-hero-mock h4 {
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  letter-spacing: -.8px;
  max-width: 380px;
}
.landing-hero-mock p {
  font-size: 13px;
  opacity: .65;
  margin-bottom: 22px;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}
.landing-hero-mock .cta-row {
  display: flex;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.landing-hero-mock .cta-primary {
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: #000;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(0, 255, 136, .4);
}
.landing-hero-mock .cta-secondary {
  border: 1px solid rgba(255, 255, 255, .2);
  color: white;
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.landing-sections-mock {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  background: var(--bg-1);
}
.landing-section-item {
  background: var(--surface);
  border-radius: 12px;
  padding: 18px;
  border: 1px solid var(--border);
  transition: all .3s;
}
.landing-section-item:hover {
  transform: translateY(-2px);
  border-color: var(--border-neon);
}
.landing-section-item .icon {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: rgba(0, 255, 136, .12);
  border: 1px solid rgba(0, 255, 136, .2);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
}
.landing-section-item .line {
  height: 5px;
  background: rgba(255, 255, 255, .06);
  border-radius: 3px;
  margin-bottom: 5px;
}
.landing-section-item .line.short { width: 50%; }

.landing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.landing-features li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border-radius: 14px;
  border: 1px solid var(--border);
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
}
.landing-features li:hover {
  background: var(--surface-2);
  border-color: var(--border-neon);
  transform: translateX(4px);
  box-shadow: 0 0 30px rgba(0, 255, 136, .12);
}
.landing-features li strong {
  display: block;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  margin-bottom: 2px;
}
.landing-features li small { display: block; font-size: 12.5px; color: var(--text-3); }
.landing-features .check {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  margin-top: 2px;
  box-shadow: 0 0 16px rgba(0, 255, 136, .5);
}
.landing-features .check svg { color: #000; }
.landing-content-cta { margin-top: 30px; }

/* ===== LEADGEN ===== */
.leadgen {
  background: radial-gradient(ellipse at center, #0B1420 0%, var(--bg) 70%);
  overflow: hidden;
  position: relative;
}
.leadgen-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.leadgen-orb {
  position: absolute;
  top: 30%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0, 255, 136, .2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orb 25s ease-in-out infinite;
}
.leadgen-orb-2 {
  position: absolute;
  bottom: 10%; left: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, .2) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orb 30s ease-in-out infinite reverse;
}
.leadgen .container { position: relative; z-index: 1; }
.leadgen .section-header h2 { color: var(--text); }
.leadgen .section-header p { color: var(--text-3); }

.dashboard {
  background: rgba(13, 18, 24, .8);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-strong);
  overflow: hidden;
  box-shadow:
    0 0 80px rgba(0, 255, 136, .15),
    0 60px 120px rgba(0, 0, 0, .7);
}
.dashboard-header {
  padding: 22px 30px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.dashboard-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.dashboard-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 14px var(--neon-glow);
  animation: pulse 2s infinite;
}
.dashboard-meta { display: flex; align-items: center; gap: 16px; }
.dashboard-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--neon);
  padding: 5px 12px;
  background: rgba(0, 255, 136, .08);
  border-radius: 100px;
  border: 1px solid rgba(0, 255, 136, .25);
}
.dashboard-live .live-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  animation: pulse 2s infinite;
}
.dashboard-period {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-4);
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
}
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
}
.metric {
  background: rgba(10, 14, 19, .9);
  padding: 26px 22px;
  transition: background .3s;
}
.metric:hover { background: rgba(0, 255, 136, .04); }
.metric-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-4);
  font-weight: 700;
  margin-bottom: 14px;
}
.metric-value {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1;
  margin-bottom: 10px;
  color: var(--text);
}
.metric-value.green {
  background: linear-gradient(135deg, var(--neon), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metric-unit { font-size: 18px; color: var(--text-4); margin-left: 2px; -webkit-text-fill-color: initial; }
.metric-change { display: inline-flex; align-items: center; gap: 4px; font-size: 12px; font-weight: 700; }
.metric-change.up { color: var(--neon); }
.metric-change.down { color: var(--violet); }

.dashboard-chart {
  padding: 30px;
  border-top: 1px solid var(--border);
}
.dashboard-chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.dashboard-chart-legend { display: flex; gap: 20px; font-size: 12px; color: var(--text-3); }
.dashboard-chart-legend span { display: flex; align-items: center; gap: 6px; }
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
}
.legend-dot.muted { background: var(--violet); box-shadow: 0 0 10px var(--violet-glow); }
.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 140px;
}
.chart-bar {
  flex: 1;
  background: linear-gradient(to top, var(--neon), var(--violet));
  border-radius: 6px 6px 0 0;
  opacity: .3;
  transition: all .4s;
  transform-origin: bottom;
  animation: growBar .9s cubic-bezier(.16, 1, .3, 1) both;
}
.chart-bar:hover { opacity: 1; box-shadow: 0 0 20px rgba(0, 255, 136, .5); }
.chart-bar.highlight { opacity: .9; box-shadow: 0 0 24px rgba(0, 255, 136, .4); }

/* ===== CRM ===== */
.crm-section { background: var(--bg); }
.crm-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.crm-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.crm-benefit {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .35s;
}
.crm-benefit:hover {
  border-color: var(--border-neon);
  transform: translateX(4px);
  box-shadow: 0 0 30px rgba(0, 255, 136, .12);
}
.crm-benefit-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(0, 255, 136, .12);
  border: 1px solid rgba(0, 255, 136, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon);
}
.crm-benefit strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.crm-benefit small { font-size: 13px; color: var(--text-3); }

.crm-board {
  background: var(--surface);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--border-strong);
  box-shadow: 0 0 60px rgba(139, 92, 246, .12), 0 40px 80px rgba(0, 0, 0, .6);
}
.crm-board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.crm-board-header h4 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.3px;
  color: var(--text);
}
.crm-board-header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 255, 136, .1);
  color: var(--neon);
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(0, 255, 136, .3);
  letter-spacing: 1px;
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  animation: pulse 2s infinite;
}
.crm-columns {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.crm-column {
  background: rgba(255, 255, 255, .02);
  border-radius: 14px;
  padding: 12px 10px;
  border: 1px solid var(--border);
}
.crm-column-title {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--text-4);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
}
.crm-column-count {
  background: rgba(255, 255, 255, .06);
  color: var(--text-3);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 700;
}
.crm-card {
  background: rgba(255, 255, 255, .03);
  border-radius: 10px;
  padding: 11px;
  margin-bottom: 8px;
  border-left: 3px solid var(--neon);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  cursor: pointer;
}
.crm-card:hover {
  transform: translateX(4px);
  background: rgba(255, 255, 255, .06);
}
.crm-card:last-child { margin-bottom: 0; }
.crm-card-name { font-size: 10px; font-weight: 800; margin-bottom: 3px; color: var(--text); }
.crm-card-desc { font-size: 9.5px; color: var(--text-3); line-height: 1.4; margin-bottom: 4px; }
.crm-card-meta { font-size: 8.5px; color: var(--text-4); font-weight: 500; }
.crm-card.blue { border-left-color: #3B82F6; }
.crm-card.orange { border-left-color: #F59E0B; }
.crm-card.purple { border-left-color: var(--violet); }
.crm-card.green { border-left-color: var(--neon); }

.automation-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 16px;
  background: rgba(255, 255, 255, .02);
  border-radius: var(--radius);
  flex-wrap: wrap;
  justify-content: center;
  border: 1px solid var(--border);
}
.automation-node {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .03);
  padding: 9px 14px;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 700;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all .3s;
}
.automation-node:hover {
  border-color: var(--border-neon);
  background: rgba(0, 255, 136, .06);
}
.automation-icon {
  width: 22px; height: 22px;
  border-radius: 6px;
  background: rgba(0, 255, 136, .12);
  border: 1px solid rgba(0, 255, 136, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
}
.automation-arrow { color: var(--neon); display: flex; align-items: center; }

/* ===== CUSTOM ===== */
.custom-dev { background: var(--bg); }
.custom-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.custom-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.custom-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  overflow: hidden;
}
.custom-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--neon), var(--violet));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s cubic-bezier(.16, 1, .3, 1);
}
.custom-item:hover {
  transform: translateY(-4px);
  border-color: var(--border-neon);
  box-shadow: 0 0 40px rgba(0, 255, 136, .15);
}
.custom-item:hover::before { transform: scaleY(1); }
.custom-item .icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: rgba(0, 255, 136, .1);
  border: 1px solid rgba(0, 255, 136, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--neon);
  transition: all .4s;
}
.custom-item:hover .icon {
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  transform: scale(1.05) rotate(-5deg);
  color: #000;
}
.custom-item:hover .icon svg { color: #000; }
.custom-item strong {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}
.custom-item small { font-size: 12.5px; color: var(--text-3); line-height: 1.4; }
.custom-item.wide { grid-column: span 2; }

/* ===== WHY ===== */
.why { background: var(--bg); }
.why-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}
.why-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  padding: 18px 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 15.5px;
  font-weight: 700;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  color: var(--neon);
}
.why-item span { color: var(--text); }
.why-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-neon);
  box-shadow: 0 0 40px rgba(0, 255, 136, .2);
}
.why-plus { font-size: 22px; font-weight: 300; color: var(--violet); opacity: .7; }
.why-text {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--text-2);
  letter-spacing: -.5px;
}

/* ===== CTA ===== */
.cta-section {
  background: radial-gradient(ellipse at center, #0B1420 0%, var(--bg) 70%);
  position: relative;
  overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.cta-orb {
  position: absolute;
  top: -30%; right: -10%;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 255, 136, .25) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  animation: orb 20s ease-in-out infinite;
}
.cta-orb-2 {
  top: auto; bottom: -40%; left: -15%; right: auto;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, .25) 0%, transparent 70%);
  animation-delay: -5s;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.cta-content h2 {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--text);
}
.cta-content p {
  font-size: 17px;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 32px;
}
.cta-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-2);
  font-weight: 500;
}
.cta-feature-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(0, 255, 136, .5);
}
.cta-feature-icon svg { color: #000; }
.cta-contacts {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.cta-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: all .35s;
}
.cta-contact svg { color: var(--neon); }
.cta-contact:hover {
  background: rgba(0, 255, 136, .08);
  border-color: var(--border-neon);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 136, .2);
}

.cta-big-btn {
  position: relative;
  width: 100%;
  padding: 40px 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(0, 255, 136, .08) 0%, rgba(139, 92, 246, .08) 100%);
  border: 1px solid rgba(0, 255, 136, .3);
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
  text-align: left;
  cursor: pointer;
}
.cta-big-btn:hover {
  transform: translateY(-4px);
  border-color: var(--neon);
  box-shadow:
    0 0 60px rgba(0, 255, 136, .4),
    0 30px 60px rgba(0, 0, 0, .5);
}
.cta-big-btn-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0, 255, 136, .2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  opacity: .6;
}
.cta-big-btn-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.cta-big-btn-icon {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 0 40px rgba(0, 255, 136, .6);
}
.cta-big-btn-icon svg { color: #000; }
.cta-big-btn-text { flex: 1; }
.cta-big-btn-text strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.5px;
  margin-bottom: 4px;
}
.cta-big-btn-text small { font-size: 14px; color: var(--text-3); }
.cta-big-btn-arrow {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  flex-shrink: 0;
  transition: all .4s;
}
.cta-big-btn:hover .cta-big-btn-arrow {
  background: var(--neon);
  border-color: var(--neon);
  color: #000;
  transform: translateX(6px);
}

/* ===== FOOTER ===== */
.footer {
  background: #03050A;
  padding: 70px 0 30px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { color: var(--text); margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px;
  color: var(--text-3);
  line-height: 1.6;
  max-width: 340px;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.footer-col a {
  color: var(--text-3);
  font-size: 14px;
  font-weight: 500;
  transition: all .3s;
  width: fit-content;
}
.footer-col a:hover {
  color: var(--neon);
  transform: translateX(3px);
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-4);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-4); transition: color .3s; }
.footer-bottom-links a:hover { color: var(--neon); }

/* =========================================
   MODAL
   ========================================= */
/* =========================================
   MODAL — адаптивное
   ========================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.modal.open { display: flex; }

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 10, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  animation: modalBackIn .4s ease;
  z-index: 1;
}
@keyframes modalBackIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Dialog */
.modal-dialog {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow:
    0 0 100px rgba(0, 255, 136, .25),
    0 0 200px rgba(139, 92, 246, .15),
    0 40px 100px rgba(0, 0, 0, .7);
  animation: modalIn .5s cubic-bezier(.16, 1, .3, 1);
  z-index: 2;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 136, .4) transparent;
}
.modal-dialog::-webkit-scrollbar { width: 6px; }
.modal-dialog::-webkit-scrollbar-track { background: transparent; }
.modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, .3);
  border-radius: 100px;
}
.modal-dialog::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 136, .5);
}

.modal.closing .modal-dialog {
  animation: modalOut .3s cubic-bezier(.4, 0, 1, 1) forwards;
}
.modal.closing .modal-backdrop {
  animation: modalBackIn .3s reverse forwards;
}

.modal-glow {
  position: absolute;
  top: -30%; right: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, .25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

/* Close button */
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all .3s;
  z-index: 3;
  flex-shrink: 0;
}
.modal-close:hover {
  background: rgba(0, 255, 136, .1);
  border-color: var(--border-neon);
  color: var(--neon);
  transform: rotate(90deg);
}
.modal-close svg { color: currentColor; }

/* Header */
.modal-header {
  margin-bottom: 28px;
  position: relative;
  padding-right: 40px;
}
.modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--neon);
  padding: 6px 12px;
  background: rgba(0, 255, 136, .08);
  border-radius: 100px;
  border: 1px solid rgba(0, 255, 136, .25);
  margin-bottom: 18px;
}
.modal-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 10px var(--neon-glow);
  animation: pulse 1.8s infinite;
  flex-shrink: 0;
}
.modal-header h3 {
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text);
}
.modal-header p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.6;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-group label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  color: var(--text-2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.form-group label .required { color: var(--neon); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: inherit;
  font-size: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, .03);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  transition: all .3s;
  resize: vertical;
  appearance: none;
  width: 100%;
  min-width: 0;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300FF88' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 48px;
  cursor: pointer;
}
.form-group select option {
  background: var(--surface);
  color: var(--text);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--neon);
  background: rgba(0, 255, 136, .04);
  box-shadow: 0 0 0 4px rgba(0, 255, 136, .12), 0 0 30px rgba(0, 255, 136, .15);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-4);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #FF4757;
  background: rgba(255, 71, 87, .05);
  box-shadow: 0 0 0 4px rgba(255, 71, 87, .12);
}

/* Checkbox */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-3);
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-left: 28px;
  line-height: 1.5;
}
.form-check input {
  position: absolute;
  opacity: 0;
  width: 0; height: 0;
}
.form-check input + span {
  position: relative;
}
.form-check input + span::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 2px;
  width: 18px; height: 18px;
  border-radius: 5px;
  border: 1.5px solid var(--border-strong);
  background: rgba(255, 255, 255, .03);
  transition: all .25s;
  flex-shrink: 0;
}
.form-check input:checked + span::before {
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  border-color: var(--neon);
  box-shadow: 0 0 12px rgba(0, 255, 136, .4);
}
.form-check input:checked + span::after {
  content: '';
  position: absolute;
  left: -24px;
  top: 4px;
  width: 5px;
  height: 10px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  pointer-events: none;
}
.form-check a {
  color: var(--neon);
  text-decoration: underline;
}

/* Submit */
.modal-submit {
  margin-top: 4px;
  min-height: 50px;
}
.modal-submit[disabled] {
  opacity: .7;
  cursor: not-allowed;
  transform: none !important;
}

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-4);
  justify-content: center;
  margin-top: 4px;
  text-align: center;
  line-height: 1.4;
}
.form-note svg {
  color: var(--neon);
  flex-shrink: 0;
}

/* Success */
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success.show {
  display: block;
  animation: modalIn .5s cubic-bezier(.16, 1, .3, 1);
}
.modal-success-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #000;
  box-shadow: 0 0 60px rgba(0, 255, 136, .6);
  animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(0, 255, 136, .6); }
  50% { box-shadow: 0 0 90px rgba(0, 255, 136, .9); }
}
.modal-success-icon svg { color: #000; }
.modal-success h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 10px;
}
.modal-success p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* =========================================
   MODAL — АДАПТИВ
   ========================================= */

/* Планшет (≤768px) */
@media (max-width: 768px) {
  .modal {
    padding: 16px;
    align-items: flex-start;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .modal-dialog {
    max-width: 100%;
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 80px);
    padding: 32px 26px;
    border-radius: 24px;
  }
  .modal-header {
    margin-bottom: 22px;
    padding-right: 36px;
  }
  .modal-header h3 {
    font-size: 26px;
    letter-spacing: -.8px;
  }
  .modal-header p {
    font-size: 14px;
  }
  .modal-badge {
    font-size: 9.5px;
    padding: 5px 10px;
    letter-spacing: 1.5px;
  }
  .modal-close {
    top: 16px; right: 16px;
    width: 36px; height: 36px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* важно: 16px чтобы iOS не зумил */
    padding: 13px 16px;
  }
  .modal-form { gap: 14px; }
  .form-row { gap: 14px; }
  .modal-submit { min-height: 48px; }
  .modal-success-icon {
    width: 76px; height: 76px;
  }
  .modal-success-icon svg { width: 36px; height: 36px; }
  .modal-success h3 { font-size: 24px; }
  .modal-success p { font-size: 14px; margin-bottom: 22px; }
}

/* Телефон (≤640px) — одна колонка */
@media (max-width: 640px) {
  .modal {
    padding: 12px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .modal-dialog {
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    padding: 28px 20px;
    border-radius: 20px;
  }
  .modal-header {
    margin-bottom: 20px;
    padding-right: 34px;
  }
  .modal-header h3 {
    font-size: 22px;
    letter-spacing: -.6px;
    line-height: 1.2;
  }
  .modal-header p {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .modal-badge {
    font-size: 9px;
    padding: 5px 10px;
    letter-spacing: 1.2px;
    margin-bottom: 14px;
  }
  .modal-close {
    top: 14px; right: 14px;
    width: 34px; height: 34px;
  }
  .modal-close svg { width: 18px; height: 18px; }

  /* Все поля — в одну колонку */
  .form-row {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .form-group {
    gap: 6px;
  }
  .form-group label {
    font-size: 10.5px;
    letter-spacing: 1.2px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 13px 15px;
    border-radius: 11px;
  }
  .form-group textarea {
    min-height: 88px;
  }

  .form-check {
    font-size: 12.5px;
    padding-left: 26px;
  }
  .form-check input + span::before {
    left: -26px;
    width: 17px; height: 17px;
  }

  /* Кнопка на всю ширину */
  .modal-submit {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
    padding: 15px 20px;
    margin-top: 6px;
  }

  .form-note {
    font-size: 11px;
    text-align: center;
    line-height: 1.4;
  }
  .form-note svg { width: 11px; height: 11px; }

  .modal-success {
    padding: 12px 0;
  }
  .modal-success-icon {
    width: 68px; height: 68px;
    margin-bottom: 18px;
  }
  .modal-success-icon svg { width: 32px; height: 32px; }
  .modal-success h3 { font-size: 22px; margin-bottom: 8px; }
  .modal-success p { font-size: 13.5px; margin-bottom: 20px; }
  .modal-success .btn {
    width: 100%;
    padding: 14px 22px;
  }
}

/* Маленькие телефоны (≤380px) */
@media (max-width: 380px) {
  .modal { padding: 8px; padding-top: 16px; padding-bottom: 16px; }
  .modal-dialog {
    padding: 24px 16px;
    border-radius: 18px;
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
  }
  .modal-header { padding-right: 30px; margin-bottom: 16px; }
  .modal-header h3 { font-size: 20px; }
  .modal-header p { font-size: 13px; }
  .modal-badge {
    font-size: 8.5px;
    padding: 4px 8px;
    letter-spacing: 1px;
  }
  .modal-close {
    top: 12px; right: 12px;
    width: 32px; height: 32px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    border-radius: 10px;
  }
  .modal-submit {
    min-height: 48px;
    font-size: 14.5px;
  }
}

/* Очень низкие экраны — прижимаем к верху с отступом */
@media (max-height: 700px) and (min-width: 641px) {
  .modal {
    padding: 20px;
    align-items: flex-start;
    padding-top: 30px;
  }
  .modal-dialog {
    max-height: calc(100vh - 60px);
    max-height: calc(100dvh - 60px);
  }
}

/* Горизонтальная ориентация на телефоне */
@media (max-height: 500px) and (max-width: 900px) {
  .modal {
    padding: 12px;
    align-items: flex-start;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .modal-dialog {
    max-height: calc(100vh - 32px);
    max-height: calc(100dvh - 32px);
    padding: 22px 20px;
  }
  .modal-header { margin-bottom: 16px; }
  .modal-header h3 { font-size: 20px; }
  .form-row { grid-template-columns: 1fr 1fr; }
}

/* Хорошая поддержка Safe Area на iPhone с вырезом */
@supports (padding: max(0px)) {
  @media (max-width: 640px) {
    .modal {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
      padding-top: max(24px, env(safe-area-inset-top));
      padding-bottom: max(24px, env(safe-area-inset-bottom));
    }
  }
}




/* Modal success */
.modal-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.modal-success.show {
  display: block;
  animation: modalIn .5s cubic-bezier(.16, 1, .3, 1);
}
.modal-success-icon {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #000;
  box-shadow: 0 0 60px rgba(0, 255, 136, .6);
  animation: successPulse 2s ease-in-out infinite;
}
@keyframes successPulse {
  0%, 100% { box-shadow: 0 0 60px rgba(0, 255, 136, .6); }
  50% { box-shadow: 0 0 90px rgba(0, 255, 136, .9); }
}
.modal-success-icon svg { color: #000; }
.modal-success h3 {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  margin-bottom: 10px;
}
.modal-success p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-title { font-size: 58px; letter-spacing: -2.5px; }
  .section-header h2, .section-title-lg { font-size: 38px; letter-spacing: -1.5px; }
  .cta-content h2 { font-size: 38px; letter-spacing: -1.5px; }
  .hero-grid, .landing-showcase, .crm-layout, .custom-grid, .cta-wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero-visual { height: 520px; max-width: 480px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-metrics { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-meta { display: none; }
  .journey { height: 550vh; }
  .journey-header h2 { font-size: 36px; letter-spacing: -1.5px; }
  .journey-stage { height: 440px; }
  .scene-crm { padding: 16px; }
  .scene-crm-columns { gap: 6px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.active {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--surface);
    padding: 24px;
    gap: 20px;
    border-top: 1px solid var(--border);
    backdrop-filter: blur(20px);
  }
  .burger { display: flex; }
  .hero { padding: 100px 0 120px; }
  .hero-title { font-size: 42px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; }
  .hero-trust { gap: 16px; }
  .hero-trust-value { font-size: 22px; }
  section { padding: 70px 0; }
  .section-header h2, .section-title-lg { font-size: 30px; letter-spacing: -1px; }
  .services-grid, .custom-list { grid-template-columns: 1fr; }
  .custom-item.wide { grid-column: auto; }
  .hero-visual { height: 440px; }
  .lead-flow { left: -10px; font-size: 9px; padding: 10px 12px; }
  .crm-float { left: 0; bottom: 10px; width: 220px; padding: 14px; }
  .metric-float { left: 0; top: 20px; padding: 12px 16px; }
  .metric-float-value { font-size: 22px; }
  .crm-columns { grid-template-columns: repeat(2, 1fr); }
  .dashboard-metrics { grid-template-columns: 1fr; }
  .metric-value { font-size: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .btn { padding: 14px 26px; font-size: 15px; }
  .scroll-indicator { display: none; }
  .journey { height: 520vh; }
  .journey-header h2 { font-size: 26px; letter-spacing: -1px; }
  .journey-header p { font-size: 14px; }
  .journey-content { gap: 22px; }
  .journey-progress-labels { gap: 4px; }
  .journey-plabel-num { font-size: 9px; }
  .journey-plabel-text { font-size: 9px; letter-spacing: 0; }
  .journey-stage { height: 440px; }
  .scene-browser { max-width: 100%; }
  .scene-hero { padding: 24px 20px; }
  .scene-hero h4 { font-size: 18px; }
  .scene-lead-card { max-width: 340px; padding: 20px; }
  .scene-crm { max-width: 100%; padding: 14px; }
  .scene-crm-columns { grid-template-columns: repeat(3, 1fr); }
  .scene-crm-col:nth-child(4), .scene-crm-col:nth-child(5) { display: none; }
  .scene-phone { width: 220px; padding: 10px; }
  .scene-phone-screen { min-height: 360px; }
  .scene-success { padding: 28px 20px; }
  .scene-success-amount { font-size: 32px; }
  .scene-success-stat-value { font-size: 18px; }
  .scene-caption-title { font-size: 18px; }
  .scene-caption-desc { font-size: 12.5px; }
  .scene-cursor { display: none; }
  .modal-dialog { padding: 28px 22px; border-radius: 24px; }
  .modal-header h3 { font-size: 24px; }
  .cta-big-btn { padding: 28px 24px; }
  .cta-big-btn-content { gap: 14px; }
  .cta-big-btn-icon { width: 52px; height: 52px; border-radius: 14px; }
  .cta-big-btn-text strong { font-size: 18px; }
  .cta-big-btn-arrow { width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .hero-title { font-size: 34px; }
  .section-header h2, .section-title-lg { font-size: 26px; }
  .cta-content h2 { font-size: 26px; }
  .hero-trust { flex-wrap: wrap; gap: 12px; }
  .hero-trust-divider { display: none; }
  .hero-trust-item { width: 45%; }
  .lead-flow { display: none; }
  .crm-columns { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-buttons .btn { flex: 1; }
  .journey-header h2 { font-size: 22px; }
  .journey-plabel-text { display: none; }
  .scene-crm-columns { grid-template-columns: repeat(2, 1fr); }
  .scene-crm-col:nth-child(3) { display: none; }
  .scene-success-stats { gap: 8px; padding-top: 18px; }
  .modal { padding: 12px; }
  .modal-dialog { padding: 24px 18px; }
  .modal-header h3 { font-size: 22px; }
  .modal-close { top: 14px; right: 14px; width: 36px; height: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }



}

/* =========================================
   SOCIAL — модалка / плавашка / баннер
   ========================================= */

/* =============== SOCIAL MODAL =============== */
.social-modal {
  position: fixed;
  inset: 0;
  z-index: 9100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.social-modal.open { display: flex; }

.social-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(3, 5, 10, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  animation: modalBackIn .4s ease;
  z-index: 1;
}

.social-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow:
    0 0 100px rgba(139, 92, 246, .25),
    0 0 200px rgba(0, 255, 136, .15),
    0 40px 100px rgba(0, 0, 0, .7);
  animation: modalIn .5s cubic-bezier(.16, 1, .3, 1);
  z-index: 2;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 136, .4) transparent;
}
.social-modal-dialog::-webkit-scrollbar { width: 6px; }
.social-modal-dialog::-webkit-scrollbar-track { background: transparent; }
.social-modal-dialog::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, .3);
  border-radius: 100px;
}

.social-modal.closing .social-modal-dialog {
  animation: modalOut .3s cubic-bezier(.4, 0, 1, 1) forwards;
}

.social-modal-glow {
  position: absolute;
  top: -30%; right: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, .3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.social-modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all .3s;
  z-index: 3;
}
.social-modal-close:hover {
  background: rgba(0, 255, 136, .1);
  border-color: var(--border-neon);
  color: var(--neon);
  transform: rotate(90deg);
}
.social-modal-close svg { color: currentColor; }

.social-modal-header {
  margin-bottom: 28px;
  padding-right: 40px;
}
.social-modal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--violet);
  padding: 6px 12px;
  background: rgba(139, 92, 246, .1);
  border-radius: 100px;
  border: 1px solid rgba(139, 92, 246, .3);
  margin-bottom: 18px;
}
.social-modal-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--violet);
  box-shadow: 0 0 10px var(--violet-glow);
  animation: pulse 1.8s infinite;
}
.social-modal-header h3 {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -1.2px;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--text);
}
.social-modal-header p {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.6;
}

/* Social cards grid */
.social-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  overflow: hidden;
  text-decoration: none;
}
.social-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-neon);
  box-shadow: 0 12px 40px rgba(0, 255, 136, .15);
}
.social-card-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 136, .15) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.social-card:hover .social-card-glow { opacity: 1; }

.social-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(0, 255, 136, .1);
  border: 1px solid rgba(0, 255, 136, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neon);
  flex-shrink: 0;
  transition: all .35s;
}
.social-card-tg .social-card-icon {
  background: rgba(41, 171, 226, .12);
  border-color: rgba(41, 171, 226, .3);
  color: #29ABE2;
}
.social-card-wa .social-card-icon {
  background: rgba(37, 211, 102, .12);
  border-color: rgba(37, 211, 102, .3);
  color: #25D366;
}
.social-card-ig .social-card-icon {
  background: rgba(228, 64, 95, .12);
  border-color: rgba(228, 64, 95, .3);
  color: #E4405F;
}
.social-card-mail .social-card-icon {
  background: rgba(139, 92, 246, .12);
  border-color: rgba(139, 92, 246, .3);
  color: var(--violet);
}

.social-card:hover .social-card-icon {
  transform: scale(1.08) rotate(-5deg);
}

.social-card-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.social-card-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.2px;
}
.social-card-desc {
  font-size: 12.5px;
  color: var(--text-3);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-card-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all .35s;
}
.social-card:hover .social-card-arrow {
  background: var(--neon);
  border-color: var(--neon);
  color: #000;
  transform: translateX(3px);
}

.social-modal-more {
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  border: 1px solid var(--border);
  color: var(--text-2);
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .35s;
}
.social-modal-more svg { color: var(--neon); transition: transform .3s; }
.social-modal-more:hover {
  border-color: var(--border-neon);
  background: rgba(0, 255, 136, .06);
  color: var(--text);
}
.social-modal-more:hover svg { transform: translateX(4px); }

/* =============== FLOATING BUTTON =============== */
.floating-social {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 8000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.floating-social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(.9);
  transform-origin: bottom right;
  transition: all .4s cubic-bezier(.16, 1, .3, 1);
  pointer-events: none;
}
.floating-social.open .floating-social-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-item {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .5);
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  text-decoration: none;
}
.floating-item svg { color: currentColor; }
.floating-item:hover {
  transform: translateX(-4px) scale(1.1);
}
.floating-item-tg {
  background: linear-gradient(135deg, #29ABE2, #0088CC);
  border-color: transparent;
}
.floating-item-tg:hover { box-shadow: 0 0 30px rgba(41, 171, 226, .6); }
.floating-item-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-color: transparent;
}
.floating-item-wa:hover { box-shadow: 0 0 30px rgba(37, 211, 102, .6); }
.floating-item-ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
  border-color: transparent;
}
.floating-item-ig:hover { box-shadow: 0 0 30px rgba(221, 42, 123, .6); }
.floating-item-mail {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  border-color: transparent;
}
.floating-item-mail:hover { box-shadow: 0 0 30px rgba(139, 92, 246, .6); }

.floating-toggle {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 0 rgba(0, 255, 136, .5),
    0 8px 30px rgba(0, 255, 136, .5);
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
  position: relative;
  animation: floatingPulse 2.4s ease-in-out infinite;
}
@keyframes floatingPulse {
  0%, 100% {
    box-shadow:
      0 0 0 0 rgba(0, 255, 136, .5),
      0 8px 30px rgba(0, 255, 136, .5);
  }
  50% {
    box-shadow:
      0 0 0 14px rgba(0, 255, 136, 0),
      0 8px 40px rgba(0, 255, 136, .8);
  }
}
.floating-toggle:hover {
  transform: scale(1.06);
  animation: none;
  box-shadow:
    0 0 0 12px rgba(0, 255, 136, .15),
    0 8px 40px rgba(0, 255, 136, .8);
}
.floating-toggle svg { color: #000; }
.floating-toggle-icon {
  position: absolute;
  transition: all .35s cubic-bezier(.16, 1, .3, 1);
}
.floating-toggle-icon-close {
  opacity: 0;
  transform: rotate(-90deg) scale(.5);
}
.floating-social.open .floating-toggle-icon-open {
  opacity: 0;
  transform: rotate(90deg) scale(.5);
}
.floating-social.open .floating-toggle-icon-close {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.floating-social.open .floating-toggle {
  animation: none;
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
  color: #fff;
  box-shadow: 0 8px 30px rgba(139, 92, 246, .5);
}
.floating-social.open .floating-toggle svg { color: #fff; }

/* =============== SOCIAL BANNER =============== */
.social-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 140%);
  z-index: 8500;
  width: calc(100% - 48px);
  max-width: 780px;
  background: linear-gradient(180deg, rgba(13, 18, 24, .95) 0%, rgba(10, 14, 19, .95) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border-strong);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow:
    0 0 80px rgba(0, 255, 136, .2),
    0 0 200px rgba(139, 92, 246, .15),
    0 30px 60px rgba(0, 0, 0, .6);
  transition: transform .6s cubic-bezier(.16, 1, .3, 1);
  opacity: 0;
  pointer-events: none;
}
.social-banner.show {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.social-banner.hidden {
  display: none;
}

.social-banner-glow {
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 200px;
  background: radial-gradient(circle, rgba(0, 255, 136, .2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.social-banner-close {
  position: absolute;
  top: 12px; right: 12px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all .3s;
  z-index: 2;
}
.social-banner-close:hover {
  background: rgba(255, 255, 255, .08);
  color: var(--text);
  transform: rotate(90deg);
}
.social-banner-close svg { color: currentColor; }

.social-banner-content {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.social-banner-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--neon), var(--neon-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  flex-shrink: 0;
  box-shadow: 0 0 30px rgba(0, 255, 136, .5);
}
.social-banner-icon svg { color: #000; }

.social-banner-text {
  flex: 1;
  min-width: 0;
  padding-right: 20px;
}
.social-banner-text strong {
  display: block;
  font-size: 15.5px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.3px;
  margin-bottom: 3px;
}
.social-banner-text small {
  display: block;
  font-size: 12.5px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: .5px;
}

.social-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.social-banner-btn {
  width: 42px; height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all .3s cubic-bezier(.16, 1, .3, 1);
  text-decoration: none;
}
.social-banner-btn svg { color: #fff; }
.social-banner-btn:hover {
  transform: translateY(-3px) scale(1.05);
}
.social-banner-btn-tg {
  background: linear-gradient(135deg, #29ABE2, #0088CC);
}
.social-banner-btn-tg:hover { box-shadow: 0 8px 24px rgba(41, 171, 226, .5); }
.social-banner-btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
}
.social-banner-btn-wa:hover { box-shadow: 0 8px 24px rgba(37, 211, 102, .5); }
.social-banner-btn-ig {
  background: linear-gradient(135deg, #F58529, #DD2A7B, #8134AF);
}
.social-banner-btn-ig:hover { box-shadow: 0 8px 24px rgba(221, 42, 123, .5); }
.social-banner-btn-mail {
  background: linear-gradient(135deg, var(--violet), var(--violet-dark));
}
.social-banner-btn-mail:hover { box-shadow: 0 8px 24px rgba(139, 92, 246, .5); }

/* =============== RESPONSIVE =============== */

/* Планшет */
@media (max-width: 768px) {
  .social-modal { padding: 16px; align-items: flex-start; padding-top: 40px; padding-bottom: 40px; }
  .social-modal-dialog {
    max-width: 100%;
    padding: 32px 24px;
    border-radius: 24px;
  }
  .social-modal-header { padding-right: 36px; margin-bottom: 22px; }
  .social-modal-header h3 { font-size: 24px; letter-spacing: -.8px; }
  .social-modal-header p { font-size: 14px; }
  .social-card { padding: 16px 14px; gap: 12px; }
  .social-card-icon { width: 44px; height: 44px; border-radius: 11px; }
  .social-card-icon svg { width: 24px; height: 24px; }
  .social-card-name { font-size: 14px; }
  .social-card-desc { font-size: 12px; }

  .floating-social { bottom: 18px; right: 18px; gap: 12px; }
  .floating-item { width: 44px; height: 44px; }
  .floating-toggle { width: 56px; height: 56px; }

  .social-banner {
    bottom: 90px; /* над плавающей кнопкой */
    padding: 16px 18px;
    border-radius: 18px;
    width: calc(100% - 36px);
  }
  .social-banner-icon { width: 42px; height: 42px; border-radius: 12px; }
  .social-banner-icon svg { width: 22px; height: 22px; }
  .social-banner-text strong { font-size: 14px; }
  .social-banner-text small { font-size: 11.5px; }
  .social-banner-btn { width: 38px; height: 38px; border-radius: 10px; }
  .social-banner-btn svg { width: 18px; height: 18px; }
}

/* Телефон */
@media (max-width: 640px) {
  .social-modal { padding: 12px; padding-top: 24px; padding-bottom: 24px; }
  .social-modal-dialog {
    padding: 28px 20px;
    border-radius: 20px;
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
  }
  .social-modal-close {
    top: 14px; right: 14px;
    width: 36px; height: 36px;
  }
  .social-modal-header { padding-right: 34px; margin-bottom: 20px; }
  .social-modal-header h3 { font-size: 22px; letter-spacing: -.6px; line-height: 1.2; }
  .social-modal-header p { font-size: 13.5px; line-height: 1.55; }
  .social-modal-badge { font-size: 9px; padding: 5px 10px; letter-spacing: 1.3px; margin-bottom: 14px; }

  /* 1 колонка на телефоне */
  .social-modal-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .social-card { padding: 15px 14px; }
  .social-card-icon { width: 42px; height: 42px; }

  .social-modal-more { padding: 13px 16px; font-size: 13px; }

  /* Плавашка */
  .floating-social { bottom: 16px; right: 16px; gap: 10px; }
  .floating-item { width: 42px; height: 42px; }
  .floating-item svg { width: 20px; height: 20px; }
  .floating-toggle { width: 54px; height: 54px; }
  .floating-toggle svg { width: 22px; height: 22px; }

  /* Баннер */
  .social-banner {
    bottom: 84px;
    width: calc(100% - 32px);
    padding: 14px 16px;
    border-radius: 16px;
  }
  .social-banner-content { gap: 12px; }
  .social-banner-icon {
    width: 40px; height: 40px;
    border-radius: 11px;
  }
  .social-banner-icon svg { width: 20px; height: 20px; }
  .social-banner-text { padding-right: 18px; }
  .social-banner-text strong { font-size: 13.5px; }
  .social-banner-text small { font-size: 11px; }
  .social-banner-actions { gap: 6px; }
  .social-banner-btn { width: 36px; height: 36px; border-radius: 10px; }
  .social-banner-btn svg { width: 17px; height: 17px; }
  .social-banner-close { top: 10px; right: 10px; width: 26px; height: 26px; }
}

/* Маленькие телефоны */
@media (max-width: 380px) {
  .social-modal-dialog { padding: 24px 16px; border-radius: 18px; }
  .social-modal-header { padding-right: 30px; margin-bottom: 16px; }
  .social-modal-header h3 { font-size: 20px; }
  .social-modal-header p { font-size: 13px; }
  .social-card { padding: 13px 12px; gap: 10px; }
  .social-card-icon { width: 38px; height: 38px; border-radius: 10px; }
  .social-card-icon svg { width: 20px; height: 20px; }
  .social-card-name { font-size: 13.5px; }
  .social-card-desc { font-size: 11.5px; }
  .social-card-arrow { width: 24px; height: 24px; }

  .floating-social { bottom: 14px; right: 14px; }
  .floating-item { width: 40px; height: 40px; }
  .floating-toggle { width: 50px; height: 50px; }

  .social-banner {
    bottom: 76px;
    padding: 12px 14px;
    border-radius: 14px;
  }
  .social-banner-icon { width: 36px; height: 36px; border-radius: 10px; }
  .social-banner-icon svg { width: 18px; height: 18px; }
  .social-banner-text strong { font-size: 12.5px; }
  .social-banner-text small { display: none; }
  .social-banner-btn { width: 34px; height: 34px; }
  .social-banner-btn svg { width: 16px; height: 16px; }
}

/* Маленькая высота — баннер смещаем выше */
@media (max-height: 600px) and (max-width: 900px) {
  .social-banner { bottom: 80px; }
}

/* Safe area для iPhone с вырезом */
@supports (padding: max(0px)) {
  .floating-social {
    bottom: max(24px, env(safe-area-inset-bottom));
    right: max(24px, env(safe-area-inset-right));
  }
  .social-banner {
    bottom: max(24px, env(safe-area-inset-bottom));
    left: max(24px, env(safe-area-inset-left));
    right: max(24px, env(safe-area-inset-right));
    transform: translate(0, 140%);
    width: auto;
  }
  .social-banner.show {
    transform: translate(0, 0);
  }
  @media (max-width: 768px) {
    .social-banner { bottom: max(90px, calc(env(safe-area-inset-bottom) + 80px)); }
  }
}

/* ============ FAQ (SEO) ============ */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-1) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all .35s;
}
.faq-item:hover {
  border-color: var(--border-neon);
  box-shadow: 0 0 40px rgba(0, 255, 136, .1);
}
.faq-item[open] {
  border-color: var(--border-neon);
  background: linear-gradient(180deg, rgba(0, 255, 136, .04) 0%, var(--bg-1) 100%);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.2px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg {
  color: var(--neon);
  flex-shrink: 0;
  transition: transform .35s;
}
.faq-item[open] summary svg { transform: rotate(45deg); }
.faq-answer {
  padding: 0 26px 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--text-3);
  animation: faqIn .35s ease;
}
.faq-answer strong { color: var(--neon); font-weight: 700; }
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-item summary { padding: 18px 20px; font-size: 15px; }
  .faq-answer { padding: 0 20px 18px; font-size: 13.5px; }
}


