.hero {
  min-height: 100vh;
  /* На iOS с notch используем 100dvh для точной высоты */
  min-height: 100dvh;
  /* Fallback для старых браузеров */
  min-height: -webkit-fill-available;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: calc(100px + env(safe-area-inset-top, 0px));
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 24px;
  animation: fade-in-up 0.6s ease forwards;
}

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

.hero-title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fade-in-up 0.6s ease 0.1s forwards;
  opacity: 0;
}

.hero-title-personalized {
  display: block;
}

.hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
  animation: fade-in-up 0.6s ease 0.2s forwards;
  opacity: 0;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  animation: fade-in-up 0.6s ease 0.3s forwards;
  opacity: 0;
}

.hero-stat {
  text-align: left;
}

.hero-stat-value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Form */
.hero-form-wrapper {
  animation: fade-in-up 0.6s ease 0.4s forwards;
  opacity: 0;
}

.hero-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
}

.hero-form-input {
  flex: 1;
  padding: 16px 20px;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  font-size: 16px;
  color: var(--text);
  transition: var(--transition-base);
}

.hero-form-input::placeholder {
  color: var(--text-muted);
}

.hero-form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.hero-form-btn {
  padding: 18px 48px;
  white-space: nowrap;
}

.hero-form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.hero-form-note svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
}

/* Urgency Badge */
.hero-urgency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 16px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: #f87171;
  animation: fade-in-up 0.6s ease 0.5s forwards;
  opacity: 0;
}

.hero-urgency svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  animation: blink 1.5s ease infinite;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: scale-in 0.8s ease 0.3s forwards;
  opacity: 0;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-mockup-browser {
  background: linear-gradient(145deg, #1e293b, #0f172a);
  border-radius: var(--radius-xl);
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.05);
}

.hero-mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
}

.hero-mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.hero-mockup-dot:nth-child(1) { background: #ef4444; }
.hero-mockup-dot:nth-child(2) { background: #f59e0b; }
.hero-mockup-dot:nth-child(3) { background: #22c55e; }

.hero-mockup-url {
  flex: 1;
  margin-left: 12px;
  padding: 6px 12px;
  background: rgba(0,0,0,0.3);
  border-radius: var(--radius-sm);
  font-size: 11px;
  color: var(--text-muted);
  font-family: monospace;
}

.hero-mockup-screen {
  background: linear-gradient(180deg, #f8fafc, #e2e8f0);
  border-radius: var(--radius-lg);
  /* Fallback для браузеров без aspect-ratio */
  min-height: 200px;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero-mockup-content {
  text-align: center;
  padding: 32px;
}

.hero-mockup-logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-md);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-mockup-logo svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.hero-mockup-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.hero-mockup-subtitle {
  font-size: 12px;
  color: var(--text-muted);
}

/* Floating Elements */
.hero-floating {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 5s ease-in-out infinite;
}

.hero-floating-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-floating-2 {
  bottom: 20%;
  left: -15%;
  animation-delay: 1.5s;
}

.hero-floating-3 {
  top: 50%;
  right: -20%;
  background: linear-gradient(135deg, var(--purple), var(--purple-dark));
  color: white;
  animation-delay: 3s;
}

.hero-floating-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-floating-icon svg {
  width: 20px;
  height: 20px;
  fill: white;
}

.hero-floating-icon-green { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.hero-floating-icon-purple { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.hero-floating-icon-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); }

.hero-floating-text h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.hero-floating-text p {
  font-size: 11px;
  color: var(--text-muted);
}

.hero-floating-3 .hero-floating-text h5,
.hero-floating-3 .hero-floating-text p {
  color: white;
}

.hero-floating-3 .hero-floating-text p {
  opacity: 0.8;
}

.social-proof-bar {
  background: rgba(16, 185, 129, 0.05);
  border-top: 1px solid rgba(16, 185, 129, 0.1);
  border-bottom: 1px solid rgba(16, 185, 129, 0.1);
  padding: 16px 0;
}

.social-proof-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.social-proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

.social-proof-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
}

.social-proof-item strong {
  color: var(--text);
  font-weight: 700;
}

/* Live notification */
.live-notification {
  position: fixed;
  bottom: 100px;
  left: 16px;
  right: 16px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 900;
  transform: translateX(-120%);
  transition: transform 0.5s ease;
  max-width: 320px;
}

@media (min-width: 769px) {
  .live-notification {
    bottom: 24px;
    left: 24px;
    right: auto;
  }
}

@media (max-width: 768px) {
  .live-notification {
    bottom: 100px;
    left: 16px;
    right: 16px;
    max-width: none;
    width: calc(100% - 32px);
  }
}

.live-notification.show {
  transform: translateX(0);
}

.live-notification-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.live-notification-content h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}

.live-notification-content p {
  font-size: 11px;
  color: var(--text-muted);
}

.live-notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 12px;
  height: 12px;
  background: var(--success);
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse-glow 2s infinite;
}

.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 17, 23, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  padding: 12px 16px;
  z-index: 900;
  border-top: 1px solid var(--card-border);
}

