/* ═══════════════════════════════════════════════════════════════
   ZARVO — CINEMATIC LANDING CSS
   Full ground-up redesign. Apple × Tesla × Vision Pro aesthetic.
   Orange Brand Accent Color Scheme.
═══════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* ── Reset for landing ── */
.landing-body {
  --bg-void:        #FFFFFF;
  --bg-surface:     rgba(248, 250, 252, 0.75);
  --bg-elevated:    rgba(241, 245, 249, 0.85);
  
  /* Signature Zarvo Orange Brand Color Palette */
  --orange:         #FF6B00;
  --orange-dim:     rgba(255, 107, 0, 0.06);
  --orange-glow:    rgba(255, 107, 0, 0.2);
  --orange-light:   #FF7D24;
  --orange-light-dim: rgba(255, 125, 36, 0.08);
  --orange-light-glow: rgba(255, 125, 36, 0.25);
  
  --accent:         #2563EB; /* Premium Blue Accent for light mode */
  --accent-dim:     rgba(37, 99, 235, 0.06);
  
  --text-primary:   #0F172A;
  --text-secondary: #475569;
  --text-muted:     #64748B;
  
  --border-glass:   rgba(15, 23, 42, 0.08);
  --border-orange:  rgba(255, 107, 0, 0.2);
  --border-orange-light: rgba(255, 125, 36, 0.2);
  --font-land:      'Inter', -apple-system, sans-serif;

  background: var(--bg-void) !important;
  color: var(--text-primary) !important;
  overflow-x: hidden;
  font-family: var(--font-land) !important;
  cursor: none;
}

/* ── Custom Cursor ── */
#cursor-dot {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, background 0.2s;
}
#cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255, 107, 0, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.25s, height 0.25s, border-color 0.25s, opacity 0.25s;
}
.landing-body.cursor-hover #cursor-ring {
  width: 60px; height: 60px;
  border-color: var(--orange);
}
.landing-body.cursor-hover #cursor-dot {
  width: 4px; height: 4px;
}

/* ── Canvas Particle Layer (Removed) ── */
#particle-canvas {
  display: none;
}

/* ── Ambient Grid ── */
.ambient-grid {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.008) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.008) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  opacity: 0.85;
}


/* ══════════════════════════════
   DYNAMIC ISLAND NAVIGATION
══════════════════════════════ */
.l-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  height: 72px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  z-index: 1000;
}

.l-nav.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 30px rgba(15, 23, 42, 0.08);
  border-bottom-color: rgba(15, 23, 42, 0.12);
}

.l-nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.l-nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.l-nav-logo-text {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-primary);
}

.l-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.l-nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  position: relative;
}

.l-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: center;
}

.l-nav-links a:hover {
  color: var(--text-primary);
}

.l-nav-links a:hover::after {
  transform: scaleX(1);
}

.l-nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Buttons ── */
.btn-ghost-l {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  border: 1px solid var(--border-glass);
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-land);
}
.btn-ghost-l:hover {
  color: var(--text-primary);
  border-color: rgba(15, 23, 42, 0.18);
  background: rgba(15, 23, 42, 0.04);
}
.btn-orange-l {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #000;
  background: var(--orange);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.34,1.56,0.64,1);
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-land);
  box-shadow: 0 4px 20px var(--orange-glow), 0 4px 12px rgba(255, 107, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.btn-orange-l::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn-orange-l:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 30px var(--orange-glow), 0 8px 24px rgba(255, 107, 0, 0.3); }
.btn-orange-l:hover::before { opacity: 1; }
.btn-orange-l:active { transform: scale(0.97); }

.btn-outline-orange {
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  background: transparent;
  border: 1px solid var(--border-orange);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-land);
  backdrop-filter: blur(8px);
}
.btn-outline-orange:hover {
  background: var(--orange-dim);
  border-color: var(--orange);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.15);
  transform: translateY(-1px);
}

.btn-lg-l {
  padding: 18px 36px !important;
  font-size: 1rem !important;
  border-radius: 14px !important;
  min-height: 56px;
}
.btn-sm-l {
  padding: 9px 18px !important;
  font-size: 0.78rem !important;
  min-height: 36px;
}

/* ── Hamburger ── */
.l-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}
.l-hamburger span {
  width: 22px; height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav */
.l-mobile-menu {
  display: none;
  position: fixed;
  top: 80px; left: 12px; right: 12px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(40px);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  padding: 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}
.l-mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
.l-mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 16px;
  border-radius: 10px;
  transition: all 0.2s;
}
.l-mobile-menu a:hover {
  color: var(--text-primary);
  background: var(--border-glass);
}
.l-mobile-menu .l-mobile-divider {
  height: 1px;
  background: var(--border-glass);
  margin: 8px 0;
}

/* ══════════════════════════════
   HERO SECTION
══════════════════════════════ */
.l-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.05) 0%, transparent 50%), radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.04) 0%, transparent 60%), linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}

