/* ========================================
   SolusiToko - Premium Landing Page CSS
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #2563EB;
  --primary-light: #3B82F6;
  --primary-dark: #1D4ED8;
  --secondary: #06B6D4;
  --secondary-light: #22D3EE;
  --accent: #8B5CF6;
  --accent-light: #A78BFA;
  --success: #10B981;
  --success-light: #34D399;

  --bg: #030712;
  --bg-card: #111827;
  --bg-card-hover: #1F2937;
  --border: rgba(255,255,255,0.08);
  --border-light: rgba(255,255,255,0.12);
  --border-hover: rgba(255,255,255,0.2);

  --text: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-tertiary: #64748B;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 40px rgba(37,99,235,0.15);

  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', 'Plus Jakarta Sans', sans-serif;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1200px;
  --container-sm: 960px;
  --container-xs: 720px;

  --navbar-h: 72px;
}

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

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; }

::selection {
  background: var(--primary);
  color: white;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm { max-width: var(--container-sm); }
.container-xs { max-width: var(--container-xs); }

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
  z-index: 10001;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ---------- Background Effects ---------- */
.bg-effects {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.aurora-bg {
  position: absolute;
  top: -40%;
  left: -20%;
  width: 140%;
  height: 140%;
  background:
    radial-gradient(ellipse 80% 50% at 20% 40%, rgba(37,99,235,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 20%, rgba(139,92,246,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 80%, rgba(6,182,212,0.08) 0%, transparent 50%);
  animation: auroraShift 20s ease-in-out infinite alternate;
}

@keyframes auroraShift {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-2%, 3%) scale(1.02); }
  66% { transform: translate(2%, -2%) scale(0.98); }
  100% { transform: translate(-1%, 1%) scale(1.01); }
}

.mesh-gradient {
  position: absolute;
  inset: 0;
  background:
    conic-gradient(from 0deg at 50% 50%, rgba(37,99,235,0.05) 0deg, transparent 60deg, rgba(139,92,246,0.04) 120deg, transparent 180deg, rgba(6,182,212,0.03) 240deg, transparent 300deg);
  animation: meshRotate 30s linear infinite;
  opacity: 0.6;
}

@keyframes meshRotate {
  to { transform: rotate(360deg); }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
}

.blur-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 15s ease-in-out infinite alternate;
}

.blur-orb-1 {
  width: 500px;
  height: 500px;
  background: rgba(37,99,235,0.08);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.blur-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(139,92,246,0.06);
  top: 50%;
  right: 5%;
  animation-delay: -5s;
}

.blur-orb-3 {
  width: 350px;
  height: 350px;
  background: rgba(6,182,212,0.06);
  bottom: 10%;
  left: 30%;
  animation-delay: -10s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -20px) scale(1.1); }
  100% { transform: translate(-20px, 30px) scale(0.95); }
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, black 20%, transparent 70%);
}

/* ---------- Loading Screen ---------- */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.loader-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.loader-logo-text {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loader-bar-wrapper {
  width: 200px;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto 16px;
}

.loader-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
  animation: loaderProgress 1.5s ease-out forwards;
}

@keyframes loaderProgress {
  0% { width: 0%; }
  30% { width: 40%; }
  60% { width: 70%; }
  100% { width: 100%; }
}

.loader-text {
  font-size: 13px;
  color: var(--text-tertiary);
  letter-spacing: 0.5px;
}

/* ---------- Custom Cursor ---------- */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  will-change: transform;
}

.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--primary);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(37,99,235,0.4);
  transition: width 0.3s ease, height 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.cursor-ring.expand {
  width: 56px;
  height: 56px;
  border-color: rgba(37,99,235,0.15);
  background: rgba(37,99,235,0.06);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-h);
  z-index: 1000;
  transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.navbar.scrolled {
  background: rgba(3,7,18,0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), var(--shadow-md);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  z-index: 10;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: white;
}

.logo-text {
  background: linear-gradient(135deg, var(--text), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  border-radius: var(--radius-sm);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 16px rgba(37,99,235,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,0.4);
}

.btn-primary i {
  transition: transform var(--transition-base);
}

.btn-primary:hover i {
  transform: translateX(3px);
}

.btn-ghost {
  border: 1px solid var(--border-light);
  color: var(--text);
  background: transparent;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--border-hover);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 16px;
  border-radius: var(--radius-xl);
}

.navbar-toggle {
  display: none;
  padding: 8px;
  z-index: 10;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 22px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: all var(--transition-base);
  transform-origin: center;
}

.navbar-toggle.active .hamburger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggle.active .hamburger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(3,7,18,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-slow);
}

.mobile-menu.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 12px 24px;
  transition: color var(--transition-base);
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .mobile-link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-link:hover, .mobile-link.active {
  color: var(--text);
}

.btn-mobile {
  margin-top: 16px;
  padding: 14px 40px;
  font-size: 16px;
  transform: translateY(20px);
  opacity: 0;
}

.mobile-menu.open .btn-mobile {
  transform: translateY(0);
  opacity: 1;
}

/* ---------- Hero Section Phase 2 ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-h);
  overflow: hidden;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero-mouse-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: left 0.3s ease-out, top 0.3s ease-out;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-left {
  padding: 40px 0;
}

.hero-right {
  position: relative;
  min-height: 540px;
}

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px 8px 12px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
  cursor: default;
  transition: all var(--transition-base);
}

.hero-badge:hover {
  border-color: rgba(37,99,235,0.4);
  background: rgba(37,99,235,0.12);
  transform: translateY(-1px);
}

.hero-badge-glow {
  position: absolute;
  inset: -1px;
  border-radius: 100px;
  background: linear-gradient(135deg, rgba(37,99,235,0.2), rgba(139,92,246,0.2), rgba(6,182,212,0.2));
  opacity: 0;
  transition: opacity var(--transition-base);
  z-index: -1;
}

.hero-badge:hover .hero-badge-glow {
  opacity: 1;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50% { opacity: 0.7; transform: scale(0.85); box-shadow: 0 0 0 4px rgba(16,185,129,0); }
}

/* Hero Title */
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 5s ease-in-out infinite;
}

.hero-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px) rotateX(40deg);
  filter: blur(8px);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
  opacity: 0;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
}

/* Hero Stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  opacity: 0;
}

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

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.hero-stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Right - Mockup Stack */
.hero-mockup-stack {
  position: relative;
  width: 100%;
  height: 540px;
}

/* Desktop Mockup */
.mockup-desktop {
  position: absolute;
  top: 0;
  right: 0;
  width: 480px;
  z-index: 2;
}

.mockup-browser {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 60px rgba(37,99,235,0.08);
}

.mockup-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.browser-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.browser-dot.r { background: #EF4444; }
.browser-dot.y { background: #F59E0B; }
.browser-dot.g { background: #10B981; }

.browser-url {
  margin-left: 12px;
  font-size: 11px;
  color: var(--text-tertiary);
  background: rgba(255,255,255,0.04);
  padding: 3px 12px;
  border-radius: 6px;
  flex: 1;
}

.mockup-screen {
  padding: 0;
  min-height: 280px;
}

.mockup-glow {
  position: absolute;
  inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(139,92,246,0.1));
  z-index: -1;
  filter: blur(20px);
  opacity: 0.6;
}

/* Dashboard Mock */
.dash-sidebar {
  width: 44px;
  background: rgba(255,255,255,0.02);
  border-right: 1px solid var(--border);
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}

.dash-logo-sm {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  margin-bottom: 8px;
}

.dash-nav-item {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--text-tertiary);
  cursor: default;
}

.dash-nav-item.active {
  background: rgba(37,99,235,0.2);
  color: var(--primary-light);
}

.dash-main {
  margin-left: 44px;
  padding: 12px 16px;
}

.dash-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.dash-user-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-tertiary);
}

.dash-cards-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.dash-mini-card {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px;
}

.mini-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.mini-lbl {
  font-size: 10px;
  color: var(--text-tertiary);
}

.dash-chart-placeholder {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding: 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.chart-bar {
  flex: 1;
  background: linear-gradient(180deg, var(--primary), rgba(37,99,235,0.3));
  border-radius: 3px 3px 0 0;
  min-height: 8px;
}

/* Mobile Mockup */
.mockup-mobile {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  z-index: 3;
}

.phone-frame {
  background: #1a1a2e;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(37,99,235,0.06);
}

.phone-notch {
  width: 60px;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  margin: 0 auto 6px;
}

.phone-screen {
  background: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  padding: 12px;
}

.phone-header {
  margin-bottom: 10px;
}

.phone-greeting {
  display: block;
  font-size: 9px;
  color: var(--text-tertiary);
}

.phone-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.phone-card {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  padding: 10px;
  margin-bottom: 10px;
}

.phone-bal-label {
  display: block;
  font-size: 8px;
  color: rgba(255,255,255,0.7);
}

.phone-bal-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: white;
}

