/* ═══════════════════════════════════════════════════════
   YallaPOS — Business platform: Square 1:1 layout
═══════════════════════════════════════════════════════ */

:root {
  --bp-cream:     #F6F1E7;
  --bp-cream-2:   #ECE5D5;
  --bp-card:      #FFFFFF;
  --bp-ink:       #0A0F1E;
  --bp-ink-2:     #1F2937;
  --bp-mute:      #5C6573;
  --bp-mute-2:    #8A93A4;
  --bp-line:      rgba(13, 17, 23, 0.10);
  --bp-line-soft: rgba(13, 17, 23, 0.05);
  --bp-indigo:    #3B5BDB;
  --bp-indigo-2:  #6E8BFF;
  --bp-amber:     #F59E0B;
  --bp-emerald:   #059669;
  --bp-rose:      #E11D48;
}

/* ── Section shell — locked to ONE viewport, centered, contained ──
   • height exactly 100vh so it never spills into the next section
   • flex centering puts the .bp-wrap vertically dead-centre
   • overflow:hidden guarantees no child overlap with adjacent sections
   • box-sizing on the section + children so padding doesn't blow size
   • clear: both stops it from being pulled into a floated layout */
.bp-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  min-height: 600px;
  max-height: 900px;
  padding: clamp(28px, 5vh, 56px) clamp(20px, 4vw, 48px);
  background: var(--bp-cream);
  color: var(--bp-ink);
  overflow: hidden;
  isolation: isolate;
  box-sizing: border-box;
  clear: both;
}
.bp-section *, .bp-section *::before, .bp-section *::after { box-sizing: border-box; }

.bp-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  height: 100%;
  min-height: 0;
}

.bp-col { min-width: 0; }
.bp-col--stage { height: 100%; display: flex; align-items: center; min-height: 0; }

/* ═══════════════════════════════════════════════════════
   LEFT COLUMN — eyebrow + bold sans title + accordion
═══════════════════════════════════════════════════════ */
.bp-eyebrow {
  font-family: 'JetBrains Mono', ui-monospace, monospace !important;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bp-mute);
  margin: 0 0 14px;
}

/* Title — bold sans, max 2 lines. Forced with !important so no
   global font-unify or hero CSS can blow it up. Bumped from 24
   → 30 px per request; max-width widened in step so the line-
   break still falls cleanly inside 2 lines. */
.bp-title {
  font-family: 'Inter', 'Cairo', sans-serif !important;
  font-weight: 800 !important;
  font-size: 30px !important;
  letter-spacing: -0.6px !important;
  line-height: 1.15 !important;
  margin: 0 0 28px !important;
  color: var(--bp-ink) !important;
  max-width: 360px;
  /* Hard cap at 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Accordion — hairline dividers, no number chips */
.bp-accordion {
  display: flex;
  flex-direction: column;
}
.bp-item {
  display: block;
  padding: 0;
  border-top: 1px solid var(--bp-line);
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.bp-item:last-child { border-bottom: 1px solid var(--bp-line); }

.bp-item-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 4px;
}
.bp-item-title {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.25px;
  color: var(--bp-ink);
  transition: font-weight 0.2s ease;
}

/* Toggle: + / − built from two thin bars */
.bp-item-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.bp-item-toggle-bar {
  position: absolute;
  background: var(--bp-ink);
  border-radius: 1px !important;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.bp-item-toggle-bar:nth-child(1) { width: 14px; height: 1.6px; }
.bp-item-toggle-bar:nth-child(2) { width: 1.6px; height: 14px; }

.bp-item:hover .bp-item-title,
.bp-item.is-active .bp-item-title {
  font-weight: 700;
}
.bp-item.is-active .bp-item-toggle-bar:nth-child(2) {
  transform: rotate(90deg);  /* hide the vertical bar → minus */
}

/* Body — collapsed by default, slides open when active */
.bp-item-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.bp-item-body-inner {
  overflow: hidden;
  min-height: 0;
}
.bp-item.is-active .bp-item-body {
  grid-template-rows: 1fr;
}
.bp-item-desc {
  margin: 0 0 12px;
  padding-top: 2px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--bp-ink-2);
  max-width: 440px;
}
.bp-item-learn {
  display: inline-block;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--bp-ink);
  border-bottom: 1.5px solid var(--bp-ink);
  padding-bottom: 2px;
  margin-bottom: 16px;
  transition: color 0.2s, border-bottom-color 0.2s;
}
.bp-item:hover .bp-item-learn { color: var(--bp-indigo); border-bottom-color: var(--bp-indigo); }

