/* ========================================
   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; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Utilities ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.grad-text {
  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: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-left { position: relative; z-index: 2; }
.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;
}
.hero-benefit:hover { transform: translateY(-2px); }
.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 { position: relative; height: 580px; }
.hero-phone {
  position: absolute; right: 40px; top: 50%; transform: translateY(-50%);
  width: 200px; z-index: 3;
}
.hero-panel {
  position: absolute;
  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;
}
.hero-panel-analytics {
  width: 320px; top: 20px; left: 0; padding: 20px; z-index: 2;
}
.hero-panel-booking {
  width: 280px; bottom: 30px; left: 30px; padding: 16px; z-index: 2;
}
.hero-panel-ai {
  width: 220px; top: 100px; right: 0; padding: 14px; z-index: 4;
}
.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 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: 1fr 1fr; gap: 40px; align-items: center; }

.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 Chat Visual ── */
.ai-chat-container {
  background: var(--dark); border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; min-height: 420px;
}
.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;
}

.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: 65%; background: var(--grad); border-radius: 4px;
  animation: fill-bar 2s ease-in-out infinite alternate;
}
@keyframes fill-bar { from { width: 45%; } to { width: 75%; } }

.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); }
.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: 1fr 1fr; gap: 60px; align-items: center; }
.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: 1fr 1fr; gap: 60px; align-items: center; }
.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: 4px; }
.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; }
.steps-header { text-align: center; margin-bottom: 60px; }
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 48px; }
.step-card {
  background: var(--white); border-radius: var(--r);
  border: 1.5px solid var(--border); padding: 28px;
  box-shadow: var(--shadow); text-align: center;
  position: relative; overflow: hidden; transition: transform 0.25s;
}
.step-card:hover { transform: translateY(-4px); }
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--grad);
}
.step-num {
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--grad); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 900; margin: 0 auto 16px;
}
.step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step-sub { font-size: 14px; color: var(--muted); }
.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;
}
.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); }
  .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; }
}

@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; }
  .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); }