.phone-bal-change {
  font-size: 8px;
  color: rgba(255,255,255,0.6);
}

.phone-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.phone-action-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 0;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
}

.phone-action-btn i {
  font-size: 11px;
  color: var(--primary-light);
}

.phone-action-btn span {
  font-size: 7px;
  color: var(--text-secondary);
}

.phone-transactions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.phone-tx {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
}

.tx-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}

.tx-icon.green { background: rgba(16,185,129,0.15); color: var(--success); }
.tx-icon.blue { background: rgba(37,99,235,0.15); color: var(--primary-light); }

.tx-info {
  flex: 1;
  min-width: 0;
}

.tx-name {
  display: block;
  font-size: 9px;
  font-weight: 500;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tx-time {
  font-size: 8px;
  color: var(--text-tertiary);
}

.tx-amount {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

.tx-amount.green { color: var(--success); }

/* Floating Cards */
.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(17,24,39,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  z-index: 4;
  white-space: nowrap;
  will-change: transform;
}

.fc-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}

.fc-icon.green { background: rgba(16,185,129,0.15); color: var(--success); }
.fc-icon.blue { background: rgba(37,99,235,0.15); color: var(--primary-light); }
.fc-icon.amber { background: rgba(245,158,11,0.15); color: #F59E0B; }
.fc-icon.purple { background: rgba(139,92,246,0.15); color: var(--accent-light); }

.fc-title {
  display: block;
  font-size: 10px;
  color: var(--text-tertiary);
}

.fc-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.fc-qris { top: 30px; right: 0; }
.fc-barcode { top: 160px; left: -10px; }
.fc-stok { bottom: 100px; right: -10px; }
.fc-pendapatan { bottom: 30px; left: 0; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
  opacity: 0;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
  display: flex;
  justify-content: center;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: var(--primary-light);
  border-radius: 2px;
  margin-top: 6px;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

.scroll-text {
  font-size: 10px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* Trusted Section */
.trusted-section {
  position: relative;
  z-index: 1;
  padding: 64px 0 80px;
  border-top: 1px solid var(--border);
}

.trusted-label {
  text-align: center;
  font-size: 13px;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.marquee-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-tertiary);
  white-space: nowrap;
  opacity: 0.5;
  transition: opacity var(--transition-base);
}

.marquee-item i {
  font-size: 18px;
  color: var(--text-tertiary);
}

.marquee-item:hover {
  opacity: 1;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Magnetic Button & Shine */
.magnetic-btn {
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  pointer-events: none;
}

.btn-primary:hover .btn-shine {
  animation: btnShine 0.6s ease;
}

@keyframes btnShine {
  to { left: 100%; }
}

.btn-primary {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--secondary));
  z-index: -1;
  opacity: 0;
  transition: opacity var(--transition-base);
  filter: blur(12px);
}

.btn-primary:hover::after {
  opacity: 0.4;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(37,99,235,0.08);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Bento Grid ---------- */
.container-wide {
  max-width: 1400px;
}

.bento-section {
  padding: 120px 0;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.bento-item {
  position: relative;
  padding: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(37,99,235,0.3) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.bento-item:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5), 0 0 40px -8px rgba(37,99,235,0.15);
}

.bento-item:hover::before {
  opacity: 1;
}

.bento-item:hover::after {
  opacity: 1;
}

/* Sizes */
.bento-sm {
  grid-column: span 1;
}

.bento-md {
  grid-column: span 2;
}

.bento-lg {
  grid-column: span 2;
  grid-row: span 2;
}

/* Highlight card */
.bento-highlight {
  background: linear-gradient(135deg, rgba(17,24,39,1) 0%, rgba(37,99,235,0.08) 50%, rgba(139,92,246,0.06) 100%);
  border-color: rgba(37,99,235,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bento-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(37,99,235,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.bento-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-light);
  width: fit-content;
  margin-bottom: 16px;
}

.bento-title-lg {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
}

.bento-highlight .bento-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Dashboard mock inside highlight */
.bento-mockup {
  flex: 1;
  display: flex;
  align-items: flex-end;
  min-height: 180px;
}

.bento-dash {
  width: 100%;
  display: flex;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.bento-dash-sidebar {
  width: 36px;
  padding: 10px 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid rgba(255,255,255,0.06);
}

.bento-dash-nav {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 6px;
  background: rgba(255,255,255,0.04);
  transition: background 0.3s;
}

.bento-dash-nav.active {
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.bento-dash-main {
  flex: 1;
  padding: 12px;
}

.bento-dash-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.bento-dash-stat {
  flex: 1;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}

.bds-val {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: white;
}

.bds-lbl {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
  margin-bottom: 8px;
}

.bds-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.bds-bar-fill {
  height: 100%;
  width: var(--fill);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bento-dash-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  padding: 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.04);
}

.bdc-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--primary) 0%, rgba(37,99,235,0.3) 100%);
  border-radius: 3px 3px 0 0;
  transition: height 1s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 4px;
}

/* Icon wraps */
.bento-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
  transition: all 0.4s;
}

.bento-icon-wrap.blue {
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  color: #60A5FA;
}

.bento-icon-wrap.green {
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.2);
  color: #4ADE80;
}

.bento-icon-wrap.purple {
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  color: #A78BFA;
}

.bento-icon-wrap.cyan {
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.2);
  color: #22D3EE;
}

.bento-icon-wrap.amber {
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.2);
  color: #FBBF24;
}

.bento-icon-wrap.indigo {
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  color: #818CF8;
}

.bento-icon-wrap.rose {
  background: rgba(244,63,94,0.12);
  border: 1px solid rgba(244,63,94,0.2);
  color: #FB7185;
}

.bento-icon-wrap.teal {
  background: rgba(20,184,166,0.12);
  border: 1px solid rgba(20,184,166,0.2);
  color: #2DD4BF;
}

.bento-icon-wrap.violet {
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.2);
  color: #C084FC;
}

.bento-icon-wrap.sky {
  background: rgba(14,165,233,0.12);
  border: 1px solid rgba(14,165,233,0.2);
  color: #38BDF8;
}

.bento-icon-wrap.lime {
  background: rgba(132,204,22,0.12);
  border: 1px solid rgba(132,204,22,0.2);
  color: #A3E635;
}

.bento-icon-wrap.emerald {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.2);
  color: #34D399;
}

.bento-icon-wrap.orange {
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  color: #FB923C;
}

.bento-icon-wrap.fuchsia {
  background: rgba(217,70,239,0.12);
  border: 1px solid rgba(217,70,239,0.2);
  color: #E879F9;
}

.bento-icon-wrap.red {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.2);
  color: #F87171;
}

.bento-icon-wrap.pink {
  background: rgba(236,72,153,0.12);
  border: 1px solid rgba(236,72,153,0.2);
  color: #F472B6;
}

.bento-icon-wrap.slate {
  background: rgba(148,163,184,0.12);
  border: 1px solid rgba(148,163,184,0.2);
  color: #94A3B8;
}

.bento-icon-wrap.zinc {
  background: rgba(161,161,170,0.12);
  border: 1px solid rgba(161,161,170,0.2);
  color: #A1A1AA;
}

.bento-item:hover .bento-icon-wrap {
  transform: scale(1.1);
}

/* Card text */
.bento-card-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.bento-card-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Mini Counter ---------- */
.bento-mini-counter {
  margin-top: 16px;
  padding: 10px 14px;
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.1);
  border-radius: 10px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mmc-val {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mmc-label {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Mini Chart ---------- */
.bento-mini-chart {
  margin-top: 16px;
  height: 50px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.mmc-line {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 49.5%, rgba(34,197,94,0.15) 49.5%, rgba(34,197,94,0.15) 50.5%, transparent 50.5%),
    linear-gradient(-45deg, transparent 49.5%, rgba(34,197,94,0.15) 49.5%, rgba(34,197,94,0.15) 50.5%, transparent 50.5%);
}

.mmc-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
  transform: translate(-50%, -50%);
}

/* ---------- Payment Icons ---------- */
.bento-payment-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.bpi-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 8px;
  font-size: 11px;
  color: var(--text-secondary);
  transition: all 0.3s;
}

.bpi-item i {
  font-size: 16px;
  color: #A78BFA;
}

.bpi-item:hover {
  background: rgba(139,92,246,0.1);
  border-color: rgba(139,92,246,0.2);
}

