/* ===================================================
   MenuQR.VIP — Landing Page CSS
   Be Vietnam Pro · Dark Premium Theme
   =================================================== */

/* ---------- CSS VARIABLES ---------- */
:root {
  --primary: #f97316;
  --primary-dark: #ea6c0a;
  --primary-light: #fdba74;
  --accent: #8b5cf6;
  --success: #22c55e;
  --danger: #ef4444;

  --bg: #0a0a0f;
  --bg-2: #111118;
  --bg-3: #16161f;
  --bg-card: #1a1a26;
  --bg-card-2: #1f1f2e;

  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(249,115,22,0.4);

  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(249,115,22,0.15);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.3);

  --transition: 0.25s ease;
  --font: 'Be Vietnam Pro', system-ui, sans-serif;
}

/* ---------- LIGHT THEME OVERRIDES ---------- */
.light-theme {
  --bg: #f8fafc;
  --bg-2: #f1f5f9;
  --bg-3: #e2e8f0;
  --bg-card: #ffffff;
  --bg-card-2: #f8fafc;

  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(249, 115, 22, 0.5);

  --text: #0f172a;
  --text-muted: #334155;
  --text-dim: #64748b;

  --shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  --shadow-glow: 0 10px 40px rgba(249, 115, 22, 0.08);
  --shadow-card: 0 4px 12px rgba(15, 23, 42, 0.03);
}

/* Light Theme Color Overrides cho các Badge/Tag để tăng độ tương phản */
.light-theme .feature-tag--blue { color: #1d4ed8; border-color: rgba(59,130,246,0.4); }
.light-theme .feature-tag--green { color: #15803d; border-color: rgba(34,197,94,0.4); }
.light-theme .feature-tag--orange { color: #c2410c; border-color: rgba(249,115,22,0.4); }
.light-theme .feature-tag--purple { color: #6d28d9; border-color: rgba(139,92,246,0.4); }
.light-theme .feature-tag--red { color: #b91c1c; border-color: rgba(239,68,68,0.4); }

.light-theme .table-item--empty { color: #15803d; border-color: rgba(34,197,94,0.3); }
.light-theme .table-item--occupied { color: #c2410c; border-color: rgba(249,115,22,0.3); }
.light-theme .table-item--pending { color: #b91c1c; border-color: rgba(239,68,68,0.3); }
.light-theme .table-item--cleaning { color: #6d28d9; border-color: rgba(139,92,246,0.3); }

.light-theme .sound-indicator { color: #15803d; border-color: rgba(34,197,94,0.3); }

/* Smooth Transitions for Theme Switch */
body, header, .nav__link, .btn, .hero__stats, .value-card, .feature-block, 
.qr-mockup, .qr-item, .sync-node, .role-card, .table-map, .table-item, 
.perm-card, .notif-card, .step, .compare-table, .compare-table__header, 
.compare-col, .compare-row, .testimonial-card, .faq-item, .register-form, 
.form-group input, .footer, .theme-toggle, .mockup__pos, .mockup__pos-item {
  transition: background 0.3s ease, background-color 0.3s ease, color 0.3s ease, 
              border-color 0.3s ease, box-shadow 0.3s ease;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
input, button, textarea { font-family: var(--font); }

/* ---------- UTILITIES ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-primary { color: var(--primary); }
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font);
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  color: #000;
  box-shadow: 0 4px 20px rgba(249,115,22,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,115,22,0.5);
}
.btn--outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text-muted);
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary); }
.btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover { background: rgba(255,255,255,0.1); }
.btn--sm { padding: 8px 20px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 17px; }
.btn--xl { padding: 18px 48px; font-size: 18px; }

/* ---------- HEADER ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 800;
}
.logo__icon { font-size: 26px; }
.logo__text strong { color: var(--primary); }
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 16px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* ---------- THEME TOGGLE BUTTON ---------- */
.theme-toggle {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin: 0 8px;
  padding: 0;
  outline: none;
  flex-shrink: 0;
}
.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary);
  transform: scale(1.05);
}
.theme-toggle__icon {
  font-size: 16px;
  position: absolute;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  line-height: 1;
}

/* Default state: Dark Mode -> Show Sun ☀️ (click to switch to light) */
.theme-toggle__icon--light {
  transform: translateY(0);
  opacity: 1;
}
.theme-toggle__icon--dark {
  transform: translateY(-40px);
  opacity: 0;
}

/* Light Mode state -> Show Moon 🌙 (click to switch to dark) */
.light-theme .theme-toggle__icon--light {
  transform: translateY(40px);
  opacity: 0;
}
.light-theme .theme-toggle__icon--dark {
  transform: translateY(0);
  opacity: 1;
}

/* Light Theme tweaks */
.light-theme .theme-toggle {
  background: rgba(0, 0, 0, 0.04);
}
.light-theme .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero__bg-grid {
  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;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: pulse-glow 4s ease-in-out infinite;
}
.hero__glow--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(249,115,22,0.15), transparent 70%);
  top: -200px; right: -200px;
}
.hero__glow--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.1), transparent 70%);
  bottom: 0; left: -100px;
  animation-delay: -2s;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}
.hero__inner { position: relative; text-align: center; z-index: 1; }
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(249,115,22,0.1);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  margin-bottom: 32px;
}
.pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.6);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__subtitle strong { color: var(--text); }
.hero__cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  max-width: 850px;
  margin: 0 auto 60px;
  box-shadow: var(--shadow-card);
}
.stat {
  text-align: center;
  padding: 0 16px;
  transition: transform var(--transition);
}
.stat:hover {
  transform: translateY(-3px);
}
.stat:not(:last-child) {
  border-right: 1px solid var(--border);
}
.stat__number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 6px;
  transition: text-shadow var(--transition);
}
.stat:hover .stat__number {
  text-shadow: 0 0 15px rgba(249, 115, 22, 0.4);
}
.stat__label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.hero__mockup {
  display: flex;
  gap: 28px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}