/* Ambient Background Glows & Spotlight */
.bg-glow-orb {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  /* Removed filter:blur(150px) — extremely expensive on scroll.
     Using soft radial-gradient instead, same visual with near-zero GPU cost */
  z-index: 0;
  opacity: 1;
  will-change: transform;
  transform: translateZ(0);
}
.bg-glow-orb-1 {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.06) 0%, rgba(255, 107, 0, 0.02) 40%, transparent 70%);
  top: -300px; left: -200px;
  animation: orbFloat1 25s ease-in-out infinite alternate;
}
.bg-glow-orb-2 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(59, 130, 246, 0.015) 40%, transparent 70%);
  top: 40%; right: -300px;
  animation: orbFloat2 28s ease-in-out infinite alternate;
}
.bg-glow-orb-3 {
  width: 1000px; height: 1000px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, rgba(168, 85, 247, 0.01) 40%, transparent 70%);
  bottom: -300px; left: 10%;
  animation: orbFloat3 32s ease-in-out infinite alternate;
}

@keyframes orbFloat1 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(80px, 60px, 0) scale(1.08); }
}
@keyframes orbFloat2 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(-60px, 90px, 0) scale(1.05); }
}
@keyframes orbFloat3 {
  0%   { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(70px, -70px, 0) scale(1.12); }
}

/* Section specific glows */
.hero-spotlight {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 600px;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.05) 0%, rgba(255, 160, 87, 0.015) 40%, transparent 75%);
  pointer-events: none;
  z-index: 1;
}

.showcase-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Interactive background glow where coordinates are tracked via JavaScript */
.interactive-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle 350px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 107, 0, 0.03) 0%, transparent 80%);
  transition: opacity 0.6s ease;
  opacity: 0;
}
.l-hero:hover .interactive-bg-glow,
.l-feature:hover .interactive-bg-glow {
  opacity: 1;
}

.features-bg-glow {
  background: radial-gradient(circle 400px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(59, 130, 246, 0.02) 0%, rgba(255, 107, 0, 0.01) 50%, transparent 100%);
}

.pricing-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(147, 51, 234, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.cta-bg-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1200px;
  height: 400px;
  background: radial-gradient(circle at 50% 100%, rgba(255, 107, 0, 0.05) 0%, rgba(255, 160, 87, 0.01) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.l-hero-inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 140px 48px 80px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.hero-text-side {
  flex: 1.1;
  text-align: left;
  max-width: 620px;
}
.hero-visual-side {
  flex: 1.2;
  position: relative;
  perspective: 1200px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 480px;
}

/* Hero badge */
.hero-badge-l {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid var(--border-orange);
  background: rgba(255, 107, 0, 0.06);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 36px;
  backdrop-filter: blur(8px);
  animation: heroFadeUp 0.8s cubic-bezier(0.34,1.56,0.64,1) forwards;
  opacity: 0;
}
.hero-badge-dot-l {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 2s ease-in-out infinite;
  box-shadow: 0 0 10px var(--accent);
}
@keyframes dotPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

/* Hero title */
.hero-title-l {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--text-primary);
  margin-bottom: 8px;
  animation: heroFadeUp 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.1s forwards;
  opacity: 0;
}
.hero-title-glow {
  color: var(--orange);
  filter: drop-shadow(0 0 30px var(--orange-glow));
}

.hero-subtitle-l {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-style: italic;
  animation: heroFadeUp 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.2s forwards;
  opacity: 0;
}

.hero-desc-l {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 640px;
  margin: 0 0 48px 0;
  line-height: 1.7;
  animation: heroFadeUp 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.3s forwards;
  opacity: 0;
}

.hero-actions-l {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: heroFadeUp 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.4s forwards;
  opacity: 0;
}

/* Hero stats strip */
.hero-stats-l {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.34,1.56,0.64,1) 0.5s forwards;
  opacity: 0;
}
.hero-stat-l {
  text-align: left;
  padding: 0 32px;
  border-right: 1px solid var(--border-glass);
}
.hero-stat-l:first-child {
  padding-left: 0;
}
.hero-stat-l:last-child {
  border-right: none;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.hero-stat-num .orange { color: var(--orange); }
.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

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

/* ══════════════════════════════
   3D PRODUCT VISUALIZATION
══════════════════════════════ */
.l-product-showcase {
  position: relative;
  z-index: 2;
  padding: 80px 24px 120px;
  perspective: 1200px;
  background: linear-gradient(180deg, #04050f 0%, #06091b 100%);
}
.l-showcase-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.l-showcase-scene {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  transform: rotateX(5deg);
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}
.showcase-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  box-shadow: 0 32px 64px rgba(15, 23, 42, 0.08), 0 0 0 1px var(--border-glass);
}
.showcase-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.6;
}
.showcase-panel-main {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.98));
}