/* ---------- Barcode Mock ---------- */
.bento-barcode-mock {
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(6,182,212,0.05);
  border: 1px solid rgba(6,182,212,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  overflow: hidden;
}

.bbm-line {
  width: 3px;
  height: 28px;
  background: rgba(34,211,238,0.4);
  border-radius: 1px;
}

.bbm-line.short {
  height: 20px;
}

.bbm-scan {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #22D3EE, transparent);
  animation: barcodeScan 2s ease-in-out infinite;
}

@keyframes barcodeScan {
  0% { top: 0; }
  50% { top: 100%; }
  100% { top: 0; }
}

/* ---------- Progress Stack ---------- */
.bento-progress-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.bps-item span {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  display: block;
}

.bps-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.bps-fill {
  height: 100%;
  width: var(--w);
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bps-fill.high { background: linear-gradient(90deg, #22C55E, #4ADE80); }
.bps-fill.mid { background: linear-gradient(90deg, #F59E0B, #FBBF24); }
.bps-fill.low { background: linear-gradient(90deg, #EF4444, #F87171); }

/* ---------- Receipt Mock ---------- */
.bento-receipt-mock {
  margin-top: 16px;
  padding: 14px;
  background: rgba(0,0,0,0.2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
}

.brm-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}

.brm-store {
  font-weight: 700;
  color: white;
}

.brm-date {
  color: var(--text-muted);
}

.brm-divider {
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.15) 0, rgba(255,255,255,0.15) 4px, transparent 4px, transparent 8px);
  margin: 6px 0;
}

.brm-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brm-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-secondary);
}

.brm-total {
  color: white;
  font-weight: 700;
  font-size: 12px;
}

.brm-qr {
  width: 36px;
  height: 36px;
  margin: 8px auto 0;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background:
    linear-gradient(white, white) 25% 25%/6px 6px no-repeat,
    linear-gradient(white, white) 50% 50%/4px 4px no-repeat,
    linear-gradient(white, white) 75% 25%/8px 8px no-repeat,
    linear-gradient(white, white) 25% 75%/5px 5px no-repeat,
    linear-gradient(white, white) 75% 75%/6px 6px no-repeat;
}

/* ---------- Avatar Stack ---------- */
.bento-avatar-stack {
  display: flex;
  gap: -6px;
  margin-top: 16px;
}

.bas-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--bg-card);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-left: -6px;
}

.bas-avatar:first-child {
  margin-left: 0;
}

.bas-avatar:nth-child(1) { background: rgba(37,99,235,0.3); color: #60A5FA; }
.bas-avatar:nth-child(2) { background: rgba(6,182,212,0.3); color: #22D3EE; }
.bas-avatar:nth-child(3) { background: rgba(139,92,246,0.3); color: #A78BFA; }

/* ---------- Device Icons ---------- */
.bento-device-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.bdi-item {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(20,184,166,0.08);
  border: 1px solid rgba(20,184,166,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #2DD4BF;
  transition: all 0.3s;
}

.bdi-item:hover {
  transform: translateY(-2px);
  background: rgba(20,184,166,0.15);
}

/* ---------- Donut Chart ---------- */
.bento-donut-chart {
  width: 100px;
  height: 100px;
  margin: 16px auto 0;
  position: relative;
}

.bdc-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.bdc-ring {
  transition: stroke-dasharray 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.bdc-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bdc-val {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: white;
}

.bdc-lbl {
  font-size: 9px;
  color: var(--text-muted);
}

/* ---------- Sync Pulse ---------- */
.bento-sync-pulse {
  width: 40px;
  height: 40px;
  margin-top: 16px;
  border-radius: 50%;
  background: rgba(14,165,233,0.1);
  border: 1px solid rgba(14,165,233,0.2);
  position: relative;
}

.bento-sync-pulse::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(14,165,233,0.2);
  animation: syncPulse 2s ease-out infinite;
}

.bento-sync-pulse::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #38BDF8;
  animation: syncDot 2s ease-in-out infinite;
}

@keyframes syncPulse {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes syncDot {
  0%, 100% { transform: scale(0.8); }
  50% { transform: scale(1.1); }
}

/* ---------- Offline Indicator ---------- */
.bento-offline-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 12px;
  background: rgba(132,204,22,0.06);
  border: 1px solid rgba(132,204,22,0.12);
  border-radius: 8px;
  font-size: 12px;
  color: #A3E635;
  width: fit-content;
}

.boi-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #A3E635;
  animation: offlineBlink 1.5s ease-in-out infinite;
}

@keyframes offlineBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ---------- Shield Anim ---------- */
.bento-shield-anim {
  width: 48px;
  height: 48px;
  margin-top: 16px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bsa-icon {
  font-size: 22px;
  color: #34D399;
  z-index: 1;
  position: relative;
}

.bsa-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid rgba(52,211,153,0.2);
  animation: shieldSpin 4s linear infinite;
}

@keyframes shieldSpin {
  0% { transform: rotate(0deg); border-style: dashed; }
  100% { transform: rotate(360deg); border-style: dashed; }
}

/* ---------- Export Tags ---------- */
.bento-export-icons {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.bei-tag {
  padding: 4px 10px;
  background: rgba(249,115,22,0.08);
  border: 1px solid rgba(249,115,22,0.15);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #FB923C;
  font-family: monospace;
}

/* ---------- Access Grid ---------- */
.bento-access-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 16px;
}

.bag-item {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s;
}

.bag-item.on {
  background: rgba(217,70,239,0.1);
  border: 1px solid rgba(217,70,239,0.2);
  color: #E879F9;
}

.bag-item.off {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--text-muted);
  opacity: 0.5;
}

/* ---------- Notification Mock ---------- */
.bento-notif-mock {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 8px 12px;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.12);
  border-radius: 8px;
  font-size: 11px;
  color: #F87171;
  animation: notifSlide 3s ease-in-out infinite;
}

.bnm-icon {
  font-size: 14px;
}

@keyframes notifSlide {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(4px); }
}

/* ---------- Search Mock ---------- */
.bento-search-mock {
  margin-top: 16px;
}

.bsm-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
  position: relative;
}

.bsm-cursor {
  width: 1px;
  height: 14px;
  background: #F472B6;
  animation: cursorBlink 1s step-end infinite;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* ---------- History Stack ---------- */
.bento-history-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 16px;
}

.bhs-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 6px;
  font-size: 11px;
}

.bhs-item span:first-child {
  color: var(--text-muted);
}

.bhs-amount {
  font-weight: 600;
  font-family: var(--font-heading);
}

.bhs-amount.green { color: #4ADE80; }
.bhs-amount.red { color: #F87171; }

/* ---------- Dark Toggle ---------- */
.bento-dark-toggle {
  margin-top: 16px;
}

.bdt-track {
  width: 48px;
  height: 26px;
  background: rgba(37,99,235,0.3);
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 100px;
  padding: 3px;
  transition: all 0.3s;
}

.bdt-thumb {
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
  transform: translateX(0);
}

.bento-item:hover .bdt-thumb {
  transform: translateX(22px);
}

/* ---------- Update Mock ---------- */
.bento-update-mock {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.bum-progress {
  flex: 1;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.bum-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6366F1, #818CF8);
  border-radius: 100px;
  animation: bumFill 3s ease-out forwards;
}

@keyframes bumFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

.bum-text {
  font-family: monospace;
  font-size: 11px;
  color: #818CF8;
  white-space: nowrap;
}

/* ---------- Bento Stats ---------- */
.bento-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.bento-stat-item {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s;
}

.bento-stat-item:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -8px rgba(0,0,0,0.4);
}

.bsi-value {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bsi-static {
  -webkit-text-fill-color: transparent;
}

.bsi-label {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 4px;
  margin-bottom: 16px;
}

.bsi-bar {
  width: 100%;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.bsi-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- Pricing Section ---------- */
.pricing-section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.pricing-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  animation: auroraPulse 8s ease-in-out infinite alternate;
}

.pa-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  left: 30%;
}

.pa-2 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  bottom: -150px;
  right: 20%;
  animation-delay: 2s;
}

.pricing-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.pricing-section .container-wide {
  position: relative;
  z-index: 1;
}

/* --- Pricing Toggle --- */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 48px;
}

.pt-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
  cursor: pointer;
  user-select: none;
}

.pt-label[data-active="true"] {
  color: var(--text-primary);
}

.pt-switch {
  position: relative;
  width: 56px;
  height: 30px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
}

.pt-switch:hover {
  border-color: var(--primary);
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.2);
}

.pt-switch:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.pt-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.pt-switch[aria-checked="true"] .pt-thumb {
  transform: translateX(26px);
}