/* ═══════════════════════════════════════════════════════
   RIGHT COLUMN — stage (blurred photo + mockups)
═══════════════════════════════════════════════════════ */
/* Stage — height tied to the section, never overflowing.
   Using min(64vh, 540px) keeps it tall on big screens, capped so
   the section never has to scroll. The 380px floor is the smallest
   that still shows the POS mockup readably. */
.bp-stage {
  position: relative;
  width: 100%;
  height: min(64vh, 540px);
  min-height: 380px;
  border-radius: 20px !important;
  overflow: hidden;
  isolation: isolate;
  background: #1A2238;
}
.bp-stage-photo {
  position: absolute;
  inset: 0;
  background-image: url("../img/friends-eating.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(18px) saturate(1.05);
  opacity: 0.65;
  transform: scale(1.12);
  z-index: 0;
}
.bp-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.25), rgba(74, 21, 48, 0.18));
  z-index: 0;
  pointer-events: none;
}

/* Crossfading stack of visuals */
.bp-stage-visuals {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.bp-stage-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(24px, 3.5vw, 44px);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.985);
  transition:
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.4s;
  pointer-events: none;
}
.bp-stage-visual.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════
   MOCK — generic
═══════════════════════════════════════════════════════ */
.bp-mock {
  position: relative;
  width: 100%;
  max-width: 600px;
  height: 100%;
  max-height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Window shell (used by most non-pay mockups) */
.bp-mock-window {
  width: 100%;
  background: #FFFFFF;
  border-radius: 14px !important;
  padding: 18px;
  box-shadow:
    0 30px 60px -22px rgba(13, 17, 23, 0.5),
    0 8px 24px -10px rgba(13, 17, 23, 0.25);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bp-mock-window-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bp-line-soft);
}
.bp-mock-window-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--bp-ink);
  letter-spacing: -0.2px;
}
.bp-mock-window-meta {
  font-size: 11px;
  font-weight: 700;
  color: var(--bp-mute);
  font-family: 'JetBrains Mono', monospace;
}
.bp-mock-window-meta--up { color: var(--bp-emerald); }

.bp-mock-ticks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 600;
  color: var(--bp-mute-2);
}
.bp-mock--merc .bp-mock-ticks,
.bp-mock--cust .bp-mock-ticks { grid-template-columns: repeat(7, 1fr); }
.bp-mock-ticks span { text-align: center; }

.bp-mock-callout {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: linear-gradient(135deg, rgba(59, 91, 219, 0.06), rgba(245, 158, 11, 0.05));
  border: 1px solid rgba(59, 91, 219, 0.16);
  border-radius: 11px !important;
}
.bp-mock-callout-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 9px !important;
  background: linear-gradient(135deg, var(--bp-indigo), var(--bp-indigo-2));
  color: #fff;
  font-weight: 800;
  flex-shrink: 0;
}
.bp-mock-callout strong {
  font-size: 12.5px;
  color: var(--bp-ink);
  font-weight: 700;
}
.bp-mock-callout-sub {
  font-size: 11px;
  color: var(--bp-mute);
  margin-top: 1px;
}