/* Panel header */
.sp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sp-dots {
  display: flex; gap: 6px;
}
.sp-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.sp-dot:nth-child(1) { background: #FF5F56; }
.sp-dot:nth-child(2) { background: #FEBC2E; }
.sp-dot:nth-child(3) { background: #27C840; }
.sp-title {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  letter-spacing: 0.08em;
}
.sp-status {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.62rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.sp-live-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--accent);
  animation: dotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 8px var(--accent);
}

/* Analytics panel mini chart */
.mini-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.mini-stat {
  background: rgba(255, 107, 0, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 12px;
}
.mini-stat-val {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.mini-stat-lbl {
  font-size: 0.6rem;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.mini-stat.orange .mini-stat-val { color: var(--orange); }
.mini-stat.accent .mini-stat-val { color: var(--accent); }
.mini-stat.orange-light .mini-stat-val { color: var(--orange-light); }

/* Live chart bars */
.live-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding: 0 4px;
}
.chart-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--orange) 0%, rgba(255,107,0,0.3) 100%);
  transition: height 0.8s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 0 10px rgba(255,107,0,0.3);
}
.chart-bar.orange-light {
  background: linear-gradient(180deg, var(--orange-light) 0%, rgba(255,160,87,0.3) 100%);
  box-shadow: 0 0 10px rgba(255,160,87,0.3);
}
.chart-bar.accent {
  background: linear-gradient(180deg, var(--accent) 0%, rgba(59,130,246,0.3) 100%);
  box-shadow: 0 0 10px rgba(59,130,246,0.3);
}
.chart-bar.active {
  filter: brightness(1.3);
  transform: scaleY(1.05);
}

/* Order feed panel */
.order-feed {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.order-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  animation: orderSlide 0.4s cubic-bezier(0.34,1.56,0.64,1);
  font-size: 0.72rem;
}
.order-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.order-icon svg {
  width: 14px; height: 14px;
}
.order-icon.orange { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--border-orange); }
.order-icon.accent { background: var(--accent-dim); color: var(--accent); border: 1px solid rgba(59, 130, 246, 0.2); }
.order-icon.orange-light { background: var(--orange-light-dim); color: var(--orange-light); border: 1px solid var(--border-orange-light); }
.order-name { flex: 1; color: var(--text-primary); font-weight: 600; }
.order-amount { color: var(--orange); font-weight: 700; }
.order-badge {
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.order-badge.new { background: var(--orange-dim); color: var(--orange); border: 1px solid var(--border-orange); }
.order-badge.done { background: var(--accent-dim); color: var(--accent); }
.order-badge.prep { background: var(--orange-light-dim); color: var(--orange-light); }
@keyframes orderSlide {
  from { opacity: 0; transform: translateX(-12px); }
  to { opacity: 1; transform: translateX(0); }
}

/* QR Panel */
.qr-panel-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
}
.qr-mock {
  width: 110px; height: 110px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 2h6v6H2zm1 1v4h4V3zm1 1h2v2H4zm12-2h6v6h-6zm1 1v4h4V3zm1 1h2v2h-2zM2 16h6v6H2zm1 1v4h4v-4zm1 1h2v2H4zm8-14h2v2h-2zm3 0h2v1h-2zm-3 3h1v2h-1zm2 1h2v2h-2zm3 4h2v2h-2zm-5 0h3v1h-3zm0 3h1v2h-1zm2 1h3v1h-3zm4 0h2v2h-2zm-6 3h2v2h-2zm3 1h1v3h-1zm3 0h3v1h-3zm3-2h2v2h-2zm2 4h1v2h-1z' fill-rule='evenodd' fill='%23FF6B00'/%3E%3C/svg%3E");
  background-size: 76px 76px;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
}
.qr-mock::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--orange);
  border-radius: 20px;
  pointer-events: none;
  animation: qrTargetBreathe 2.5s ease-in-out infinite alternate;
}
@keyframes qrTargetBreathe {
  0% { transform: scale(0.95); opacity: 0.4; }
  100% { transform: scale(1.05); opacity: 1; }
}
.qr-scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 20px;
  background: linear-gradient(180deg, rgba(255, 107, 0, 0.45) 0%, rgba(255, 107, 0, 0.05) 80%, transparent 100%);
  border-top: 2px solid var(--orange);
  top: 0;
  animation: qrScan 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}
@keyframes qrScan {
  0% { top: 0%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}

/* Secondary QR Mock styling for the orange-light theme section */
#feature-qr .qr-mock {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M2 2h6v6H2zm1 1v4h4V3zm1 1h2v2H4zm12-2h6v6h-6zm1 1v4h4V3zm1 1h2v2h-2zM2 16h6v6H2zm1 1v4h4v-4zm1 1h2v2H4zm8-14h2v2h-2zm3 0h2v1h-2zm-3 3h1v2h-1zm2 1h2v2h-2zm3 4h2v2h-2zm-5 0h3v1h-3zm0 3h1v2h-1zm2 1h3v1h-3zm4 0h2v2h-2zm-6 3h2v2h-2zm3 1h1v3h-1zm3 0h3v1h-3zm3-2h2v2h-2zm2 4h1v2h-1z' fill-rule='evenodd' fill='%23FF7D24'/%3E%3C/svg%3E");
}
#feature-qr .qr-mock::before {
  border-color: var(--orange-light);
}
#feature-qr .qr-scan-line {
  background: linear-gradient(180deg, rgba(255, 125, 36, 0.45) 0%, rgba(255, 125, 36, 0.05) 80%, transparent 100%);
  border-top-color: var(--orange-light);
}

.qr-table-num {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}
.qr-sub { font-size: 0.65rem; color: var(--text-secondary); }