/* --- Pricing Cards Grid --- */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.p-card {
  position: relative;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

.p-card:hover {
  transform: translateY(-6px);
}

.p-card-glow {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
}

.p-card:hover .p-card-glow {
  opacity: 1;
}

.p-card-inner {
  position: relative;
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease;
}

.p-card:hover .p-card-inner {
  border-color: var(--border-hover);
}

/* Popular card */
.p-popular .p-card-inner {
  border-color: var(--primary);
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 40px rgba(37, 99, 235, 0.1), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.p-card-border {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary));
  z-index: -1;
  opacity: 0.5;
  animation: borderGlow 3s ease-in-out infinite alternate;
}

@keyframes borderGlow {
  0% { opacity: 0.3; filter: blur(0); }
  100% { opacity: 0.6; filter: blur(1px); }
}

.p-popular-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.p-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  margin-bottom: 8px;
}

.p-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.5;
}

.p-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.p-currency {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
}

.p-amount {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #fff 40%, rgba(255, 255, 255, 0.6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.p-popular .p-amount {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
}

.p-period {
  font-size: 13px;
  color: var(--text-tertiary);
  margin-left: 4px;
  transition: all 0.3s ease;
}

.p-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
  flex: 1;
}

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

.pf-item i {
  font-size: 15px;
  color: var(--success);
  flex-shrink: 0;
}

.pf-item.disabled {
  color: var(--text-tertiary);
  opacity: 0.5;
}

.pf-item.disabled i {
  color: var(--text-tertiary);
}

.pf-item.highlight {
  color: var(--text-primary);
  font-weight: 500;
}

.pf-item.highlight i {
  color: var(--primary);
}

.p-cta {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* --- Feature Comparison Table --- */
.pricing-comparison {
  margin-top: 80px;
}

.pc-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 32px;
}

.pc-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.pc-header,
.pc-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
}

.pc-header {
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
}

.pc-header .pc-feat,
.pc-header .pc-col {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  padding: 16px 20px;
}

.pc-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease;
}

.pc-row:last-child {
  border-bottom: none;
}

.pc-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.pc-row .pc-feat {
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pc-row .pc-col {
  padding: 14px 20px;
  text-align: center;
}

.pc-col-highlight {
  background: rgba(37, 99, 235, 0.04);
}

.pc-yes {
  color: var(--success);
  font-size: 16px;
}

.pc-no {
  color: rgba(255, 255, 255, 0.15);
  font-size: 16px;
}

.pc-val {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

/* --- Pricing Extras --- */
.pricing-extras {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.pe-section {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.pe-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.pe-header i {
  font-size: 20px;
  color: var(--primary);
}

.pe-header h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.pe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pe-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.2s ease;
}

.pe-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
  transform: translateY(-2px);
}

.pe-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.pe-icon.green { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.pe-icon.blue { background: rgba(37, 99, 235, 0.15); color: var(--primary); }
.pe-icon.violet { background: rgba(139, 92, 246, 0.15); color: var(--accent); }
.pe-icon.amber { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.pe-icon.emerald { background: rgba(16, 185, 129, 0.15); color: #10B981; }
.pe-icon.sky { background: rgba(6, 182, 212, 0.15); color: var(--secondary); }

.pe-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}

.pe-desc {
  font-size: 13px;
  color: var(--text-tertiary);
  line-height: 1.5;
}

.pe-payments {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.pe-pay {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.pe-pay:hover {
  background: rgba(37, 99, 235, 0.08);
  border-color: var(--primary);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.pe-pay i {
  font-size: 18px;
  color: var(--primary);
}

.pe-secure {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-tertiary);
}

.pe-secure i {
  color: var(--success);
}

.pe-guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pe-guar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 14px;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.pe-guar:hover {
  background: rgba(37, 99, 235, 0.06);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-2px);
}

.peg-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
  font-size: 14px;
  flex-shrink: 0;
}

/* --- FAQ Section --- */
.faq-section {
  position: relative;
  padding: 120px 0;
  z-index: 1;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--border-hover);
}

.faq-item.faq-active {
  border-color: rgba(37, 99, 235, 0.3);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.06);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  transition: color 0.2s ease;
}

.faq-q:hover {
  color: var(--primary);
}

.faq-q:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: -2px;
  border-radius: 12px;
}

.faq-q i {
  font-size: 12px;
  color: var(--text-tertiary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-active .faq-q i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1),
              padding 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.faq-a p {
  padding: 0 24px 20px;
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* ---------- CTA Section ---------- */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  z-index: 1;
}

.cta-box {
  position: relative;
  padding: 80px 48px;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(139,92,246,0.05));
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Pages: Features / Pricing / Download / Contact / FAQ ---------- */
.page-hero {
  position: relative;
  padding: 160px 0 80px;
  text-align: center;
  z-index: 1;
}

.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.page-hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- Download Section ---------- */
.download-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.download-card {
  position: relative;
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all var(--transition-base);
}

.download-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.download-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(139,92,246,0.1));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.download-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.download-info p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.download-info .btn {
  display: inline-flex;
}

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-size: 14px;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394A3B8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all var(--transition-base);
}

.contact-info-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(37,99,235,0.15), rgba(139,92,246,0.1));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-info-text p {
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-info-text a {
  color: var(--primary-light);
  transition: color var(--transition-fast);
}

.contact-info-text a:hover {
  color: var(--text);
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item.open {
  border-color: var(--border-hover);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--text);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--primary-light);
}

.faq-question i {
  font-size: 14px;
  color: var(--text-tertiary);
  transition: transform var(--transition-base);
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow), padding var(--transition-slow);
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
}

/* ---------- Legal Pages (Privacy / Terms) ---------- */
.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-content ul li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: disc;
}

.legal-content ul li::marker {
  color: var(--text-tertiary);
}

/* ---------- 404 ---------- */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.error-code {
  font-family: var(--font-heading);
  font-size: clamp(80px, 15vw, 160px);
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.error-text {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ---------- Footer ---------- */
.footer {
  position: relative;
  padding: 80px 0 0;
  z-index: 1;
  border-top: 1px solid var(--border);
}

.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-secondary);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-links h4 {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links ul li a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links ul li a:hover {
  color: var(--text);
}

.footer-links ul li a i {
  font-size: 12px;
  color: var(--text-tertiary);
}

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ---------- Animations (reveal on scroll) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  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; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ---------- Glass Card Utility ---------- */
.glass {
  background: rgba(17,24,39,0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
}

/* ---------- Product Showcase ---------- */
.showcase-section {
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.container-wide {
  max-width: 1500px;
}

.showcase-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
}

.aurora-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -100px;
  animation: auroraFloat 20s ease-in-out infinite;
}

.aurora-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -100px;
  left: -100px;
  animation: auroraFloat 25s ease-in-out infinite reverse;
}

.aurora-3 {
  width: 300px;
  height: 300px;
  background: var(--secondary);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: auroraFloat 18s ease-in-out infinite 5s;
}

@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -20px) scale(1.05); }
  50% { transform: translate(-20px, 30px) scale(0.95); }
  75% { transform: translate(20px, 20px) scale(1.02); }
}

.showcase-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.showcase-title {
  font-size: 48px;
}

/* Showcase Tabs */
.showcase-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 6px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.st-tab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: transparent;
  border: none;
  border-radius: 10px;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  font-family: var(--font-body);
  white-space: nowrap;
}

.st-tab:hover {
  color: var(--text);
  background: rgba(255,255,255,0.05);
}

.st-tab.active {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 4px 12px rgba(37,99,235,0.3);
}

.st-tab i {
  font-size: 12px;
}

/* Showcase Stage */
.showcase-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  min-height: 600px;
  perspective: 1200px;
}

/* Desktop Laptop Mockup */
.showcase-desktop-wrap {
  position: relative;
  flex: 1;
  max-width: 900px;
  z-index: 1;
}

.showcase-laptop {
  position: relative;
  width: 100%;
}

.laptop-screen {
  background: #1a1a2e;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 12px 12px 0 0;
  padding: 8px 8px 0;
  position: relative;
  overflow: hidden;
}

.laptop-camera {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  margin: 0 auto 6px;
}

.laptop-display {
  display: flex;
  background: var(--bg);
  border-radius: 4px 4px 0 0;
  height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.05);
}

.laptop-base {
  background: linear-gradient(180deg, #2a2a3e 0%, #1a1a2e 100%);
  height: 16px;
  border-radius: 0 0 12px 12px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
}

.laptop-notch {
  width: 80px;
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.showcase-desktop-glow {
  position: absolute;
  bottom: -30px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.2) 0%, transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

/* Laptop Sidebar */
.ld-sidebar {
  width: 180px;
  background: rgba(17,24,39,0.95);
  border-right: 1px solid rgba(255,255,255,0.06);
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  overflow-y: auto;
}

.ld-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  color: white;
}

.ld-logo i {
  color: var(--primary-light);
}

.ld-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0 8px;
}