.mockup__phone, .mockup__kds, .mockup__pos {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  width: 300px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.mockup__phone:hover, .mockup__kds:hover, .mockup__pos:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-glow);
}

/* 1. Phone Specific Styling */
.mockup__screen {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}
.mockup__status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  padding: 0 4px;
}
.mockup__store-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.mockup__store-logo {
  font-size: 24px;
  background: rgba(249, 115, 22, 0.1);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(249, 115, 22, 0.2);
}
.mockup__store-info {
  text-align: left;
}
.mockup__store-info h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.mockup__store-status {
  font-size: 10px;
  color: var(--text-muted);
}
.mockup__search {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-size: 11px;
  color: var(--text-dim);
  text-align: left;
}
.mockup__categories {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.category-tag {
  font-size: 10px;
  padding: 4px 10px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  color: var(--text-muted);
  white-space: nowrap;
  font-weight: 600;
}
.category-tag--active {
  background: rgba(249, 115, 22, 0.15);
  color: var(--primary-light);
  border-color: rgba(249, 115, 22, 0.3);
}
.mockup__menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mockup__menu-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}
.mockup__menu-card:hover {
  background: var(--bg-card-2);
  border-color: var(--border-hover);
}
.mockup__menu-card.selected {
  border-color: var(--primary);
  background: rgba(249, 115, 22, 0.05);
}
.menu-card__icon {
  font-size: 22px;
  flex-shrink: 0;
}
.menu-card__detail {
  flex-grow: 1;
  text-align: left;
}
.menu-card__detail h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}
.menu-card__detail p {
  font-size: 10px;
  color: var(--text-dim);
  margin-bottom: 2px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 140px;
}
.menu-card__price {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
}
.menu-card__add-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.mockup__menu-card.selected .menu-card__add-btn {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}
.mockup__btn {
  margin-top: auto;
  background: linear-gradient(135deg, var(--primary), #f59e0b);
  color: #000;
  font-weight: 700;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  width: 100%;
}
.mockup__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

/* 2. Kitchen Display System (KDS) Styling */
.mockup__kds {
  padding: 16px;
}
.mockup__kds-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.kds-header__title {
  font-weight: 700;
  font-size: 14px;
}
.kds-header__badge {
  font-size: 10px;
  padding: 2px 8px;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #86efac;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.mockup__kds-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup__kds-order {
  padding: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all var(--transition);
}
.kds-order__meta {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
}
.kds-order__table {
  color: var(--text);
}
.kds-order__time {
  color: var(--text-dim);
}
.kds-order__items {
  font-size: 12px;
  text-align: left;
  border-top: 1px dashed var(--border);
  border-bottom: 1px dashed var(--border);
  padding: 6px 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.kds-order__item {
  color: var(--text-muted);
}
.kds-order__actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.kds-order__status-label {
  font-size: 10px;
  font-weight: 700;
}
.kds-order__btn {
  font-size: 10px;
  padding: 4px 10px;
  background: var(--primary);
  color: #000;
  border: none;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
}
.kds-order__btn--complete {
  background: var(--success);
}
.kds-order--new {
  border-left: 3px solid #ef4444;
  background: rgba(239, 68, 68, 0.05);
}
.kds-order--new .kds-order__status-label {
  color: #fca5a5;
}
.kds-order--preparing {
  border-left: 3px solid var(--primary);
  background: rgba(249, 115, 22, 0.05);
}
.kds-order--preparing .kds-order__status-label {
  color: var(--primary-light);
}
.kds-order--ready {
  border-left: 3px solid var(--success);
  background: rgba(34, 197, 94, 0.05);
}
.kds-order--ready .kds-order__status-label {
  color: #86efac;
}
@keyframes blink-border {
  0%, 100% { border-color: rgba(239,68,68,0.3); }
  50% { border-color: rgba(239,68,68,0.8); }
}

/* 3. POS Cashier system styling */
.mockup__pos {
  padding: 16px;
}
.mockup__pos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 12px;
}
.pos-header__title {
  font-weight: 700;
  font-size: 14px;
}
.pos-header__total {
  font-size: 11px;
  font-weight: 700;
}
.mockup__pos-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mockup__pos-item {
  padding: 12px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: all var(--transition);
}
.pos-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pos-item__title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text);
}
.pos-item__badge {
  font-size: 9px;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  white-space: nowrap;
  flex-shrink: 0;
}
.pos-item__badge--pending {
  background: rgba(249, 115, 22, 0.15);
  color: var(--primary-light);
  border: 1px solid rgba(249, 115, 22, 0.25);
}
.pos-item__badge--paid {
  background: rgba(34, 197, 94, 0.15);
  color: #86efac;
  border: 1px solid rgba(34, 197, 94, 0.25);
}
.pos-item__details {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-dim);
  border-top: 1px dashed var(--border);
  padding-top: 6px;
}
.pos-item__details span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
  text-align: left;
}
.pos-item__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
}
.pos-item__amount {
  font-size: 13px;
  font-weight: 800;
  color: var(--primary);
}
.pos-item__method {
  color: var(--text-dim);
}
.pos-item--pending {
  border-left: 3px solid var(--primary);
  background: rgba(249, 115, 22, 0.03);
}
.pos-item--paid {
  border-left: 3px solid var(--success);
}