/* Floating notification */
.float-notif {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  backdrop-filter: blur(20px);
  font-size: 0.72rem;
  box-shadow: 0 16px 48px rgba(15, 23, 42, 0.08);
  animation: floatNotif 6s ease-in-out infinite;
  z-index: 5;
  pointer-events: none;
}
.float-notif-1 {
  top: -20px; right: -40px;
  animation-delay: 0s;
  border-color: var(--border-orange);
}
.float-notif-2 {
  bottom: 20px; left: -30px;
  animation-delay: -3s;
  border-color: rgba(59, 130, 246, 0.2);
}
@keyframes floatNotif {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.notif-icon {
  width: 24px; height: 24px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.notif-icon svg {
  width: 12px; height: 12px;
}
.notif-text { color: var(--text-primary); font-weight: 600; }
.notif-sub { color: var(--text-secondary); font-size: 0.62rem; margin-top: 1px; }

/* ══════════════════════════════
   LOGO STRIP / SOCIAL PROOF BAR
══════════════════════════════ */
.l-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  padding: 20px 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.02);
}
.l-strip::before,
.l-strip::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.l-strip::before { left: 0; background: linear-gradient(90deg, var(--bg-void), transparent); }
.l-strip::after  { right: 0; background: linear-gradient(-90deg, var(--bg-void), transparent); }
.l-strip-track {
  display: flex;
  gap: 0;
  animation: stripScroll 30s linear infinite;
  width: max-content;
}
.l-strip-item {
  padding: 0 40px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-right: 1px solid var(--border-glass);
  white-space: nowrap;
  transition: color 0.3s;
}
.l-strip-item:hover { color: var(--text-secondary); }
@keyframes stripScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════
   METRICS BAND
══════════════════════════════ */
.l-metrics {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(255, 107, 0, 0.12);
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}
.l-metric {
  background: rgba(255, 255, 255, 0.85);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.l-metric::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.3s;
}
.l-metric:hover {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}
.l-metric:hover::after { opacity: 0.7; }
.l-metric-num {
  font-size: 2.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--text-primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.04em;
  line-height: 1.2;
}
.l-metric-lbl {
  font-size: 0.68rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ══════════════════════════════
   SECTION BASE
══════════════════════════════ */
.l-section {
  position: relative;
  z-index: 2;
  padding: 120px 48px;
}
.l-section-center { text-align: center; }
.l-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.l-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.l-section-eyebrow::before,
.l-section-eyebrow::after {
  content: '';
  width: 24px; height: 1px;
  background: var(--orange);
  opacity: 0.5;
}

.l-section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.l-section-title .grad {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.l-section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* ── Reveal animation ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.34,1.56,0.64,1);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }

/* ══════════════════════════════
   FEATURE SECTIONS — CINEMATIC
══════════════════════════════ */
.l-feature {
  position: relative;
  z-index: 2;
  padding: 100px 48px;
  overflow: hidden;
  transition: background 0.6s ease;
}
#features {
  background: radial-gradient(circle at 75% 50%, rgba(255, 107, 0, 0.05) 0%, transparent 70%), linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
#feature-qr {
  background: radial-gradient(circle at 25% 50%, rgba(16, 185, 129, 0.04) 0%, transparent 70%), linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}
#feature-metrics {
  background: radial-gradient(circle at 75% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 70%), linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
}
#feature-sync {
  background: radial-gradient(circle at 25% 50%, rgba(245, 158, 11, 0.04) 0%, transparent 70%), linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 100%);
}
#feature-brand {
  background: radial-gradient(circle at 80% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 70%), linear-gradient(180deg, #FFFFFF 0%, #F5F3FF 100%);
}
.l-feature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.l-feature-inner.reverse { direction: rtl; }
.l-feature-inner.reverse > * { direction: ltr; }

.l-feature-divider {
  height: 1px;
  margin: 0 48px;
  position: relative;
  z-index: 2;
}
.l-feature-divider:nth-of-type(1) {
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.15) 30%, rgba(16, 185, 129, 0.15) 70%, transparent);
}
.l-feature-divider:nth-of-type(2) {
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.15) 30%, rgba(59, 130, 246, 0.15) 70%, transparent);
}
.l-feature-divider:nth-of-type(3) {
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15) 30%, rgba(245, 158, 11, 0.15) 70%, transparent);
}
.l-feature-divider:nth-of-type(4) {
  background: linear-gradient(90deg, transparent, rgba(245, 158, 11, 0.15) 30%, rgba(236, 72, 153, 0.15) 70%, transparent);
}

.l-feature-text {}
.l-feature-number {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
}
.l-feature-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.l-feature-title .orange { color: var(--orange); }
.l-feature-title .orange-light { color: var(--orange-light); }
.l-feature-title .accent { color: var(--accent); }
.l-feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}
.l-feature-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.l-feature-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.l-feature-point-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--orange-glow);
}
.l-feature-point-dot.orange-light { background: var(--orange-light); box-shadow: 0 0 8px var(--orange-light-glow); }
.l-feature-point-dot.accent { background: var(--accent); box-shadow: 0 0 8px rgba(59, 130, 246, 0.4); }