.ld-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s;
}

.ld-nav-item:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}

.ld-nav-item.active {
  color: white;
  background: rgba(37,99,235,0.15);
}

.ld-nav-item i {
  width: 16px;
  text-align: center;
  font-size: 12px;
}

.ld-nav-item.active i {
  color: var(--primary-light);
}

.ld-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
  cursor: pointer;
}

/* Laptop Main Area */
.ld-main {
  flex: 1;
  overflow-y: auto;
  position: relative;
}

.ld-screen {
  display: none;
  padding: 16px 20px;
  height: 100%;
  animation: ldScreenFade 0.4s ease;
}

.ld-screen.active {
  display: flex;
  flex-direction: column;
}

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

.ld-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.ld-page-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
}

.ld-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ld-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ld-user i {
  color: var(--text-muted);
  font-size: 14px;
  cursor: pointer;
}

.ld-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
}

.ld-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
  max-width: 300px;
}

.ld-btn-add {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--primary);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  cursor: pointer;
}

.ld-period-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 8px;
  font-size: 11px;
  color: var(--primary-light);
}

/* Dashboard Screen */
.ld-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.lds-card {
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
}

.lds-card.warn {
  border-color: rgba(239,68,68,0.2);
  background: rgba(239,68,68,0.05);
}

.lds-amount {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
}

.lds-label {
  font-size: 10px;
  color: var(--text-muted);
  margin-top: 2px;
}

.lds-change {
  font-size: 10px;
  font-weight: 600;
  margin-top: 6px;
}

.lds-change.up { color: #4ADE80; }
.lds-change.down { color: #F87171; }
.lds-change.neutral { color: var(--text-muted); }

.ld-dash-body {
  display: flex;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.ld-chart-area {
  flex: 1.5;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.ld-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.ld-chart-badge {
  padding: 2px 8px;
  background: rgba(34,197,94,0.1);
  border-radius: 6px;
  font-size: 10px;
  color: #4ADE80;
}

.ld-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  flex: 1;
  padding-top: 8px;
}

.ld-bar {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--primary) 0%, rgba(37,99,235,0.3) 100%);
  border-radius: 4px 4px 0 0;
  position: relative;
  transition: height 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  min-height: 8px;
}

.ld-bar span {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-muted);
  white-space: nowrap;
}

.ld-recent-tx {
  flex: 1;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.ld-rt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 600;
}

.ld-view-all {
  font-size: 10px;
  color: var(--primary-light);
  text-decoration: none;
}

.ld-rt-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  overflow: hidden;
}

.ld-rt-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}