/* ---------- VALUE PROP ---------- */
.value-prop {
  padding: 100px 0;
  background: var(--bg-2);
}
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}
.value-card--featured {
  border-color: rgba(249,115,22,0.3);
  background: linear-gradient(135deg, rgba(249,115,22,0.06), var(--bg-card));
}
.value-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: var(--primary);
  color: #000;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}
.value-card__icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- FEATURES ---------- */
.features { padding: 100px 0; }
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
}
.feature-block--reverse .feature-block__visual { order: 2; }
.feature-block--reverse .feature-block__content { order: 1; }
.feature-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.feature-tag--blue { background: rgba(59,130,246,0.15); color: #93c5fd; border: 1px solid rgba(59,130,246,0.25); }
.feature-tag--green { background: rgba(34,197,94,0.15); color: #86efac; border: 1px solid rgba(34,197,94,0.25); }
.feature-tag--orange { background: rgba(249,115,22,0.15); color: var(--primary-light); border: 1px solid rgba(249,115,22,0.25); }
.feature-tag--purple { background: rgba(139,92,246,0.15); color: #c4b5fd; border: 1px solid rgba(139,92,246,0.25); }
.feature-tag--red { background: rgba(239,68,68,0.15); color: #fca5a5; border: 1px solid rgba(239,68,68,0.25); }
.feature-block__content h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.feature-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
}
.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}
.feature-list li strong { color: var(--text); }

/* QR Mockup */
.qr-mockup {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 24px;
  max-width: 300px;
  margin: auto;
  box-shadow: var(--shadow);
}
.qr-mockup__header {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.qr-mockup__logo { font-size: 18px; font-weight: 700; }
.qr-mockup__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
}
.qr-mockup__tabs span {
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-3);
  color: var(--text-muted);
}
.qr-mockup__tabs span.active {
  background: rgba(249,115,22,0.2);
  color: var(--primary);
}
.qr-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bg-3);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.qr-item__img { font-size: 24px; }
.qr-item__info { flex: 1; }
.qr-item__info strong { display: block; font-size: 14px; font-weight: 600; }
.qr-item__info span { font-size: 13px; color: var(--primary); font-weight: 700; }
.qr-item__btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--primary);
  color: #000;
  font-size: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.qr-mockup__cart {
  margin-top: 16px;
  padding: 12px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.25);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-light);
  text-align: center;
}