/* Feature visual panels */
.l-feature-visual {
  position: relative;
}
.l-feature-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  backdrop-filter: blur(24px);
  padding: 28px;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.08);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.l-feature-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange) 50%, transparent);
  opacity: 0.4;
}
.l-feature-panel:hover {
  transform: translateY(-6px) rotateX(2deg);
}

/* Billing feature */
.billing-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.billing-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 10px;
  border: 1px solid var(--border-glass);
  font-size: 0.78rem;
}
.billing-item-name { flex: 1; color: var(--text-primary); font-weight: 600; }
.billing-item-qty { color: var(--text-secondary); }
.billing-item-price { color: var(--orange); font-weight: 700; }
.billing-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 14px;
  background: linear-gradient(135deg, var(--orange-dim), transparent);
  border-radius: 12px;
  border: 1px solid var(--border-orange);
}
.billing-total-label { font-size: 0.8rem; font-weight: 700; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.1em; }
.billing-total-amount { font-size: 1.4rem; font-weight: 900; color: var(--orange); letter-spacing: -0.02em; }

/* checkout btn animation */
.billing-checkout {
  margin-top: 16px;
  padding: 14px;
  background: var(--orange);
  color: #000;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: checkoutPulse 3s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.billing-checkout svg {
  width: 16px; height: 16px;
}
@keyframes checkoutPulse {
  0%, 100% { box-shadow: 0 0 20px var(--orange-glow); }
  50% { box-shadow: 0 0 40px var(--orange-glow), 0 0 80px rgba(255,107,0,0.15); }
}

/* AI Forecast visual */
.ai-forecast {
  padding: 8px 0;
}
.ai-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.ai-icon-wrap {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--orange-dim);
  border: 1px solid var(--border-orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  animation: aiPulse 2s ease-in-out infinite alternate;
}
.ai-icon-wrap svg {
  width: 16px; height: 16px;
}
@keyframes aiPulse {
  0%  { box-shadow: 0 0 10px var(--orange-glow); }
  100% { box-shadow: 0 0 30px var(--orange-glow); }
}
.ai-header-title { font-size: 0.88rem; font-weight: 700; color: var(--text-primary); }
.ai-header-sub { font-size: 0.65rem; color: var(--orange); font-weight: 500; }

.ai-insight {
  background: rgba(15, 23, 42, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  padding: 14px;
  margin-bottom: 10px;
  font-size: 0.78rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ai-insight-dot { width: 6px; height: 6px; border-radius: 50%; margin-top: 4px; flex-shrink: 0; }
.ai-insight-text { color: var(--text-secondary); line-height: 1.5; }
.ai-insight-text strong { color: var(--text-primary); }

/* Staff multi-device */
.staff-devices {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.staff-device {
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
}
.staff-device:hover {
  border-color: var(--border-orange);
  background: var(--orange-dim);
  transform: translateY(-3px);
}
.staff-device-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--orange);
}
.staff-device-icon svg {
  width: 24px; height: 24px;
}
.staff-device-name { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); }
.staff-device-role { font-size: 0.65rem; color: var(--text-secondary); margin-top: 2px; }
.staff-device-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  padding: 3px 10px;
  border-radius: 99px;
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.staff-device-status.online { background: var(--accent-dim); color: var(--accent); }
.staff-device-status.active { background: var(--orange-dim); color: var(--orange); }

/* Branding panel */
.brand-preview {
  padding: 12px;
  background: rgba(15, 23, 42, 0.03);
  border-radius: 14px;
  border: 1px solid var(--border-glass);
  margin-bottom: 12px;
}
.brand-colors {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.brand-color-swatch {
  width: 32px; height: 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid transparent;
}
.brand-color-swatch:hover, .brand-color-swatch.active {
  transform: scale(1.15);
  border-color: rgba(15, 23, 42, 0.8);
}
.brand-preview-bar {
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  transition: background 0.5s;
}

/* ══════════════════════════════
   AUTO-ANIMATION SHOWCASE
══════════════════════════════ */
.l-showcase-strip {
  position: relative;
  z-index: 2;
  padding: 80px 48px;
  overflow: hidden;
  background: linear-gradient(180deg, transparent, rgba(255,107,0,0.02), transparent);
}
.l-showcase-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.showcase-title {
  text-align: center;
  margin-bottom: 60px;
}
.showcase-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}
.showcase-tab {
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--border-glass);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.25s;
  font-family: var(--font-land);
}
.showcase-tab.active {
  background: var(--orange-dim);
  border-color: var(--border-orange);
  color: var(--orange);
}
.showcase-tab:hover:not(.active) {
  background: rgba(15, 23, 42, 0.04);
  color: var(--text-primary);
}

