/* Variation A — Soft daylight stylesheet */
.va-root {
  --bg: #fafbfd;
  --bg-tint: #f3f5fb;
  --ink: #0d1330;
  --ink-soft: #4a5278;
  --ink-mute: #8189a8;
  --line: #e5e8f3;
  --card: #ffffff;
  --blue: #3b6dff;
  --blue-2: #5b8dff;
  --violet: #7c3aed;
  --violet-2: #a78bfa;
  --grad: linear-gradient(135deg, #3b6dff 0%, #7c3aed 100%);
  --grad-soft: linear-gradient(135deg, #eaf0ff 0%, #f1ebff 100%);
  --shadow-sm: 0 2px 6px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.06), 0 24px 60px rgba(60, 90, 200, 0.08);
  --shadow-lg: 0 24px 80px rgba(60, 90, 200, 0.18);
  --r-lg: 24px;
  --r-md: 16px;
  --r-sm: 10px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  min-height: 100%;
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.va-root *, .va-root *::before, .va-root *::after { box-sizing: border-box; }
.va-root button { font-family: inherit; cursor: pointer; border: none; }
.va-root a { color: inherit; text-decoration: none; }

/* NAV */
.va-nav { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px); background: rgba(250, 251, 253, 0.78); border-bottom: 1px solid var(--line); }
.va-nav-inner { max-width: 1240px; margin: 0 auto; padding: 18px 32px; display: flex; align-items: center; gap: 40px; }
.va-brand { display: flex; align-items: center; gap: 10px; }
.va-logo { width: 32px; height: 32px; }
.va-brand-name { font-weight: 700; font-size: 17px; letter-spacing: -0.02em; }
.va-brand-flow { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.va-nav-links { display: flex; gap: 28px; flex: 1; }
.va-nav-links a { color: var(--ink-soft); font-size: 14.5px; font-weight: 500; transition: color 0.15s; }
.va-nav-links a:hover { color: var(--ink); }
.va-nav-cta { display: flex; gap: 10px; }

.va-btn-primary { background: var(--grad); color: white; padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; box-shadow: 0 6px 18px rgba(91, 73, 255, 0.32); transition: transform 0.15s, box-shadow 0.15s; }
.va-btn-primary:hover { transform: translateY(-1px); box-shadow: 0 10px 22px rgba(91, 73, 255, 0.38); }
.va-btn-ghost { background: white; color: var(--ink); padding: 10px 18px; border-radius: 999px; font-weight: 600; font-size: 14px; border: 1px solid var(--line); transition: background 0.15s; }
.va-btn-ghost:hover { background: var(--bg-tint); }
.va-btn-lg { padding: 14px 26px; font-size: 15px; }
.va-btn-on-grad { background: rgba(255,255,255,0.16); color: white; border-color: rgba(255,255,255,0.3); backdrop-filter: blur(8px); }
.va-btn-on-grad:hover { background: rgba(255,255,255,0.26); }

/* HERO */
.va-hero { position: relative; padding: 56px 32px 80px; max-width: 1240px; margin: 0 auto; overflow: hidden; }
.va-hero-bg { position: absolute; inset: -100px -200px 0 -200px; background: radial-gradient(60% 70% at 70% 20%, rgba(124,58,237,0.10), transparent 60%), radial-gradient(50% 60% at 20% 30%, rgba(59,109,255,0.10), transparent 60%); z-index: 0; pointer-events: none; }
.va-hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: 0.35; z-index: 0; pointer-events: none; }
.va-hero-blob-1 { width: 380px; height: 380px; background: #5b8dff; top: -80px; right: -80px; animation: vaFloat 18s ease-in-out infinite; }
.va-hero-blob-2 { width: 320px; height: 320px; background: #a78bfa; bottom: -60px; left: 200px; animation: vaFloat 22s ease-in-out infinite reverse; }
@keyframes vaFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(30px, -20px); } }
[data-anim="0"] .va-hero-blob, [data-anim="0"] .va-mascot, [data-anim="0"] .va-floating-card { animation: none !important; }
[data-anim="2"] .va-hero-blob { animation-duration: 8s; }
[data-anim="2"] .va-mascot { animation-duration: 3s !important; }

.va-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; min-height: 540px; }
.va-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--ink-soft); box-shadow: var(--shadow-sm); }
.va-eyebrow-dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,0.18); }
.va-h1 { font-size: 76px; font-weight: 800; line-height: 0.98; letter-spacing: -0.035em; margin: 24px 0 22px; }
.va-h1-line { display: block; }
.va-h1-grad { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.va-sub { font-size: 19px; color: var(--ink-soft); max-width: 460px; margin: 0 0 28px; line-height: 1.5; text-wrap: pretty; }
.va-cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.va-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.va-pill { padding: 6px 12px; background: white; border: 1px solid var(--line); border-radius: 999px; font-size: 12.5px; font-weight: 500; color: var(--ink-soft); }

/* Stage with mascot + laptop */
.va-hero-right { position: relative; height: 600px; }
.va-stage { position: absolute; inset: 0; }
.va-stage-glow { position: absolute; inset: 10% 5%; background: radial-gradient(circle at 60% 50%, rgba(124,58,237,0.20), transparent 65%); filter: blur(40px); }
.va-laptop { position: absolute; left: -2%; top: 4%; width: 92%; transform: perspective(1600px) rotateY(-6deg) rotateX(2deg); transform-origin: center center; z-index: 2; }
.va-laptop-screen { background: #0e1532; border-radius: 14px 14px 4px 4px; padding: 8px; box-shadow: var(--shadow-lg), inset 0 0 0 2px #1a2554; aspect-ratio: 16/10; overflow: hidden; position: relative; }
.va-laptop-screen .pos-preview { width: 100%; height: 100%; aspect-ratio: auto; }
.va-laptop-base { height: 14px; background: linear-gradient(180deg, #d3d8ec, #aab2cf); border-radius: 0 0 14px 14px; margin: 0 -4%; box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12); }
.va-mascot { position: absolute; right: -8%; bottom: -4%; width: 44%; height: auto; filter: drop-shadow(0 30px 30px rgba(124,58,237,0.25)); animation: vaBob 4.5s ease-in-out infinite; z-index: 1; pointer-events: none; }
@keyframes vaBob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.va-floating-card { position: absolute; background: white; border-radius: 14px; box-shadow: var(--shadow-md); padding: 12px 14px; display: flex; align-items: center; gap: 10px; font-size: 13px; animation: vaBob 5.5s ease-in-out infinite; pointer-events: none; }
.va-fc-1 { left: -2%; top: 18%; }
.va-fc-2 { right: -4%; top: 8%; animation-delay: -2s; }
.va-fc-icon { width: 32px; height: 32px; border-radius: 10px; display: grid; place-items: center; color: white; font-weight: 700; flex-shrink: 0; }
.va-fc-t { font-weight: 600; color: var(--ink); }
.va-fc-s { font-size: 11.5px; color: var(--ink-mute); }

/* ============================================================
   INTERACTIVE POS PREVIEW (used inside laptop in both variations)
   Sizing is calibrated to render inside a ~16:10 laptop screen.
   ============================================================ */
.pos-preview {
  width: 100%;
  aspect-ratio: 16/10;
  background: #0a0f24;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  font-family: Inter, system-ui, sans-serif;
  color: white;
  position: relative;
  user-select: none;
}

/* HEADER */
.pos-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: #0d1530;
  border-bottom: 1px solid #1a2554; flex-shrink: 0;
}
.pos-brand { display: flex; align-items: center; gap: 8px; }
.pos-logo-dot { width: 22px; height: 22px; border-radius: 7px; background: linear-gradient(135deg, #3b82f6, #7c3aed); box-shadow: 0 4px 10px rgba(59,130,246,0.4); }
.pos-brand-name { font-size: 13px; font-weight: 700; letter-spacing: -0.01em; }
.pos-brand-sub { font-size: 9px; color: #6d7a9e; letter-spacing: 0.12em; font-weight: 600; }
.pos-tabs { display: flex; gap: 4px; background: #0a0f24; padding: 3px; border-radius: 999px; }
.pos-tab {
  font-size: 11px; padding: 6px 14px; border-radius: 999px;
  color: #a4adcc; background: transparent; border: none; cursor: pointer;
  font-family: inherit; font-weight: 600; transition: all 0.2s;
}
.pos-tab:hover { color: white; background: rgba(255,255,255,0.05); }
.pos-tab-active, .pos-tab-active:hover { background: linear-gradient(135deg, #3b6dff, #5b8dff); color: white; box-shadow: 0 2px 8px rgba(59,109,255,0.4); }
.pos-user-pill { width: 26px; height: 26px; border-radius: 8px; background: #1a2554; display: grid; place-items: center; font-size: 10px; font-weight: 700; }

/* BODY layout */
.pos-body { flex: 1; display: flex; gap: 8px; padding: 10px; min-height: 0; }
.pos-main { flex: 1; display: flex; flex-direction: column; gap: 8px; min-width: 0; }

/* Category pills (top of menu) */
.pos-cat-row { display: flex; gap: 6px; }
.pos-cat-pill {
  flex: 1; display: flex; align-items: center; gap: 6px;
  padding: 7px 10px; border-radius: 8px;
  background: #0d1530; border: 1px solid #1a2554;
  color: #a4adcc; font-family: inherit;
  cursor: pointer; transition: all 0.2s;
  font-size: 10px; font-weight: 700; letter-spacing: 0.04em;
  position: relative; overflow: hidden;
}
.pos-cat-pill:hover { border-color: var(--cc); color: white; transform: translateY(-1px); }
.pos-cat-pill-active {
  background: linear-gradient(135deg, var(--cc), color-mix(in oklch, var(--cc) 70%, black));
  border-color: var(--cc); color: white;
  box-shadow: 0 4px 12px color-mix(in oklch, var(--cc) 40%, transparent);
}
.pos-cat-emoji { font-size: 14px; }
.pos-cat-pill-name { flex: 1; }
.pos-cat-pill-count { opacity: 0.75; font-weight: 600; font-size: 9px; }
@keyframes pos-pulse { 0% { transform: scale(1); } 50% { transform: scale(0.96); } 100% { transform: scale(1); } }
.pos-cat-pill-pulse { animation: pos-pulse 0.35s ease; }

/* Search */
.pos-search {
  background: #0d1530; border: 1px solid #1a2554; border-radius: 6px;
  padding: 7px 10px; font-size: 10px; color: #6d7a9e;
  display: flex; gap: 6px; align-items: center;
}
.pos-search-icon { font-size: 12px; }

/* Product grid */
.pos-products {
  flex: 1; display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px; min-height: 0;
  align-content: start;
}
.pos-prod {
  background: #0d1530; border: 1px solid #1a2554; border-radius: 8px;
  padding: 8px 8px 7px; display: flex; flex-direction: column;
  align-items: center; gap: 4px; cursor: pointer; color: white;
  font-family: inherit; transition: all 0.18s;
  position: relative; overflow: hidden;
}
.pos-prod:hover {
  transform: translateY(-2px); border-color: #3b6dff;
  box-shadow: 0 6px 16px rgba(59,109,255,0.25);
}
.pos-prod:active { transform: translateY(0) scale(0.97); }
.pos-prod-img {
  width: 100%; aspect-ratio: 1.4/1; border-radius: 6px;
  display: grid; place-items: center; font-size: 22px;
  box-shadow: inset 0 -10px 20px rgba(0,0,0,0.18);
}
.pos-prod-name { font-size: 10px; font-weight: 600; text-align: center; line-height: 1.2; }
.pos-prod-price { font-size: 11px; font-weight: 700; color: #5b8dff; }

/* CART side */
.pos-side {
  width: 36%; background: #0d1530; border-radius: 8px;
  padding: 10px; display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
}
.pos-cart-head {
  display: flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700;
  padding-bottom: 8px; border-bottom: 1px solid #1a2554;
}
.pos-cart-icon { font-size: 14px; display: inline-block; }
.pos-cart-bump { animation: pos-bump 0.5s cubic-bezier(0.34,1.56,0.64,1); }
@keyframes pos-bump {
  0% { transform: scale(1); }
  35% { transform: scale(1.4) rotate(-12deg); }
  70% { transform: scale(0.9) rotate(8deg); }
  100% { transform: scale(1) rotate(0); }
}
.pos-cart-badge {
  margin-left: auto;
  background: linear-gradient(135deg, #3b6dff, #7c3aed);
  font-size: 9px; padding: 2px 8px; border-radius: 999px;
  font-weight: 700; letter-spacing: 0.04em;
}
.pos-cart-empty {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  color: #6d7a9e; text-align: center; padding: 12px;
}
.pos-cart-icon-big { font-size: 36px; opacity: 0.4; margin-bottom: 4px; }
.pos-cart-empty-t { font-size: 11px; font-weight: 600; color: #a4adcc; }
.pos-cart-empty-h { font-size: 9px; opacity: 0.7; }

.pos-cart-list {
  flex: 1; display: flex; flex-direction: column; gap: 5px;
  overflow-y: auto; min-height: 0; padding-right: 2px;
}
.pos-cart-list::-webkit-scrollbar { width: 4px; }
.pos-cart-list::-webkit-scrollbar-thumb { background: #1a2554; border-radius: 2px; }
.pos-cart-item {
  display: flex; align-items: center; gap: 6px;
  background: #0a0f24; border-radius: 6px; padding: 5px 6px;
  border: 1px solid rgba(255,255,255,0.03);
  animation: pos-cart-in 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes pos-cart-in {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: translateX(0); }
}
.pos-ci-emoji { font-size: 18px; flex-shrink: 0; width: 22px; text-align: center; }
.pos-ci-mid { flex: 1; min-width: 0; }
.pos-ci-name { font-size: 9.5px; font-weight: 600; line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pos-ci-price { font-size: 9px; color: #5b8dff; font-weight: 700; }
.pos-ci-qty { display: flex; align-items: center; gap: 2px; flex-shrink: 0; }
.pos-ci-qty button {
  width: 18px; height: 18px; border: none; border-radius: 4px;
  background: #1a2554; color: white; font-family: inherit;
  font-size: 11px; font-weight: 700; cursor: pointer; padding: 0;
  display: grid; place-items: center; line-height: 1;
}
.pos-ci-qty button:hover { background: #3b6dff; }
.pos-ci-qty span { font-size: 10px; font-weight: 700; min-width: 14px; text-align: center; }

.pos-cart-totals {
  display: flex; flex-direction: column; gap: 3px;
  padding-top: 6px; border-top: 1px solid #1a2554;
}
.pos-tot-row { display: flex; justify-content: space-between; font-size: 10px; }
.pos-tot-row-mute { color: #6d7a9e; font-size: 9px; }
.pos-tot-row-big { font-size: 13px; font-weight: 800; padding-top: 3px; border-top: 1px dashed #1a2554; margin-top: 2px; }
.pos-tot-row-big > span:last-child { background: linear-gradient(135deg, #3b6dff, #7c3aed); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.pos-cart-actions { display: flex; gap: 5px; }
.pos-btn-ghost {
  flex: 0 0 auto; padding: 7px 10px; border-radius: 6px;
  background: transparent; border: 1px solid #1a2554;
  color: #a4adcc; font-family: inherit; font-size: 10px; font-weight: 600;
  cursor: pointer; transition: all 0.18s;
}
.pos-btn-ghost:hover { border-color: #ef4444; color: #ef4444; }
.pos-btn-pay {
  flex: 1; padding: 7px 10px; border-radius: 6px; border: none;
  background: linear-gradient(135deg, #3b6dff, #7c3aed);
  color: white; font-family: inherit; font-size: 11px; font-weight: 700;
  cursor: pointer; transition: all 0.18s;
  box-shadow: 0 4px 12px rgba(59,109,255,0.35);
}
.pos-btn-pay:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(59,109,255,0.5); }

/* Flying +1 emoji */
.pos-float {
  position: absolute; pointer-events: none;
  font-size: 16px; font-weight: 800; color: white;
  z-index: 50; transform: translate(-50%, -50%);
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  animation: pos-float 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes pos-float {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) scale(0.4); opacity: 0; }
}

/* Toasts (bottom-center inside POS) */
.pos-toasts {
  position: absolute; bottom: 12px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 6px;
  z-index: 60; pointer-events: none;
}
.pos-toast {
  display: flex; align-items: center; gap: 8px;
  background: rgba(13, 21, 48, 0.95); backdrop-filter: blur(12px);
  border: 1px solid rgba(34,197,94,0.35);
  padding: 8px 14px; border-radius: 999px; font-size: 11px; font-weight: 600;
  color: white; box-shadow: 0 8px 24px rgba(0,0,0,0.5);
  animation: pos-toast-in 0.35s cubic-bezier(0.34,1.56,0.64,1);
  white-space: nowrap;
}
@keyframes pos-toast-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.pos-toast-ic {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: grid; place-items: center;
  font-size: 10px; font-weight: 800; line-height: 1;
}

/* Deferred payment (delivery) — pending stamp instead of cash/card animation */
.pos-ov-pending {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 18px 24px;
  background: rgba(59,109,255,0.08);
  border: 1px solid rgba(59,109,255,0.25);
  border-radius: 14px;
  margin-bottom: 14px;
}
.pos-ov-pending-icon { font-size: 36px; }
.pos-ov-pending-method {
  font-size: 13px; font-weight: 700;
  color: #93c5fd;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* OVERLAYS — order type / payment / processing / receipt */
.pos-overlay {
  position: absolute; inset: 0;
  background: rgba(5, 10, 30, 0.85); backdrop-filter: blur(10px);
  display: grid; place-items: center;
  z-index: 40; padding: 16px;
  animation: pos-overlay-in 0.25s ease;
}
@keyframes pos-overlay-in { from { opacity: 0; } to { opacity: 1; } }

.pos-overlay-card {
  width: min(90%, 380px); background: #0d1530;
  border: 1px solid #1a2554; border-radius: 12px;
  padding: 18px 20px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  animation: pos-card-in 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
@keyframes pos-card-in {
  from { opacity: 0; transform: translateY(12px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pos-ov-head { font-size: 13px; font-weight: 700; text-align: center; letter-spacing: -0.01em; }

.pos-ov-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.pos-ov-type {
  background: #0a0f24; border: 1px solid #1a2554;
  border-radius: 10px; padding: 14px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: white; font-family: inherit; font-size: 10px; font-weight: 600;
  cursor: pointer; transition: all 0.18s;
}
.pos-ov-type:hover { border-color: #3b6dff; transform: translateY(-2px); background: #11183a; }
.pos-ov-type-ic { font-size: 26px; }

.pos-ov-tables { display: flex; flex-direction: column; gap: 6px; }
.pos-ov-tablesh { font-size: 10px; color: #a4adcc; font-weight: 600; letter-spacing: 0.04em; }
.pos-ov-tablegrid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; }
.pos-ov-table {
  aspect-ratio: 1; border-radius: 6px; border: 1px solid #1a2554;
  background: #0a0f24; color: white; font-family: inherit;
  font-size: 11px; font-weight: 700; cursor: pointer; transition: all 0.15s;
}
.pos-ov-table:hover { border-color: #3b6dff; }
.pos-ov-table-active { background: linear-gradient(135deg, #3b6dff, #7c3aed); border-color: transparent; }

.pos-ov-back {
  align-self: center; background: transparent; border: none; color: #a4adcc;
  font-family: inherit; font-size: 10px; font-weight: 600; cursor: pointer; padding: 4px 12px;
}
.pos-ov-back:hover { color: white; }

.pos-ov-paysum {
  text-align: center; font-size: 28px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #3b6dff, #7c3aed);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pos-ov-paymethods { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pos-ov-pay {
  background: #0a0f24; border: 1px solid #1a2554; border-radius: 10px;
  padding: 18px 10px; display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: white; font-family: inherit; font-size: 11px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
}
.pos-ov-pay:hover { border-color: #3b6dff; transform: translateY(-2px); background: #11183a; }
.pos-ov-pay-ic { font-size: 28px; }

.pos-logo-img { width: 28px; height: 28px; object-fit: contain; border-radius: 6px; }
.pos-tab-locked { opacity: 0.35 !important; cursor: not-allowed !important; }

/* Size selector overlay */
.pos-ov-sizes { padding: 22px 24px; align-items: stretch; max-width: 360px; gap: 12px !important; }
.pos-ov-size-name { font-size: 16px; font-weight: 800; color: white; letter-spacing: 0.02em; }
.pos-ov-size-sub { font-size: 11px; color: #a4adcc; margin-bottom: 8px; }
.pos-ov-size-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pos-ov-size-opt {
  padding: 18px 10px; border-radius: 10px;
  background: transparent;
  border: 1px solid #2a3155; color: white;
  cursor: pointer; transition: all 0.15s ease;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.pos-ov-size-opt:hover { background: rgba(59,109,255,0.12); border-color: #3b6dff; }
.pos-ov-size-opt-name { font-size: 13px; font-weight: 800; letter-spacing: 0.02em; }
.pos-ov-size-opt-price { font-size: 14px; font-weight: 800; color: #3b6dff; }

/* Cleaner product cards (no emoji icon, just name + price) */
.pos-prod {
  display: flex !important; flex-direction: column !important;
  justify-content: center !important; align-items: flex-start !important;
  gap: 6px !important; padding: 14px !important;
  min-height: 80px;
}
.pos-prod-name { font-size: 12px; font-weight: 800; color: white; letter-spacing: 0.02em; line-height: 1.2; }
.pos-prod-price { font-size: 13px; font-weight: 800; color: #3b6dff; }

/* Processing */
.pos-ov-processing { align-items: center; padding: 28px 24px; gap: 12px; }
.pos-ov-spinner {
  width: 44px; height: 44px; border-radius: 50%;
  border: 3px solid #1a2554; border-top-color: #3b6dff;
  animation: pos-spin 0.9s linear infinite;
}
@keyframes pos-spin { to { transform: rotate(360deg); } }

/* CASH scene — bills & coins flying into drawer */
.pos-ov-cashscene { position: relative; width: 220px; height: 130px; }
.pos-ov-bill, .pos-ov-coin {
  position: absolute; display: grid; place-items: center;
  font-weight: 800; color: white; font-size: 11px;
}
.pos-ov-bill {
  width: 70px; height: 36px; border-radius: 4px;
  background: linear-gradient(135deg, #2c7a3f, #58b86c);
  border: 1.5px solid #1a5028;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  animation: pos-bill-fly 1.6s ease-in forwards;
}
.pos-ov-bill-1 { left: 10px;  top: -10px; animation-delay: 0.1s; }
.pos-ov-bill-2 { left: 80px;  top: -20px; background: linear-gradient(135deg, #b85e2c, #e9863e); border-color: #6e3818; animation-delay: 0.5s; }
.pos-ov-coin {
  width: 26px; height: 26px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe17a, #d49d2a 70%);
  color: #5a3d10; font-size: 9px; border: 1px solid #8a6314;
  box-shadow: 0 3px 8px rgba(0,0,0,0.4);
  animation: pos-bill-fly 1.6s ease-in forwards;
}
.pos-ov-coin-1 { left: 30px; top: 10px;  animation-delay: 0.8s; }
.pos-ov-coin-2 { left: 130px; top: 5px;  animation-delay: 1.1s; }
@keyframes pos-bill-fly {
  0%   { transform: translateY(0) rotate(-8deg); opacity: 0; }
  20%  { opacity: 1; }
  100% { transform: translateY(110px) rotate(15deg); opacity: 0.2; }
}
.pos-ov-drawer {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 28px; border-radius: 6px;
  background: linear-gradient(180deg, #2a3155, #14172e);
  border: 1px solid #1a2554;
  display: flex; gap: 6px; padding: 6px;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.6);
}
.pos-ov-drawer-slot { flex: 1; background: #0a0f24; border-radius: 3px; border: 1px solid #1a2554; }

/* CARD scene — terminal with card sliding in */
.pos-ov-cardscene { position: relative; width: 220px; height: 150px; display: grid; place-items: center; }
.pos-ov-terminal {
  width: 110px; padding: 8px; border-radius: 10px;
  background: linear-gradient(180deg, #1f2547, #0d1330);
  border: 1.5px solid #2a3155;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}
.pos-ov-terminal-screen {
  background: #052a16; border-radius: 4px; padding: 8px 6px;
  text-align: center; margin-bottom: 6px;
  border: 1px solid #0a4a28;
}
.pos-ov-terminal-amt { font-size: 14px; font-weight: 800; color: #4ade80; font-family: "Courier New", monospace; }
.pos-ov-terminal-msg { font-size: 7px; font-weight: 700; color: #86efac; letter-spacing: 0.5px; margin-top: 2px; animation: pos-blink 0.9s ease-in-out infinite; }
.pos-ov-terminal-keys {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.pos-ov-terminal-key {
  background: #2a3155; border-radius: 2px; padding: 3px 0;
  text-align: center; font-size: 7px; font-weight: 700; color: #c4cae0;
}
.pos-ov-card {
  position: absolute; top: 50%; left: 50%;
  width: 64px; height: 40px; border-radius: 4px;
  background: linear-gradient(135deg, #3b6dff, #7c3aed);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 6px; display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
  animation: pos-card-slide 1.8s ease-in-out infinite;
}
.pos-ov-card-chip { width: 10px; height: 8px; background: linear-gradient(135deg, #ffd24a, #d49d2a); border-radius: 1px; }
.pos-ov-card-num { font-size: 6px; font-weight: 700; color: white; letter-spacing: 0.5px; font-family: "Courier New", monospace; }
@keyframes pos-card-slide {
  0%   { transform: translate(-50%, 60%) rotate(-4deg); opacity: 0; }
  30%  { transform: translate(-50%, -10%) rotate(0deg); opacity: 1; }
  60%  { transform: translate(-50%, -20%) rotate(0deg); opacity: 1; }
  100% { transform: translate(-50%, -50%) rotate(0deg); opacity: 0; }
}

.pos-ov-ptitle { font-size: 12px; font-weight: 600; }
.pos-ov-mydata {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; color: #a4adcc; padding: 6px 12px;
  background: #0a0f24; border-radius: 999px; border: 1px solid #1a2554;
}
.pos-ov-mydata-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #f59e0b; animation: pos-blink 0.9s ease-in-out infinite;
}
@keyframes pos-blink { 50% { opacity: 0.3; } }

/* RECEIPT */
.pos-receipt {
  width: min(86%, 320px); background: white; color: #0d1530;
  border-radius: 8px; padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  font-family: "Courier New", ui-monospace, monospace;
  animation: pos-receipt-in 0.45s cubic-bezier(0.34,1.56,0.64,1);
  max-height: 92%; overflow-y: auto;
}
@keyframes pos-receipt-in {
  from { opacity: 0; transform: translateY(20px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.pos-rc-head { text-align: center; padding-bottom: 6px; border-bottom: 1px dashed #cbd5e1; }
.pos-rc-title { font-size: 14px; font-weight: 800; letter-spacing: 0.08em; }
.pos-rc-no { font-size: 9px; color: #64748b; margin-top: 2px; letter-spacing: 0.05em; }
.pos-rc-mydata {
  display: flex; align-items: center; gap: 6px; justify-content: center;
  background: #ecfdf5; color: #065f46;
  padding: 6px 10px; border-radius: 6px; font-size: 10px; font-weight: 700;
  font-family: Inter, system-ui, sans-serif;
  animation: pos-mydata-in 0.5s ease 0.3s both;
}
@keyframes pos-mydata-in {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.pos-rc-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: white; display: grid; place-items: center;
  font-size: 10px; font-weight: 800;
}
.pos-rc-list { display: flex; flex-direction: column; gap: 4px; padding: 6px 0; border-top: 1px dashed #cbd5e1; border-bottom: 1px dashed #cbd5e1; }
.pos-rc-line { display: flex; justify-content: space-between; font-size: 10px; }
.pos-rc-tot { display: flex; flex-direction: column; gap: 3px; }
.pos-rc-tot-row { display: flex; justify-content: space-between; font-size: 10px; }
.pos-rc-tot-big { font-size: 14px; font-weight: 800; padding-top: 4px; margin-top: 2px; border-top: 1px dashed #cbd5e1; }
.pos-rc-tot-mute { color: #64748b; font-size: 9px; padding-top: 4px; }
.pos-rc-thank { text-align: center; font-size: 11px; font-weight: 700; padding: 4px 0; font-family: Inter, system-ui, sans-serif; }
.pos-rc-new {
  background: linear-gradient(135deg, #3b6dff, #7c3aed);
  color: white; border: none; border-radius: 6px;
  padding: 9px 14px; font-family: Inter, system-ui, sans-serif;
  font-size: 11px; font-weight: 700; cursor: pointer;
}
.pos-rc-new:hover { box-shadow: 0 4px 12px rgba(59,109,255,0.4); }

/* STATS */
.va-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 60px auto 0; max-width: 800px; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); }
.va-stat { text-align: center; }
.va-stat-num { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.va-stat-lab { font-size: 13.5px; color: var(--ink-soft); margin-top: 4px; }

/* MARQUEE */
.va-marquee-sec { padding: 60px 32px; max-width: 1240px; margin: 0 auto; text-align: center; }
.va-marquee-label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 20px; }
.va-marquee { overflow: hidden; mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent); }
.va-marquee-track { display: flex; gap: 60px; animation: vaScroll 26s linear infinite; width: max-content; }
.va-marquee-item { font-size: 22px; font-weight: 600; color: var(--ink-mute); white-space: nowrap; }
@keyframes vaScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* SECTION HEAD */
.va-section-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.va-kicker { display: inline-block; padding: 5px 12px; background: var(--grad-soft); border-radius: 999px; font-size: 12.5px; font-weight: 600; color: var(--violet); margin-bottom: 14px; letter-spacing: 0.02em; }
.va-h2 { font-size: 52px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 16px; text-wrap: balance; }
.va-section-sub { font-size: 18px; color: var(--ink-soft); margin: 0; text-wrap: pretty; }

/* FEATURES */
.va-features { padding: 100px 32px; max-width: 1240px; margin: 0 auto; }
.va-feat-grid { display: grid; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; }
.va-feat-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; min-height: 320px; transition: transform 0.2s, box-shadow 0.2s; }
.va-feat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.va-feat-0 { grid-column: 1; grid-row: 1; background: linear-gradient(135deg, #fff7f0, #fff); }
.va-feat-1 { grid-column: 2; grid-row: 1 / span 2; background: linear-gradient(160deg, #f3f0ff 0%, #fff 60%); }
.va-feat-2 { grid-column: 1; grid-row: 2; background: linear-gradient(135deg, #f0fff8, #fff); }
.va-feat-tag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; color: var(--violet); text-transform: uppercase; margin-bottom: 12px; }
.va-feat-title { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 0 0 10px; }
.va-feat-body { font-size: 15px; color: var(--ink-soft); margin: 0 0 24px; line-height: 1.55; }
.va-feat-art { margin-top: auto; }

.va-art { padding: 16px; background: white; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-sm); }
.va-art-tag-row { display: flex; gap: 6px; margin-bottom: 12px; }
.va-art-pill { color: white; font-size: 10px; font-weight: 700; padding: 6px 10px; border-radius: 6px; letter-spacing: 0.06em; }
.va-art-receipt { font-size: 13px; }
.va-art-receipt-row { display: flex; justify-content: space-between; padding: 6px 0; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.va-art-receipt-tot { display: flex; justify-content: space-between; padding-top: 10px; font-weight: 700; }
.va-art-driver { font-size: 14px; font-weight: 600; padding-bottom: 10px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.va-art-stop { display: flex; align-items: center; gap: 8px; padding: 6px 0; font-size: 13px; color: var(--ink-soft); }
.va-dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd2e6; flex-shrink: 0; }
.va-dot-done { background: #22c55e; }
.va-dot-active { background: var(--blue); box-shadow: 0 0 0 4px rgba(59,109,255,0.18); }
.va-art-eta { display: inline-block; margin-top: 10px; padding: 6px 12px; background: var(--grad-soft); color: var(--violet); border-radius: 999px; font-size: 12.5px; font-weight: 600; }
/* DINE-IN floor plan */
.va-art-dine { position: relative; background: linear-gradient(180deg, #0e1532 0%, #0a1129 100%); border-radius: 14px; padding: 14px; box-shadow: var(--shadow-sm); border: 1px solid #1a2554; display: flex; flex-direction: column; gap: 12px; }
.va-dine-head { display: flex; justify-content: space-between; align-items: center; }
.va-dine-title { font-size: 12px; font-weight: 700; color: white; letter-spacing: 0.04em; }
.va-dine-legend { display: flex; gap: 10px; }
.va-dine-leg { font-size: 9.5px; font-weight: 600; color: #a4adcc; display: inline-flex; align-items: center; gap: 4px; }
.va-dine-dot { width: 8px; height: 8px; border-radius: 50%; }
.va-dine-dot-busy { background: #d04a4a; }
.va-dine-dot-free { background: #2ea37a; }
.va-dine-dot-active { background: var(--blue); }
.va-dine-floor { position: relative; height: 180px; background: rgba(255,255,255,0.02); border: 1px dashed rgba(255,255,255,0.08); border-radius: 10px; background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px); background-size: 20px 20px; }
.va-dine-section { position: absolute; }
.va-dine-sec-a { top: 4px; left: 8px; right: 8px; height: 1px; }
.va-dine-sec-lbl { position: absolute; top: -7px; left: 0; font-size: 8.5px; font-weight: 700; letter-spacing: 0.18em; color: rgba(255,255,255,0.35); text-transform: uppercase; background: #0e1532; padding: 0 6px; }
.va-table { position: absolute; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1px; color: white; font-weight: 700; padding: 4px 6px; box-shadow: 0 4px 10px rgba(0,0,0,0.25); }
.va-table > span:first-child { font-size: 11px; line-height: 1; }
.va-table-meta { font-size: 8px; font-weight: 500; opacity: 0.85; line-height: 1; white-space: nowrap; }
.va-table-round { width: 44px; height: 44px; border-radius: 50%; }
.va-table-rect { width: 78px; height: 38px; border-radius: 8px; }
.va-table-busy { background: linear-gradient(135deg, #d04a4a, #b83838); }
.va-table-free { background: linear-gradient(135deg, #2ea37a, #248a64); }
.va-table-active { background: linear-gradient(135deg, var(--blue), #2a52d8); box-shadow: 0 0 0 2px rgba(59,109,255,0.35), 0 4px 14px rgba(59,109,255,0.4); }
.va-dine-bar { position: absolute; left: 8%; right: 8%; bottom: 8px; height: 14px; background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.12), rgba(255,255,255,0.06)); border: 1px solid rgba(255,255,255,0.1); border-radius: 4px; display: grid; place-items: center; font-size: 8.5px; font-weight: 700; color: rgba(255,255,255,0.5); letter-spacing: 0.3em; }
.va-dine-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.va-dine-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 8px 10px; display: flex; flex-direction: column; gap: 2px; }
.va-dine-stat b { font-size: 14px; font-weight: 800; color: white; line-height: 1; }
.va-dine-stat span { font-size: 9.5px; color: #a4adcc; font-weight: 500; }
.va-art-orders { display: flex; flex-direction: column; gap: 8px; }
.va-ord { display: flex; justify-content: space-between; align-items: center; padding: 10px 12px; background: #fafbfd; border: 1px solid var(--line); border-radius: 10px; }
.va-ord-id { font-weight: 700; font-size: 14px; }
.va-ord-st { font-size: 11.5px; padding: 4px 10px; border-radius: 999px; font-weight: 600; }
.va-ord-prep { background: #fef3c7; color: #b45309; }
.va-ord-ready { background: #dcfce7; color: #166534; }
.va-ord-new { background: #dbeafe; color: #1e40af; }

/* HOW */
.va-how { padding: 80px 32px; max-width: 1100px; margin: 0 auto; }
.va-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.va-how-step { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; position: relative; box-shadow: var(--shadow-sm); }
.va-how-num { font-size: 14px; font-weight: 700; color: var(--violet); letter-spacing: 0.1em; margin-bottom: 16px; }
.va-how-title { font-size: 22px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.02em; }
.va-how-body { font-size: 14.5px; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.va-how-arrow { position: absolute; right: -22px; top: 50%; transform: translateY(-50%); font-size: 24px; color: var(--ink-mute); z-index: 2; background: var(--bg); padding: 0 6px; }

/* PRICING */
.va-pricing { padding: 100px 32px; max-width: 1200px; margin: 0 auto; }
.va-price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.va-price-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); position: relative; display: flex; flex-direction: column; }
.va-price-feat { background: linear-gradient(180deg, #0d1330 0%, #1a1d4a 100%); color: white; border: none; box-shadow: var(--shadow-lg); transform: scale(1.03); }
.va-price-feat .va-price-desc, .va-price-feat .va-price-feats li { color: rgba(255,255,255,0.78); }
.va-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 5px 12px; background: var(--grad); color: white; font-size: 11.5px; font-weight: 600; border-radius: 999px; }
.va-price-name { font-size: 14px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.va-price-feat .va-price-name { color: rgba(255,255,255,0.65); }
.va-price-amount { margin: 16px 0 8px; }
.va-price-cur { font-size: 24px; font-weight: 600; vertical-align: super; opacity: 0.7; }
.va-price-num { font-size: 56px; font-weight: 800; letter-spacing: -0.03em; }
.va-price-period { font-size: 16px; color: var(--ink-mute); margin-left: 4px; }
.va-price-feat .va-price-period { color: rgba(255,255,255,0.55); }
.va-price-custom { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.va-price-desc { font-size: 14px; color: var(--ink-soft); margin-bottom: 20px; }
.va-price-feats { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.va-price-feats li { padding: 7px 0; font-size: 14px; color: var(--ink-soft); border-bottom: 1px dashed var(--line); }
.va-price-feat .va-price-feats li { border-color: rgba(255,255,255,0.1); }
.va-price-cta { width: 100%; padding: 12px; border-radius: 12px; font-weight: 600; font-size: 14px; cursor: pointer; }

/* TESTIMONIALS */
.va-testi { padding: 80px 32px; max-width: 1240px; margin: 0 auto; }
.va-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.va-testi-card { background: white; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-sm); }
.va-testi-quote { font-size: 17px; line-height: 1.55; color: var(--ink); margin-bottom: 24px; text-wrap: pretty; }
.va-testi-author { display: flex; align-items: center; gap: 12px; }
.va-testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); color: white; display: grid; place-items: center; font-weight: 700; font-size: 14px; }
.va-testi-name { font-weight: 700; font-size: 14.5px; }
.va-testi-role { font-size: 12.5px; color: var(--ink-mute); }

/* FAQ */
.va-faq { padding: 80px 32px; max-width: 800px; margin: 0 auto; }
.va-faq-list { display: flex; flex-direction: column; gap: 8px; }
.va-faq-item { background: white; border: 1px solid var(--line); border-radius: 14px; padding: 18px 22px; transition: box-shadow 0.2s; }
.va-faq-item[open] { box-shadow: var(--shadow-md); }
.va-faq-item summary { font-weight: 600; font-size: 16px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.va-faq-item summary::-webkit-details-marker { display: none; }
.va-faq-plus { font-size: 22px; color: var(--violet); transition: transform 0.2s; line-height: 1; }
.va-faq-item[open] .va-faq-plus { transform: rotate(45deg); }
.va-faq-a { padding-top: 14px; color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; }

/* FINAL */
.va-final { padding: 80px 32px; max-width: 1240px; margin: 0 auto; }
.va-final-card { position: relative; background: var(--grad); border-radius: 32px; padding: 56px 48px; color: white; display: grid; grid-template-columns: 240px 1fr; gap: 32px; align-items: center; overflow: hidden; }
.va-final-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 80% 30%, rgba(255,255,255,0.15), transparent); pointer-events: none; }
.va-final-mascot { width: 100%; filter: drop-shadow(0 20px 30px rgba(0,0,0,0.25)); position: relative; z-index: 1; }
.va-final-title { color: white; margin-bottom: 8px; }
.va-final-sub { font-size: 17px; opacity: 0.88; margin: 0 0 20px; max-width: 540px; }

/* FOOTER */
.va-foot { padding: 60px 32px 32px; max-width: 1240px; margin: 0 auto; border-top: 1px solid var(--line); margin-top: 40px; }
.va-foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.va-foot-tag { font-size: 14.5px; color: var(--ink-soft); margin: 12px 0 0; max-width: 260px; }
.va-foot-col-t { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink); margin-bottom: 14px; }
.va-foot-link { display: block; font-size: 14px; color: var(--ink-soft); padding: 4px 0; transition: color 0.15s; }
.va-foot-link:hover { color: var(--ink); }
.va-foot-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--ink-mute); }