.sticky-mobile-cta-buttons {
  display: flex;
  gap: 8px;
}

.sticky-mobile-cta .btn {
  flex: 1;
  padding: 14px;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
}

.btn-telegram {
  background: #0088cc;
  color: white;
}

.btn-call {
  background: var(--primary);
  color: white;
}

@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-visual {
    order: 2;
    margin-top: 40px;
  }
  
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-form {
    margin: 0 auto;
  }
  
  .hero-urgency {
    justify-content: center;
    width: 100%;
    display: flex;
  }
  
  .hero-floating {
    display: none;
  }
  
  /* nav-menu visibility controlled by base.css */
  
  .nav-phone {
    display: none;
  }
  
  .nav-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 80px;
    min-height: auto;
    padding-bottom: 100px;
  }
  
  .hero-form {
    flex-direction: column;
  }
  
  .hero-form-btn {
    width: 100%;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .social-proof-container {
    gap: 20px;
  }
  
  .social-proof-item {
    font-size: 12px;
  }
  
  .sticky-mobile-cta {
    display: block;
  }
  
  .nav-cta .btn {
    display: none;
  }
}

.hero-switcher {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-switcher-btn {
  padding: 10px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-switcher-btn:hover {
  background: rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.3);
  color: var(--text-primary);
}

.hero-switcher-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 20px var(--primary-glow);
}