/* Sync Diagram */
.sync-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.sync-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}
.sync-node span { font-size: 32px; }
.sync-node strong { font-size: 15px; font-weight: 700; }
.sync-node small { font-size: 12px; color: var(--text-muted); }
.sync-node--customer {
  border-color: rgba(59,130,246,0.4);
  background: rgba(59,130,246,0.06);
}
.sync-arrows { font-size: 18px; color: var(--primary); font-weight: 700; }
.sync-center {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.sync-node--kitchen { border-color: rgba(249,115,22,0.4); background: rgba(249,115,22,0.06); }
.sync-node--cashier { border-color: rgba(34,197,94,0.4); background: rgba(34,197,94,0.06); }
.sync-node--waiter { border-color: rgba(139,92,246,0.4); background: rgba(139,92,246,0.06); }
.role-cards { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.role-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.role-card__icon { font-size: 28px; flex-shrink: 0; }
.role-card__info strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.role-card__info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.role-card--kitchen { border-left: 3px solid var(--primary); }
.role-card--cashier { border-left: 3px solid var(--success); }
.role-card--waiter { border-left: 3px solid var(--accent); }

/* Table Map */
.table-map {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.table-map__title { font-weight: 700; font-size: 15px; margin-bottom: 20px; }
.table-map__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.table-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid;
  transition: var(--transition);
}
.table-item span { font-size: 10px; font-weight: 500; }
.table-item--empty { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2); color: #86efac; }
.table-item--occupied { background: rgba(249,115,22,0.08); border-color: rgba(249,115,22,0.2); color: var(--primary-light); }
.table-item--pending {
  background: rgba(239,68,68,0.1);
  border-color: rgba(239,68,68,0.5);
  color: #fca5a5;
  animation: blink-border 1.5s ease-in-out infinite;
}
.table-item--cleaning { background: rgba(139,92,246,0.08); border-color: rgba(139,92,246,0.2); color: #c4b5fd; }

/* Permission Visual */
.permission-visual { display: flex; flex-direction: column; gap: 12px; }
.perm-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.perm-card span { font-size: 28px; }
.perm-card strong { font-size: 16px; font-weight: 700; }
.perm-card small { font-size: 12px; color: var(--text-muted); }
.perm-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.perm-tags span {
  padding: 4px 10px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-muted);
}
.perm-card--owner { border-color: rgba(249,115,22,0.3); }
.perm-card--manager { border-color: rgba(34,197,94,0.2); }
.perm-card--staff { border-color: rgba(139,92,246,0.2); }

/* Notification Visual */
.notif-visual { display: flex; flex-direction: column; gap: 12px; }
.notif-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.notif-card strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.notif-card p { font-size: 12px; color: var(--text-muted); }
.notif-card--urgent {
  border-color: rgba(239,68,68,0.4);
  background: rgba(239,68,68,0.06);
  animation: blink-border 1.5s ease-in-out infinite;
}
.notif-icon { font-size: 24px; flex-shrink: 0; }
.notif-badge {
  padding: 4px 10px;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  margin-left: auto;
}
.sound-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: #86efac;
  font-weight: 600;
}

/* ---------- HOW IT WORKS ---------- */
.how-it-works {
  padding: 100px 0;
  background: var(--bg-2);
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.step {
  text-align: center;
  max-width: 220px;
  padding: 32px 20px;
}
.step__number {
  font-size: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.step__icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.step__connector {
  font-size: 24px;
  color: var(--text-dim);
  padding-top: 60px;
  flex-shrink: 0;
}

/* ---------- FREE COMMIT ---------- */
.free-commit {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(249,115,22,0.05) 0%, var(--bg) 50%, rgba(139,92,246,0.05) 100%);
}
.free-commit__inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.free-commit__badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: var(--radius-pill);
  color: var(--success);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.free-commit__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}
.free-commit__desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
/* Pricing Card */
.pricing-card {
  background: rgba(26, 26, 38, 0.45);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px;
  max-width: 800px;
  margin: 0 auto 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow), 0 20px 50px rgba(0, 0, 0, 0.3);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.pricing-card:hover {
  border-color: rgba(249, 115, 22, 0.35);
  box-shadow: var(--shadow), var(--shadow-glow);
  transform: translateY(-2px);
}
.pricing-card__badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(249, 115, 22, 0.15);
  border: 1px solid rgba(249, 115, 22, 0.3);
  border-radius: var(--radius-pill);
  color: var(--primary-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
.pricing-card__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.pricing-card__price {
  font-size: 64px;
  font-weight: 900;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.pricing-card__period {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}
.pricing-card__features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: left;
  margin-top: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.pricing-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.pricing-feature:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}
.pricing-feature__icon {
  font-size: 20px;
  line-height: 1.2;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}
.pricing-feature__info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.pricing-feature__info span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  padding: 100px 0;
  background: var(--bg-2);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}
.testimonial-card--featured {
  border-color: rgba(249,115,22,0.3);
  background: linear-gradient(135deg, rgba(249,115,22,0.06), var(--bg-card));
  grid-column: span 1;
}
.testimonial-card__stars { font-size: 18px; letter-spacing: 2px; }
.testimonial-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.testimonial-card__author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-card__author span { font-size: 12px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq { padding: 100px 0; }
.faq-list {
  max-width: 780px;
  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);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { border-color: var(--border-hover); }
.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}
.faq-item__question:hover { color: var(--primary); }
.faq-item__icon {
  font-size: 22px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
  line-height: 1;
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); color: var(--primary); }
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-item__answer p {
  padding: 0 24px 22px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

/* ---------- REGISTER CTA ---------- */
.register-cta {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.register-cta__glow {
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,115,22,0.12), transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.register-cta__inner {
  position: relative;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.register-cta__badge {
  display: inline-block;
  padding: 8px 24px;
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius-pill);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.register-cta__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 20px;
}
.register-cta__desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.register-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.register-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); }
.form-group input {
  padding: 14px 18px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.1);
}
.form-group input::placeholder { color: var(--text-dim); }
.register-form__btn {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  margin-bottom: 16px;
}
.register-form__note {
  font-size: 13px;
  color: var(--text-muted);
}
.register-success {
  text-align: center;
  padding: 48px;
}
.success-icon { font-size: 60px; margin-bottom: 16px; }
.register-success h3 { font-size: 24px; font-weight: 800; margin-bottom: 12px; }
.register-success p { font-size: 16px; color: var(--text-muted); }

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__social a {
  width: 40px;
  height: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--primary); }
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__col h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text);
}
.footer__col a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.footer__col a:hover { color: var(--primary); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer__bottom p {
  font-size: 13px;
  color: var(--text-dim);
  text-align: center;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .feature-block {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .feature-block--reverse .feature-block__visual { order: 0; }
  .feature-block--reverse .feature-block__content { order: 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px; left: 0; right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    gap: 8px;
    z-index: 999;
  }
  .hamburger { display: flex; }
  .hero__stats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 24px;
  }
  .stat {
    padding: 16px 0;
  }
  .stat:first-child {
    padding-top: 0;
  }
  .stat:last-child {
    padding-bottom: 0;
  }
  .stat:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }
  .steps { flex-direction: column; align-items: center; }
  .step__connector { display: none; }
  .register-form__row { grid-template-columns: 1fr; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .table-map__grid { grid-template-columns: repeat(4, 1fr); }
  .sync-center { flex-direction: column; }
  
  /* Responsive Pricing Card */
  .pricing-card {
    padding: 32px 20px;
  }
  .pricing-card__title {
    font-size: 24px;
  }
  .pricing-card__price {
    font-size: 48px;
  }
  .pricing-card__features {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 24px;
  }
  .pricing-feature {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .btn--lg { padding: 14px 28px; font-size: 15px; }
  .hero__mockup { flex-direction: column; align-items: center; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ---------- LIGHT MODE SPECIFIC ADJUSTMENTS ---------- */
.light-theme .hero__bg-grid {
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
}
.light-theme .hero__glow--1 {
  background: radial-gradient(circle, rgba(249, 115, 22, 0.06), transparent 70%);
}
.light-theme .hero__glow--2 {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.04), transparent 70%);
}
.light-theme .header {
  background: rgba(248, 250, 252, 0.85);
}
.light-theme .nav__link:hover {
  background: rgba(15, 23, 42, 0.04);
}
.light-theme .form-group input {
  background: var(--bg);
}
.light-theme .form-group input::placeholder {
  color: var(--text-dim);
}
.light-theme .hamburger span {
  background: var(--text);
}
.light-theme .hero__badge {
  background: rgba(249, 115, 22, 0.06);
  border-color: rgba(249, 115, 22, 0.15);
  color: var(--primary-dark);
}
.light-theme .free-commit__badge {
  background: rgba(34, 197, 94, 0.08);
  border-color: rgba(34, 197, 94, 0.18);
  color: var(--success);
}
.light-theme .register-cta__badge {
  background: rgba(249, 115, 22, 0.06);
  border-color: rgba(249, 115, 22, 0.15);
  color: var(--primary-dark);
}
.light-theme .btn--outline {
  color: var(--text-muted);
}
.light-theme .btn--outline:hover {
  color: var(--primary-dark);
  border-color: var(--primary);
}
.light-theme .btn--ghost {
  background: rgba(15, 23, 42, 0.03);
  color: var(--text);
  border-color: var(--border);
}
.light-theme .btn--ghost:hover {
  background: rgba(15, 23, 42, 0.06);
}
.light-theme .role-card__info p {
  color: var(--text-muted);
}
.light-theme .mockup__menu-item {
  background: var(--bg-2);
}
.light-theme .mock-menu-item.selected,
.light-theme .mockup__menu-item.selected {
  background: rgba(249, 115, 22, 0.05);
}
.light-theme .mockup__menu-card {
  background: var(--bg-2);
}
.light-theme .mockup__menu-card.selected {
  background: rgba(249, 115, 22, 0.06);
}
.light-theme .mockup__kds-order {
  background: var(--bg-2);
}
.light-theme .mockup__pos-item {
  background: var(--bg-2);
}
.light-theme .pos-item__badge--paid {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.2);
}
.light-theme .pos-item__badge--pending {
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.2);
}
.light-theme .kds-order--new .kds-order__status-label {
  color: #dc2626;
}
.light-theme .kds-order--preparing .kds-order__status-label {
  color: #c2410c;
}
.light-theme .kds-order--ready .kds-order__status-label {
  color: #15803d;
}
.light-theme .pos-item__amount {
  color: #c2410c;
}
.light-theme .qr-item {
  background: var(--bg-2);
}
.light-theme .qr-mockup__tabs span {
  background: var(--bg-2);
}
.light-theme .qr-mockup__tabs span.active {
  background: rgba(249, 115, 22, 0.08);
}
.light-theme .sync-node {
  background: var(--bg-card);
}
.light-theme .pricing-card {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow), 0 20px 50px rgba(15, 23, 42, 0.03);
}
.light-theme .pricing-card:hover {
  border-color: rgba(249, 115, 22, 0.4);
}
.light-theme .pricing-card__badge {
  background: rgba(249, 115, 22, 0.08);
  border-color: rgba(249, 115, 22, 0.2);
  color: var(--primary-dark);
}
.light-theme .pricing-feature {
  background: rgba(0, 0, 0, 0.015);
}
.light-theme .pricing-feature:hover {
  background: rgba(0, 0, 0, 0.03);
}