.showcase-content {
  position: relative;
  min-height: 320px;
}
.showcase-screen {
  display: none;
  animation: screenFadeIn 0.5s cubic-bezier(0.4,0,0.2,1);
}
.showcase-screen.active { display: block; }
@keyframes screenFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
.l-testi {
  position: relative;
  z-index: 2;
  padding: 120px 48px;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, #FFFFFF 80%);
}
.l-testi-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.l-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.l-testi-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.l-testi-card::before {
  content: '"';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 5rem;
  font-weight: 900;
  color: rgba(255,107,0,0.06);
  line-height: 1;
  font-family: serif;
}
.l-testi-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08), 0 0 0 1px var(--border-orange);
}
.l-testi-stars {
  display: flex; gap: 4px; margin-bottom: 16px;
}
.l-star {
  width: 14px; height: 14px;
  color: #F59E0B;
}
.l-testi-text {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}
.l-testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.l-testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 20px var(--orange-glow);
}
.l-testi-name { font-size: 0.82rem; font-weight: 700; color: var(--text-primary); }
.l-testi-role { font-size: 0.65rem; color: var(--text-secondary); margin-top: 2px; }

/* ══════════════════════════════
   PRICING
══════════════════════════════ */
.l-pricing {
  position: relative;
  z-index: 2;
  padding: 120px 48px;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
}
.l-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.03) 0%, transparent 70%);
  pointer-events: none;
}
.l-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 64px auto 0;
}
.l-plan {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 36px 28px;
  backdrop-filter: blur(20px);
  position: relative;
  transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1);
  overflow: hidden;
}
.l-plan:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.08);
}
.l-plan.popular {
  border-color: var(--border-orange);
  background: linear-gradient(145deg, rgba(255,107,0,0.06), rgba(255,160,87,0.06));
  box-shadow: 0 0 0 1px var(--border-orange), 0 0 60px rgba(255,107,0,0.05);
}
.l-plan.popular:hover {
  box-shadow: 0 0 0 1px var(--orange), 0 32px 80px rgba(255,107,0,0.1);
}
.l-plan::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glass), transparent);
}
.l-plan.popular::before {
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.6;
}
.l-plan-badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 4px 12px;
  border-radius: 99px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--orange);
  color: #000;
  box-shadow: 0 0 20px var(--orange-glow);
}
.l-plan-name {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--text-secondary);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.l-plan.popular .l-plan-name { color: var(--orange); }
.l-plan-price {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.l-plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0;
}
.l-plan.popular .l-plan-price {
  background: linear-gradient(135deg, var(--text-primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.l-plan-period {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.l-plan-divider {
  height: 1px;
  background: var(--border-glass);
  margin-bottom: 24px;
}
.l-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.l-plan-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-secondary);
}
.l-plan-check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(255,107,0,0.1);
  border: 1px solid rgba(255,107,0,0.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
}
.l-plan-check svg { width: 9px; height: 9px; }
.l-plan-cross {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--text-muted);
}
.l-plan-cross svg { width: 9px; height: 9px; }

/* ══════════════════════════════
   FAQ
══════════════════════════════ */
.l-faq {
  position: relative;
  z-index: 2;
  padding: 80px 48px 120px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 50%, #FFFFFF 100%);
}
.l-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.l-faq-list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 1px;
  border: 1px solid var(--border-glass);
  border-radius: 20px;
  overflow: hidden;
}
.l-faq-item {}
.l-faq-q {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-surface);
  transition: background 0.2s;
  border-bottom: 1px solid var(--border-glass);
  user-select: none;
}
.l-faq-q:hover { background: rgba(255,107,0,0.04); }
.l-faq-q-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
  font-size: 0.75rem;
  font-weight: 700;
}
.l-faq-item.open .l-faq-q-icon { transform: rotate(45deg); }
.l-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
  background: rgba(15, 23, 42, 0.02);
}
.l-faq-item.open .l-faq-a {
  max-height: 200px;
  padding: 20px 28px;
}

/* ══════════════════════════════
   FINAL CTA
══════════════════════════════ */
.l-cta {
  position: relative;
  z-index: 2;
  padding: 160px 48px;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 100%, rgba(255, 107, 0, 0.08) 0%, rgba(255, 160, 87, 0.03) 50%, #FFFFFF 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.1);
}
.l-cta::before {
  display: none;
}
.l-cta-orb {
  position: absolute;
  width: 800px; height: 800px;
  border-radius: 50%;
  border: 1px solid rgba(255,107,0,0.06);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ctaOrb 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.l-cta-orb-2 {
  width: 600px; height: 600px;
  border-color: rgba(255,160,87,0.08);
  animation-delay: -4s;
}
.l-cta-orb-3 {
  width: 400px; height: 400px;
  border-color: rgba(59, 130, 246, 0.06);
  animation-delay: -2s;
}
@keyframes ctaOrb {
  0%  { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.05); opacity: 0.6; }
}
.l-cta-inner {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
.l-cta-logo {
  width: 80px; height: 80px;
  margin: 0 auto 40px;
  filter: drop-shadow(0 0 30px var(--orange-glow));
  animation: ctaLogoFloat 4s ease-in-out infinite;
}
.l-cta-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}
@keyframes ctaLogoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.l-cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.l-cta-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.7;
}
.l-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.l-cta-note {
  margin-top: 20px;
  font-size: 0.72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.l-cta-note span::before {
  content: '✓ ';
  color: var(--orange);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.l-footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border-glass);
  padding: 60px 48px 40px;
  background: #F8FAFC;
}
.l-footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.l-footer-brand {}
.l-footer-brand-name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: linear-gradient(135deg, var(--text-primary), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.l-footer-brand-desc {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 260px;
}
.l-footer-col-title {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.l-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.l-footer-links a {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.l-footer-links a:hover { color: var(--orange); }
.l-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-glass);
  padding-top: 28px;
  font-size: 0.72rem;
  color: var(--text-muted);
  gap: 20px;
  flex-wrap: wrap;
}
.l-footer-bottom-links {
  display: flex; gap: 24px;
}
.l-footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.l-footer-bottom-links a:hover { color: var(--orange); }

/* ══════════════════════════════
   PROGRESS BAR (scroll)
══════════════════════════════ */
.l-progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s;
  box-shadow: 0 0 10px var(--orange-glow);
}