.ld-rt-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.ld-rt-icon.green { background: rgba(34,197,94,0.15); color: #4ADE80; }
.ld-rt-icon.blue { background: rgba(37,99,235,0.15); color: #60A5FA; }

.ld-rt-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ld-rt-name {
  font-size: 11px;
  font-weight: 500;
}

.ld-rt-time {
  font-size: 9px;
  color: var(--text-muted);
}

.ld-rt-amount {
  font-size: 11px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.ld-rt-amount.green { color: #4ADE80; }

/* Kasir Screen */
.ld-kasir-layout {
  display: flex;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.ld-product-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  align-content: start;
}

.ld-product {
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s;
}

.ld-product:hover {
  border-color: var(--primary);
  background: rgba(37,99,235,0.05);
}

.ld-prod-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-light);
  font-size: 16px;
}

.ld-prod-name {
  font-size: 10px;
  font-weight: 500;
  text-align: center;
}

.ld-prod-price {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-light);
  font-family: var(--font-heading);
}

.ld-cart {
  width: 200px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
}

.ld-cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.ld-cart-count {
  font-size: 10px;
  color: var(--text-muted);
  background: rgba(255,255,255,0.06);
  padding: 2px 8px;
  border-radius: 6px;
}

.ld-cart-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ld-cart-item {
  display: flex;
  justify-content: space-between;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  font-size: 10px;
}

.ld-ci-price {
  font-weight: 600;
  color: var(--primary-light);
}

.ld-cart-total {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-weight: 700;
  font-size: 13px;
}

.ld-cart-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.ld-pay-btn {
  flex: 1;
  padding: 8px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ld-pay-btn.qr {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.ld-pay-btn.cash {
  background: rgba(255,255,255,0.06);
  color: var(--text-secondary);
  border: 1px solid rgba(255,255,255,0.08);
}

/* Table Screen */
.ld-table {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ld-table-head {
  display: flex;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.ld-table-row {
  display: flex;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 11px;
  transition: background 0.2s;
}

.ld-table-row:hover {
  background: rgba(255,255,255,0.02);
}

/* Stok Screen */
.ld-stok-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ld-stok-card {
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}

.ld-stok-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ld-stok-name {
  font-size: 12px;
  font-weight: 600;
}

.ld-stok-badge {
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 9px;
  font-weight: 600;
}

.ld-stok-badge.good { background: rgba(34,197,94,0.15); color: #4ADE80; }
.ld-stok-badge.mid { background: rgba(251,191,36,0.15); color: #FBBF24; }
.ld-stok-badge.low { background: rgba(239,68,68,0.15); color: #F87171; }

.ld-stok-bar {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 8px;
}

.ld-stok-fill {
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease;
}

.ld-stok-detail {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--text-muted);
}

/* Report Screen */
.ld-report-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.ld-report-card {
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}

.ld-rc-label {
  display: block;
  font-size: 10px;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.ld-rc-value {
  display: block;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.ld-rc-change {
  display: block;
  font-size: 10px;
  font-weight: 500;
}

.ld-rc-change.up { color: #4ADE80; }
.ld-rc-change.neutral { color: var(--text-muted); }

/* QRIS Screen */
.ld-qris-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-qris-box {
  text-align: center;
  padding: 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}

.ld-qris-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}

.ld-qris-store {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.ld-qris-amount {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.ld-qris-code {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  padding: 8px;
  background: white;
  border-radius: 8px;
}

.ld-qris-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  height: 100%;
}

.ld-qris-grid > div {
  background: #000;
  border-radius: 1px;
}

.ld-qris-grid > div.f {
  background: transparent;
}

.ld-qris-hint {
  font-size: 11px;
  color: var(--text-muted);
}

/* User Screen */
.ld-user-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ld-user-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}

.ld-uc-avatar {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.ld-uc-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ld-uc-name {
  font-size: 12px;
  font-weight: 600;
}

.ld-uc-role {
  font-size: 10px;
  color: var(--text-muted);
}

.ld-uc-status {
  font-size: 10px;
  color: var(--text-muted);
}

.ld-uc-status.active {
  color: #4ADE80;
}

/* Grafik Screen */
.ld-big-chart {
  flex: 1;
  display: flex;
  gap: 10px;
}

.ld-bc-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  padding: 4px 0;
}

.ld-bc-area {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ld-bc-svg {
  flex: 1;
  width: 100%;
}

.ld-bc-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}

/* Import Screen */
.ld-import-area {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ld-import-box {
  text-align: center;
  padding: 32px 48px;
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 16px;
  transition: all 0.3s;
}

.ld-import-box:hover {
  border-color: var(--primary);
  background: rgba(37,99,235,0.05);
}

.ld-import-icon {
  font-size: 32px;
  color: var(--primary-light);
  margin-bottom: 12px;
}

.ld-import-title {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ld-import-desc {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.ld-import-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: var(--primary);
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  color: white;
  cursor: pointer;
  margin-bottom: 10px;
}

.ld-import-formats {
  display: flex;
  gap: 8px;
  justify-content: center;
  font-size: 10px;
  color: var(--text-muted);
}

.ld-import-formats span {
  padding: 2px 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
}

/* Settings Screen */
.ld-settings {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ld-setting-group {
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
}

.ld-sg-title {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ld-setting-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 11px;
}

.ld-setting-row:last-child {
  border-bottom: none;
}

.ld-sr-value {
  color: var(--text-secondary);
}

.ld-sr-value.connected {
  color: #4ADE80;
}

/* Phone Mockup */
.showcase-phone-wrap {
  position: relative;
  flex-shrink: 0;
  z-index: 2;
}

.showcase-phone {
  position: relative;
}

.sp-frame {
  width: 220px;
  background: #1a1a2e;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6), 0 0 40px -10px rgba(37,99,235,0.2);
}

.sp-notch {
  width: 60px;
  height: 14px;
  background: #1a1a2e;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.sp-screen {
  background: var(--bg);
  border-radius: 22px;
  overflow: hidden;
  height: 440px;
  display: flex;
  flex-direction: column;
}

.sp-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 16px;
  font-size: 10px;
  font-weight: 600;
  flex-shrink: 0;
}

.sp-status-icons {
  display: flex;
  gap: 4px;
  font-size: 9px;
}

.sp-content {
  display: none;
  flex-direction: column;
  flex: 1;
  padding: 0 12px;
  overflow-y: auto;
  animation: ldScreenFade 0.4s ease;
}

.sp-content.active {
  display: flex;
}

.sp-header {
  padding: 8px 0 12px;
}

.sp-greeting {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.sp-shop-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-heading);
}

.sp-card {
  padding: 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.sp-balance {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
}

.sp-bal-label {
  display: block;
  font-size: 9px;
  opacity: 0.8;
}

.sp-bal-amount {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  margin: 4px 0;
}

.sp-bal-change {
  display: block;
  font-size: 9px;
  opacity: 0.8;
}

.sp-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.sp-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  font-size: 9px;
  color: var(--text-secondary);
}

.sp-action i {
  font-size: 14px;
  color: var(--primary-light);
}

.sp-section-title {
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 8px;
  padding-top: 4px;
}

.sp-tx {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 10px;
}

.sp-tx-icon {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  flex-shrink: 0;
}

.sp-tx-icon.green { background: rgba(34,197,94,0.15); color: #4ADE80; }
.sp-tx-icon.blue { background: rgba(37,99,235,0.15); color: #60A5FA; }

.sp-tx-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sp-tx-info span:last-child {
  font-size: 8px;
  color: var(--text-muted);
}

.green { color: #4ADE80; }
.red { color: #F87171; }

/* Phone - Kasir */
.sp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.sp-prod {
  padding: 10px 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  cursor: pointer;
}

.sp-prod i {
  font-size: 16px;
  color: var(--primary-light);
}

.sp-prod span:last-child {
  font-weight: 600;
  color: var(--primary-light);
}

.sp-cart-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  background: var(--primary);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 600;
  color: white;
  margin-top: auto;
}

/* Phone - Stok */
.sp-stok-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 10px;
}

.sp-stok-item > span:first-child {
  flex: 1;
}

.sp-stok-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.sp-stok-bar > div {
  height: 100%;
  border-radius: 100px;
}

/* Phone - Report */
.sp-report-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  margin-bottom: 4px;
  font-size: 10px;
}

.sp-report-val {
  font-family: var(--font-heading);
  font-weight: 700;
}

/* Phone - QRIS */
.sp-qris-visual {
  width: 100px;
  height: 100px;
  margin: 16px auto;
  padding: 12px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #1a1a2e;
}

.sp-qris-hint {
  display: block;
  text-align: center;
  font-size: 10px;
  color: var(--text-muted);
}

/* Phone - Users */
.sp-user-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  margin-bottom: 4px;
}

.sp-user-avatar {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.sp-user-avatar.blue { background: rgba(37,99,235,0.2); color: #60A5FA; }
.sp-user-avatar.cyan { background: rgba(6,182,212,0.2); color: #22D3EE; }
.sp-user-avatar.purple { background: rgba(139,92,246,0.2); color: #A78BFA; }
.sp-user-avatar.green { background: rgba(34,197,94,0.2); color: #4ADE80; }
.sp-user-avatar.orange { background: rgba(249,115,22,0.2); color: #FB923C; }

.sp-user-row div:last-child {
  display: flex;
  flex-direction: column;
}

.sp-user-row span:first-child {
  font-size: 11px;
  font-weight: 600;
}

.sp-user-role {
  font-size: 9px;
  color: var(--text-muted);
}

/* Phone - Mini Chart */
.sp-mini-chart {
  height: 60px;
  margin: 8px 0;
}

.sp-mini-chart svg {
  width: 100%;
  height: 100%;
}

.sp-chart-labels {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: var(--text-muted);
}

/* Phone - Products List */
.sp-prod-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sp-pl-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: rgba(255,255,255,0.03);
  border-radius: 8px;
  font-size: 10px;
}

.sp-pl-item i {
  color: var(--primary-light);
  width: 16px;
  text-align: center;
}

.sp-pl-item span:first-of-type {
  flex: 1;
}

.sp-pl-item span:last-child {
  font-weight: 600;
  color: var(--primary-light);
}

/* Phone - Import */
.sp-import-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  border: 2px dashed rgba(255,255,255,0.12);
  border-radius: 12px;
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
}

.sp-import-box i {
  font-size: 24px;
  color: var(--primary-light);
}

/* Phone - Settings */
.sp-setting-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,255,255,0.03);
  border-radius: 10px;
  margin-bottom: 4px;
  font-size: 10px;
}

.sp-setting-row i:first-child {
  color: var(--primary-light);
  width: 16px;
  text-align: center;
}

.sp-setting-row span {
  flex: 1;
}

.sp-setting-row i:last-child {
  color: var(--text-muted);
  font-size: 8px;
}

/* Phone Bottom Nav */
.sp-bottom-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 12px;
  background: rgba(17,24,39,0.95);
  border-top: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}

.sp-bn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 8px;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.sp-bn i {
  font-size: 14px;
}

.sp-bn.active {
  color: var(--primary-light);
}

.sp-reflection {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 40px;
  background: linear-gradient(180deg, rgba(37,99,235,0.08) 0%, transparent 100%);
  filter: blur(10px);
  border-radius: 50%;
  pointer-events: none;
}

.showcase-phone-glow {
  position: absolute;
  bottom: -20px;
  left: -20px;
  right: -20px;
  height: 40px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.15) 0%, transparent 70%);
  filter: blur(15px);
  pointer-events: none;
}

/* Showcase Floating Cards */
.showcase-floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
}

.sfc-item {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(17,24,39,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  box-shadow: 0 8px 24px -6px rgba(0,0,0,0.5);
  animation: sfcFloat 6s ease-in-out infinite;
}

.sfc-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.sfc-icon.green { background: rgba(34,197,94,0.15); color: #4ADE80; }
.sfc-icon.blue { background: rgba(37,99,235,0.15); color: #60A5FA; }
.sfc-icon.purple { background: rgba(139,92,246,0.15); color: #A78BFA; }
.sfc-icon.amber { background: rgba(245,158,11,0.15); color: #FBBF24; }
.sfc-icon.sky { background: rgba(14,165,233,0.15); color: #38BDF8; }

.sfc-text {
  display: flex;
  flex-direction: column;
  font-size: 10px;
}

.sfc-text span:first-child {
  color: var(--text-muted);
}

.sfc-val {
  font-weight: 600;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.sfc-qris { top: 15%; left: 2%; animation-delay: 0s; }
.sfc-barcode { top: 35%; right: 2%; animation-delay: 1.2s; }
.sfc-printer { bottom: 35%; left: 3%; animation-delay: 2.4s; }
.sfc-stok { bottom: 15%; right: 3%; animation-delay: 0.8s; }
.sfc-cloud { top: 55%; left: 0; animation-delay: 1.8s; }

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

/* Showcase Progress */
.showcase-progress {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.sp-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 100px;
  overflow: hidden;
}

.sp-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 0.3s;
}

/* ---------- Video Demo ---------- */
.showcase-video-section {
  padding: 80px 0;
}

.video-showcase {
  max-width: 900px;
  margin: 0 auto;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}

.vp-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 30%, #172554 70%, #0f172a 100%);
}

.vp-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.3) 100%);
}

.vp-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.vp-play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  transition: all 0.4s;
  position: relative;
  z-index: 1;
}

.video-placeholder:hover .vp-play-icon {
  background: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 40px rgba(37,99,235,0.4);
}

.vp-play-icon i {
  margin-left: 3px;
}

.vp-play-ripple {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  animation: playRipple 2s ease-out infinite;
}

@keyframes playRipple {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2); opacity: 0; }
}

.vp-info {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}

.vp-duration {
  padding: 4px 10px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  border-radius: 6px;
  font-size: 11px;
  color: rgba(255,255,255,0.8);
}

.vp-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
}

/* ---------- Comparison Table ---------- */
.comparison-section {
  padding: 120px 0;
}

.comparison-table {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.ct-header {
  display: flex;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.ct-feature {
  flex: 2;
  font-size: 13px;
  font-weight: 600;
}

.ct-st, .ct-old {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.ct-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  color: white;
}

.ct-row {
  display: flex;
  padding: 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}

.ct-row:last-child {
  border-bottom: none;
}

.ct-row:hover {
  background: rgba(255,255,255,0.02);
}

.ct-row .ct-feature {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.ct-row .ct-feature i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
  color: var(--primary-light);
}

.ct-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  color: #4ADE80;
  font-size: 14px;
}

.ct-cross {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239,68,68,0.12);
  color: #F87171;
  font-size: 14px;
}

.ct-val {
  font-size: 12px;
  font-weight: 600;
  color: #4ADE80;
  font-family: var(--font-heading);
}

.ct-val.old {
  color: #F87171;
}

/* ---------- Trust Section ---------- */
.trust-section {
  padding: 60px 0 100px;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.trust-badge:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(0,0,0,0.4);
}

.tb-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(37,99,235,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary-light);
}

.tb-label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ---------- Premium CTA ---------- */
.premium-cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aurora-cta-1 {
  width: 500px;
  height: 500px;
  background: var(--primary);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.08;
}

.aurora-cta-2 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  bottom: -200px;
  right: -100px;
  opacity: 0.06;
}

.premium-cta {
  position: relative;
  text-align: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(17,24,39,0.9) 0%, rgba(37,99,235,0.08) 50%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 32px;
  overflow: hidden;
}

.pcta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.pcta-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0;
}

.pcta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.pcta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px -8px rgba(139,92,246,0.4);
}

.pcta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.pcta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.pcta-trust i {
  color: #4ADE80;
  font-size: 12px;
}

/* ---------- Why SolusiToko ---------- */
.why-section {
  position: relative;
  padding: 140px 0;
  overflow: hidden;
}

.why-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.why-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.why-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  opacity: 0.12;
}

.why-a1 { width: 700px; height: 700px; background: var(--primary); top: -200px; right: -150px; animation: auroraFloat 22s ease-in-out infinite; }
.why-a2 { width: 500px; height: 500px; background: var(--accent); bottom: -150px; left: -100px; animation: auroraFloat 28s ease-in-out infinite reverse; }

.why-glow-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.why-g1 { width: 300px; height: 300px; background: rgba(37,99,235,0.08); top: 30%; left: 10%; }
.why-g2 { width: 250px; height: 250px; background: rgba(139,92,246,0.06); bottom: 20%; right: 15%; }

/* ---------- Timeline ---------- */
.why-timeline {
  position: relative;
  max-width: 700px;
  margin: 80px auto 100px;
  padding-left: 40px;
}

.wt-line {
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

.wt-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transition: height 0.1s linear;
  box-shadow: 0 0 12px rgba(37,99,235,0.4);
}

.wt-step {
  position: relative;
  padding: 0 0 48px 36px;
  opacity: 0.3;
  transition: opacity 0.5s;
}

.wt-step.active {
  opacity: 1;
}

.wt-step:last-child {
  padding-bottom: 0;
}

.wt-dot {
  position: absolute;
  left: -30px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: all 0.4s;
}

.wt-step.active .wt-dot {
  border-color: var(--primary);
}

.wt-dot-inner {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: all 0.4s;
}

.wt-step.active .wt-dot-inner {
  background: var(--primary);
  box-shadow: 0 0 8px rgba(37,99,235,0.6);
}

.wt-dot-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,99,235,0.2);
  opacity: 0;
  transition: opacity 0.4s;
}