/* ==========================================================================
   LANDING PAGE V2 - NEW STYLES
   ========================================================================== */


/* --- Laptop Mockup --- */
.mockup__laptop {
  position: relative;
  width: 500px;
  max-width: 100%;
  perspective: 1000px;
  animation: floatLaptop 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes floatLaptop {
  0%, 100% { transform: translateY(0) rotateX(5deg); }
  50% { transform: translateY(-15px) rotateX(8deg); }
}

.laptop__screen {
  background: var(--surface);
  border: 4px solid #1a1a2e;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
  height: 320px;
  display: flex;
  flex-direction: column;
}

.laptop__browser {
  background: #1a1a2e;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.browser__dots {
  display: flex;
  gap: 6px;
}
.browser__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff5f56;
}
.browser__dots span:nth-child(2) { background: #ffbd2e; }
.browser__dots span:nth-child(3) { background: #27c93f; }
.browser__url {
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 10px;
  padding: 4px 12px;
  border-radius: 12px;
  flex: 1;
  text-align: center;
}

.laptop__website {
  flex: 1;
  background: #fafafa;
  overflow-y: hidden;
}
[data-theme="dark"] .laptop__website { background: #0f172a; }

.website__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
[data-theme="dark"] .website__header { border-bottom-color: rgba(255,255,255,0.05); }

.website__logo {
  font-weight: bold;
  font-size: 14px;
  color: var(--text-primary);
}
.website__nav {
  display: flex;
  gap: 12px;
  font-size: 10px;
  color: var(--text-secondary);
}

.website__hero-section {
  padding: 24px 20px;
  text-align: center;
}
.website__hero-section h2 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-primary);
}
.website__hero-section p {
  font-size: 11px;
  color: var(--text-secondary);
  margin-bottom: 16px;
}
.website__btn {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border: none;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: bold;
}

.website__features {
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 0 20px;
}
.website__feature-card {
  background: var(--surface);
  border-radius: 8px;
  padding: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  text-align: center;
  width: 80px;
}
.website__feature-card .feature-img {
  width: 100%;
  height: 40px;
  border-radius: 4px;
  margin-bottom: 6px;
}
.website__feature-card span {
  font-size: 9px;
  font-weight: 600;
  color: var(--text-primary);
}

.laptop__base {
  height: 12px;
  background: #333;
  border-radius: 0 0 16px 16px;
  position: relative;
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2);
}
.laptop__base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #222;
  border-radius: 0 0 4px 4px;
}