/* ══════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
══════════════════════════════ */
@media (max-width: 1024px) {
  .l-nav { padding: 0 24px; }
  .l-nav-links { display: none !important; }
  .l-hamburger { display: flex; }
  .l-nav-cta .btn-ghost-l { display: none; }

  .l-metrics { grid-template-columns: repeat(3, 1fr); }

  .l-hero-inner {
    flex-direction: column;
    text-align: center;
    padding: 120px 24px 60px;
    gap: 40px;
  }
  .hero-text-side {
    max-width: 100%;
    text-align: center;
  }
  .hero-visual-side {
    width: 100%;
    min-height: 320px;
  }
  .hero-actions-l { justify-content: center; }
  .hero-stats-l { justify-content: center; }
  .hero-stat-l { text-align: center; padding: 0 20px; }
  .hero-stat-l:first-child { padding-left: 20px; }

  .l-feature-inner { grid-template-columns: 1fr; gap: 40px; }
  .l-feature-inner.reverse { direction: ltr; }
  .l-testi-grid { grid-template-columns: repeat(2, 1fr); }
  .l-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .l-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .l-showcase-scene { grid-template-columns: 1fr 1fr; }
  .showcase-panel-main { grid-column: span 2; }
}

/* ══════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
══════════════════════════════ */
@media (max-width: 768px) {
  /* Prevent horizontal scroll globally */
  .landing-body, .landing-html { overflow-x: hidden !important; }

  /* Nav — full width sticky bar on mobile */
  .l-nav {
    top: 0;
    width: 100%;
    height: 64px;
    padding: 0 16px;
    border-radius: 0;
  }
  .l-nav.scrolled {
    top: 0 !important;
    width: 100% !important;
    height: 64px !important;
    border-radius: 0 !important;
    padding: 0 16px !important;
  }
  .l-nav.scrolled .l-nav-logo-text {
    font-size: 0.95rem;
  }
  .l-nav-logo img { width: 32px; height: 32px; }
  .l-nav-logo-text { font-size: 0.95rem; }
  .l-mobile-menu { top: 64px; left: 0; right: 0; border-radius: 0; border: none; border-bottom: 1px solid var(--border-glass); }

  /* Hero */
  .l-hero-inner {
    padding: 90px 16px 48px;
    gap: 32px;
  }
  .hero-text-side { text-align: center; }
  .hero-badge-l { font-size: 0.65rem; padding: 6px 14px; margin-bottom: 24px; }
  .hero-desc-l { font-size: 0.9rem; margin-bottom: 32px; }
  .hero-actions-l {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
  }
  .hero-actions-l .btn-orange-l,
  .hero-actions-l .btn-outline-orange {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .btn-lg-l { padding: 15px 24px !important; font-size: 0.9rem !important; }

  /* Stats strip */
  .hero-stats-l {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    width: 100%;
  }
  .hero-stat-l {
    padding: 12px 8px;
    text-align: center;
    border-right: 1px solid var(--border-glass);
  }
  .hero-stat-l:last-child { border-right: none; }
  .hero-stat-l:first-child { padding-left: 8px; }
  .hero-stat-num { font-size: 1.3rem; }
  .hero-stat-lbl { font-size: 0.62rem; }

  /* Hero visual — hide floating notifications on mobile, simplify scene */
  .hero-visual-side {
    width: 100%;
    min-height: 240px;
    perspective: none;
  }
  .float-notif { display: none !important; }
  .l-showcase-scene {
    grid-template-columns: 1fr;
    transform: none;
    gap: 12px;
  }
  .showcase-panel-main { grid-column: span 1; }
  .mini-stats { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .mini-stat-val { font-size: 1rem; }
  .live-chart { height: 60px; }

  /* Running strip */
  .l-strip { padding: 16px 0; }
  .l-strip-item { font-size: 0.75rem; }

  /* Metrics band */
  .l-metrics {
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 16px;
    gap: 0;
  }
  .l-metric { padding: 20px 12px; }
  .l-metric-num { font-size: 1.5rem; }

  /* Showcase section */
  .l-showcase-strip { padding: 60px 16px; }
  .showcase-title { margin-bottom: 24px; }
  .showcase-tabs {
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  .showcase-tab {
    font-size: 0.72rem;
    padding: 8px 12px;
    border-radius: 8px;
  }
  .showcase-content { margin-top: 20px; }

  /* Feature sections */
  .l-feature { padding: 52px 16px; }
  .l-feature-inner { gap: 32px; }
  .l-feature-title { font-size: 1.6rem; }
  .l-feature-desc { font-size: 0.88rem; }
  .l-feature-panel { padding: 16px; }
  .l-feature-divider { margin: 0 16px; }
  .l-feature-points { gap: 10px; }
  .l-feature-point { font-size: 0.83rem; }
  .staff-devices { grid-template-columns: 1fr; gap: 10px; }
  .qr-panel-content { padding: 20px; }

  /* Testimonials */
  .l-testi { padding: 60px 16px; }
  .l-testi-grid { grid-template-columns: 1fr; gap: 16px; }
  .l-testi-card { padding: 24px 20px; }

  /* Pricing */
  .l-pricing { padding: 60px 16px; }
  .l-pricing-grid { max-width: 100%; }
  .l-plan { padding: 28px 20px; }

  /* FAQ */
  .l-faq { padding: 52px 16px 72px; }
  .l-faq-inner { max-width: 100%; }
  .l-faq-q { padding: 18px 20px; font-size: 0.85rem; }
  .l-faq-item.open .l-faq-a { padding: 16px 20px; }

  /* CTA section */
  .l-cta { padding: 80px 16px; }
  .l-cta-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .l-cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .l-cta-actions a { width: 100%; max-width: 300px; justify-content: center; }
  .l-cta-note { flex-direction: column; gap: 8px; }
  .l-cta-logo { width: 60px; height: 60px; margin-bottom: 24px; }

  /* Footer */
  .l-footer { padding: 40px 16px 28px; }
  .l-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .l-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 20px;
  }
  .l-footer-bottom-links { gap: 16px; flex-wrap: wrap; }

  /* Section headings */
  .l-section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .l-section-desc { font-size: 0.88rem; }
}

/* ══════════════════════════════
   RESPONSIVE — SMALL (≤480px)
══════════════════════════════ */
@media (max-width: 480px) {
  .l-hero-inner { padding: 82px 12px 40px; }
  .hero-title-l { font-size: clamp(3.2rem, 17vw, 4.5rem); }
  .hero-subtitle-l { font-size: 0.85rem; letter-spacing: 0.04em; }

  /* Stats: 3 in a row even on small */
  .hero-stats-l { grid-template-columns: 1fr 1fr 1fr; }
  .hero-stat-num { font-size: 1.1rem; }
  .hero-stat-lbl { font-size: 0.58rem; }

  .l-metrics { grid-template-columns: 1fr 1fr; padding: 28px 12px; }
  .l-metric-num { font-size: 1.35rem; }

  .showcase-tabs { gap: 6px; }
  .showcase-tab { font-size: 0.68rem; padding: 7px 10px; }

  .l-plan { padding: 24px 16px; }
  .l-plan-price { font-size: 2rem; }

  .l-cta-orb { display: none; }
  .l-footer-brand-desc { max-width: 100%; }

  /* Buttons on very small screens */
  .btn-orange-l, .btn-outline-orange, .btn-ghost-l {
    font-size: 0.82rem;
    padding: 11px 18px;
  }
  .btn-lg-l { padding: 14px 20px !important; }
}

/* Hide default bg elements from main.css on landing */
.landing-body .bg-mesh,
.landing-body .bg-grid { display: none !important; }

/* Neon text utility */
.neon-orange {
  color: var(--orange);
  text-shadow: 0 0 20px var(--orange-glow);
}
.neon-orange-light { color: var(--orange-light); text-shadow: 0 0 20px var(--orange-light-glow); }
.neon-accent { color: var(--accent); text-shadow: 0 0 20px rgba(59, 130, 246, 0.4); }

/* Glass utility */
.glass-panel {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* ── Browser Mockup UI ── */
.hero-browser-window {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.08), 0 0 0 1px var(--border-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.browser-header {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(15, 23, 42, 0.02);
  border-bottom: 1px solid var(--border-glass);
  padding: 12px 20px;
}
.browser-dots {
  display: flex;
  gap: 6px;
}
.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.browser-dot.red { background: #FF5F56; }
.browser-dot.yellow { background: #FEBC2E; }
.browser-dot.green { background: #27C840; }
.browser-address {
  flex: 1;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border-glass);
  border-radius: 6px;
  font-size: 0.65rem;
  color: var(--text-muted);
  padding: 4px 12px;
  text-align: center;
}
.browser-body {
  padding: 24px;
}
.mock-dashboard {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.mock-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mock-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
}
.mock-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--orange);
}
.mock-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: dotPulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 6px var(--orange);
}
.mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.mock-stat {
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 12px 14px;
}
.mock-stat-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-primary);
}
.mock-stat-lbl {
  font-size: 0.58rem;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 3px;
}
.mock-chart-container {
  background: rgba(15, 23, 42, 0.01);
  border: 1px solid var(--border-glass);
  border-radius: 10px;
  padding: 16px 20px;
}
.mock-chart {
  height: 80px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

/* ── Pin keypad mockup for waiters ── */
.waiter-pin-mock {
  padding: 10px 0;
}
.pin-btn:hover {
  background: var(--orange-dim) !important;
  border-color: var(--orange) !important;
  color: var(--orange) !important;
  transition: all 0.2s ease;
}
