/* ========================================
   MNB Landing — Design System & Styles
   ======================================== */

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

:root {
  --blue: #4F46E5;
  --purple: #7C3AED;
  --pink: #EC4899;
  --grad: linear-gradient(135deg, #4F46E5 0%, #7C3AED 50%, #EC4899 100%);
  --grad-soft: linear-gradient(135deg, rgba(79,70,229,0.08) 0%, rgba(124,58,237,0.08) 100%);
  --bg: #F7F8FF;
  --bg2: #EEEEFF;
  --white: #FFFFFF;
  --dark: #0D0B1E;
  --dark2: #161428;
  --dark3: #1E1B38;
  --text: #1A1A2E;
  --text2: #374151;
  --muted: #6B7280;
  --muted2: #9CA3AF;
  --border: rgba(79,70,229,0.12);
  --shadow: 0 4px 32px rgba(79,70,229,0.10);
  --shadow-lg: 0 12px 60px rgba(79,70,229,0.16);
  --r: 20px;
  --r-sm: 12px;
  --r-xs: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100%;
  width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  max-width: 100%;
  width: 100%;
  overflow-x: clip;
  overscroll-behavior-x: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y pinch-zoom;
}

/* Prevent horizontal spill without breaking vertical scroll on iOS */
nav,
footer,
section {
  max-width: 100%;
  box-sizing: border-box;
}

img, video, svg { max-width: 100%; height: auto; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 24px);
  box-sizing: border-box;
}

/* Grid/flex children must shrink on narrow viewports */
.hero-grid > *,
.booking-section-grid > *,
.ai-layout > *,
.site-layout > *,
.tasks-content.active > *,
.pwa-grid > * {
  min-width: 0;
  max-width: 100%;
}
.grad-text {
  color: var(--purple);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  color: var(--purple);
  font-size: 13px; font-weight: 600;
  padding: 5px 14px; border-radius: 100px;
  letter-spacing: 0.02em;
}
.badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--grad); flex-shrink: 0; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-size: 16px; font-weight: 600;
  padding: 14px 28px; border-radius: 14px;
  border: none; cursor: pointer; text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad); color: #fff;
  box-shadow: 0 4px 20px rgba(124,58,237,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(124,58,237,0.45); }
.btn-secondary {
  background: var(--white); color: var(--purple);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
}
.btn-secondary:hover { border-color: var(--purple); transform: translateY(-2px); }
.btn-ghost {
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.22); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 10px; }
.btn-full { width: 100%; }

.section-title { font-size: clamp(32px, 5vw, 52px); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
.section-sub { font-size: clamp(16px, 2vw, 20px); color: var(--muted); line-height: 1.6; margin-top: 12px; }

.card {
  background: var(--white);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  overflow: hidden;
}

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(247,248,255,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1200px; margin: 0 auto;
}
.nav-logo {
  font-size: 22px; font-weight: 800; letter-spacing: -0.04em;
  text-decoration: none; color: var(--text);
}
.nav-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--text2);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--purple); }
.nav-cta { display: flex; align-items: center; gap: 12px; }