/* --- Website Builder Feature Block --- */
.website-builder-visual {
  position: relative;
  width: 100%;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wb-template {
  width: 280px;
  height: 320px;
  background: var(--surface);
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  overflow: hidden;
  position: absolute;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.wb-template--active {
  z-index: 2;
  transform: scale(1) translateY(0);
}

.wb-template__header {
  background: rgba(0,0,0,0.02);
  padding: 10px 16px;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
[data-theme="dark"] .wb-template__header { background: rgba(255,255,255,0.02); }

.wb-template__header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.wb-template__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wb-nav {
  height: 16px;
  background: var(--bg-body);
  border-radius: 8px;
  width: 40%;
}

.wb-hero {
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 12px;
  opacity: 0.8;
}

.wb-cards {
  display: flex;
  gap: 8px;
}
.wb-card {
  flex: 1;
  height: 100px;
  background: var(--bg-body);
  border-radius: 8px;
}

.wb-badge {
  position: absolute;
  bottom: -10px;
  right: -20px;
  background: #fff;
  color: #111;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
[data-theme="dark"] .wb-badge {
  background: #222;
  color: #fff;
}

.feature-tag--gold {
  background: rgba(255, 184, 0, 0.1);
  color: #ffb800;
}
[data-theme="dark"] .feature-tag--gold {
  background: rgba(255, 184, 0, 0.2);
  color: #ffb800;
}

/* --- QR Mockup Updates --- */
.hot-badge {
  display: inline-block;
  background: #ff4757;
  color: white;
  font-size: 8px;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  text-transform: uppercase;
  font-weight: bold;
  vertical-align: middle;
}
.qr-item__img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: inset 0 2px 4px rgba(255,255,255,0.2);
}
/* --- Fix Website Builder Template Visuals --- */
.wb-template {
  background: #ffffff;
}
[data-theme="dark"] .wb-template {
  background: #1a1a26;
}
.wb-nav {
  height: 16px;
  background: #e2e8f0 !important;
  border-radius: 8px;
  width: 40%;
}
[data-theme="dark"] .wb-nav { background: #334155 !important; }
.wb-hero {
  height: 80px;
  background: linear-gradient(135deg, #f97316 0%, #8b5cf6 100%) !important;
  border-radius: 12px;
  opacity: 0.8;
}
.wb-card {
  flex: 1;
  height: 100px;
  background: #e2e8f0 !important;
  border-radius: 8px;
}
[data-theme="dark"] .wb-card { background: #334155 !important; }