.hero-switcher-btn[data-segment="ecommerce"].active {
  background: linear-gradient(135deg, var(--gold), #d97706);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

.hero-switcher-btn[data-segment="b2b"].active {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-color: #3b82f6;
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.hero-switcher-btn[data-segment="startup"].active {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  border-color: #8b5cf6;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.hero-segment {
  display: none;
}

.hero-segment.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  animation: heroFadeIn 0.5s ease;
}

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

.hero-segment.ecommerce .text-gradient-segment {
  background: linear-gradient(135deg, var(--gold), #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-segment.ecommerce .hero-stat-value { color: var(--gold); }

.hero-segment.ecommerce .btn-primary {
  background: linear-gradient(135deg, var(--gold), #d97706);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.4);
}

.hero-segment.b2b .text-gradient-segment {
  background: linear-gradient(135deg, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-segment.b2b .hero-stat-value { color: #3b82f6; }

.hero-segment.b2b .btn-primary {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 8px 32px rgba(59, 130, 246, 0.4);
}

.hero-segment.startup .text-gradient-segment {
  background: linear-gradient(135deg, #8b5cf6, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-segment.startup .hero-stat-value { color: #8b5cf6; }

.hero-segment.startup .btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.segment-visual { position: relative; }

.sb-preview {
  width: 100%;
  max-width: 440px;
  background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
  margin: 0 auto;
}

.sb-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: #252525;
}

.sb-preview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.sb-preview-dot:nth-child(1) { background: #ff5f57; }
.sb-preview-dot:nth-child(2) { background: #febc2e; }
.sb-preview-dot:nth-child(3) { background: #28c840; }

.sb-preview-content { padding: 24px; }

.sb-preview-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.sb-preview-logo {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
}

.sb-preview-menu { display: flex; gap: 16px; }
.sb-preview-menu span { font-size: 12px; color: var(--text-muted); }

.sb-preview-hero { text-align: center; padding: 24px 0; }
.sb-preview-hero h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.sb-preview-hero p { font-size: 12px; color: var(--text-secondary); margin-bottom: 16px; }

.sb-preview-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: white;
}

.sb-features {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sb-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  animation: float 4s ease-in-out infinite;
}

.sb-feature:nth-child(2) { animation-delay: -1s; }
.sb-feature:nth-child(3) { animation-delay: -2s; }

.sb-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.sb-feature-text { font-size: 12px; font-weight: 600; }

.ec-dashboard { width: 100%; max-width: 480px; position: relative; margin: 0 auto; }

.ec-main-card {
  background: linear-gradient(145deg, #1f1f1f, #141414);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.ec-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.ec-header h4 { font-size: 15px; font-weight: 700; }

.ec-live-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-light);
}

.ec-live-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.ec-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }

.ec-stat-card {
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
}

.ec-stat-icon { font-size: 18px; margin-bottom: 6px; }
.ec-stat-value { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--gold); }
.ec-stat-label { font-size: 10px; color: var(--text-muted); margin-top: 2px; }

.ec-chart { background: rgba(255,255,255,0.02); border-radius: 10px; padding: 14px; margin-bottom: 16px; }
.ec-chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.ec-chart-title { font-size: 12px; font-weight: 600; }
.ec-chart-growth { font-size: 11px; color: var(--primary); font-weight: 600; }
.ec-chart-bars { display: flex; align-items: flex-end; gap: 6px; height: 60px; }

.ec-chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--gold), #d97706);
  border-radius: 3px 3px 0 0;
}

.ec-orders { display: flex; flex-direction: column; gap: 10px; }

.ec-order {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}

.ec-order-info { display: flex; align-items: center; gap: 10px; }

.ec-order-avatar {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), #f97316);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.ec-order-name { font-size: 12px; font-weight: 600; }
.ec-order-time { font-size: 10px; color: var(--text-muted); }
.ec-order-amount { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--gold); }

.ec-floating {
  position: absolute;
  padding: 12px 16px;
  background: rgba(13, 17, 23, 0.9);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  animation: float 5s ease-in-out infinite;
}

.ec-floating-1 { top: -10px; right: -40px; }
.ec-floating-2 { bottom: 40px; left: -50px; animation-delay: -2s; }

.ec-floating-icon { font-size: 20px; margin-bottom: 4px; }
.ec-floating-value { font-family: var(--font-display); font-size: 14px; font-weight: 700; }
.ec-floating-label { font-size: 10px; color: var(--text-muted); }

.b2b-visual { width: 100%; max-width: 500px; position: relative; margin: 0 auto; }

.b2b-portal {
  background: linear-gradient(145deg, #111827, #0d1117);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}

.b2b-portal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  background: rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.b2b-portal-logo { display: flex; align-items: center; gap: 8px; }

.b2b-portal-logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-portal-logo-icon svg { width: 14px; height: 14px; fill: white; }
.b2b-portal-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; }

.b2b-portal-avatar {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
}

.b2b-portal-content { padding: 20px; }
.b2b-welcome { margin-bottom: 20px; }
.b2b-welcome h4 { font-size: 16px; font-weight: 700; margin-bottom: 2px; }
.b2b-welcome p { font-size: 12px; color: var(--text-muted); }

.b2b-modules { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 16px; }

.b2b-module {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  padding: 14px;
  transition: all 0.3s ease;
}

.b2b-module:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.3);
}

.b2b-module-icon {
  width: 36px;
  height: 36px;
  background: rgba(59, 130, 246, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.b2b-module-name { font-size: 12px; font-weight: 600; margin-bottom: 2px; }
.b2b-module-desc { font-size: 10px; color: var(--text-muted); }

.b2b-kpi { background: rgba(59, 130, 246, 0.05); border-radius: 10px; padding: 14px; }
.b2b-kpi-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.b2b-kpi-title { font-size: 12px; font-weight: 600; }
.b2b-kpi-period { font-size: 10px; color: var(--text-muted); }
.b2b-kpi-items { display: flex; gap: 16px; }
.b2b-kpi-item { flex: 1; }
.b2b-kpi-value { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #3b82f6; }
.b2b-kpi-label { font-size: 10px; color: var(--text-muted); }

.b2b-floating {
  position: absolute;
  padding: 12px 14px;
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 5s ease-in-out infinite;
}

.b2b-floating-1 { top: 30px; right: -40px; }
.b2b-floating-2 { bottom: 60px; left: -40px; animation-delay: -2s; }

.b2b-floating-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.b2b-floating-text strong { display: block; font-size: 13px; margin-bottom: 1px; }
.b2b-floating-text span { font-size: 10px; color: var(--text-muted); }

.startup-visual { width: 100%; max-width: 460px; position: relative; margin: 0 auto; }

.startup-timeline { position: relative; padding-left: 36px; }

.startup-timeline::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #8b5cf6, #ec4899);
}

.startup-step {
  position: relative;
  margin-bottom: 20px;
  padding: 18px 20px;
  background: rgba(139, 92, 246, 0.05);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 14px;
  transition: all 0.3s ease;
}

.startup-step:hover {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateX(6px);
}

.startup-step::before {
  content: '';
  position: absolute;
  left: -29px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: #8b5cf6;
  border-radius: 50%;
  border: 3px solid var(--darker);
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.startup-step-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.startup-step-title { font-size: 14px; font-weight: 700; }

.startup-step-time {
  font-size: 11px;
  color: #8b5cf6;
  font-weight: 600;
  padding: 3px 8px;
  background: rgba(139, 92, 246, 0.15);
  border-radius: 20px;
}

.startup-step-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }
.startup-step-features { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }

.startup-step-feature {
  font-size: 10px;
  padding: 3px 8px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 4px;
  color: #a78bfa;
}

.startup-floating {
  position: absolute;
  padding: 14px 16px;
  background: rgba(13, 17, 23, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 12px;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  animation: float 5s ease-in-out infinite;
}

.startup-floating-1 { top: 10px; right: -60px; }
.startup-floating-2 { bottom: 20px; right: -40px; animation-delay: -2s; }

.startup-floating-emoji { font-size: 24px; margin-bottom: 6px; }
.startup-floating-value { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.startup-floating-label { font-size: 10px; color: var(--text-muted); }

@media (max-width: 1024px) {
  .hero-segment.active {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .segment-visual { order: -1; }
  .sb-features, .ec-floating, .b2b-floating, .startup-floating { display: none; }
}

@media (max-width: 640px) {
  .hero-switcher { gap: 6px; }
  .hero-switcher-btn { padding: 8px 14px; font-size: 12px; }
  .ec-stats-grid { grid-template-columns: 1fr; }
  .b2b-modules { grid-template-columns: 1fr; }
}
.hero-discount-bar {
  background: linear-gradient(135deg, rgba(20, 20, 30, 0.9), rgba(30, 20, 35, 0.9));
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 16px;
  padding: 16px 24px;
  margin-top: 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-discount-text {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f87171;
  font-size: 15px;
  font-weight: 600;
}

.hero-discount-text svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero-discount-timer {
  display: flex;
  align-items: center;
  gap: 6px;
}

.hero-discount-timer-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-discount-timer-value {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: white;
  font-size: 24px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 8px;
  min-width: 52px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.hero-discount-timer-label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.hero-discount-timer-separator {
  font-size: 20px;
  font-weight: 700;
  color: #f87171;
  margin-bottom: 18px;
}

@media (max-width: 640px) {
  .hero-discount-bar {
    flex-direction: column;
    text-align: center;
    padding: 14px 16px;
    gap: 12px;
  }
  .hero-discount-text { font-size: 13px; }
  .hero-discount-timer-value { font-size: 20px; padding: 5px 10px; min-width: 44px; }
  .hero-discount-timer-separator { font-size: 18px; margin-bottom: 14px; }
}
/* Slots Badge - Urgency Element */
.hero-slots-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.15));
  border: 1px solid rgba(239, 68, 68, 0.4);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: #fbbf24;
  margin-bottom: 16px;
  animation: pulse-glow 2s ease-in-out infinite;
}

.hero-slots-badge strong {
  color: #ef4444;
}

.hero-slots-pulse {
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
  }
  50% {
    box-shadow: 0 0 20px 5px rgba(239, 68, 68, 0.2);
  }
}

@media (max-width: 640px) {
  .hero-slots-badge {
    font-size: 13px;
    padding: 8px 14px;
  }
}