/* ── Section 1: Hero ── */
#hero {
  padding: 120px 0 80px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; top: -200px; right: -150px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(236,72,153,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
}
.hero-left {
  position: relative; z-index: 2;
  animation: heroLeftIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroLeftIn {
  0%   { opacity: 0; transform: translateX(-24px); }
  100% { opacity: 1; transform: translateX(0); }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-soft); border: 1px solid var(--border);
  color: var(--purple); font-size: 13px; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 64px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.04em; margin-bottom: 20px;
}
.hero-sub {
  font-size: 20px; color: var(--muted); line-height: 1.7;
  margin-bottom: 32px; max-width: 480px;
}
.hero-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 36px;
}
.hero-benefit {
  display: flex; align-items: center; gap: 10px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  font-size: 14px; font-weight: 600; color: var(--text);
  box-shadow: 0 2px 12px rgba(79,70,229,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  opacity: 0;
  animation: benefitPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.hero-benefit.reveal-delay-1 { animation-delay: 0.55s; }
.hero-benefit.reveal-delay-2 { animation-delay: 0.7s;  }
.hero-benefit.reveal-delay-3 { animation-delay: 0.85s; }
.hero-benefit.reveal-delay-4 { animation-delay: 1.0s;  }
@keyframes benefitPop {
  0%   { opacity: 0; transform: scale(0.92) translateY(10px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-benefit:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(79,70,229,0.12); }
.hero-benefit-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-note {
  font-size: 13px; color: var(--muted); margin-top: 14px;
  display: flex; align-items: center; gap: 6px;
}
.hero-note::before { content: '✓'; color: #10B981; font-weight: 700; }

/* Hero right — UI composition */
.hero-right {
  display: flex; align-items: center; gap: 16px; justify-content: center;
}
.hero-right-left {
  display: flex; flex-direction: column; gap: 12px; flex: 0 0 200px;
}
.hero-right-right {
  display: flex; flex-direction: column; gap: 0; flex: 0 0 175px;
}
.hero-phone-wrap {
  flex: 0 0 auto; position: relative;
}
.phone-mockup-hero {
  width: 185px;
}
.hero-push-float {
  position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%);
  background: var(--white); border-radius: 14px; padding: 8px 12px;
  display: flex; align-items: center; gap: 10px; width: 230px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18); border: 1px solid var(--border);
  animation: float 4s ease-in-out infinite;
  white-space: nowrap;
}
.hero-panel {
  background: var(--dark2); border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  overflow: hidden;
}
/* Legacy absolute panel classes — kept for backwards compat but unused */
.hero-panel-analytics {}
.hero-panel-booking {}
.hero-panel-ai {}
.hero-badge-float {
  position: absolute; background: var(--white);
  border-radius: 12px; padding: 8px 14px;
  font-size: 12px; font-weight: 600; color: var(--text);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  animation: float 4s ease-in-out infinite;
  z-index: 5;
}
.hero-badge-float:nth-child(even) { animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Phone status bar */
.phone-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 14px 4px;
  font-size: 10px; font-weight: 700; color: #fff;
  background: rgba(13,11,30,0.98);
}

/* Phone Mockup Component */
.phone-mockup {
  width: 200px;
  background: var(--dark); border-radius: 36px;
  border: 3px solid rgba(255,255,255,0.15);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden; position: relative;
}
.phone-notch {
  width: 80px; height: 22px;
  background: var(--dark); border-radius: 0 0 14px 14px;
  margin: 0 auto; position: relative; z-index: 2;
}
.phone-screen { padding: 0 12px 20px; min-height: 360px; }
.phone-screen-inner { background: var(--dark2); border-radius: 16px; overflow: hidden; height: 100%; }

/* ── Section 2: Tasks / Tabs ── */
#tasks { padding: 100px 0; background: var(--white); }
.tasks-header { text-align: center; margin-bottom: 48px; }

.tasks-tabs {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px;
  justify-content: center;
}
.task-tab {
  padding: 10px 20px; border-radius: 10px;
  background: var(--bg); border: 1.5px solid transparent;
  font-size: 14px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.task-tab:hover { color: var(--purple); border-color: var(--border); }
.task-tab.active {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}

.tasks-content { display: none; }
.tasks-content.active {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  width: 100%;
}

.tasks-text { padding: 8px 0; }
.tasks-badge { margin-bottom: 16px; }
.tasks-title { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; letter-spacing: -0.03em; margin-bottom: 24px; }
.tasks-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.tasks-benefits li {
  display: flex; gap: 12px; align-items: flex-start;
}
.tasks-benefits li .benefit-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: var(--grad-soft); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0; margin-top: 2px;
}
.tasks-benefits li .benefit-text strong { display: block; font-size: 15px; font-weight: 700; color: var(--text); }
.tasks-benefits li .benefit-text span { font-size: 14px; color: var(--muted); }
.tasks-note { font-size: 14px; color: var(--muted); margin-bottom: 24px; font-style: italic; }

.tasks-visual { position: relative; }

/* ── Push Notifications Visual ── */
.pushes-container { position: relative; min-height: 400px; }
.push-notification {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--dark2); border-radius: 16px;
  padding: 14px 16px; margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateX(-20px);
  transition: all 0.5s ease;
  position: relative;
}
.push-notification.visible { opacity: 1; transform: translateX(0); }
.push-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.push-body { flex: 1; }
.push-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 2px; }
.push-text { font-size: 13px; color: rgba(255,255,255,0.6); }
.push-time { font-size: 11px; color: rgba(255,255,255,0.35); }
.push-settings {
  display: flex; gap: 8px; margin-top: 20px;
  justify-content: center;
}
.push-tag {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 8px 16px;
  font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500;
}

/* ── AI Robot Scene ── */
.mnb-robot-scene {
  background: linear-gradient(145deg, #f0f0ff 0%, #faf5ff 50%, #f0f7ff 100%);
  border-radius: 24px;
  padding: 28px 24px 20px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(124,58,237,0.1);
}
.mnb-robot-status {
  position: absolute; top: 16px; right: 16px;
  display: flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid rgba(124,58,237,0.15);
  border-radius: 20px; padding: 5px 12px;
  font-size: 12px; font-weight: 700; color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.mnb-robot-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981; display: inline-block;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}
.mnb-robot-sparkle {
  position: absolute; color: #a855f7; font-size: 14px;
  animation: sparklePop 3s ease-in-out infinite;
}
.mnb-sparkle--1 { top: 20px; left: 24px; animation-delay: 0s; }
.mnb-sparkle--2 { bottom: 60px; right: 28px; animation-delay: 1.5s; font-size: 10px; }
@keyframes sparklePop {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(20deg); }
}

.mnb-robot-wrap {
  display: flex; align-items: flex-start; gap: 16px;
  justify-content: center;
}

/* Robot illustration */
.mnb-robot {
  position: relative;
  width: 110px; flex-shrink: 0;
  animation: robotFloat 4s ease-in-out infinite;
}
@keyframes robotFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.mnb-robot-antenna {
  width: 4px; height: 18px;
  background: linear-gradient(to bottom, #d1d5db, #9ca3af);
  border-radius: 2px;
  margin: 0 auto 2px;
  position: relative;
}
.mnb-robot-antenna-ball {
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, #a855f7, #7c3aed);
  box-shadow: 0 0 8px rgba(124,58,237,0.6);
  position: absolute; top: -9px; left: 50%; transform: translateX(-50%);
  animation: antennaBlink 2s ease-in-out infinite;
}
@keyframes antennaBlink {
  0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(124,58,237,0.6); }
  50% { opacity: 0.5; box-shadow: 0 0 14px rgba(124,58,237,0.9); }
}
.mnb-robot-head {
  width: 80px; height: 72px;
  background: linear-gradient(145deg, #ffffff, #f3f4f6);
  border-radius: 22px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1.5px solid rgba(0,0,0,0.06);
}
.mnb-robot-visor {
  width: 60px; height: 26px;
  background: linear-gradient(135deg, #1e1b4b, #312e81, #4338ca);
  border-radius: 14px;
  position: absolute; top: 18px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center; gap: 12px;
  box-shadow: 0 0 12px rgba(79,70,229,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
}
.mnb-robot-eye {
  width: 10px; height: 10px; border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #a5f3fc, #06b6d4);
  box-shadow: 0 0 6px rgba(6,182,212,0.8);
  animation: eyeBlink 4s ease-in-out infinite;
}
@keyframes eyeBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.15); }
}
.mnb-robot-cheek {
  width: 10px; height: 7px; border-radius: 50%;
  background: rgba(236,72,153,0.3);
  position: absolute; bottom: 14px;
}
.mnb-cheek--l { left: 8px; }
.mnb-cheek--r { right: 8px; }
.mnb-robot-neck {
  width: 20px; height: 8px;
  background: linear-gradient(to bottom, #e5e7eb, #d1d5db);
  border-radius: 4px;
  margin: 2px auto;
}
.mnb-robot-body {
  width: 88px; height: 68px;
  background: linear-gradient(145deg, #ffffff, #f3f4f6);
  border-radius: 20px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  border: 1.5px solid rgba(0,0,0,0.06);
  display: flex; align-items: center; justify-content: center;
}
.mnb-robot-chest-panel {
  display: flex; gap: 7px; align-items: center;
}
.mnb-chest-dot {
  width: 8px; height: 8px; border-radius: 50%;
  display: block;
}
.mnb-chest-dot:nth-child(1) { background: #f87171; box-shadow: 0 0 5px rgba(248,113,113,0.6); }
.mnb-chest-dot:nth-child(2) { background: #fbbf24; box-shadow: 0 0 5px rgba(251,191,36,0.6); animation: chestPulse 2s ease-in-out infinite; }
.mnb-chest-dot:nth-child(3) { background: #34d399; box-shadow: 0 0 5px rgba(52,211,153,0.6); }
@keyframes chestPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}
.mnb-robot-arm {
  width: 16px; height: 50px;
  background: linear-gradient(to bottom, #f3f4f6, #e5e7eb);
  border-radius: 8px;
  position: absolute;
  top: 68px; /* relative to robot top = head+neck+body positioning */
  border: 1.5px solid rgba(0,0,0,0.06);
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
.mnb-arm--l { left: 0px; transform-origin: top center; }
.mnb-arm--r {
  right: 0px;
  transform-origin: top center;
  animation: waveHand 1.5s ease-in-out infinite;
}
@keyframes waveHand {
  0%, 100% { transform: rotate(-15deg); }
  50% { transform: rotate(15deg); }
}

/* Speech bubble */
.mnb-robot-bubble {
  flex: 1;
  position: relative;
  padding-top: 8px;
}
.mnb-bubble-main {
  background: #fff;
  border-radius: 18px 18px 18px 4px;
  padding: 16px 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
  border: 1px solid rgba(124,58,237,0.08);
}
.mnb-bubble-title {
  font-size: 22px; font-weight: 800; color: #111827;
  line-height: 1.3; letter-spacing: -0.02em;
}

/* Hint chips */
.mnb-robot-hints {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 14px;
}
.mnb-robot-hint {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 13px; color: #374151;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  transform: translateY(8px);
  animation: hintReveal 0.5s ease forwards;
}
.mnb-hint--1 { animation-delay: 0.8s; }
.mnb-hint--2 { animation-delay: 1.4s; }
@keyframes hintReveal {
  to { opacity: 1; transform: translateY(0); }
}

/* Robot SVG avatar in chat header */
.ai-chat-avatar-robot {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── AI Chat Visual ── */
.ai-chat-container {
  background: var(--dark); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; min-height: 200px;
}
.ai-chat-header {
  background: var(--dark2); padding: 14px 20px;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ai-chat-avatar {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.ai-chat-name { font-size: 14px; font-weight: 700; color: #fff; }
.ai-chat-status { font-size: 12px; color: #10B981; }
.ai-chat-body { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
  max-width: 80%; opacity: 0; transform: translateY(10px);
  transition: all 0.4s ease;
}
.chat-msg.visible { opacity: 1; transform: translateY(0); }
.chat-msg.user { align-self: flex-end; }
.chat-msg.user .chat-bubble {
  background: var(--grad); color: #fff;
  border-radius: 18px 18px 4px 18px;
  padding: 10px 16px; font-size: 14px;
}
.chat-msg.bot .chat-bubble {
  background: var(--dark2); color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px 18px 18px 4px;
  padding: 10px 16px; font-size: 14px;
}
.chat-action-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(79,70,229,0.25); color: #A5B4FC;
  border: 1px solid rgba(79,70,229,0.4); border-radius: 8px;
  padding: 6px 12px; font-size: 13px; font-weight: 600;
  margin-top: 6px;
}
.chat-typing {
  display: flex; gap: 4px; align-items: center; padding: 10px 14px;
  background: var(--dark2); border-radius: 18px; max-width: 60px;
}
.chat-typing span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  animation: typing 1.2s infinite;
}
.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { opacity: 0.3; transform: translateY(0); }
  30% { opacity: 1; transform: translateY(-4px); }
}

/* ── Referral Visual ── */
.referral-container { background: var(--dark); border-radius: 20px; overflow: hidden; min-height: 400px; }
.referral-setup { background: var(--dark2); padding: 16px; border-radius: 14px; margin: 16px; border: 1px solid rgba(255,255,255,0.08); }
.referral-stat-card {
  background: var(--dark3); border-radius: 12px; padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.06); margin-bottom: 8px;
  display: flex; justify-content: space-between; align-items: center;
  opacity: 0; transform: translateY(8px); transition: all 0.4s;
}
.referral-stat-card.visible { opacity: 1; transform: translateY(0); }
.referral-label { font-size: 13px; color: rgba(255,255,255,0.55); }
.referral-value { font-size: 18px; font-weight: 800; color: #10B981; }

/* ── Booking Calendar Visual ── */
.booking-cal {
  background: var(--dark); border-radius: 20px; overflow: hidden;
  min-height: 400px; font-size: 13px;
}
.booking-cal-header {
  background: var(--dark2); padding: 14px 16px;
  display: flex; gap: 8px; border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow-x: auto;
}
.master-col-head {
  background: var(--grad-soft); border: 1px solid var(--border);
  border-radius: 8px; padding: 6px 14px;
  font-size: 13px; font-weight: 600; color: var(--purple);
  white-space: nowrap; flex: 1; text-align: center;
  min-width: 80px;
}
.booking-grid { display: grid; grid-template-columns: 80px repeat(4, 1fr); gap: 4px; padding: 12px; }
.time-slot { font-size: 11px; color: rgba(255,255,255,0.35); padding: 4px 0; }
.booking-slot {
  height: 28px; border-radius: 6px; margin-bottom: 4px;
  border: 1px solid rgba(255,255,255,0.06);
}
.booking-slot.free { background: rgba(16,185,129,0.15); border-color: rgba(16,185,129,0.3); }
.booking-slot.busy { background: rgba(124,58,237,0.25); border-color: rgba(124,58,237,0.4); }
.booking-slot.busy::after {
  content: attr(data-name); font-size: 10px; color: #A5B4FC;
  display: flex; align-items: center; height: 100%; padding: 0 8px;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}

/* ── Online Booking Path Visual ── */
.booking-path {
  display: flex; flex-direction: column; gap: 12px; padding: 20px;
  background: var(--dark); border-radius: 20px;
}
.booking-step {
  display: flex; align-items: center; gap: 14px;
  background: var(--dark2); border-radius: 14px; padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.06);
  opacity: 0; transform: translateX(-16px); transition: all 0.5s ease;
}
.booking-step.visible { opacity: 1; transform: translateX(0); }
.booking-step-num {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.booking-step-text strong { font-size: 14px; font-weight: 700; color: #fff; display: block; }
.booking-step-text span { font-size: 13px; color: rgba(255,255,255,0.5); }

/* ── Site Mockup Visual ── */
.site-devices {
  display: flex; gap: 16px; align-items: flex-end; justify-content: center;
}
.device-desktop { width: 340px; flex-shrink: 0; }
.device-tablet { width: 180px; flex-shrink: 0; }
.device-phone { width: 100px; flex-shrink: 0; }
.device-frame {
  background: var(--dark2); border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden; position: relative;
}
.device-bar {
  height: 28px; background: var(--dark3);
  display: flex; align-items: center; padding: 0 10px; gap: 6px;
}
.device-dot { width: 8px; height: 8px; border-radius: 50%; }
.device-content { padding: 12px; }
.site-preview { background: var(--dark); border-radius: 8px; overflow: hidden; }
.site-hero-bar { height: 60px; background: var(--grad); opacity: 0.9; border-radius: 8px 8px 0 0; display: flex; align-items: center; padding: 0 12px; }
.site-hero-bar-text { color: #fff; font-size: 11px; font-weight: 700; }
.site-content-bars { padding: 10px; display: flex; flex-direction: column; gap: 6px; }
.site-bar { height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.site-bar.w60 { width: 60%; }
.site-bar.w80 { width: 80%; }
.site-bar.w45 { width: 45%; }
.site-bar.w90 { width: 90%; }
.site-bar.w30 { width: 30%; }

/* ── Site Editor Visual ── */
.editor-container {
  background: var(--dark); border-radius: 20px; overflow: hidden;
  min-height: 400px; display: flex; flex-direction: column; gap: 0;
}
.editor-site-preview {
  flex: 1; padding: 16px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.editor-input-area { padding: 16px; }
.editor-textarea {
  width: 100%; background: var(--dark2);
  border: 1.5px solid rgba(255,255,255,0.1); border-radius: 12px;
  padding: 14px; color: rgba(255,255,255,0.8); font-size: 14px;
  font-family: inherit; resize: none; min-height: 70px;
  line-height: 1.5;
}
.editor-textarea:focus { outline: none; border-color: var(--purple); }
.editor-controls { display: flex; align-items: center; gap: 10px; margin-top: 10px; }
.voice-wave {
  display: flex; align-items: center; gap: 3px; height: 28px;
  padding: 0 12px; background: rgba(236,72,153,0.15);
  border: 1px solid rgba(236,72,153,0.3); border-radius: 8px;
}
.voice-wave span {
  width: 3px; background: var(--pink); border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}
.voice-wave span:nth-child(1) { height: 8px; }
.voice-wave span:nth-child(2) { height: 14px; animation-delay: 0.1s; }
.voice-wave span:nth-child(3) { height: 20px; animation-delay: 0.2s; }
.voice-wave span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.voice-wave span:nth-child(5) { height: 8px; animation-delay: 0.4s; }
@keyframes wave {
  0%, 100% { transform: scaleY(0.6); opacity: 0.5; }
  50% { transform: scaleY(1); opacity: 1; }
}
.voice-time { font-size: 12px; color: rgba(255,255,255,0.5); margin-left: 4px; }

.editor-status {
  background: var(--dark2); border-radius: 12px; padding: 12px 16px;
  margin-top: 10px; border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; gap: 10px;
  transition: all 0.4s;
}
.status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #F59E0B; flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}
.status-dot.done { background: #10B981; animation: none; }
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.status-text { font-size: 13px; color: rgba(255,255,255,0.7); }

/* ── Section 3: PWA ── */
#pwa { padding: 100px 0; }
.pwa-grid { display: grid; grid-template-columns: 1fr 1.4fr 1fr; gap: 32px; align-items: center; }
.pwa-controls { display: flex; flex-direction: column; gap: 14px; }
.color-control {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px;
  box-shadow: 0 2px 12px rgba(79,70,229,0.05);
}
.color-control label { font-size: 14px; font-weight: 600; color: var(--text2); }
.color-control input[type=color] {
  width: 36px; height: 36px; border-radius: 8px;
  border: 2px solid var(--border); cursor: pointer;
  padding: 2px; background: transparent;
}

.pwa-phone-center { display: flex; justify-content: center; }
.pwa-phone-wrap { position: relative; }

/* PWA Phone Screen */
.pwa-screen {
  padding: 16px;
  min-height: 400px;
  transition: background 0.4s ease;
}
.pwa-app-header {
  border-radius: 12px 12px 0 0;
  padding: 16px;
  margin: -16px -16px 16px;
  transition: background 0.4s ease;
}
.pwa-app-logo { font-size: 18px; font-weight: 800; transition: color 0.4s; }
.pwa-app-tag { font-size: 11px; opacity: 0.7; margin-top: 2px; }
.pwa-services { display: flex; flex-direction: column; gap: 8px; }
.pwa-service-item {
  border-radius: 10px; padding: 10px 12px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.4s;
}
.pwa-service-name { font-size: 13px; font-weight: 600; transition: color 0.4s; }
.pwa-service-price { font-size: 13px; transition: color 0.4s; }
.pwa-btn-sample {
  display: block; width: 100%; margin-top: 14px;
  padding: 12px; border-radius: 10px; text-align: center;
  font-size: 14px; font-weight: 700; border: none; cursor: pointer;
  transition: background 0.4s, color 0.4s;
}

/* ── Realistic PWA Phone Mockup ── */
.pwa-real-phone {
  width: 250px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.07),
              inset 0 1px 0 rgba(255,255,255,0.12);
}

/* Status bar */
.pwa-real-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 16px 5px;
  font-size: 11px; font-weight: 700; color: #fff;
  background: rgba(13,11,30,1);
  letter-spacing: 0.01em;
}
.pwa-real-status-right {
  display: flex; align-items: center; gap: 4px;
}
.pwa-lte {
  font-size: 9px; font-weight: 800; color: rgba(255,255,255,0.9);
}

/* App screen content area */
.pwa-real-screen {
  padding: 0;
  overflow-y: auto; overflow-x: hidden;
  min-height: 0;
  transition: background 0.35s ease;
  background: #1A1A2E;
  /* CSS custom properties driven by JS */
  --pwa-bg: #1A1A2E;
  --pwa-btn: #EC4899;
  --pwa-txt: #FFFFFF;
}

/* Hero image */
.pwa-real-hero {
  position: relative; width: 100%; overflow: hidden;
  background: linear-gradient(135deg, #4a1060 0%, #7C3AED 50%, #EC4899 100%);
  min-height: 130px;
}
.pwa-real-hero-img {
  width: 100%; height: 140px; object-fit: cover; display: block;
  transition: opacity 0.3s;
}
.pwa-real-hero-counter {
  position: absolute; top: 8px; right: 10px;
  background: rgba(0,0,0,0.5); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  backdrop-filter: blur(4px);
}
.pwa-real-hero-dots {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 4px;
}
.pwa-hero-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.pwa-hero-dot--active { background: rgba(255,255,255,0.95); width: 14px; border-radius: 3px; }

/* Business identity row */
.pwa-real-biz-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px 10px;
}
.pwa-real-biz-logo {
  width: 38px; height: 38px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 19px; flex-shrink: 0;
  transition: background 0.35s, border-color 0.35s;
}
.pwa-btn-color-soft {
  background: rgba(236,72,153,0.22);
  border: 1.5px solid rgba(236,72,153,0.35);
}
.pwa-real-biz-name {
  font-size: 15px; font-weight: 800; color: #fff; line-height: 1.2;
  transition: color 0.35s;
}
.pwa-text-primary { color: var(--pwa-txt, #fff); transition: color 0.35s; }
.pwa-real-biz-cat {
  font-size: 11px; color: rgba(255,255,255,0.5); line-height: 1.3; margin-top: 1px;
}

/* Divider */
.pwa-real-divider { height: 1px; background: rgba(255,255,255,0.07); margin: 0; }

/* Hours block */
.pwa-real-hours { padding: 10px 14px; }
.pwa-real-hours-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px; font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 7px;
}
.pwa-real-hours-grid {
  display: grid; grid-template-columns: auto 1fr; gap: 3px 10px;
}
.pwa-real-hours-day {
  font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 500;
}
.pwa-real-hours-val {
  font-size: 11px; font-weight: 700; text-align: right;
  transition: color 0.35s;
}

/* Action buttons */
.pwa-real-actions { display: flex; flex-direction: column; gap: 7px; padding: 10px 14px 14px; }
.pwa-real-action-btn {
  width: 100%; padding: 10px 14px;
  border: none; border-radius: 11px; cursor: pointer;
  background: var(--pwa-btn, #EC4899);
  color: var(--pwa-txt, #fff);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; gap: 9px;
  font-family: inherit;
  transition: background 0.35s, color 0.35s, opacity 0.15s;
  text-align: left;
  letter-spacing: 0.01em;
}
.pwa-real-action-btn:hover { opacity: 0.88; }
.pwa-real-action-btn:active { opacity: 0.75; transform: scale(0.99); }

/* Bottom bar */
.pwa-real-bottom {
  display: flex; justify-content: center; align-items: center;
  padding: 6px 0 10px;
  background: rgba(13,11,30,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pwa-real-qr-btn {
  width: 46px; height: 46px; border-radius: 50%;
  border: none; cursor: pointer;
  background: var(--pwa-btn, #EC4899);
  color: var(--pwa-txt, #fff);
  display: flex; align-items: center; justify-content: center;
  font-family: inherit;
  transition: background 0.35s, color 0.35s;
  box-shadow: 0 4px 18px rgba(236,72,153,0.55);
}

.pwa-right { display: flex; flex-direction: column; gap: 12px; }
.pwa-right-card {
  background: var(--dark2); border-radius: 14px; padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.2s;
}
.pwa-right-card:hover { transform: translateX(-4px); }
.pwa-card-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.pwa-push-item {
  background: rgba(255,255,255,0.05); border-radius: 8px;
  padding: 8px 10px; margin-bottom: 6px;
  font-size: 12px; color: rgba(255,255,255,0.7);
}
.pwa-bonus-bar {
  height: 8px; background: rgba(255,255,255,0.08); border-radius: 4px; overflow: hidden; margin-top: 8px;
}
.pwa-bonus-fill {
  height: 100%; width: 0%; background: var(--grad); border-radius: 4px;
  transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
}

.pwa-qr-box {
  background: var(--white); border-radius: 12px; padding: 16px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  margin-top: 8px;
}
.pwa-qr-grid {
  display: grid; grid-template-columns: repeat(5, 12px); gap: 2px;
}
.pwa-qr-cell { width: 12px; height: 12px; border-radius: 2px; }

/* ── Section 4: Booking ── */
#booking { padding: 100px 0; background: var(--white); overflow-x: hidden; }
.booking-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}
.booking-section-grid > div {
  min-width: 0;
  max-width: 100%;
}
@media (max-width: 900px) {
  .booking-section-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }
  #booking .container {
    overflow-x: hidden;
  }
  .booking-events-wrap,
  .booking-order-demo {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    overflow: hidden;
  }
  .booking-mcal {
    max-width: 100%;
    overflow-x: clip;
  }
  .booking-mcal-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 3px;
  }
  .booking-mcal-sub {
    white-space: normal;
    text-align: right;
  }
  .booking-mcal-cell {
    min-height: 48px;
    padding: 3px 2px 4px;
  }
  .booking-mcal-appt {
    font-size: 6px;
    padding: 2px 3px;
  }
  .booking-mcal-appt small {
    font-size: 5px;
  }
}
.booking-layout { display: grid; grid-template-columns: 220px 1fr 200px; gap: 24px; align-items: start; margin-top: 48px; }

.booking-filters {
  background: var(--dark2); border-radius: 18px; padding: 20px;
  border: 1px solid rgba(255,255,255,0.06);
}
.filter-group { margin-bottom: 18px; }
.filter-label { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.filter-option {
  background: var(--dark3); border-radius: 8px; padding: 8px 12px;
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-bottom: 6px; cursor: pointer;
  border: 1px solid transparent; transition: all 0.2s;
}
.filter-option:hover, .filter-option.active {
  color: #A5B4FC; border-color: rgba(124,58,237,0.4);
  background: rgba(124,58,237,0.15);
}

.booking-main-cal {
  background: var(--dark); border-radius: 18px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.cal-date-nav {
  background: var(--dark2); padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cal-date-nav-title { font-size: 16px; font-weight: 700; color: #fff; }
.cal-nav-btn {
  background: var(--dark3); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: rgba(255,255,255,0.6);
  padding: 6px 12px; cursor: pointer; font-size: 16px;
  transition: all 0.2s;
}
.cal-nav-btn:hover { color: #fff; border-color: var(--purple); }

.cal-masters-row {
  display: grid; grid-template-columns: 60px repeat(4, 1fr); gap: 1px;
  background: rgba(255,255,255,0.04); padding: 0 12px;
}
.cal-master-head {
  padding: 12px 8px; text-align: center;
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.5);
}
.cal-master-head.first { text-align: left; font-size: 12px; }

.cal-body { padding: 12px; display: flex; flex-direction: column; gap: 4px; }
.cal-row { display: grid; grid-template-columns: 60px repeat(4, 1fr); gap: 6px; align-items: center; }
.cal-time { font-size: 11px; color: rgba(255,255,255,0.3); text-align: right; padding-right: 8px; }
.cal-cell {
  height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s; cursor: pointer;
}
.cal-cell:hover { background: rgba(255,255,255,0.07); }
.cal-cell.booked {
  background: linear-gradient(135deg, rgba(124,58,237,0.3), rgba(79,70,229,0.3));
  border-color: rgba(124,58,237,0.4);
  display: flex; align-items: center; padding: 0 8px;
}
.cal-cell.booked-pink {
  background: linear-gradient(135deg, rgba(236,72,153,0.2), rgba(124,58,237,0.2));
  border-color: rgba(236,72,153,0.35);
  display: flex; align-items: center; padding: 0 8px;
}
.cal-cell.free {
  background: rgba(16,185,129,0.1);
  border-color: rgba(16,185,129,0.25);
  display: flex; align-items: center; justify-content: center;
}
.cal-cell-text { font-size: 10px; color: #A5B4FC; font-weight: 600; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.cal-cell.free .cal-cell-text { color: #6EE7B7; font-size: 9px; }

.booking-sidebar {
  display: flex; flex-direction: column; gap: 12px;
}
.booking-card-mini {
  background: var(--dark2); border-radius: 14px; padding: 14px;
  border: 1px solid rgba(255,255,255,0.06);
}
.booking-card-mini-title {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px;
}
.booking-entry {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 8px;
}
.booking-entry-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.booking-entry-dot.purple { background: var(--purple); }
.booking-entry-dot.pink { background: var(--pink); }
.booking-entry-dot.green { background: #10B981; }
.booking-entry-info { flex: 1; }
.booking-entry-name { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.7); }
.booking-entry-time { font-size: 11px; color: rgba(255,255,255,0.35); }

/* ── Section 5: AI ── */
#ai-section { padding: 100px 0; }
.ai-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  width: 100%;
}
.ai-flow { position: relative; }
.ai-flow-chat { margin-bottom: 24px; }
.ai-flow-arrows {
  display: flex; justify-content: space-around; gap: 8px; flex-wrap: wrap;
  margin-top: 16px;
}
.flow-arrow-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 16px;
  font-size: 13px; font-weight: 600; color: var(--text2);
  box-shadow: 0 2px 12px rgba(79,70,229,0.06);
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.flow-arrow-card::before {
  content: '→'; color: var(--purple); font-size: 16px;
}

/* ── Section 6: Website ── */
#site-section { padding: 100px 0; background: var(--white); }
.site-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
  align-items: center;
  width: 100%;
}
.site-devices-wrap { display: flex; align-items: flex-end; gap: 12px; justify-content: center; flex-wrap: wrap; }

.device-desktop-frame {
  width: 340px;
  background: var(--dark2); border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.08); overflow: hidden;
}
.device-tablet-frame {
  width: 160px;
  background: var(--dark2); border-radius: 10px;
  border: 2px solid rgba(255,255,255,0.08); overflow: hidden;
}
.device-phone-frame {
  width: 90px;
  background: var(--dark2); border-radius: 16px;
  border: 2px solid rgba(255,255,255,0.08); overflow: hidden;
}
.device-bar-inner {
  height: 24px; background: var(--dark3);
  display: flex; align-items: center; padding: 0 8px; gap: 4px;
}
.d-dot { width: 6px; height: 6px; border-radius: 50%; }
.d-dot.r { background: #FF5F57; }
.d-dot.y { background: #FEBC2E; }
.d-dot.g { background: #28C840; }

/* Wellness site preview */
.wellness-site { background: #FFF8F5; border-radius: 0; overflow: hidden; }
.wellness-hero { height: 60px; background: linear-gradient(135deg, #D4A574, #C89052); display: flex; align-items: center; padding: 0 10px; }
.wellness-hero span { font-size: 10px; font-weight: 800; color: #fff; letter-spacing: 0.05em; }
.wellness-content { padding: 8px; }
.wellness-bar { height: 6px; background: #E5D4C0; border-radius: 3px; margin-bottom: 4px; }
.wellness-bar.w70 { width: 70%; }
.wellness-bar.w90 { width: 90%; }
.wellness-bar.w50 { width: 50%; }
.wellness-row { display: flex; gap: 4px; margin-top: 6px; }
.wellness-card-mini { flex: 1; height: 28px; background: #F0E6DC; border-radius: 4px; }

/* ── Section 7: Editor ── */
#editor-section { padding: 100px 0; }
.editor-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

/* ── Section 8: Pricing ── */
#pricing { padding: 100px 0; background: var(--white); }
.pricing-header { text-align: center; margin-bottom: 16px; }
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; margin-bottom: 48px;
}
.pricing-toggle-btn {
  padding: 8px 18px; border-radius: 10px; border: 1.5px solid var(--border);
  background: var(--bg); font-size: 14px; font-weight: 600; color: var(--muted);
  cursor: pointer; transition: all 0.2s;
}
.pricing-toggle-btn.active {
  background: var(--grad); color: #fff; border-color: transparent;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 40px;
}
.pricing-card {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border); padding: 28px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card.featured {
  border-color: var(--purple); background: linear-gradient(135deg, #F5F3FF 0%, #FAF0FF 100%);
}
.pricing-card.featured::before {
  content: 'Популярный';
  position: absolute; top: 16px; right: -24px;
  background: var(--grad); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 32px;
  transform: rotate(45deg); letter-spacing: 0.05em;
}
.pricing-icon { font-size: 28px; margin-bottom: 12px; }
.pricing-name { font-size: 18px; font-weight: 800; color: var(--text); margin-bottom: 2px; }
.pricing-product {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.pricing-price { font-size: 36px; font-weight: 900; color: var(--text); margin: 16px 0 4px; }
.pricing-price sub { font-size: 14px; font-weight: 500; color: var(--muted); vertical-align: middle; }
.pricing-period { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
.pricing-periods-list { display: none; font-size: 13px; color: var(--muted); margin-bottom: 16px; line-height: 1.8; }
.pricing-features { list-style: none; margin-bottom: 24px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--text2); }
.pricing-features li::before { content: '✓'; color: #10B981; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pricing-note { font-size: 12px; color: var(--muted); margin-top: -12px; margin-bottom: 20px; padding-left: 16px; }

.pricing-banner {
  background: var(--grad); border-radius: var(--r); padding: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  color: #fff;
}
.pricing-banner-text h3 { font-size: 24px; font-weight: 800; margin-bottom: 8px; }
.pricing-banner-text p { font-size: 16px; opacity: 0.85; }

/* ── Section 9: Steps ── */
#steps { padding: 100px 0; background: linear-gradient(180deg, var(--bg) 0%, rgba(79,70,229,0.03) 50%, var(--bg) 100%); }
.steps-header { text-align: center; margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 48px; position: relative; }
.step-card {
  background: var(--white); border-radius: 0;
  border: 1.5px solid var(--border); padding: 32px 24px;
  box-shadow: none; text-align: center;
  position: relative; overflow: hidden; transition: transform 0.25s, box-shadow 0.25s, z-index 0s;
  z-index: 1;
}
.step-card:first-child { border-radius: var(--r) 0 0 var(--r); }
.step-card:last-child { border-radius: 0 var(--r) var(--r) 0; }
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); z-index: 2; border-color: transparent; }
.step-card:nth-child(1):hover { box-shadow: 0 12px 40px rgba(79,70,229,0.22); }
.step-card:nth-child(2):hover { box-shadow: 0 12px 40px rgba(124,58,237,0.22); }
.step-card:nth-child(3):hover { box-shadow: 0 12px 40px rgba(168,85,247,0.22); }
.step-card:nth-child(4):hover { box-shadow: 0 12px 40px rgba(236,72,153,0.22); }
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0.5; transition: opacity 0.25s;
}
.step-card:hover::before { opacity: 1; }
/* Arrow connector between cards */
.step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -16px; top: 50%; transform: translateY(-50%);
  font-size: 18px; color: var(--purple); opacity: 0.5;
  z-index: 3; background: var(--white); padding: 4px;
  border-radius: 50%; width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(124,58,237,0.12);
  font-size: 14px; font-weight: 700;
}
.step-num {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 900; margin: 0 auto 12px;
  box-shadow: 0 4px 16px rgba(124,58,237,0.3);
}
.step-icon-wrap {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad-soft); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; color: var(--purple);
}
.step-title { font-size: 16px; font-weight: 800; margin-bottom: 8px; color: var(--text); }
.step-sub { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.step-growth-bar { margin-top: auto; }
.step-growth-label { font-size: 11px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 6px; }
.step-growth-track {
  height: 6px; background: var(--bg2); border-radius: 3px; overflow: hidden;
}
.step-growth-fill {
  height: 100%; border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.steps-connector {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 0;
}
.connector-line {
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--pink));
  border-radius: 2px;
}

/* Steps growth chart */
.steps-growth-chart {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border); padding: 32px;
  box-shadow: var(--shadow); margin-bottom: 40px;
}
.sgc-label {
  font-size: 14px; font-weight: 700; color: var(--muted);
  text-align: center; margin-bottom: 32px; text-transform: uppercase;
  letter-spacing: 0.05em;
}
.sgc-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 0; min-height: 120px; padding: 0 20px;
}
.sgc-bar-group {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; flex: 1; max-width: 120px;
}
.sgc-bar {
  width: 48px; border-radius: 8px 8px 0 0;
  position: relative; min-height: 20px;
  transition: height 1s cubic-bezier(0.22,1,0.36,1);
}
.sgc-bar--1 { height: 36px; background: linear-gradient(180deg,#6366F1,#4F46E5); }
.sgc-bar--2 { height: 72px; background: linear-gradient(180deg,#8B5CF6,#7C3AED); }
.sgc-bar--3 { height: 104px; background: linear-gradient(180deg,#A855F7,#9333EA); }
.sgc-bar--4 { height: 136px; background: linear-gradient(180deg,#EC4899,#DB2777); }
.sgc-bar-tip {
  position: absolute; top: -26px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 800; white-space: nowrap;
  color: var(--purple);
}
.sgc-bar-name { font-size: 12px; font-weight: 600; color: var(--muted); text-align: center; }
.sgc-arrow {
  font-size: 18px; color: var(--purple); opacity: 0.4;
  padding-bottom: 24px; flex-shrink: 0;
}
.sgc-note {
  font-size: 12px; color: var(--muted); text-align: center;
  margin-top: 20px; font-style: italic;
}
.step-cta { text-align: center; }

/* ── Section 10: Final CTA ── */
#final-cta {
  padding: 100px 0;
  background: var(--dark);
  position: relative; overflow: hidden;
}
#final-cta::before {
  content: '';
  position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { text-align: center; position: relative; z-index: 2; }
.final-cta-title { font-size: clamp(36px, 5vw, 60px); font-weight: 900; color: #fff; letter-spacing: -0.04em; margin-bottom: 20px; }
.final-cta-sub { font-size: 20px; color: rgba(255,255,255,0.6); margin-bottom: 40px; }
.final-cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.final-quick { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.quick-btn {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 10px 20px;
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.7);
  cursor: pointer; text-decoration: none; transition: all 0.2s;
}
.quick-btn:hover { background: rgba(255,255,255,0.16); color: #fff; }

/* ── Footer ── */
footer {
  background: var(--dark2); padding: 48px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.footer-logo {
  font-size: 20px; font-weight: 800; color: #fff;
  text-decoration: none; letter-spacing: -0.04em;
}
.footer-logo span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Gradient Orbs ── */
.orb {
  position: absolute; border-radius: 50%; pointer-events: none;
  filter: blur(80px); opacity: 0.4;
}
.orb-blue { background: radial-gradient(circle, #4F46E5, transparent); }
.orb-purple { background: radial-gradient(circle, #7C3AED, transparent); }
.orb-pink { background: radial-gradient(circle, #EC4899, transparent); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .step-card { border-radius: 0 !important; }
  .step-card:nth-child(1) { border-radius: var(--r) 0 0 0 !important; }
  .step-card:nth-child(2) { border-radius: 0 var(--r) 0 0 !important; }
  .step-card:nth-child(3) { border-radius: 0 0 0 var(--r) !important; }
  .step-card:nth-child(4) { border-radius: 0 0 var(--r) 0 !important; }
  .step-card:not(:last-child)::after { display: none; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-filters { display: none; }
  .booking-sidebar { flex-direction: row; flex-wrap: wrap; }
  .booking-card-mini { flex: 1; min-width: 160px; }
  .pwa-grid { grid-template-columns: 1fr 1fr; }
  .pwa-controls { display: none; }
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .tasks-content.active { grid-template-columns: 1fr; }
  .ai-layout { grid-template-columns: 1fr; }
  .site-layout { grid-template-columns: 1fr; }
  .editor-layout { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .mnb-robot-wrap { flex-direction: column; align-items: center; }
  .mnb-robot-bubble { width: 100%; }
  .mnb-bubble-title { font-size: 18px; }
}

@media (max-width: 640px) {
  .section-title { font-size: 30px; }
  .hero-title { font-size: 36px; }
  .hero-benefits { grid-template-columns: 1fr 1fr; }
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .tasks-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .task-tab { font-size: 13px; padding: 10px 12px; text-align: center; }
  .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 0; }
  .step-card { border-radius: 0 !important; }
  .step-card:first-child { border-radius: var(--r) var(--r) 0 0 !important; }
  .step-card:last-child { border-radius: 0 0 var(--r) var(--r) !important; }
  .step-card:not(:last-child)::after { display: none; }
  .pricing-banner { flex-direction: column; text-align: center; }
  .final-cta-btns { flex-direction: column; align-items: center; }
  .pwa-grid { grid-template-columns: 1fr; }
  .pwa-right { display: none; }
  .device-desktop-frame { width: 100%; }
  .device-tablet-frame, .device-phone-frame { display: none; }
  .booking-sidebar { display: none; }
  .final-quick { display: grid; grid-template-columns: 1fr 1fr; }
  .quick-btn { text-align: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ── Mini Animations ── */
@keyframes slideInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }

.animate-slide-up { animation: slideInUp 0.6s ease forwards; }

/* ── Progress bar ── */
.progress-bar-wrap {
  height: 4px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
  margin-top: 8px;
}
.progress-bar-fill {
  height: 100%; width: 0%; background: var(--grad); border-radius: 2px;
  transition: width 2s ease;
}
.progress-bar-fill.running { width: 100%; }

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--purple); }

/* ── Hero subtitle accent words ── */
.hero-accent {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ═══════════════════════════════
   HERO DASHBOARD — REDESIGNED
═══════════════════════════════ */

/* Override hero-right to accommodate the dashboard */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  max-width: 100%;
  min-width: 0;
}

/* ── Dashboard wrapper ── */
.hero-dashboard-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  animation: heroDashIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes heroDashIn {
  0%   { opacity: 0; transform: translateY(32px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}

/* Glow orbs */
.hero-dash-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  z-index: 0;
}
.hero-dash-glow--1 {
  width: 340px; height: 260px;
  top: -40px; left: -60px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.22) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite alternate;
}
.hero-dash-glow--2 {
  width: 280px; height: 200px;
  bottom: -30px; right: -40px;
  background: radial-gradient(ellipse, rgba(236,72,153,0.18) 0%, transparent 70%);
  animation: glowPulse 5s ease-in-out infinite alternate-reverse;
}
@keyframes glowPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 1;   transform: scale(1.12); }
}

/* Browser frame */
.hero-dash-frame {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(79,70,229,0.10),
    0 24px 80px rgba(79,70,229,0.18),
    0 4px 16px rgba(0,0,0,0.08);
  animation: heroDashFloat 6s ease-in-out infinite;
}

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

/* Browser chrome bar */
.hero-dash-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #F3F4F6;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.hero-dash-chrome-dots {
  display: flex; gap: 5px; flex-shrink: 0;
}
.hdc-dot {
  width: 10px; height: 10px; border-radius: 50%;
}
.hdc-dot--r { background: #FF5F57; }
.hdc-dot--y { background: #FEBC2E; }
.hdc-dot--g { background: #28C840; }

.hero-dash-url {
  flex: 1;
  display: flex; align-items: center; gap: 6px;
  background: #E5E7EB;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 12px;
  color: #6B7280;
  font-family: 'Inter', monospace;
  font-weight: 500;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hero-dash-chrome-actions {
  color: #9CA3AF;
  flex-shrink: 0;
  opacity: 0.5;
}

/* Dashboard screenshot */
.hero-dash-screen {
  overflow: hidden;
  line-height: 0;
}
.hero-dash-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Floating badges */
.hero-dash-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  box-shadow: 0 8px 32px rgba(79,70,229,0.14), 0 2px 8px rgba(0,0,0,0.06);
  opacity: 0;
  animation: badgeFadeIn 0.7s ease forwards;
}
.hero-dash-badge--modules {
  top: -18px;
  left: 24px;
  animation-delay: 0.9s;
}
.hero-dash-badge--clients {
  bottom: -18px;
  right: 24px;
  animation-delay: 1.3s;
}
@keyframes badgeFadeIn {
  0%   { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-dash-badge--modules { left: 12px; }
  .hero-dash-badge--clients { right: 12px; }
}
@media (max-width: 900px) {
  .hero-right { display: none; }
}

/* ═══════════════════════════════
   BOOKING EVENTS STREAM
═══════════════════════════════ */
.booking-events-wrap {
  background: var(--dark);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  min-height: 380px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.booking-events-header {
  background: var(--dark2);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.booking-events-live {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #10B981;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981;
  animation: livePulse 1.4s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}
.booking-events-feed {
  padding: 12px;
  display: flex; flex-direction: column; gap: 8px;
  max-height: 340px;
  overflow-y: auto;
  overflow-x: hidden;
  max-width: 100%;
}

.booking-order-demo .booking-events-feed {
  max-height: 220px;
}

.booking-order-demo {
  overflow: hidden;
}

.booking-mcal {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px 14px 16px;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(79,70,229,0.06) 100%);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.booking-mcal.booking-mcal--visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.booking-mcal-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.booking-mcal-title {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.booking-mcal-sub {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
.booking-mcal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 12px;
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
}
.booking-mcal-legend .lg {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  margin-right: 5px;
  vertical-align: middle;
}
.lg--purple { background: linear-gradient(135deg, #7C3AED, #4F46E5); }
.lg--pink { background: linear-gradient(135deg, #EC4899, #DB2777); }
.lg--amber { background: linear-gradient(135deg, #F59E0B, #D97706); }
.lg--teal { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.lg--indigo { background: linear-gradient(135deg, #6366F1, #4338CA); }

.booking-mcal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
  max-width: 100%;
}
.booking-mcal-dow {
  font-size: 9px;
  font-weight: 800;
  color: rgba(255,255,255,0.28);
  text-align: center;
  padding: 4px 0 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.booking-mcal-cell {
  min-height: 58px;
  min-width: 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 4px 3px 5px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.2s;
}
.booking-mcal-cell.booking-mcal-cell--in {
  opacity: 1;
  transform: scale(1);
}
.booking-mcal-cell--muted {
  opacity: 0.35 !important;
  transform: scale(1) !important;
}
.booking-mcal-cell--muted .booking-mcal-daynum {
  color: rgba(255,255,255,0.25);
}
.booking-mcal-daynum {
  font-size: 10px;
  font-weight: 800;
  color: rgba(255,255,255,0.55);
  line-height: 1;
}
.booking-mcal-appt {
  font-size: 7px;
  font-weight: 700;
  line-height: 1.15;
  padding: 3px 4px;
  border-radius: 4px;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  word-break: break-word;
}
.booking-mcal-appt small {
  font-size: 6px;
  font-weight: 700;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.appt--purple { background: linear-gradient(135deg, rgba(124,58,237,0.55), rgba(79,70,229,0.45)); }
.appt--pink { background: linear-gradient(135deg, rgba(236,72,153,0.5), rgba(190,24,93,0.35)); }
.appt--amber { background: linear-gradient(135deg, rgba(245,158,11,0.5), rgba(180,83,9,0.35)); }
.appt--teal { background: linear-gradient(135deg, rgba(20,184,166,0.5), rgba(13,148,136,0.38)); }
.appt--indigo { background: linear-gradient(135deg, rgba(99,102,241,0.55), rgba(67,56,202,0.42)); }
.st--ok { box-shadow: inset 0 0 0 1px rgba(16,185,129,0.45); }
.st--wait { box-shadow: inset 0 0 0 1px rgba(245,158,11,0.5); }
.st--done { box-shadow: inset 0 0 0 1px rgba(165,180,252,0.55); }
.st--cancel { box-shadow: inset 0 0 0 1px rgba(239,68,68,0.55); opacity: 0.72; }

.module-label {
  display: inline-flex;
  align-items: flex-end;
  gap: 10px 14px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.module-label--center {
  justify-content: center;
  width: 100%;
}
.module-section-head--center {
  text-align: center;
  margin-bottom: 32px;
}
.module-section-head--center .section-title {
  margin-bottom: 16px;
}
.module-section-head--center .section-sub {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.module-num {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.05em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.module-word {
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.mnb-hub-section {
  padding: 56px 0 72px;
  background: linear-gradient(180deg, var(--white) 0%, var(--bg) 100%);
}
.mnb-hub-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 48px);
  box-shadow: var(--shadow-lg);
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.mnb-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--grad);
}
.mnb-hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
}
.mnb-hub-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 16px;
}
.mnb-hub-lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.mnb-hub-automation {
  text-align: left;
  max-width: 520px;
  margin: 0 auto 28px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
}
.mnb-hub-automation-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}
.mnb-hub-soon {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mnb-hub-soon-label {
  display: inline-flex;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  background: var(--grad);
  padding: 5px 12px;
  border-radius: 8px;
}
.mnb-hub-soon-list {
  margin: 0;
  padding-left: 20px;
  color: var(--text2);
  font-size: 15px;
  line-height: 1.65;
}
.mnb-hub-soon-list li::marker {
  color: var(--purple);
}
.mnb-hub-cta {
  font-size: 17px;
  padding: 16px 36px;
}

.mnb-app-download {
  margin-top: 28px;
}
.mnb-app-download-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.mnb-app-download-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 12px;
}
.mnb-app-download-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 640px;
}
.mnb-app-download-qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.mnb-app-qr-frame {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 8px 28px rgba(79,70,229,0.12);
}
.mnb-app-qr-grid {
  display: grid;
  grid-template-columns: repeat(5, 10px);
  gap: 2px;
}
.mnb-app-qr-cell {
  width: 10px;
  height: 10px;
  border-radius: 2px;
}
.mnb-app-qr-caption {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
}
@media (max-width: 720px) {
  .mnb-app-download-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .mnb-app-download-qr {
    order: -1;
  }
  .mnb-app-download-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.booking-event-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border-radius: 12px; padding: 10px 12px;
  border-left: 3px solid transparent;
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.booking-event-item.visible {
  opacity: 1; transform: translateX(0);
}
.booking-event-item.ev-confirmed { border-color: #10B981; }
.booking-event-item.ev-rescheduled { border-color: #F59E0B; }
.booking-event-item.ev-cancelled { border-color: #EF4444; }
.booking-event-item.ev-done { border-color: #A5B4FC; }
.booking-event-item.ev-balance { border-color: #34D399; }
.booking-event-icon {
  width: 34px; height: 34px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.booking-event-body { flex: 1; min-width: 0; }
.booking-event-title {
  font-size: 12px; font-weight: 700; color: #fff;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.booking-event-sub {
  font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 1px;
}
.booking-event-time {
  font-size: 10px; color: rgba(255,255,255,0.3);
  flex-shrink: 0;
}
.booking-event-status {
  font-size: 10px; font-weight: 700;
  padding: 3px 8px; border-radius: 6px;
  flex-shrink: 0;
}

/* ═══════════════════════════════
   AI SITE CREATION DEMO
═══════════════════════════════ */
.ai-site-demo {
  display: flex; flex-direction: column; gap: 16px;
}
.ai-site-prompt-wrap {
  background: var(--dark2);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.07);
}
.ai-site-prompt-label {
  font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 8px; font-weight: 600;
}
.ai-site-prompt-bubble {
  background: rgba(79,70,229,0.15);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px; color: #C7D2FE; line-height: 1.5;
  min-height: 42px;
}
.ai-site-cursor {
  display: inline-block;
  animation: blinkCursor 0.75s step-end infinite;
  color: #7C3AED; font-weight: 700;
}
@keyframes blinkCursor { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
.ai-site-status {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px;
  font-size: 11px; color: #A5B4FC; font-weight: 600;
}
.ai-site-status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad);
  animation: livePulse 1s ease-in-out infinite;
}

/* Device frames */
.ai-site-preview-wrap {
  display: flex; gap: 12px; align-items: flex-end;
  width: 100%;
}
.ai-site-device {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.device-label {
  font-size: 10px; color: rgba(255,255,255,0.3); font-weight: 600;
}
.ai-site-desktop {
  flex: 1;
}
.device-bar {
  background: var(--dark3);
  border-radius: 6px 6px 0 0;
  padding: 5px 8px;
  display: flex; align-items: center; gap: 6px;
  width: 100%;
}
.device-url {
  flex: 1; background: rgba(255,255,255,0.08);
  border-radius: 4px; padding: 2px 8px;
  font-size: 9px; color: rgba(255,255,255,0.5);
  text-align: center; overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.salon-site-preview {
  background: #FFFBF5;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  border-radius: 0 0 6px 6px;
  width: 100%;
}
.salon-nav {
  background: #FEF3C7;
  display: flex; align-items: center; justify-content: space-between;
  padding: 7px 10px;
  border-bottom: 1px solid rgba(180,83,9,0.1);
}
.salon-hero-block {
  padding: 12px 10px 10px;
  background: linear-gradient(135deg, #FFFBF0, #FEF3C7);
}
.salon-services-row {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 4px;
  padding: 6px 8px;
}
.salon-service-card {
  background: #FEF9F0;
  border-radius: 6px; padding: 6px 4px;
  text-align: center;
  border: 1px solid rgba(180,83,9,0.1);
}
.salon-address-block {
  padding: 6px 8px 8px;
  border-top: 1px solid rgba(180,83,9,0.08);
}
.salon-map-preview {
  background: linear-gradient(135deg,#E9F5E9,#DCF5DC);
  border-radius: 6px;
  padding: 6px 8px;
  display: flex; align-items: center; gap: 5px;
  border: 1px solid rgba(34,197,94,0.2);
}
.salon-map-pin { font-size: 12px; }
.salon-route-btn {
  background: #16A34A; border-radius: 5px;
  padding: 3px 7px; font-size: 7px; font-weight: 700; color: #fff;
  white-space: nowrap; cursor: pointer;
}

/* Mobile frame */
.ai-site-mobile-wrap { flex: 0 0 90px; }
.ai-site-phone-frame {
  background: var(--dark);
  border-radius: 18px;
  border: 2px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  width: 90px;
}
.ai-site-phone-notch {
  width: 36px; height: 10px;
  background: var(--dark); border-radius: 0 0 8px 8px;
  margin: 0 auto;
}
.salon-mobile { border-radius: 0; }

/* Tablet frame */
.ai-site-tablet-wrap { flex: 0 0 130px; }
.ai-site-tablet-frame {
  background: var(--dark);
  border-radius: 12px;
  border: 2px solid rgba(255,255,255,0.15);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  width: 130px;
  padding-top: 8px;
}
.ai-site-tablet-cam {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin: 0 auto 4px;
}
.salon-tablet { border-radius: 0; }
.salon-site-preview.salon-tablet,
.salon-site-preview.salon-mobile {
  border-radius: 0;
  border: none;
}

/* ═══════════════════════════════════════════
   REALISTIC 2-DEVICE SITE SHOWCASE
   (Tab 7 & Site-Section)
═══════════════════════════════════════════ */

/* ── Wrapper: flex row, phone overlaps PC ── */
.rsite-2d-wrap {
  display: flex;
  align-items: flex-end;
  gap: 0;
  position: relative;
  width: 100%;
}

/* ── PC device column ── */
.rsite-pc-device {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

/* ── Phone device column ── */
.rsite-phone-device {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-left: -36px;   /* overlap the PC by 36px */
  position: relative;
  z-index: 10;
  flex-shrink: 0;
}

/* ── PC frame (browser chrome + screen) ── */
.rsite-pc-frame {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.14);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.55),
    inset 0 1px 0 rgba(255,255,255,0.06);
  background: #111;
}

/* Browser chrome bar */
.rsite-pc-chrome {
  height: 30px;
  background: #2A2A2A;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

/* macOS traffic-light buttons */
.rsite-tl { display: flex; gap: 5px; align-items: center; flex-shrink: 0; }
.rsite-tl-r, .rsite-tl-y, .rsite-tl-g {
  width: 9px; height: 9px; border-radius: 50%;
}
.rsite-tl-r { background: #FF5F57; }
.rsite-tl-y { background: #FEBC2E; }
.rsite-tl-g { background: #28C840; }

/* URL bar */
.rsite-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 5px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: rgba(255,255,255,0.38);
  font-family: monospace;
  letter-spacing: 0.01em;
  overflow: hidden;
  white-space: nowrap;
}

/* Screen area — clips website content */
.rsite-pc-screen {
  height: 252px;
  overflow: hidden;
  background: #0F0F0F;
}

/* ── Phone frame (iPhone-style) ── */
.rsite-phone-frame {
  width: 132px;
  height: 294px;
  background: #101010;
  border-radius: 26px;
  border: 2.5px solid rgba(255,255,255,0.18);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.04),
    inset 0 1px 0 rgba(255,255,255,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Dynamic island / notch */
.rsite-phone-island {
  width: 60px;
  height: 13px;
  background: #101010;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.rsite-phone-screen {
  flex: 1;
  overflow: hidden;
  background: #0F0F0F;
  margin-top: -1px;
}

/* ── Device label ── */
.rsite-dlabel {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
}

/* ─────────────────────────────────────────
   DESKTOP INNER WEBSITE (Barbershop theme)
───────────────────────────────────────── */

.rsite-inner {
  font-family: 'Inter', -apple-system, sans-serif;
  background: #0F0F0F;
  height: 252px;
  overflow: hidden;
}

/* Nav */
.rsite-sitenav {
  height: 30px;
  background: #141414;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  border-bottom: 1px solid rgba(201,164,76,0.12);
  flex-shrink: 0;
  overflow: hidden;
}
.rsite-sitelogo {
  font-size: 8.5px; font-weight: 800; color: #C9A84C;
  letter-spacing: 0.04em; white-space: nowrap;
  flex-shrink: 0;
}
.rsite-sitenav-links {
  display: flex; gap: 6px; font-size: 7px; color: rgba(255,255,255,0.42);
  flex: 1; justify-content: center; overflow: hidden;
}
.rsite-sitenav-links span { white-space: nowrap; }
.rsite-sitecta {
  background: #C9A84C; border-radius: 4px;
  padding: 3px 8px; font-size: 7px; font-weight: 700; color: #0F0F0F;
  white-space: nowrap; flex-shrink: 0;
}

/* Hero section with real photo */
.rsite-hero-img {
  height: 112px;
  background-size: cover;
  background-position: center top;
  background-color: #1A1414;   /* fallback */
  position: relative;
  flex-shrink: 0;
}
.rsite-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.2) 100%);
  padding: 9px 13px;
  display: flex; flex-direction: column; justify-content: flex-end; gap: 5px;
}
.rsite-htag {
  font-size: 6px; color: #C9A84C; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.rsite-htitle {
  font-size: 16px; font-weight: 900; color: #FFF;
  line-height: 1.1; letter-spacing: -0.02em;
}
.rsite-hbtns { display: flex; gap: 5px; align-items: center; }
.rsite-hbtn-gold {
  background: #C9A84C; border-radius: 4px;
  padding: 4px 9px; font-size: 7px; font-weight: 700; color: #0F0F0F;
}
.rsite-hbtn-ghost {
  border: 1px solid rgba(255,255,255,0.32); border-radius: 4px;
  padding: 4px 8px; font-size: 7px; font-weight: 600; color: rgba(255,255,255,0.65);
}
.rsite-hstats {
  display: flex; align-items: center; gap: 8px;
}
.rsite-hstat { display: flex; flex-direction: column; gap: 1px; }
.rsite-hstat > span:first-child { font-size: 8px; font-weight: 700; color: #fff; }
.rsite-hstat > span:last-child  { font-size: 6px; color: rgba(255,255,255,0.42); }
.rsite-hstat-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.1); }

/* Services grid */
.rsite-svc-section {
  background: #0F0F0F; padding: 8px 12px;
}
.rsite-svc-title {
  font-size: 7px; color: rgba(255,255,255,0.32); font-weight: 700;
  letter-spacing: 0.12em; margin-bottom: 7px;
}
.rsite-svc-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 7px;
}
.rsite-svc-card {
  background: #1A1A1A; border-radius: 7px; overflow: hidden;
  border: 1px solid rgba(201,164,76,0.1);
}
.rsite-svc-photo {
  height: 52px; background-size: cover; background-position: center;
  background-color: #252525;
}
.rsite-svc-body {
  padding: 5px 6px; display: flex; flex-direction: column; gap: 2px;
}
.rsite-svc-name { font-size: 8px; font-weight: 700; color: #F0F0F0; }
.rsite-svc-price { font-size: 8px; color: #C9A84C; font-weight: 600; }

/* Coffee shop variant overrides */
.rsite-sitenav--coffee { border-bottom-color: rgba(232,201,122,0.1); }
.rsite-sitelogo--coffee { color: #E8C97A; }
.rsite-sitecta--coffee { background: #E8C97A; }
.rsite-inner--coffee { background: #1A1208; }
.rsite-hero-overlay--coffee {
  background: linear-gradient(100deg, rgba(15,8,0,0.88) 0%, rgba(15,8,0,0.55) 55%, rgba(15,8,0,0.2) 100%);
}
.rsite-svc-section--coffee { background: #1A1208; }
.rsite-svc-card--coffee { background: #261C0E; border-color: rgba(232,201,122,0.1); }
.rsite-svc-photo { background-color: #2C1E0A; }

/* ─────────────────────────────────────────
   MOBILE INNER WEBSITE
───────────────────────────────────────── */

.rsm-inner {
  height: 100%; background: #0F0F0F;
  font-family: 'Inter', -apple-system, sans-serif;
  overflow: hidden; display: flex; flex-direction: column;
}

/* Nav */
.rsm-nav {
  height: 26px; background: #141414;
  padding: 0 10px; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(201,164,76,0.1);
  flex-shrink: 0;
}
.rsm-logo { font-size: 9px; font-weight: 800; color: #C9A84C; letter-spacing: 0.05em; }
.rsm-hamburger { display: flex; flex-direction: column; gap: 2.5px; }
.rsm-hamburger span { display: block; width: 14px; height: 1.5px; background: rgba(255,255,255,0.55); border-radius: 1px; }

/* Hero with photo */
.rsm-hero {
  height: 108px; background-size: cover; background-position: center top;
  background-color: #1A1414; position: relative; flex-shrink: 0;
}
.rsm-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0.78) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 8px 10px; gap: 4px;
}
.rsm-htitle { font-size: 13px; font-weight: 900; color: #fff; line-height: 1.15; }
.rsm-hrating { font-size: 7px; color: rgba(255,255,255,0.65); }
.rsm-hbtn {
  background: #C9A84C; border-radius: 5px;
  padding: 5px 10px; font-size: 8px; font-weight: 700; color: #0F0F0F;
  display: inline-flex; width: fit-content; white-space: nowrap;
}

/* Services list */
.rsm-svcs { padding: 7px 10px 0; display: flex; flex-direction: column; gap: 0; flex-shrink: 0; }
.rsm-svc-item {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.rsm-svc-last { border-bottom: none; }
.rsm-svc-img {
  width: 38px; height: 30px; border-radius: 5px;
  background-size: cover; background-position: center;
  background-color: #252525; flex-shrink: 0;
}
.rsm-svc-info { flex: 1; }
.rsm-svc-nm { font-size: 9px; font-weight: 700; color: #F0F0F0; margin-bottom: 1px; }
.rsm-svc-pr { font-size: 8px; color: #C9A84C; font-weight: 600; }
.rsm-svc-arrow { font-size: 15px; color: rgba(255,255,255,0.22); font-weight: 300; line-height: 1; }

/* Address bar */
.rsm-addr {
  margin: 6px 10px 0;
  background: rgba(201,164,76,0.06);
  border: 1px solid rgba(201,164,76,0.15);
  border-radius: 7px; padding: 5px 8px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 8px; color: rgba(255,255,255,0.52);
  flex-shrink: 0;
}
.rsm-map-btn {
  background: #C9A84C; border-radius: 4px;
  padding: 3px 7px; font-size: 7px; font-weight: 700; color: #0F0F0F;
}

/* Coffee inner mobile overrides */
.rsm-inner--coffee { background: #1A1208; }
.rsm-nav--coffee { border-bottom-color: rgba(232,201,122,0.1); background: #201508; }
.rsm-addr--coffee { background: rgba(232,201,122,0.05); border-color: rgba(232,201,122,0.12); }


/* ═══════════════════════════════════════
   PHONES SHOWCASE (Tab 1 Visual)
═══════════════════════════════════════ */
.phones-showcase-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phones-showcase-img {
  width: 100%;
  max-width: 540px;
  height: auto;
  border-radius: 20px;
  animation: phonesFloat 6s ease-in-out infinite;
  filter: drop-shadow(0 30px 60px rgba(124,58,237,0.35));
  transition: transform 0.4s ease;
}
.phones-showcase-wrap picture {
  display: block;
  width: 100%;
  max-width: 540px;
}
@media (max-width: 640px) {
  .phones-showcase-img {
    animation: none;
    filter: drop-shadow(0 16px 32px rgba(124,58,237,0.28));
  }
}
.phones-showcase-img:hover {
  transform: scale(1.02) translateY(-4px);
}
@keyframes phonesFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.phones-showcase-float {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 700;
  color: #0D0B1E;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  gap: 6px;
  animation: floatBadge 4s ease-in-out infinite;
  white-space: nowrap;
}
.phones-showcase-float--1 {
  top: 8%;
  left: -5%;
  animation-delay: 0s;
}
.phones-showcase-float--2 {
  bottom: 18%;
  left: -8%;
  animation-delay: 1.5s;
}
.phones-showcase-float--3 {
  bottom: 6%;
  right: -2%;
  animation-delay: 0.8s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}

/* ═══════════════════════════════════════
   QUICK BENEFITS SECTION
═══════════════════════════════════════ */
#quick-benefits {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(79,70,229,0.06) 35%, rgba(79,70,229,0.03) 65%, var(--bg) 100%);
}
.qb-header {
  text-align: center;
  margin-bottom: 48px;
}
.qb-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--text);
}
.qb-sub {
  font-size: 17px;
  color: var(--text2);
}
.qb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.qb-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.qb-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.qb-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(124,58,237,0.2);
  border-color: rgba(124,58,237,0.3);
}
.qb-card > * { position: relative; z-index: 1; }
.qb-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  animation: qbIconPulse 3s ease-in-out infinite;
}
.qb-card:nth-child(2) .qb-icon { animation-delay: 1s; }
.qb-card:nth-child(3) .qb-icon { animation-delay: 2s; }
@keyframes qbIconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
.qb-card-title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text);
}
.qb-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.qb-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.qb-badge {
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(236,72,153,0.15));
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 16px;
  font-weight: 700;
  color: var(--purple);
}
.qb-btn {
  font-size: 18px;
  padding: 18px 48px;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(124,58,237,0.4);
}
.qb-note {
  font-size: 13px;
  color: var(--muted2);
}

/* ═══════════════════════════════════════
   SUPPORT SECTION
═══════════════════════════════════════ */
#support-section {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(79,70,229,0.05) 50%, var(--bg) 100%);
}
.support-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.support-bot-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(124,58,237,0.1);
}
.support-bot-card::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
/* Bot avatar */
.support-bot-avatar {
  position: relative;
  width: 100px;
  height: 120px;
}
.support-bot-face {
  width: 100px;
  height: 120px;
  background: linear-gradient(160deg, #e8f0ff 0%, #c5d8f8 60%, #a8c8f4 100%);
  border-radius: 50px 50px 42px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  animation: botBob 3s ease-in-out infinite;
  box-shadow: 0 8px 30px rgba(124,58,237,0.4);
}
@keyframes botBob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-6px) rotate(1deg); }
}
.support-bot-eyes {
  display: flex;
  gap: 10px;
}
.support-bot-eye {
  width: 22px;
  height: 10px;
  background: #38bdf8;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 0 8px 2px rgba(56,189,248,0.8), 0 0 16px 4px rgba(56,189,248,0.4);
  animation: botBlink 4s ease-in-out infinite;
}
.support-bot-eye::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 4px;
  background: rgba(255,255,255,0.6);
  border-radius: 4px;
  border-radius: 50%;
  top: 3px;
  left: 3px;
}
@keyframes botBlink {
  0%, 90%, 100% { transform: scaleY(1); }
  95% { transform: scaleY(0.1); }
}
.support-bot-mouth {
  width: 22px;
  height: 3px;
  background: rgba(56,189,248,0.5);
  border-radius: 2px;
}
.support-bot-glow {
  position: absolute;
  inset: -6px;
  border-radius: 56px;
  background: radial-gradient(ellipse, rgba(56,189,248,0.3) 0%, rgba(99,179,237,0.15) 60%, transparent 100%);
  opacity: 0.9;
  filter: blur(12px);
  z-index: -1;
  animation: botGlow 3s ease-in-out infinite;
}
@keyframes botGlow {
  0%, 100% { opacity: 0.2; transform: scale(0.95); }
  50% { opacity: 0.4; transform: scale(1.05); }
}
/* Speech bubble */
.support-bubble {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.08));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 20px;
  padding: 16px 20px 12px;
  position: relative;
  width: 100%;
  min-height: 70px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.support-bubble-arrow {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(124,58,237,0.25);
}
.support-bubble-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  min-height: 22px;
  transition: opacity 0.4s;
}
.support-bubble-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
}
.support-bubble-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.5;
  animation: dotPulse 1.4s ease-in-out infinite;
}
.support-bubble-dots span:nth-child(2) { animation-delay: 0.2s; }
.support-bubble-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes dotPulse {
  0%, 80%, 100% { transform: scale(0.8); opacity: 0.4; }
  40% { transform: scale(1.2); opacity: 1; }
}
/* Quick buttons */
.support-quick-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.support-quick-btn {
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  cursor: pointer;
  transition: all 0.2s;
}
.support-quick-btn:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}
/* Live badge */
.support-live-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 20px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #10B981;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ═══════════════════════════════════════
   BUILT ON MNB BANNER
═══════════════════════════════════════ */
#built-on-mnb {
  padding: 60px 0;
}
.built-banner {
  position: relative;
  background: linear-gradient(135deg, rgba(124,58,237,0.15) 0%, rgba(236,72,153,0.12) 50%, rgba(79,70,229,0.15) 100%);
  border: 1px solid rgba(124,58,237,0.3);
  border-radius: 32px;
  padding: 52px 48px;
  overflow: hidden;
  text-align: center;
}
.built-banner-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  pointer-events: none;
  animation: builtGlow 4s ease-in-out infinite;
}
@keyframes builtGlow {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.15); }
}
.built-banner-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.built-banner-emoji {
  font-size: 56px;
  animation: trophySpin 4s ease-in-out infinite;
}
@keyframes trophySpin {
  0%, 100% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.1); }
}
.built-banner-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 6px 16px;
}
.built-banner-title {
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 900;
  color: var(--text);
  line-height: 1.2;
  max-width: 700px;
}
.built-banner-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.6;
}
.built-banner-btn {
  font-size: 17px;
  padding: 16px 44px;
  border-radius: 14px;
  margin-top: 8px;
  box-shadow: 0 0 40px rgba(124,58,237,0.4);
  animation: builtBtnPulse 2.5s ease-in-out infinite;
}
@keyframes builtBtnPulse {
  0%, 100% { box-shadow: 0 0 30px rgba(124,58,237,0.3); }
  50% { box-shadow: 0 0 60px rgba(124,58,237,0.6), 0 0 20px rgba(236,72,153,0.3); }
}

/* ═══════════════════════════════════════
   RESPONSIVE — NEW SECTIONS
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .qb-grid { grid-template-columns: 1fr; gap: 16px; }
  .support-layout { grid-template-columns: 1fr; gap: 40px; }
  .built-banner { padding: 36px 24px; }
  .phones-showcase-float--1,
  .phones-showcase-float--2,
  .phones-showcase-float--3 { display: none; }
}
@media (max-width: 600px) {
  #quick-benefits { padding: 48px 0 40px; }
  .qb-title { font-size: 26px; }
  .qb-btn { font-size: 16px; padding: 14px 32px; }
  .built-banner-title { font-size: 22px; }
  .built-banner-sub { font-size: 14px; }
}

/* ═══════════════════════════════════════════════════
   QUICK BENEFITS — REDESIGNED
═══════════════════════════════════════════════════ */
#quick-benefits {
  padding: 80px 0 60px;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(79,70,229,0.06) 35%, rgba(79,70,229,0.03) 65%, var(--bg) 100%);
}
.qb-header { text-align: center; margin-bottom: 48px; }
.qb-title { font-size: clamp(28px, 4vw, 48px); font-weight: 900; line-height: 1.2; margin-bottom: 12px; color: var(--text); }
.qb-sub { font-size: 17px; color: var(--text2); max-width: 720px; margin-left: auto; margin-right: auto; }

/* Stats bar */
.qb-stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 48px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}
.qb-stat-item {
  flex: 1;
  min-width: 120px;
  text-align: center;
  padding: 8px 16px;
}
.qb-stat-val {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--purple);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.05;
  margin-bottom: 4px;
}
.qb-stat-val span {
  font-size: 0.45em;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.qb-stat-desc { font-size: 13px; color: var(--text2); font-weight: 600; line-height: 1.35; }
.qb-stat-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* Feature pillars */
.qb-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.qb-pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.qb-pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--grad);
}
.qb-pillar:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(124,58,237,0.15); }
.qb-pillar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.qb-pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.qb-pillar-tag {
  font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--purple);
  background: var(--grad-soft);
  border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 20px;
}
.qb-pillar-metric {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--purple);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}
.qb-pillar-title {
  font-size: 20px; font-weight: 800;
  color: var(--text); margin-bottom: 10px;
}
.qb-pillar-text {
  font-size: 14px; color: var(--text2); line-height: 1.65; margin-bottom: 20px;
}
/* Steps */
.qb-pillar-steps {
  display: flex; align-items: center; gap: 6px;
  flex-wrap: wrap;
}
.qb-ps-item {
  font-size: 12px; font-weight: 600;
  padding: 5px 10px; border-radius: 8px;
  background: var(--bg); border: 1px solid var(--border);
  color: var(--text2);
}
.qb-ps-item.qb-ps--done {
  background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.3);
  color: #10B981;
}
.qb-ps-item.qb-ps--active {
  background: var(--grad); color: #fff; border-color: transparent;
}
.qb-ps-arrow { font-size: 12px; color: var(--text2); }
/* Tags */
.qb-pillar-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.qb-tag {
  font-size: 12px; font-weight: 600;
  background: rgba(124,58,237,0.08); color: var(--purple);
  border: 1px solid rgba(124,58,237,0.2);
  padding: 4px 10px; border-radius: 20px;
}
/* Price row */
.qb-pillar-price-row {
  display: flex; align-items: center; gap: 12px;
}
.qb-pillar-price-item { text-align: center; }
.qb-pillar-price-num { font-size: 18px; font-weight: 900; color: var(--text); }
.qb-pillar-price-label { font-size: 11px; color: var(--text2); font-weight: 600; }
.qb-pillar-price-div { width: 1px; height: 30px; background: var(--border); }

/* CTA */
.qb-cta {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.qb-btn { font-size: 18px; padding: 18px 48px; border-radius: 16px; box-shadow: 0 0 40px rgba(124,58,237,0.4); }
.qb-note { font-size: 13px; color: var(--muted2); }

@media (max-width: 900px) {
  .qb-pillars { grid-template-columns: 1fr; gap: 16px; }
  .qb-stats-bar { padding: 20px 16px; gap: 0; }
  .qb-stat-sep { display: none; }
  .qb-stat-item { min-width: 50%; }
}
@media (max-width: 600px) {
  .qb-btn { font-size: 16px; padding: 14px 32px; }
}

/* ═══════════════════════════════════════════════════
   MNB HUB — REDESIGNED (4 MODULES → CENTER)
═══════════════════════════════════════════════════ */
.mnb-hub-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(79,70,229,0.06) 50%, var(--bg) 100%);
  overflow: hidden;
}
.mnb-hub-header {
  text-align: center;
  margin-bottom: 60px;
}
.mnb-hub-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
}
.mnb-hub-title {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900; line-height: 1.15;
  letter-spacing: -0.03em; color: var(--text); margin-bottom: 16px;
}
.mnb-hub-lead {
  font-size: clamp(16px, 2vw, 19px); color: var(--muted);
  line-height: 1.65; max-width: 640px; margin: 0 auto;
}
.mnb-hub-lead-stack {
  max-width: 720px;
  margin: 0 auto;
}
.mnb-hub-lead-stack > p {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  line-height: 1.65;
  margin: 0 0 12px;
}
.mnb-hub-lead-stack > p:last-child {
  margin-bottom: 0;
}
.mnb-hub-cycle {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 700;
  color: var(--text);
  margin-top: 4px;
  letter-spacing: -0.02em;
}

/* ── All-in-one accent block ── */
.hub-allone-block {
  margin: 0 auto 40px;
  padding: 40px 36px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(79,70,229,0.06) 0%, rgba(124,58,237,0.08) 50%, rgba(236,72,153,0.06) 100%);
  border: 1.5px solid rgba(124,58,237,0.18);
  position: relative;
  overflow: hidden;
}
.hub-allone-block::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hub-allone-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  padding: 5px 14px;
  border-radius: 8px;
  margin-bottom: 28px;
}
.hub-allone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.hub-allone-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 16px;
  border: 1px solid rgba(124,58,237,0.1);
  backdrop-filter: blur(4px);
  transition: transform 0.22s, box-shadow 0.22s;
}
.hub-allone-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(124,58,237,0.12);
}
.hub-allone-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  margin-bottom: 4px;
  flex-shrink: 0;
}
.hub-allone-item strong {
  font-size: 14px; font-weight: 800; color: var(--text); line-height: 1.3;
}
.hub-allone-item span {
  font-size: 13px; color: var(--text2); line-height: 1.5;
}
@media (max-width: 900px) {
  .hub-allone-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-allone-block { padding: 28px 20px; }
}
@media (max-width: 540px) {
  .hub-allone-grid { grid-template-columns: 1fr; }
}

/* Hub diagram grid: 2+center+2 */
.hub-diagram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 160px minmax(0, 1fr);
  grid-template-rows: 1fr auto 1fr;
  gap: 0;
  width: 100%;
  max-width: min(1060px, 100%);
  margin: 0 auto 40px;
  position: relative;
  align-items: center;
  overflow: hidden;
}
.hub-node {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 0;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
  overflow: hidden;
}
.hub-node:hover { transform: translateY(-4px) scale(1.01); box-shadow: var(--shadow-lg); }
.hub-node--1 { grid-column: 1; grid-row: 1; margin: 12px; }
.hub-node--2 { grid-column: 3; grid-row: 1; margin: 12px; }
.hub-node--3 { grid-column: 1; grid-row: 3; margin: 12px; }
.hub-node--4 { grid-column: 3; grid-row: 3; margin: 12px; }
/* Colored accent bar + tinted card top per module */
.hub-node--1::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, #4f46e5, #7c3aed); border-radius: 20px 20px 0 0; }
.hub-node--2::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, #10b981, #059669); border-radius: 20px 20px 0 0; }
.hub-node--3::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, #7c3aed, #ec4899); border-radius: 20px 20px 0 0; }
.hub-node--4::before { content: ''; display: block; height: 4px; background: linear-gradient(90deg, #ec4899, #be185d); border-radius: 20px 20px 0 0; }
/* Pad the card content (after the accent bar) */
.hub-node-header,
.hub-node-name,
.hub-node-desc,
.hub-node-benefits-label,
.hub-node-list { padding-left: 24px; padding-right: 24px; }
.hub-node-header { padding-top: 20px; }
.hub-node-sub { margin-left: 24px; margin-right: 24px; }

.hub-node-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px;
}
.hub-node-icon {
  width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hub-icon--1 { background: linear-gradient(135deg, rgba(79,70,229,0.15), rgba(124,58,237,0.15)); border: 1.5px solid rgba(79,70,229,0.3); color: #6366f1; }
.hub-icon--2 { background: linear-gradient(135deg, rgba(16,185,129,0.12), rgba(5,150,105,0.12)); border: 1.5px solid rgba(16,185,129,0.3); color: #10b981; }
.hub-icon--3 { background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12)); border: 1.5px solid rgba(124,58,237,0.3); color: #a855f7; }
.hub-icon--4 { background: linear-gradient(135deg, rgba(236,72,153,0.12), rgba(190,24,93,0.12)); border: 1.5px solid rgba(236,72,153,0.3); color: #ec4899; }

.hub-node-num {
  font-size: 11px; font-weight: 900;
  color: var(--muted2); letter-spacing: 0.08em;
  background: var(--bg); border: 1px solid var(--border);
  padding: 3px 8px; border-radius: 6px;
}
.hub-node-name { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.hub-node-sub {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 700;
  color: var(--purple);
  background: rgba(124,58,237,0.08);
  border: 1px solid rgba(124,58,237,0.15);
  padding: 3px 10px; border-radius: 6px;
  margin-bottom: 14px;
}
.hub-node--2 .hub-node-sub { color: #059669; background: rgba(16,185,129,0.08); border-color: rgba(16,185,129,0.2); }
.hub-node--3 .hub-node-sub { color: #a855f7; background: rgba(168,85,247,0.08); border-color: rgba(168,85,247,0.2); }
.hub-node--4 .hub-node-sub { color: #db2777; background: rgba(236,72,153,0.08); border-color: rgba(236,72,153,0.2); }
.hub-node-desc {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.55;
  margin: 0 0 12px;
}
.hub-node-benefits-label {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted2);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.hub-node-list {
  list-style: none; display: flex; flex-direction: column; gap: 7px;
  padding-bottom: 24px;
}
.hub-node-list li {
  font-size: 13px; color: var(--text);
  display: flex; align-items: flex-start; gap: 8px;
  line-height: 1.4;
}
.hub-node-list li::before {
  content: '';
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3L13 5' stroke='%23fff' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E") center/14px no-repeat,
    linear-gradient(135deg, #7c3aed, #ec4899);
  flex-shrink: 0;
  margin-top: 1px;
}
/* Arrow overlays */
.hub-node-arrow {
  position: absolute;
  display: flex; align-items: center;
  color: var(--purple); opacity: 0.6;
}
.hub-arrow--1 { right: -20px; top: 50%; transform: translateY(-50%); }
.hub-arrow--2 { left: -20px; top: 50%; transform: translateY(-50%) rotate(180deg); }
.hub-arrow--3 { right: -20px; top: 50%; transform: translateY(-50%); }
.hub-arrow--4 { left: -20px; top: 50%; transform: translateY(-50%) rotate(180deg); }

/* Center hub node */
.hub-center-node {
  grid-column: 2; grid-row: 1 / 4;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; z-index: 10;
  overflow: visible;
}
.hub-center-core {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: var(--grad);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 0 3px rgba(124,58,237,0.25), 0 0 0 16px rgba(124,58,237,0.08), 0 20px 60px rgba(124,58,237,0.45);
  position: relative; z-index: 2;
  animation: hubCorePulse 3s ease-in-out infinite;
}
@keyframes hubCorePulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(124,58,237,0.25), 0 0 0 16px rgba(124,58,237,0.08), 0 20px 60px rgba(124,58,237,0.45); }
  50% { box-shadow: 0 0 0 6px rgba(124,58,237,0.2), 0 0 0 28px rgba(124,58,237,0.06), 0 20px 80px rgba(124,58,237,0.6); }
}
.hub-center-logo {
  font-size: 46px; font-weight: 900; color: #fff; letter-spacing: -0.05em; line-height: 1;
}
.hub-center-sub {
  font-size: 12px; color: rgba(255,255,255,0.8); font-weight: 600;
  text-align: center; line-height: 1.3; margin-top: 6px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
/* Rings */
.hub-center-ring {
  position: absolute; border-radius: 50%; border: 1.5px dashed;
  animation: ringRotate 12s linear infinite;
  pointer-events: none;
}
.hub-ring--1 { width: 240px; height: 240px; border-color: rgba(124,58,237,0.3); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 10s; }
.hub-ring--2 { width: 290px; height: 290px; border-color: rgba(236,72,153,0.18); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-direction: reverse; animation-duration: 16s; }
.hub-ring--3 { width: 340px; height: 340px; border-color: rgba(79,70,229,0.1); top: 50%; left: 50%; transform: translate(-50%,-50%); animation-duration: 22s; }
@keyframes ringRotate {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to { transform: translate(-50%,-50%) rotate(360deg); }
}

/* Soon row */
.hub-soon-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap;
  margin-bottom: 32px;
  font-size: 14px;
}
.hub-soon-label {
  background: var(--grad); color: #fff;
  font-size: 12px; font-weight: 800;
  letter-spacing: 0.02em;
  padding: 6px 14px; border-radius: 8px;
}
.hub-soon-item { color: var(--text2); font-weight: 500; }
.hub-soon-sep { color: var(--muted2); }

.hub-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hub-diagram {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    gap: 12px;
  }
  .hub-node--1 { grid-column: 1; grid-row: 1; margin: 0; }
  .hub-node--2 { grid-column: 2; grid-row: 1; margin: 0; }
  .hub-node--3 { grid-column: 1; grid-row: 3; margin: 0; }
  .hub-node--4 { grid-column: 2; grid-row: 3; margin: 0; }
  .hub-center-node { grid-column: 1 / 3; grid-row: 2; height: 180px; }
  .hub-node-arrow { display: none; }
  .hub-center-ring { display: none; }
  .hub-center-core { width: 150px; height: 150px; }
  .hub-center-logo { font-size: 34px; }
}
@media (max-width: 600px) {
  .hub-diagram { grid-template-columns: 1fr; }
  .hub-node--1, .hub-node--2, .hub-node--3, .hub-node--4 { grid-column: 1; }
  .hub-node--1 { grid-row: 1; }
  .hub-node--2 { grid-row: 2; }
  .hub-center-node { grid-column: 1; grid-row: 3; }
  .hub-node--3 { grid-row: 4; }
  .hub-node--4 { grid-row: 5; }
}

/* ═══════════════════════════════════════════════════
   WHO USES MNB — SECTION
═══════════════════════════════════════════════════ */
#who-uses {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}
.wu-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Business types grid */
.wu-biz-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 56px;
}
.wu-biz-item {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: 10px 18px;
  font-size: 14px; font-weight: 600; color: var(--text2);
  cursor: default;
  transition: all 0.2s;
}
.wu-biz-item:hover {
  border-color: var(--purple); color: var(--purple);
  background: var(--grad-soft);
  transform: translateY(-2px);
}
.wu-biz-icon { font-size: 18px; }
.wu-biz-item--more {
  background: var(--grad);
  color: #fff; border-color: transparent;
  font-weight: 700;
}
.wu-biz-item--more:hover { transform: translateY(-2px); background: var(--grad); }

/* Reviews belt */
.wu-reviews-wrap {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 56px;
  overflow: hidden;
  position: relative;
}
/* fade edges */
.wu-reviews-wrap::before,
.wu-reviews-wrap::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 100px; z-index: 2; pointer-events: none;
}
.wu-reviews-wrap::before { left: 0; background: linear-gradient(to right, var(--white), transparent); }
.wu-reviews-wrap::after { right: 0; background: linear-gradient(to left, var(--white), transparent); }

.wu-reviews-row { overflow: hidden; }
.wu-reviews-track {
  display: flex; gap: 16px;
  animation: reviewScroll 40s linear infinite;
  width: max-content;
}
.wu-reviews-track--reverse {
  animation: reviewScrollReverse 50s linear infinite;
}
@keyframes reviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes reviewScrollReverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* Review card */
.wu-review-card {
  width: 280px; flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 20px rgba(79,70,229,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wu-review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(79,70,229,0.14);
}
.wu-review-top {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.wu-review-avatar {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.wu-review-biz {
  font-size: 13px; font-weight: 800; color: var(--text); line-height: 1.2;
}
.wu-review-type {
  font-size: 11px; font-weight: 700;
  padding: 2px 8px; border-radius: 6px;
  display: inline-block; margin-top: 2px;
}
.wu-type--barber { background: rgba(124,58,237,0.12); color: var(--purple); }
.wu-type--beauty { background: rgba(236,72,153,0.12); color: var(--pink); }
.wu-type--dental { background: rgba(16,185,129,0.12); color: #059669; }
.wu-type--fitness { background: rgba(245,158,11,0.12); color: #D97706; }
.wu-type--auto { background: rgba(79,70,229,0.12); color: var(--blue); }
.wu-type--massage { background: rgba(99,102,241,0.12); color: #6366F1; }
.wu-type--clean { background: rgba(20,184,166,0.12); color: #0D9488; }
.wu-type--vet { background: rgba(239,68,68,0.12); color: #DC2626; }

.wu-review-platform {
  margin-left: auto;
  width: 26px; height: 26px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900;
  flex-shrink: 0;
}
.wu-plat--vk { background: #0077FF; color: #fff; }
.wu-plat--google { background: #4285F4; color: #fff; }
.wu-plat--2gis { background: #00B52A; color: #fff; }
.wu-plat--yandex { background: #FF0000; color: #fff; }

.wu-review-stars { font-size: 13px; color: #FBBF24; margin-bottom: 8px; letter-spacing: 1px; }
.wu-review-text { font-size: 13px; color: var(--text2); line-height: 1.55; font-style: italic; }

.wu-bottom {
  display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center;
}
.wu-bottom-text { font-size: 17px; color: var(--muted); max-width: 480px; line-height: 1.6; }

@media (max-width: 600px) {
  .wu-reviews-wrap::before,
  .wu-reviews-wrap::after { width: 40px; }
}

/* ═══════════════════════════════════════════════════
   APP DOWNLOAD — REDESIGNED
═══════════════════════════════════════════════════ */
.app-dl-section {
  margin-top: 32px;
}
.app-dl-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
}
.app-dl-title {
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 900; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 14px;
}
.app-dl-lead {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  margin-bottom: 28px; max-width: 540px;
}
.app-dl-benefits {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 28px;
}
.app-dl-benefits li {
  display: flex; gap: 12px; align-items: flex-start;
}
.app-dl-ben-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--grad-soft);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.app-dl-benefits li strong {
  display: block; font-size: 14px; font-weight: 700; color: var(--text);
}
.app-dl-benefits li span {
  font-size: 13px; color: var(--muted);
}
.app-dl-cta-row {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.app-dl-qr-mini {
  display: flex; align-items: center; gap: 10px;
}
.app-dl-qr-wrap {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 4px 16px rgba(79,70,229,0.1);
}
.app-dl-qr-wrap .mnb-app-qr-grid {
  display: grid; grid-template-columns: repeat(5, 10px); gap: 2px;
}
.app-dl-qr-hint {
  font-size: 12px; color: var(--muted); font-weight: 600; line-height: 1.4;
}

/* Phone scene */
.app-dl-phone-scene {
  position: relative; display: flex; justify-content: center;
}
.app-dl-glow {
  position: absolute; width: 320px; height: 320px; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(124,58,237,0.2) 0%, transparent 70%);
  filter: blur(40px); pointer-events: none; z-index: 0;
  animation: glowPulse 4s ease-in-out infinite alternate;
}
.app-dl-phone {
  position: relative; z-index: 2;
  width: 240px;
  background: #0D0B1E;
  border-radius: 36px;
  border: 2.5px solid rgba(255,255,255,0.15);
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  animation: heroDashFloat 6s ease-in-out infinite;
}
.app-dl-statusbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px 5px;
  font-size: 10px; font-weight: 700; color: #fff;
  background: rgba(13,11,30,1);
}
.app-dl-status-icons { display: flex; align-items: center; gap: 4px; }
.app-dl-appbar {
  display: flex; align-items: center; gap: 8px;
  background: var(--dark2); padding: 10px 14px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-dl-appbar-logo {
  font-size: 14px; font-weight: 900; letter-spacing: -0.03em;
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  flex-shrink: 0;
}
.app-dl-appbar-title {
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.8); flex: 1;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.app-dl-appbar-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #10B981;
  animation: livePulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}

/* Screens */
.app-dl-screen {
  display: none; padding: 12px 14px;
  min-height: 320px; background: #0D0B1E;
}
.app-dl-screen.active { display: block; }

/* Screen 1 — Calendar */
.ads1-date {
  font-size: 11px; color: rgba(255,255,255,0.45); font-weight: 600;
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em;
}
.ads1-stat-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 6px; margin-bottom: 14px;
}
.ads1-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 10px; padding: 8px 6px; text-align: center;
  border: 1px solid rgba(255,255,255,0.06);
}
.ads1-stat-n {
  font-size: 18px; font-weight: 900; color: #fff; line-height: 1;
  margin-bottom: 2px;
}
.ads1-n--green { color: #10B981; }
.ads1-n--amber { color: #F59E0B; }
.ads1-stat-l { font-size: 9px; color: rgba(255,255,255,0.4); font-weight: 600; }
.ads1-timeline { display: flex; flex-direction: column; gap: 6px; }
.ads1-appt {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px; padding: 8px 10px;
  border-left: 2.5px solid transparent;
}
.ads1-appt--1 { border-left-color: #10B981; }
.ads1-appt--2 { border-left-color: var(--purple); }
.ads1-appt--3 { border-left-color: #F59E0B; }
.ads1-appt--4 { border-left-color: rgba(255,255,255,0.2); }
.ads1-appt-time { font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5); flex-shrink: 0; }
.ads1-appt-info { flex: 1; min-width: 0; }
.ads1-appt-name { font-size: 11px; font-weight: 700; color: #fff; }
.ads1-appt-svc { font-size: 9px; color: rgba(255,255,255,0.4); }
.ads1-appt-status { font-size: 11px; flex-shrink: 0; }
.ads1-st--done { color: #10B981; }
.ads1-st--active { color: var(--purple); animation: livePulse 1.4s ease-in-out infinite; }
.ads1-st--wait { color: rgba(255,255,255,0.3); }

/* Screen 2 — Voice editor */
.ads2-label {
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}
.ads2-prompt-area {
  background: rgba(79,70,229,0.12);
  border: 1px solid rgba(79,70,229,0.3);
  border-radius: 10px; padding: 10px 12px;
  min-height: 52px; margin-bottom: 12px;
}
.ads2-prompt-text {
  font-size: 12px; color: #C7D2FE; line-height: 1.5;
  display: inline;
}
.ads2-cursor {
  display: inline-block;
  animation: blinkCursor 0.75s step-end infinite;
  color: var(--purple); font-weight: 700; font-size: 12px;
}
.ads2-voice-row {
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.ads2-wave {
  display: flex; align-items: center; gap: 2px; height: 24px;
  padding: 0 8px;
  background: rgba(236,72,153,0.12);
  border: 1px solid rgba(236,72,153,0.25);
  border-radius: 8px;
}
.ads2-wave span {
  width: 2.5px; background: var(--pink); border-radius: 2px;
  animation: wave 1s ease-in-out infinite;
}
.ads2-wave span:nth-child(1) { height: 6px; }
.ads2-wave span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.ads2-wave span:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.ads2-wave span:nth-child(4) { height: 14px; animation-delay: 0.3s; }
.ads2-wave span:nth-child(5) { height: 18px; animation-delay: 0.15s; }
.ads2-wave span:nth-child(6) { height: 10px; animation-delay: 0.25s; }
.ads2-wave span:nth-child(7) { height: 6px; animation-delay: 0.35s; }
.ads2-voice-label { font-size: 10px; color: rgba(255,255,255,0.4); }
.ads2-progress-wrap { margin-top: 6px; }
.ads2-progress-bar { height: 4px; background: rgba(255,255,255,0.08); border-radius: 2px; overflow: hidden; }
.ads2-progress-fill { height: 100%; width: 0; background: var(--grad); border-radius: 2px; transition: width 2.5s ease; }
.ads2-progress-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-top: 5px; }
.ads2-result {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 8px; padding: 8px 12px;
  font-size: 12px; font-weight: 700; color: #10B981;
  text-align: center; margin-top: 8px;
}

/* Screen 3 — Client card */
.ads3-client-row {
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.ads3-avatar {
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: #fff; flex-shrink: 0;
}
.ads3-client-name { font-size: 12px; font-weight: 800; color: #fff; }
.ads3-client-meta { font-size: 10px; color: rgba(255,255,255,0.4); }
.ads3-rating { margin-left: auto; font-size: 11px; color: #FBBF24; font-weight: 700; }
.ads3-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-bottom: 10px;
}
.ads3-stat {
  background: rgba(255,255,255,0.05); border-radius: 8px; padding: 6px;
  text-align: center; border: 1px solid rgba(255,255,255,0.05);
}
.ads3-stat-n { font-size: 13px; font-weight: 900; color: #fff; }
.ads3-stat-l { font-size: 8px; color: rgba(255,255,255,0.4); }
.ads3-history-label {
  font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px;
}
.ads3-history { display: flex; flex-direction: column; gap: 4px; }
.ads3-visit {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.03); border-radius: 7px; padding: 6px 8px;
  font-size: 10px;
}
.ads3-visit-date { color: rgba(255,255,255,0.4); flex-shrink: 0; }
.ads3-visit-svc { color: rgba(255,255,255,0.7); flex: 1; }
.ads3-visit-price { color: #A5B4FC; font-weight: 700; flex-shrink: 0; }
.ads3-cta-btn {
  margin-top: 8px;
  background: var(--grad); border-radius: 9px; padding: 8px 12px;
  font-size: 11px; font-weight: 700; color: #fff; text-align: center;
}

/* Screen dots */
.app-dl-dots {
  display: flex; justify-content: center; gap: 6px;
  padding: 8px 0 10px;
  background: rgba(13,11,30,0.95);
}
.app-dl-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.25);
  cursor: pointer; transition: all 0.2s;
}
.app-dl-dot.active { background: var(--purple); width: 16px; border-radius: 3px; }

/* Floating badges */
.app-dl-float {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 8px 12px;
  font-size: 12px; font-weight: 700; color: var(--text);
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap; z-index: 5;
  animation: float 4s ease-in-out infinite;
}
.app-dl-float--1 { top: 10%; right: -10px; animation-delay: 0s; }
.app-dl-float--2 { bottom: 15%; right: -10px; animation-delay: 2s; }

/* Install guide */
.app-dl-guide {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 24px 32px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.app-dl-guide-title {
  font-size: 14px; font-weight: 800; color: var(--text);
  white-space: nowrap;
}
.app-dl-guide-steps {
  display: flex; align-items: center; gap: 12px; flex: 1; flex-wrap: wrap;
}
.app-dl-gs {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text2);
}
.app-dl-gs-num {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 900; flex-shrink: 0;
}
.app-dl-gs-arrow { font-size: 14px; color: var(--muted); }

@media (max-width: 960px) {
  .app-dl-inner { grid-template-columns: 1fr; gap: 40px; }
  .app-dl-right { display: flex; justify-content: center; }
  .app-dl-float { display: none; }
}
@media (max-width: 600px) {
  .app-dl-inner { padding: 28px 20px; }
  .app-dl-guide { padding: 18px; flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ═══════════════════════════════════════════════════
   TASKS SCROLL HINT (mobile)
═══════════════════════════════════════════════════ */
.tasks-scroll-hint {
  display: none;
  align-items: center; gap: 6px;
  font-size: 12px; color: rgba(255,255,255,0.4);
  padding: 0 20px 6px;
}
@media (max-width: 700px) {
  .tasks-scroll-hint { display: flex; }
}

/* ═══════════════════════════════════════════════════
   REFERRAL SLIDERS — Tab 3 Visual
═══════════════════════════════════════════════════ */
.referral-sliders-wrap {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px;
  display: flex; flex-direction: column; gap: 14px;
}
.referral-sliders-title {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 2px;
}
.ref-slider-row {
  display: flex; flex-direction: column; gap: 5px;
}
.ref-slider-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.7);
}
.ref-slider-val {
  font-size: 14px; font-weight: 800;
  color: #A78BFA;
  background: rgba(167,139,250,0.12);
  border-radius: 6px; padding: 2px 8px;
  min-width: 40px; text-align: center;
}
.ref-slider {
  width: 100%; height: 4px;
  -webkit-appearance: none; appearance: none;
  background: rgba(255,255,255,0.1);
  border-radius: 2px; outline: none; cursor: pointer;
}
.ref-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg,#7C3AED,#A78BFA);
  box-shadow: 0 2px 8px rgba(124,58,237,0.5);
  cursor: pointer;
}
.ref-slider::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%;
  background: linear-gradient(135deg,#7C3AED,#A78BFA);
  border: none; cursor: pointer;
}
.ref-slider-limits {
  display: flex; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.25);
}
.ref-cashback-row {
  display: flex; align-items: flex-start; gap: 10px;
  background: rgba(52,211,153,0.08);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: 10px; padding: 10px 12px;
}
.ref-cashback-icon {
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(52,211,153,0.15); border-radius: 8px;
  color: #34D399;
}
.ref-cashback-title {
  font-size: 13px; font-weight: 700; color: #34D399;
}
.ref-cashback-sub {
  font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 2px;
}

/* Growth bars */
.ref-growth-wrap {
  display: flex; gap: 10px;
}
.ref-growth-item {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
  align-items: center; text-align: center;
}
.ref-growth-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(124,58,237,0.12); border-radius: 8px;
  color: #A78BFA;
}
.ref-growth-label {
  font-size: 11px; color: rgba(255,255,255,0.4);
}
.ref-growth-bar-wrap {
  width: 100%; height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px; overflow: hidden;
}
.ref-growth-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg,#7C3AED,#A78BFA);
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.ref-growth-bar.ref-g-bar-2 { background: linear-gradient(90deg,#0EA5E9,#38BDF8); }
.ref-growth-bar.ref-g-bar-3 { background: linear-gradient(90deg,#10B981,#34D399); }
.ref-growth-num {
  font-size: 13px; font-weight: 800;
  color: rgba(255,255,255,0.8);
}

/* ═══════════════════════════════════════════════════
   NOTIF DEMO — Tab 5 Visual
═══════════════════════════════════════════════════ */
.notif-demo-wrap {
  position: relative;
  display: flex; flex-direction: column; gap: 10px;
  min-height: 220px;
}
.notif-stream {
  display: flex; flex-direction: column; gap: 8px;
}
.notif-item {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px; padding: 10px 14px;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
  cursor: pointer;
}
.notif-item.visible { opacity: 1; transform: none; }
.notif-item:hover { border-color: rgba(167,139,250,0.3); }
.notif-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; font-size: 16px;
}
.notif-body { flex: 1; }
.notif-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.9); }
.notif-sub { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.notif-time { font-size: 11px; color: rgba(255,255,255,0.3); white-space: nowrap; }

/* Booking card popup */
.booking-card-popup {
  position: absolute; inset: 0;
  background: #1A1530;
  border: 1px solid rgba(167,139,250,0.25);
  border-radius: 14px; padding: 16px;
  z-index: 10;
  animation: popupIn 0.3s ease;
}
@keyframes popupIn {
  from { opacity:0; transform: scale(0.95); }
  to   { opacity:1; transform: scale(1); }
}
.bcp-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.bcp-title { font-size: 14px; font-weight: 800; color: rgba(255,255,255,0.9); }
.bcp-close {
  font-size: 14px; color: rgba(255,255,255,0.35);
  cursor: pointer; padding: 2px 6px;
}
.bcp-close:hover { color: rgba(255,255,255,0.7); }
.bcp-body { display: flex; flex-direction: column; gap: 7px; }
.bcp-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; padding: 4px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bcp-label { color: rgba(255,255,255,0.4); }
.bcp-val { color: rgba(255,255,255,0.85); font-weight: 600; }
.bcp-row--warn .bcp-warn { color: #F59E0B; }
.bcp-row--ok .bcp-ok { color: #34D399; }

/* ═══════════════════════════════════════════════════
   FOOTER — MODERN REDESIGN
═══════════════════════════════════════════════════ */
.footer-modern {
  background: var(--dark);
  padding: 64px 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo-new {
  display: inline-block;
  font-size: 26px; font-weight: 900; letter-spacing: -0.04em;
  text-decoration: none; color: #fff; margin-bottom: 16px;
}
.footer-logo-new span {
  background: var(--grad); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
}
.footer-tagline {
  font-size: 14px; color: rgba(255,255,255,0.45);
  line-height: 1.65; max-width: 260px;
}
.footer-nav-cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.footer-nav-col {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-nav-title {
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.35);
  text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 6px;
}
.footer-nav-col a {
  font-size: 14px; color: rgba(255,255,255,0.5);
  text-decoration: none; transition: color 0.2s;
}
.footer-nav-col a:hover { color: rgba(255,255,255,0.9); }

.footer-divider {
  height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 0;
}
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  padding: 20px 0 28px;
}
.footer-copy-new {
  font-size: 13px; color: rgba(255,255,255,0.25);
}
.footer-legal {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,0.35);
  text-decoration: none; transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.footer-legal-sep { color: rgba(255,255,255,0.2); font-size: 12px; }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-nav-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .footer-modern { padding-top: 44px; }
  .footer-nav-cols { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { gap: 8px; }
}

/* ═══════════════════════════════════════════════════
   PRICING: "includes all from previous" accent
═══════════════════════════════════════════════════ */
.pricing-incl-prev {
  background: linear-gradient(90deg, rgba(124,58,237,0.35), rgba(236,72,153,0.25)) !important;
  border: 1.5px solid rgba(167,139,250,0.7) !important;
  border-radius: 8px !important;
  padding: 7px 12px !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  box-shadow: 0 0 12px rgba(124,58,237,0.35), inset 0 1px 0 rgba(255,255,255,0.15) !important;
  text-shadow: 0 1px 4px rgba(124,58,237,0.5) !important;
}
.pricing-incl-prev::before { content: none !important; }

/* ═══════════════════════════════════════════════════
   SUPPORT BOT: Cuter bot face
═══════════════════════════════════════════════════ */
.support-bot-ears {
  position: absolute;
  top: 38px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 90px;
}
.support-bot-ear {
  width: 10px; height: 20px;
  background: linear-gradient(180deg, #c5d8f8, #a8c8f4);
  border-radius: 6px;
  border: 1px solid rgba(56,189,248,0.3);
  box-shadow: 0 0 6px rgba(56,189,248,0.2);
}
.support-bot-blush-row {
  display: none;
}
.support-bot-blush {
  display: none;
}
.support-bot-mouth--smile {
  width: 22px; height: 3px !important;
  background: rgba(56,189,248,0.55) !important;
  border: none !important;
  border-radius: 2px !important;
  box-shadow: 0 0 6px rgba(56,189,248,0.5) !important;
}
.support-bot-face {
  position: relative;
  flex-direction: column;
  gap: 10px;
}

/* Support benefits row */
.support-benefits-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.support-benefit-chip {
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.1));
  border: 1px solid rgba(124,58,237,0.25);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text2);
  transition: all 0.2s;
}
.support-benefit-chip:hover {
  border-color: var(--purple);
  color: var(--purple);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════════════
   INSTALL GUIDE: force single row on desktop
═══════════════════════════════════════════════════ */
.app-dl-guide-steps {
  flex-wrap: nowrap !important;
}
.app-dl-gs {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .app-dl-guide-steps { flex-wrap: wrap !important; }
}

/* ═══════════════════════════════════════════════════
   PWA RIGHT CARDS: smooth card highlight transitions
═══════════════════════════════════════════════════ */
.pwa-right-card {
  transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease !important;
}
.pwa-bonus-fill {
  animation: none;
  transition: width 1.8s cubic-bezier(0.4,0,0.2,1);
}

/* ═══════════════════════════════════════════════════
   AI CHAT: fixed height containers
═══════════════════════════════════════════════════ */
.ai-chat-body-anim {
  min-height: 0;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════
   MAY-2026 MOBILE PATCH
   – Module 1 cards: horizontal scroll
   – Tasks tabs: horizontal scroll
   – Module 2: animation block width
   – Pricing: period buttons fit on screen
   – Growth chart: bars alignment on mobile
   – Support bot mouth: happy arc smile (all screens)
   – Swipe hint finger animation
═══════════════════════════════════════════════════ */

/* ── PWA benefits row: desktop grid (replaces inline) ── */
.pwa-benefits-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Swipe hint finger animation ── */
@keyframes mnbSwipeLR {
  0%   { transform: translateX(0)    rotate(-10deg); opacity: 1; }
  35%  { transform: translateX(20px) rotate(-10deg); opacity: 1; }
  65%  { transform: translateX(-16px) rotate(-10deg); opacity: 1; }
  100% { transform: translateX(0)    rotate(-10deg); opacity: 0.7; }
}
.swipe-finger-icon {
  display: inline-block;
  font-size: 18px;
  animation: mnbSwipeLR 2s ease-in-out infinite;
  transform-origin: bottom center;
}
.mobile-swipe-hint {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  padding: 4px 0 16px;
}

/* ── Support bot mouth: proper happy arc smile (all screens) ── */
.support-bot-mouth--smile {
  width: 30px !important;
  height: 15px !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 3px solid rgba(56, 189, 248, 0.9) !important;
  border-left: 3px solid rgba(56, 189, 248, 0.9) !important;
  border-right: 3px solid rgba(56, 189, 248, 0.9) !important;
  border-top: none !important;
  border-radius: 0 0 18px 18px !important;
  box-shadow: 0 3px 12px rgba(56, 189, 248, 0.45) !important;
  margin-top: 3px !important;
}

/* ── Mobile fixes (≤ 640px) ── */
@media (max-width: 640px) {

  /* Module 1: PWA benefits → horizontal scroll */
  .pwa-benefits-row {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    overscroll-behavior-x: contain;
    overscroll-behavior-y: auto;
    touch-action: auto;
    gap: 12px !important;
    padding-bottom: 12px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-bottom: 16px !important;
    max-width: 100%;
  }
  .pwa-benefits-row::-webkit-scrollbar { display: none; }
  .pwa-benefits-row > .card {
    flex: 0 0 160px !important;
    min-width: 160px !important;
    scroll-snap-align: start;
    text-align: center;
  }
  .mobile-swipe-hint { display: flex; }

  /* Tasks tabs: wrap grid — horizontal scroll ломал вертикальный скролл страницы на iOS */
  .tasks-tabs {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
    justify-content: stretch !important;
    padding-bottom: 0 !important;
    margin-bottom: 28px !important;
    scroll-snap-type: none !important;
  }
  .task-tab {
    flex: unset !important;
    white-space: normal !important;
    text-align: center;
    font-size: 12px !important;
    padding: 10px 8px !important;
    scroll-snap-align: unset;
  }
  .tasks-scroll-hint {
    display: none !important;
  }

  /* Pricing period selector: compact, 2-per-row on small screens */
  .pricing-toggle {
    flex-wrap: wrap !important;
    gap: 6px !important;
    margin-bottom: 32px !important;
  }
  .pricing-toggle-btn {
    padding: 7px 12px !important;
    font-size: 13px !important;
    flex: 1 1 calc(50% - 12px) !important;
    text-align: center;
  }

  #booking {
    padding: 72px 0 !important;
  }
  #booking .container {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  /* Module 2 booking animation block: constrain to screen */
  .booking-events-wrap {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
    box-sizing: border-box !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .booking-order-demo {
    max-width: 100% !important;
    overflow-x: clip !important;
    overflow-y: visible !important;
  }
  .booking-mcal {
    padding-left: 10px !important;
    padding-right: 10px !important;
    max-width: 100% !important;
    overflow-x: clip !important;
  }
  .booking-mcal-grid {
    grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
    gap: 2px !important;
    width: 100% !important;
  }
  .booking-mcal-cell {
    min-height: 36px !important;
    min-width: 0 !important;
  }
  .booking-mcal-appt {
    font-size: 0 !important;
    line-height: 0 !important;
    padding: 3px 2px !important;
    min-height: 10px !important;
  }
  .booking-mcal-appt small {
    display: none !important;
  }
  .booking-mcal-daynum {
    font-size: 8px !important;
  }
  .booking-mcal-legend {
    gap: 6px 8px !important;
    font-size: 8px !important;
  }
  .booking-mcal-head {
    flex-wrap: wrap;
    gap: 6px;
  }
  .booking-mcal-sub {
    white-space: normal !important;
    font-size: 10px !important;
  }
  #booking .booking-section-grid > div:last-child {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 0;
  }
  #booking .booking-section-grid > div:first-child > div:last-child {
    justify-content: center !important;
  }
  body.mnb-user-scrolling .wu-reviews-track,
  body.mnb-user-scrolling .wu-reviews-track--reverse,
  body.mnb-user-scrolling .hero-dash-frame,
  body.mnb-user-scrolling .hero-dash-badge,
  body.mnb-user-scrolling .hub-center-ring {
    animation-play-state: paused !important;
  }
  /* Module 2 text: center headings on mobile */
  #booking .section-title,
  #booking p.section-sub {
    text-align: center;
  }
  /* Keep feature list items left-aligned */
  #booking .booking-section-grid > div:first-child > div[style*="display:flex"] {
    text-align: left;
  }

  /* Growth chart: scale down bars so "+ Запись" aligns with others */
  .sgc-bars {
    padding: 0 2px !important;
    gap: 0 !important;
    min-height: 90px !important;
  }
  .sgc-bar-group {
    flex: 1 !important;
    max-width: 72px !important;
    align-items: center !important;
  }
  .sgc-arrow {
    font-size: 12px !important;
    padding-bottom: 14px !important;
    flex-shrink: 0;
  }
  .sgc-bar {
    width: 32px !important;
  }
  .sgc-bar--1 { height: 28px !important; }
  .sgc-bar--2 { height: 56px !important; }
  .sgc-bar--3 { height: 80px !important; }
  .sgc-bar--4 { height: 104px !important; }
  .sgc-bar-name {
    font-size: 10px !important;
    text-align: center !important;
    line-height: 1.2 !important;
  }
  .sgc-bar-tip {
    font-size: 9px !important;
    top: -20px !important;
  }
  .steps-growth-chart {
    padding: 20px 10px !important;
  }

  /* Hub / hero decorative layers must not widen viewport */
  .hub-center-node,
  .hero-right,
  .site-devices-wrap {
    max-width: 100% !important;
    overflow: hidden !important;
  }

  .footer-legal {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 4px 8px !important;
  }
}

/* Extra-narrow phones: tighter booking demo */
@media (max-width: 400px) {
  .booking-mcal-cell {
    min-height: 28px !important;
  }
  .booking-mcal-cell .booking-mcal-appt:nth-child(n+2) {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════
   SITE-WIDE MOBILE OVERFLOW (mynewbusiness.ru)
   max-width only — без overflow:hidden на .container (iOS scroll)
═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  html {
    scroll-behavior: auto;
  }
  html.mnb-mobile-layout .reveal,
  html.mnb-mobile-layout .hero-benefit,
  html.mnb-mobile-layout .hero-left {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  #hero {
    overflow-x: clip;
    overflow-y: visible;
  }
  .mnb-hide-on-mobile {
    display: none !important;
  }
  .container {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .reveal,
  .booking-section-grid > *,
  .hero-grid > *,
  .pwa-grid > *,
  .ai-layout > *,
  .site-layout > * {
    max-width: 100%;
    min-width: 0;
  }
  #booking .booking-section-grid {
    width: 100%;
    max-width: 100%;
  }
  #booking .booking-section-grid > .reveal {
    width: 100%;
    max-width: 100%;
  }
  .rsite-phone-device {
    margin-left: -16px;
  }
  .hub-center-node {
    max-width: 100%;
  }
  .phones-showcase-wrap,
  .phones-showcase-img,
  .phones-showcase-img picture,
  picture.phones-showcase-picture {
    max-width: 100%;
  }
  .phones-showcase-wrap picture,
  .phones-showcase-wrap img {
    display: block;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 640px) {
  .pwa-benefits-row,
  .tasks-tabs {
    max-width: 100%;
  }
  .rsite-phone-device {
    margin-left: 0 !important;
  }
  .rsite-2d-wrap {
    max-width: 100%;
    overflow-x: clip;
  }
  .booking-event-item {
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .booking-event-item > div:last-child {
    width: 100%;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 6px !important;
    margin-top: 4px;
  }
  .booking-event-title {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
  }
  .booking-mcal-legend span {
    font-size: 7px !important;
    line-height: 1.2;
  }
  .module-label {
    max-width: 100%;
  }
  .module-word {
    word-break: break-word;
  }
  #booking .btn {
    width: 100%;
    justify-content: center;
  }
  #booking .booking-section-grid > div:first-child > div[style*="display:flex"][style*="flex-wrap"] {
    flex-direction: column;
  }
  #booking .booking-section-grid > div:first-child > div[style*="display:flex"][style*="flex-wrap"] .btn {
    width: 100%;
  }
}