/* ═══════════════════════════════════════════════════════
   MOCK — Payments (POS catalog + cart + animated modal)
═══════════════════════════════════════════════════════ */
.bp-mock--pay {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 640px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    0 30px 60px -22px rgba(13, 17, 23, 0.55),
    0 8px 24px -10px rgba(13, 17, 23, 0.25);
}
.bp-mock-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.bp-mock-tile {
  aspect-ratio: 1;
  border-radius: 10px !important;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.bp-mock-tile-thumb {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.45), rgba(255,255,255,0));
  border-radius: 10px !important;
  pointer-events: none;
}
.bp-mock-tile-name {
  position: relative;
  font-size: 10.5px;
  font-weight: 700;
  color: #0D1117;
  letter-spacing: -0.2px;
  z-index: 1;
}
.bp-mock-tile--amber  { background: #FEF3C7; }
.bp-mock-tile--green  { background: #DCFCE7; }
.bp-mock-tile--cream  { background: #F5F0E6; }
.bp-mock-tile--mocha  { background: #FAEBD7; }
.bp-mock-tile--gold   { background: #FFEDD5; }
.bp-mock-tile--olive  { background: #ECFCCB; }
.bp-mock-tile--rust   { background: #FED7AA; }
.bp-mock-tile--lime   { background: #DCFCE7; }

/* "Hot" tile = the one the cursor will tap */
.bp-mock-tile.is-hot {
  position: relative;
  z-index: 1;
}
.bp-mock-tile.is-hot::after {
  content: "";
  position: absolute;
  inset: -2px;
  border: 2px solid var(--bp-ink);
  border-radius: 12px !important;
  opacity: 0;
  animation: bpHotRing 5.6s ease-in-out infinite;
}
@keyframes bpHotRing {
  0%, 26%   { opacity: 0; transform: scale(1); }
  30%       { opacity: 1; transform: scale(1.05); }
  40%, 100% { opacity: 0; transform: scale(1); }
}

/* Dim the OTHER tiles when the modal is open */
.bp-mock--pay .bp-mock-tile:not(.is-hot) {
  animation: bpTileDim 5.6s ease-in-out infinite;
}
@keyframes bpTileDim {
  0%, 28%    { opacity: 1; }
  36%, 88%   { opacity: 0.4; }
  100%       { opacity: 1; }
}

.bp-mock-cart {
  background: #F9FAFB;
  border: 1px solid var(--bp-line);
  border-radius: 11px !important;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.bp-mock-cart-head {
  font-size: 11px;
  font-weight: 700;
  color: var(--bp-mute);
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--bp-line);
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}
.bp-mock-cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: var(--bp-ink-2);
  padding: 2px 0;
  font-family: 'JetBrains Mono', monospace;
}
.bp-mock-cart-divider {
  height: 1px;
  background: var(--bp-line-soft);
  margin: 4px 0;
}
.bp-mock-cart-row--total { font-weight: 800; color: var(--bp-ink); font-size: 13px; }
.bp-mock-cart-pay {
  margin-top: 10px;
  background: var(--bp-ink);
  color: #FFFFFF;
  border: 0;
  padding: 9px 12px;
  border-radius: 9px !important;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

/* Modifier modal — animated drop-in */
.bp-mock-modal {
  position: absolute;
  top: 22%;
  left: 16%;
  width: 360px;
  background: #FFFFFF;
  border-radius: 14px !important;
  padding: 14px;
  box-shadow:
    0 30px 60px -20px rgba(13, 17, 23, 0.55),
    0 8px 24px -10px rgba(13, 17, 23, 0.25);
  z-index: 5;
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: bpModalIn 5.6s ease-in-out infinite;
}
@keyframes bpModalIn {
  0%, 32%   { opacity: 0; transform: translateY(8px) scale(0.96); }
  40%       { opacity: 1; transform: translateY(0) scale(1); }
  82%       { opacity: 1; transform: translateY(0) scale(1); }
  88%, 100% { opacity: 0; transform: translateY(8px) scale(0.96); }
}
.bp-mock-modal-head {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--bp-line-soft);
  margin-bottom: 10px;
}
.bp-mock-modal-x {
  width: 26px; height: 26px;
  border-radius: 999px !important;
  border: 1px solid var(--bp-line);
  background: #fff;
  color: var(--bp-ink-2);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}
.bp-mock-modal-title { display: flex; flex-direction: column; }
.bp-mock-modal-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--bp-ink);
}
.bp-mock-modal-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--bp-mute);
}
.bp-mock-modal-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
}
.bp-mock-modal-qty button {
  width: 22px; height: 22px;
  border-radius: 999px !important;
  border: 1px solid var(--bp-line);
  background: #fff;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}
.bp-mock-modal-done {
  padding: 7px 12px;
  background: var(--bp-ink);
  color: #fff;
  border: 0;
  border-radius: 999px !important;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}
.bp-mock-modal-section { margin-bottom: 10px; }
.bp-mock-modal-section:last-child { margin-bottom: 0; }
.bp-mock-modal-section-lbl {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bp-mute);
  margin-bottom: 6px;
}
.bp-mock-modal-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.bp-mock-modal-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid var(--bp-line);
  border-radius: 9px !important;
  background: #fff;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--bp-ink-2);
}
.bp-mock-modal-chip em {
  font-style: normal;
  font-family: 'JetBrains Mono', monospace;
  color: var(--bp-mute);
  font-size: 10.5px;
}
.bp-mock-modal-chip.is-on {
  background: var(--bp-ink);
  color: #fff;
  border-color: var(--bp-ink);
}

/* Animated cursor — moves to the Mansaf tile, taps, then opens modal */
.bp-mock-cursor {
  position: absolute;
  top: 80%;
  left: 8%;
  z-index: 8;
  filter: drop-shadow(0 4px 8px rgba(13, 17, 23, 0.35));
  animation: bpCursorPath 5.6s ease-in-out infinite;
}
@keyframes bpCursorPath {
  0%   { top: 82%; left: 6%; transform: scale(1); }
  18%  { top: 22%; left: 18%; transform: scale(1); }
  26%  { top: 22%; left: 18%; transform: scale(0.85); }   /* tap */
  32%  { top: 22%; left: 18%; transform: scale(1); }
  44%  { top: 38%; left: 42%; transform: scale(1); }
  56%  { top: 56%; left: 52%; transform: scale(1); }
  72%  { top: 62%; left: 78%; transform: scale(1); }      /* hovers "Done" */
  80%  { top: 62%; left: 78%; transform: scale(0.85); }
  86%  { top: 62%; left: 78%; transform: scale(1); }
  100% { top: 82%; left: 6%;  transform: scale(1); }
}

/* ═══════════════════════════════════════════════════════
   MOCK — Team
═══════════════════════════════════════════════════════ */
.bp-mock--team .bp-mock-window { max-width: 480px; }
.bp-mock-rows { display: flex; flex-direction: column; gap: 10px; }
.bp-mock-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: 12px;
}
.bp-mock-row-head { display: flex; align-items: center; gap: 8px; }
.bp-mock-row-av {
  width: 26px; height: 26px;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 11px;
}
.bp-mock-row-av--indigo { background: linear-gradient(135deg, #6E8BFF, #3B5BDB); }
.bp-mock-row-av--rose   { background: linear-gradient(135deg, #FB7185, #E11D48); }
.bp-mock-row-av--amber  { background: linear-gradient(135deg, #FBBF24, #F59E0B); }
.bp-mock-row-av--jade   { background: linear-gradient(135deg, #5EEAD4, #14B8A6); }
.bp-mock-row-meta { display: flex; flex-direction: column; min-width: 0; }
.bp-mock-row-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--bp-ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.bp-mock-row-dot {
  width: 6px; height: 6px;
  border-radius: 50% !important;
  background: var(--bp-emerald);
  box-shadow: 0 0 6px var(--bp-emerald);
}
.bp-mock-row-role {
  font-size: 10.5px;
  color: var(--bp-mute);
}
.bp-mock-row-bar {
  position: relative;
  height: 10px;
  background: var(--bp-line-soft);
  border-radius: 5px !important;
  overflow: hidden;
}
.bp-mock-row-fill {
  position: absolute;
  top: 0; bottom: 0;
  left: var(--start);
  right: calc(100% - var(--end));
  border-radius: 5px !important;
}
.bp-mock-row-fill--indigo { background: linear-gradient(90deg, #6E8BFF, #3B5BDB); }
.bp-mock-row-fill--rose   { background: linear-gradient(90deg, #FB7185, #E11D48); }
.bp-mock-row-fill--amber  { background: linear-gradient(90deg, #FBBF24, #F59E0B); }
.bp-mock-row-fill--jade   { background: linear-gradient(90deg, #5EEAD4, #14B8A6); }

/* ═══════════════════════════════════════════════════════
   MOCK — Loyalty
═══════════════════════════════════════════════════════ */
.bp-mock--loy {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
  width: 100%;
  max-width: 520px;
}
.bp-mock-loy-pass {
  padding: 16px;
  background:
    radial-gradient(110% 60% at 100% 0%, rgba(251, 191, 36, 0.22), transparent 60%),
    linear-gradient(140deg, #2E1828, #4A1530 60%, #1F1438);
  border-radius: 14px !important;
  color: #fff;
  box-shadow: 0 30px 50px -20px rgba(225, 29, 72, 0.5);
}
.bp-mock-loy-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.bp-mock-loy-brand {
  font-size: 10.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}
.bp-mock-loy-tier {
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 8px;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #2A1A0A;
  border-radius: 999px !important;
  letter-spacing: 0.12em;
}
.bp-mock-loy-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.4px;
}
.bp-mock-loy-meta {
  font-size: 11px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 10px;
}
.bp-mock-loy-stamps {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 3px;
  margin-bottom: 10px;
}
.bp-mock-stamp {
  aspect-ratio: 1;
  border-radius: 999px !important;
  border: 1.4px solid rgba(255,255,255,0.22);
}
.bp-mock-stamp.is-filled {
  background: linear-gradient(135deg, #FBBF24, #E11D48);
  border-color: transparent;
}
.bp-mock-loy-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 10.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}
.bp-mock-loy-foot span:last-child {
  text-transform: none;
  letter-spacing: -0.2px;
  color: #FBBF24;
  font-size: 11.5px;
}
.bp-mock-loy-kpis {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bp-mock-loy-kpi {
  background: #fff;
  border-radius: 12px !important;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.bp-mock-loy-kpi span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bp-mute);
}
.bp-mock-loy-kpi strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 800;
  color: var(--bp-ink);
  letter-spacing: -0.4px;
}

/* ═══════════════════════════════════════════════════════
   MOCK — Merchant
═══════════════════════════════════════════════════════ */
.bp-mock--merc .bp-mock-window { max-width: 500px; }
.bp-mock-chart {
  position: relative;
  width: 100%;
  height: 140px;
}
.bp-mock-chart svg { width: 100%; height: 100%; }

/* ═══════════════════════════════════════════════════════
   MOCK — Customer
═══════════════════════════════════════════════════════ */
.bp-mock--cust .bp-mock-window { max-width: 480px; }
.bp-mock-guest {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--bp-cream-2);
  border-radius: 11px !important;
}
.bp-mock-guest-av {
  width: 38px; height: 38px;
  border-radius: 999px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #6E8BFF, #3B5BDB);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}
.bp-mock-guest-meta { display: flex; flex-direction: column; }
.bp-mock-guest-name {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.3px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bp-mock-guest-pill {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 7px;
  background: linear-gradient(135deg, #FBBF24, #F59E0B);
  color: #2A1A0A;
  border-radius: 999px !important;
  letter-spacing: 0.1em;
}
.bp-mock-guest-tag {
  font-size: 11px;
  color: var(--bp-mute);
}
.bp-mock-guest-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bp-mock-guest-cell {
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--bp-line-soft);
  border-radius: 10px !important;
  display: flex;
  flex-direction: column;
}
.bp-mock-guest-cell span {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bp-mute);
}
.bp-mock-guest-cell strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 800;
  color: var(--bp-ink);
}

/* ═══════════════════════════════════════════════════════
   MOCK — Cashflow
═══════════════════════════════════════════════════════ */
.bp-mock--cash .bp-mock-window { max-width: 460px; }
.bp-mock-cash-hero {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--bp-cream-2), #FFFFFF);
  border-radius: 12px !important;
}
.bp-mock-cash-lbl {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bp-mute);
}
.bp-mock-cash-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 800;
  color: var(--bp-ink);
  letter-spacing: -0.6px;
}
.bp-mock-cash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.bp-mock-cash-cell {
  padding: 8px 10px;
  background: #fff;
  border: 1px solid var(--bp-line-soft);
  border-radius: 10px !important;
  display: flex;
  flex-direction: column;
}
.bp-mock-cash-cell span {
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--bp-mute);
}
.bp-mock-cash-cell strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 800;
  color: var(--bp-ink);
}
.bp-mock-cash-cell--ok strong { color: var(--bp-emerald); }
.bp-mock-cash-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 56px;
}
.bp-mock-cash-bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, rgba(59, 91, 219, 0.6), rgba(59, 91, 219, 0.18));
  border-radius: 3px 3px 0 0 !important;
}
.bp-mock-cash-bars span.is-now {
  background: linear-gradient(180deg, var(--bp-indigo), var(--bp-indigo-2));
  box-shadow: 0 0 14px rgba(59, 91, 219, 0.4);
}

/* ═══════════════════════════════════════════════════════
   Responsive
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .bp-section { height: auto; min-height: 0; max-height: none; padding: 56px 24px; }
  .bp-wrap { grid-template-columns: 1fr; gap: 40px; height: auto; }
  .bp-stage { height: auto; aspect-ratio: 4 / 3.4; max-height: none; }
  .bp-col--stage { order: -1; }
  .bp-title { max-width: none; }
}
@media (max-width: 640px) {
  .bp-mock--pay { grid-template-columns: 1fr; }
  .bp-mock-modal { width: 86%; left: 7%; }
}