.wt-step.active .wt-dot-glow {
  opacity: 1;
  animation: timelinePulse 2s ease-out infinite;
}

@keyframes timelinePulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.8); opacity: 0; }
}

.wt-num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.wt-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.wt-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Benefits Bento ---------- */
.why-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 0 0 100px;
}

.wb-item {
  position: relative;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: default;
}

.wb-item::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 40%, rgba(37,99,235,0.3) 50%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.wb-item:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(37,99,235,0.2);
  box-shadow: 0 20px 40px -12px rgba(0,0,0,0.5), 0 0 30px -8px rgba(37,99,235,0.15);
}

.wb-item:hover::after {
  opacity: 1;
}

.wb-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.wb-item:hover .wb-glow {
  opacity: 1;
}

.wb-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 14px;
  transition: transform 0.4s;
}

.wb-item:hover .wb-icon-wrap {
  transform: scale(1.1) rotate(-3deg);
}

.wb-blue { background: rgba(37,99,235,0.12); border: 1px solid rgba(37,99,235,0.2); color: #60A5FA; }
.wb-green { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.2); color: #4ADE80; }
.wb-sky { background: rgba(14,165,233,0.12); border: 1px solid rgba(14,165,233,0.2); color: #38BDF8; }
.wb-teal { background: rgba(20,184,166,0.12); border: 1px solid rgba(20,184,166,0.2); color: #2DD4BF; }
.wb-indigo { background: rgba(99,102,241,0.12); border: 1px solid rgba(99,102,241,0.2); color: #818CF8; }
.wb-violet { background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.2); color: #A78BFA; }
.wb-purple { background: rgba(168,85,247,0.12); border: 1px solid rgba(168,85,247,0.2); color: #C084FC; }
.wb-cyan { background: rgba(6,182,212,0.12); border: 1px solid rgba(6,182,212,0.2); color: #22D3EE; }
.wb-amber { background: rgba(245,158,11,0.12); border: 1px solid rgba(245,158,11,0.2); color: #FBBF24; }
.wb-rose { background: rgba(244,63,94,0.12); border: 1px solid rgba(244,63,94,0.2); color: #FB7185; }
.wb-emerald { background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.2); color: #34D399; }
.wb-slate { background: rgba(148,163,184,0.12); border: 1px solid rgba(148,163,184,0.2); color: #94A3B8; }

.wb-title {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.wb-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---------- Growth Dashboard ---------- */
.why-growth {
  margin-bottom: 100px;
}

.wg-header {
  text-align: center;
  margin-bottom: 40px;
}

.wg-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 800;
  margin-top: 12px;
}

.wg-dashboard {
  display: flex;
  gap: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  overflow: hidden;
}

.wg-chart-main {
  flex: 2;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 20px;
}

.wgcm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
}

.wgcm-badge {
  padding: 3px 10px;
  background: rgba(34,197,94,0.1);
  border-radius: 6px;
  font-size: 11px;
  color: #4ADE80;
  font-weight: 600;
}

.wgcm-chart {
  height: 160px;
}

.wgcm-svg {
  width: 100%;
  height: 100%;
}

.wgcm-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.wgcm-dot {
  opacity: 0;
}

.wgcm-xaxis {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--text-muted);
  margin-top: 8px;
}

.wg-stats {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.wg-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.wg-stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.wg-stat-icon.blue { background: rgba(37,99,235,0.12); color: #60A5FA; }
.wg-stat-icon.green { background: rgba(34,197,94,0.12); color: #4ADE80; }
.wg-stat-icon.violet { background: rgba(139,92,246,0.12); color: #A78BFA; }
.wg-stat-icon.amber { background: rgba(245,158,11,0.12); color: #FBBF24; }

.wg-stat-info {
  flex: 1;
}

.wg-stat-val {
  display: block;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
}

.wg-stat-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
}

.wg-stat-bar {
  width: 60px;
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 100px;
  overflow: hidden;
}

.wg-stat-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 100px;
  transition: width 1.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ---------- Why Comparison ---------- */
.why-comparison {
  margin-bottom: 100px;
}

.why-comparison .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.wc-table {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
}

.wc-header {
  display: flex;
  padding: 18px 24px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--border);
}

.wc-feat {
  flex: 2;
  font-size: 13px;
  font-weight: 600;
}

.wc-st, .wc-old, .wc-other {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.wc-logo {
  display: inline-flex;
  padding: 4px 12px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  color: white;
}

.wc-row {
  display: flex;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s;
}

.wc-row:last-child { border-bottom: none; }

.wc-row:hover {
  background: rgba(255,255,255,0.02);
}

.wc-row .wc-feat {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.wc-row .wc-feat i {
  width: 20px;
  text-align: center;
  margin-right: 8px;
  color: var(--primary-light);
}

.wc-check {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  color: #4ADE80;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wc-cross {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(239,68,68,0.12);
  color: #F87171;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wc-partial {
  display: inline-flex;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(251,191,36,0.12);
  color: #FBBF24;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.wc-val {
  font-size: 12px;
  font-weight: 600;
  color: #4ADE80;
  font-family: var(--font-heading);
}

.wc-val-muted { color: var(--text-muted); }
.wc-val-warn { color: #FBBF24; }

/* ---------- Success Metrics ---------- */
.why-metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 100px;
}

.wm-item {
  text-align: center;
  padding: 32px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: all 0.4s;
}

.wm-item:hover {
  border-color: rgba(37,99,235,0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -6px rgba(0,0,0,0.4), 0 0 24px -8px rgba(37,99,235,0.15);
}

.wm-value {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.wm-label {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.wm-sublabel {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---------- Interactive Flow ---------- */
.why-flow {
  margin-bottom: 80px;
}

.why-flow .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.wf-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 20px;
}

.wf-line {
  position: absolute;
  top: 28px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: rgba(255,255,255,0.08);
}

.wf-line-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.3s;
  box-shadow: 0 0 8px rgba(37,99,235,0.4);
}

.wf-glow-dot {
  position: absolute;
  top: 50%;
  left: 0%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 16px rgba(37,99,235,0.6);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: left 0.3s, opacity 0.3s;
}

.wf-node {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
  opacity: 0.4;
  transition: opacity 0.4s;
}

.wf-node.active {
  opacity: 1;
}

.wf-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--bg-card);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-secondary);
  transition: all 0.4s;
}

.wf-node.active .wf-icon {
  border-color: var(--primary);
  color: var(--primary-light);
  background: rgba(37,99,235,0.1);
  box-shadow: 0 0 20px rgba(37,99,235,0.2);
}

.wf-final.active .wf-icon {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border-color: transparent;
  box-shadow: 0 0 30px rgba(37,99,235,0.3);
}

.wf-label {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  text-align: center;
}

/* ---------- Trust Marquee ---------- */
.why-trust-marquee {
  margin-bottom: 80px;
}

.wtm-label {
  text-align: center;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.wtm-wrapper {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.wtm-track {
  display: flex;
  gap: 16px;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}

.wtm-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.wtm-item i {
  color: var(--primary-light);
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---------- Why CTA ---------- */
.why-cta {
  position: relative;
  text-align: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, rgba(17,24,39,0.9) 0%, rgba(37,99,235,0.08) 50%, rgba(139,92,246,0.06) 100%);
  border: 1px solid rgba(37,99,235,0.15);
  border-radius: 32px;
  overflow: hidden;
}

.wcta-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37,99,235,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.wcta-title {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0;
  position: relative;
}

.wcta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 36px;
  line-height: 1.7;
  position: relative;
}

.wcta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .bento-grid { gap: 16px; }
  .bento-item { padding: 24px; }
  .bento-title-lg { font-size: 22px; }
  .bento-stats { gap: 16px; }
}

@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; grid-row: span 1; }
  .bento-md { grid-column: span 1; }
  .bento-stats { grid-template-columns: repeat(2, 1fr); }
  .bento-dash-row { flex-direction: column; }
  .pricing-grid-new { grid-template-columns: repeat(2, 1fr); max-width: 700px; margin: 0 auto; }
  .p-card:last-child { grid-column: 1 / -1; max-width: 400px; margin: 0 auto; }
  .faq-list { max-width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { gap: 40px; }
  .mockup-desktop { width: 380px; }
  .hero-right { min-height: 460px; }
  .hero-mockup-stack { height: 460px; }
  .hero-stats { gap: 16px; }
  .showcase-stage { flex-direction: column; align-items: center; min-height: auto; }
  .showcase-phone-wrap { order: -1; }
  .showcase-desktop-wrap { max-width: 700px; }
  .showcase-floating-cards { display: none; }
  .ld-sidebar { width: 140px; }
  .laptop-display { height: 360px; }
  .showcase-title { font-size: 38px; }
  .pcta-title { font-size: 34px; }
  .premium-cta { padding: 48px 32px; }
  .ct-header, .ct-row { padding: 14px 16px; }
  .ct-row .ct-feature { font-size: 12px; }
}
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-grid { gap: 40px; }
  .mockup-desktop { width: 380px; }
  .hero-right { min-height: 460px; }
  .hero-mockup-stack { height: 460px; }
  .hero-stats { gap: 16px; }
}

@media (max-width: 768px) {
  .navbar-menu { display: none; }
  .btn-nav { display: none; }
  .navbar-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; }
  .hero-left { text-align: center; padding: 20px 0; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; text-align: center; }
  .hero-stat { text-align: center; }

  .hero-right { min-height: 380px; margin-top: 20px; }
  .hero-mockup-stack { height: 380px; }
  .mockup-desktop { width: 320px; right: auto; left: 50%; transform: translateX(-50%); }
  .mockup-mobile { width: 160px; left: calc(50% - 130px); }
  .floating-card { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-lg { grid-column: span 1; }
  .bento-md { grid-column: span 1; }
  .bento-stats { grid-template-columns: repeat(2, 1fr); }
  .bento-section { padding: 80px 0; }
  .pricing-grid-new { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .p-card:last-child { max-width: none; }
  .pe-grid { grid-template-columns: repeat(2, 1fr); }
  .pe-guarantee-grid { grid-template-columns: repeat(2, 1fr); }
  .pc-header, .pc-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
  .faq-q { padding: 16px 20px; font-size: 14px; }
  .download-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 80px 0; }
  .cta-box { padding: 48px 24px; }
  .scroll-indicator { display: none; }
  .showcase-tabs { gap: 4px; padding: 4px; }
  .st-tab { padding: 8px 10px; font-size: 11px; }
  .st-tab span { display: none; }
  .ld-sidebar { display: none; }
  .laptop-display { height: 320px; }
  .ld-dash-stats { grid-template-columns: repeat(2, 1fr); }
  .ld-dash-body { flex-direction: column; }
  .ld-kasir-layout { flex-direction: column; }
  .ld-cart { width: 100%; }
  .showcase-title { font-size: 32px; }
  .pcta-title { font-size: 28px; }
  .premium-cta { padding: 40px 20px; border-radius: 20px; }
  .pcta-actions { flex-direction: column; align-items: center; }
  .pcta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .comparison-table { margin: 0 -8px; border-radius: 12px; }
  .ct-header .ct-old { display: none; }
  .ct-row .ct-old { display: none; }
  .ct-header, .ct-row { padding: 12px 14px; }
  .trust-grid { gap: 12px; }
  .trust-badge { padding: 10px 14px; }
  .tb-label { font-size: 12px; }
  .why-benefits { grid-template-columns: repeat(3, 1fr); }
  .wg-dashboard { flex-direction: column; }
  .why-metrics { grid-template-columns: repeat(3, 1fr); }
  .wf-track { flex-wrap: wrap; gap: 16px; justify-content: center; }
  .wf-line { display: none; }
  .wf-node { flex: 0 0 calc(33% - 10px); }
  .wc-other { display: none; }
  .wc-row .wc-other { display: none; }
  .wc-header .wc-other { display: none; }
  .wcta-title { font-size: 34px; }
  .why-cta { padding: 48px 24px; }
  .wg-title { font-size: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .download-card { flex-direction: column; text-align: center; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .hero-right { min-height: 320px; }
  .hero-mockup-stack { height: 320px; }
  .mockup-desktop { width: 280px; }
  .mockup-mobile { width: 140px; left: calc(50% - 110px); }
  .showcase-tabs { display: none; }
  .sp-frame { width: 180px; }
  .sp-screen { height: 360px; }
  .laptop-display { height: 260px; }
  .ld-dash-stats { grid-template-columns: 1fr; }
  .ld-stok-grid { grid-template-columns: 1fr; }
  .ld-report-cards { grid-template-columns: 1fr; }
  .ld-product-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-title { font-size: 28px; }
  .pcta-title { font-size: 24px; }
  .pcta-subtitle { font-size: 14px; }
  .video-placeholder { border-radius: 12px; }
  .vp-play-icon { width: 56px; height: 56px; font-size: 20px; }
  .vp-play-ripple { width: 56px; height: 56px; }
  .ct-row .ct-feature i { display: none; }
  .why-benefits { grid-template-columns: repeat(2, 1fr); }
  .why-metrics { grid-template-columns: repeat(2, 1fr); }
  .wm-value { font-size: 28px; }
  .why-timeline { padding-left: 28px; }
  .wt-label { font-size: 15px; }
  .wcta-title { font-size: 28px; }
  .wcta-actions { flex-direction: column; align-items: center; }
  .wcta-actions .btn { width: 100%; max-width: 280px; justify-content: center; }
  .wf-node { flex: 0 0 calc(50% - 10px); }
  .p-amount { font-size: 40px; }
  .p-card-inner { padding: 32px 24px; }
  .pc-header, .pc-row { grid-template-columns: 1.5fr 1fr 1fr 1fr; font-size: 12px; }
  .pe-grid { grid-template-columns: 1fr; }
  .pe-guarantee-grid { grid-template-columns: 1fr; }
  .pe-payments { gap: 8px; }
  .pe-pay { padding: 10px 14px; font-size: 13px; }
  .faq-q { padding: 14px 16px; font-size: 13px; }
  .faq-a p { padding: 0 16px 16px; font-size: 13px; }
}
