:root {
  --bavelgo-green: #0B7A3B;
  --bavelgo-action: #18B45B;
  --bavelgo-deep: #064D2A;
  --bavelgo-soft-green: #EEF8F2;
  --bavelgo-mint: #F6FCF8;
  --bavelgo-warm-bg: #FAF8F3;
  --bavelgo-ink: #121A17;
  --bavelgo-muted: #5B6B63;
  --bavelgo-light-text: #7A8A82;
  --bavelgo-border: #DDEAE2;
  --bavelgo-card: #FFFFFF;
  --bavelgo-warning: #F59E0B;
  --bavelgo-danger: #E5484D;
  --bavelgo-success: #18B45B;

  --font-heading: 'Poppins', Arial, sans-serif;
  --font-body: Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-soft: 0 18px 45px rgba(18, 26, 23, 0.06);
  --shadow-card: 0 24px 70px rgba(18, 26, 23, 0.09);
  --shadow-green: 0 14px 34px rgba(11, 122, 59, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--bavelgo-ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(24, 180, 91, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 48%, #f7fbf8 100%);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.brand-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(221, 234, 226, 0.75);
}

.header-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 24px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(145deg, var(--bavelgo-green), var(--bavelgo-action));
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: 0 14px 32px rgba(11, 122, 59, 0.22);
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  color: var(--bavelgo-ink);
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
  color: var(--bavelgo-green);
}

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

.login-link {
  font-size: 14px;
  color: var(--bavelgo-ink);
}

.btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 14px;
  padding: 13px 19px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(145deg, var(--bavelgo-green), #087137);
  color: #fff;
  box-shadow: var(--shadow-green);
}

.btn-secondary {
  background: #fff;
  color: var(--bavelgo-ink);
  border-color: var(--bavelgo-border);
}

.btn-secondary:hover {
  border-color: rgba(11, 122, 59, 0.28);
  box-shadow: 0 12px 28px rgba(18, 26, 23, 0.07);
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--bavelgo-border);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.mobile-menu-btn span,
.mobile-menu-btn::before,
.mobile-menu-btn::after {
  content: "";
  width: 18px;
  height: 2px;
  display: block;
  background: var(--bavelgo-ink);
  border-radius: 999px;
  transition: 180ms ease;
}

.mobile-menu-btn {
  gap: 4px;
  flex-direction: column;
}

.nav-open .mobile-menu-btn span {
  opacity: 0;
}

.nav-open .mobile-menu-btn::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .mobile-menu-btn::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  padding: 76px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--bavelgo-soft-green);
  color: var(--bavelgo-green);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bavelgo-action);
  box-shadow: 0 0 0 6px rgba(24, 180, 91, 0.13);
}

.hero-title,
.section-title {
  font-family: var(--font-heading);
  letter-spacing: -0.055em;
  margin: 0;
}

.hero-title {
  max-width: 660px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  font-weight: 600;
}

.text-green {
  color: var(--bavelgo-green);
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--bavelgo-muted);
  font-size: 18px;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  color: var(--bavelgo-muted);
  font-size: 14px;
}

.avatar-stack {
  display: flex;
}

.avatar {
  width: 30px;
  height: 30px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: linear-gradient(145deg, #d9efe2, #f7d7b7);
}

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

.stars {
  color: #f6a600;
  letter-spacing: 1px;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.orbit {
  position: absolute;
  inset: -30px -30px auto auto;
  width: 580px;
  height: 580px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(24, 180, 91, 0.16) 0 1px, transparent 1px 22px);
  mask-image: radial-gradient(circle, #000 0%, transparent 68%);
  opacity: 0.75;
  animation: slow-spin 22s linear infinite;
}

.product-stage {
  position: relative;
  z-index: 2;
  padding-top: 18px;
}

.dashboard-card {
  position: relative;
  border: 1px solid var(--bavelgo-border);
  border-radius: 30px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.dashboard-screen {
  border-radius: 22px;
  overflow: hidden;
  background: #f9fcfa;
  border: 1px solid rgba(221, 234, 226, 0.9);
}

.dashboard-top {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--bavelgo-border);
  background: #fff;
}

.dots {
  display: flex;
  gap: 7px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #dce8e1;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--bavelgo-green);
  font-weight: 700;
  font-size: 12px;
}

.live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--bavelgo-action);
  box-shadow: 0 0 0 5px rgba(24, 180, 91, 0.15);
}

.dashboard-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 360px;
}

.sidebar {
  padding: 18px 14px;
  background: #07130d;
  color: rgba(255,255,255,0.72);
}

.side-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: #fff;
  font-weight: 700;
}

.side-item {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 32px;
  padding: 8px 9px;
  border-radius: 11px;
  font-size: 12px;
}

.side-item.active {
  background: rgba(24, 180, 91, 0.15);
  color: #fff;
}

.side-icon {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(24, 180, 91, 0.22);
  border: 1px solid rgba(24, 180, 91, 0.35);
}

.screen-content {
  padding: 20px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.metric {
  padding: 13px;
  border: 1px solid var(--bavelgo-border);
  border-radius: 16px;
  background: #fff;
}

.metric span {
  display: block;
  color: var(--bavelgo-muted);
  font-size: 11px;
  margin-bottom: 6px;
}

.metric strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 18px;
  letter-spacing: -0.035em;
}

.chart-card {
  margin-top: 14px;
  padding: 18px;
  border: 1px solid var(--bavelgo-border);
  border-radius: 18px;
  background: #fff;
}

.chart {
  height: 126px;
  position: relative;
  overflow: hidden;
}

.chart svg {
  width: 100%;
  height: 100%;
}

.chart-line {
  stroke-dasharray: 720;
  stroke-dashoffset: 720;
  animation: draw-line 2.4s ease forwards;
}

.orders-panel {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.order-list,
.alert-card {
  border: 1px solid var(--bavelgo-border);
  border-radius: 18px;
  padding: 14px;
  background: #fff;
}

.order-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  color: var(--bavelgo-muted);
  font-size: 12px;
  border-bottom: 1px solid #eef4f0;
}

.order-row:last-child {
  border-bottom: 0;
}

.alert-card strong {
  display: block;
  margin: 8px 0 5px;
}

.alert-card p {
  margin: 0;
  font-size: 12px;
}

.float-card {
  position: absolute;
  z-index: 5;
  width: 190px;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid rgba(221, 234, 226, 0.95);
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  animation: float-soft 5s ease-in-out infinite;
}

.float-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.float-card span {
  color: var(--bavelgo-muted);
  font-size: 12px;
}

.float-order {
  right: -20px;
  top: 95px;
}

.float-stock {
  right: 18px;
  bottom: 92px;
  animation-delay: 0.7s;
}

.payment-terminal {
  position: absolute;
  right: 38px;
  bottom: -36px;
  width: 152px;
  height: 205px;
  border-radius: 24px;
  background: linear-gradient(145deg, #121a17, #060b08);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 65px rgba(18, 26, 23, 0.24);
  transform: rotate(-7deg);
}

.terminal-screen {
  width: 112px;
  height: 70px;
  margin: 22px auto 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, #0f3d26, #0b1c13);
  border: 1px solid rgba(24, 180, 91, 0.35);
}

.terminal-keys {
  width: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.terminal-keys span {
  height: 16px;
  border-radius: 5px;
  background: #27312c;
}

.terminal-keys span:nth-child(4) {
  background: var(--bavelgo-action);
}

.terminal-keys span:nth-child(5) {
  background: #f6a600;
}

.terminal-keys span:nth-child(6) {
  background: var(--bavelgo-danger);
}

.phone-mockup {
  position: absolute;
  left: -18px;
  bottom: 8px;
  width: 132px;
  height: 262px;
  border-radius: 26px;
  background: #0a100d;
  padding: 8px;
  box-shadow: 0 26px 60px rgba(18, 26, 23, 0.2);
  transform: rotate(-4deg);
}

.phone-screen {
  height: 100%;
  border-radius: 20px;
  background: #fff;
  padding: 14px 10px;
  overflow: hidden;
}

.food-line {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #edf3ef;
}

.food-img {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background:
    radial-gradient(circle at 40% 40%, #f6a600 0 25%, transparent 27%),
    linear-gradient(145deg, #dd6b20, #8a4b18);
}

.food-text {
  flex: 1;
}

.food-text span {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: #dfeae4;
  margin-bottom: 5px;
}

.food-text span:nth-child(2) {
  width: 62%;
}

.feature-strip {
  padding: 24px 0 18px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
}

.feature-mini {
  min-height: 94px;
  border: 1px solid var(--bavelgo-border);
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  padding: 14px 10px;
  text-align: center;
  box-shadow: 0 10px 26px rgba(18, 26, 23, 0.04);
}

.icon-box {
  width: 34px;
  height: 34px;
  margin: 0 auto 8px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  background: var(--bavelgo-soft-green);
  color: var(--bavelgo-green);
}

.icon-box svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-mini strong {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.feature-mini span {
  display: block;
  color: var(--bavelgo-muted);
  font-size: 11px;
  line-height: 1.35;
}

.section {
  padding: 68px 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.section-title {
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 500;
}

.section-copy {
  margin: 16px auto 0;
  color: var(--bavelgo-muted);
  font-size: 17px;
  line-height: 1.65;
}

.live-flow-section {
  padding-top: 34px;
}

.live-flow {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 8% 20%, rgba(24, 180, 91, 0.34), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(24, 180, 91, 0.24), transparent 24%),
    linear-gradient(135deg, #06110c 0%, #0b1810 52%, #07130d 100%);
  box-shadow: 0 30px 80px rgba(5, 8, 7, 0.24);
}

.live-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(24, 180, 91, 0.16), transparent);
  transform: translateX(-100%);
  animation: light-sweep 7s ease-in-out infinite;
}

.live-head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
  margin-bottom: 24px;
}

.live-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(28px, 3vw, 44px);
}

.live-head p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.68);
}

.live-pill {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(24, 180, 91, 0.14);
  border: 1px solid rgba(24, 180, 91, 0.26);
  color: #96f1bd;
  font-weight: 700;
  font-size: 12px;
}

.flow-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.flow-step {
  position: relative;
  min-height: 142px;
  padding: 16px;
  border-radius: 22px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.flow-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -17px;
  width: 17px;
  height: 2px;
  background: linear-gradient(90deg, var(--bavelgo-action), transparent);
}

.flow-step .icon-box {
  margin: 0 0 12px;
  background: rgba(24, 180, 91, 0.14);
  color: #80eead;
}

.flow-number {
  width: 23px;
  height: 23px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--bavelgo-action);
  color: #07130d;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 10px;
}

.flow-step strong {
  display: block;
  margin-bottom: 6px;
}

.flow-step span {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  line-height: 1.45;
}

.inventory-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 26px;
  align-items: start;
}

.inventory-panel,
.table-panel,
.usage-stack > div {
  background: #fff;
  border: 1px solid var(--bavelgo-border);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.inventory-panel {
  padding: 28px;
}

.inventory-panel h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.05;
}

.check-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--bavelgo-muted);
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 1px;
  border-radius: 999px;
  background:
    linear-gradient(145deg, var(--bavelgo-green), var(--bavelgo-action));
  box-shadow: 0 0 0 5px rgba(24, 180, 91, 0.11);
}

.inventory-data {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 18px;
}

.table-panel {
  overflow: hidden;
}

.table-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--bavelgo-border);
}

.table-title strong {
  font-family: var(--font-heading);
  font-weight: 500;
}

.inventory-table {
  width: 100%;
  border-collapse: collapse;
}

.inventory-table th,
.inventory-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #edf3ef;
  font-size: 14px;
  text-align: left;
}

.inventory-table th {
  color: var(--bavelgo-light-text);
  font-weight: 700;
  font-size: 12px;
}

.status {
  display: inline-flex;
  padding: 5px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.status.good {
  background: #e9f9ef;
  color: var(--bavelgo-green);
}

.status.low {
  background: #fff1e5;
  color: #d35a0b;
}

.usage-stack {
  display: grid;
  gap: 18px;
}

.usage-card {
  padding: 20px;
}

.usage-card span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.usage-card strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.mini-chart {
  height: 54px;
  margin-top: 13px;
}

.hardware-section {
  background: var(--bavelgo-warm-bg);
  border-top: 1px solid rgba(221, 234, 226, 0.7);
  border-bottom: 1px solid rgba(221, 234, 226, 0.7);
}

.hardware-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.hardware-card {
  min-height: 235px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(221, 234, 226, 0.85);
  box-shadow: 0 14px 38px rgba(18, 26, 23, 0.06);
}

.hardware-visual {
  height: 112px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
}

.device {
  position: relative;
  background: linear-gradient(145deg, #111916, #040706);
  box-shadow: 0 20px 38px rgba(18, 26, 23, 0.18);
}

.device.pos {
  width: 92px;
  height: 76px;
  border-radius: 16px;
}

.device.pos::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 9px;
  background:
    linear-gradient(90deg, rgba(24,180,91,.55), transparent),
    #102319;
}

.device.terminal {
  width: 62px;
  height: 100px;
  border-radius: 18px;
  transform: rotate(-8deg);
}

.device.terminal::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 16px;
  width: 38px;
  height: 30px;
  border-radius: 8px;
  background: #103a24;
}

.device.kitchen {
  width: 116px;
  height: 76px;
  border-radius: 14px;
}

.device.kitchen::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, #173f28 0 34%, #111916 34% 100%);
}

.device.printer {
  width: 88px;
  height: 72px;
  border-radius: 16px 16px 12px 12px;
}

.device.printer::before {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  top: -18px;
  height: 28px;
  border-radius: 8px 8px 0 0;
  background: #eef2ef;
  border: 1px solid #dfe6e1;
}

.hardware-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.hardware-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 20px;
}

.video-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 32px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(24,180,91,0.35), transparent 30%),
    linear-gradient(135deg, #06110c, #0b1810);
  box-shadow: 0 28px 70px rgba(5, 8, 7, 0.2);
}

.video-card.small {
  min-height: 185px;
}

.video-card + .video-card {
  margin-top: 20px;
}

.video-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.video-card p {
  max-width: 520px;
  color: rgba(255,255,255,0.68);
}

.play-button {
  position: absolute;
  left: 28px;
  bottom: 28px;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.12);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.play-button::before {
  content: "";
  margin-left: 4px;
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 16px solid #fff;
}

.video-flow-mini {
  position: absolute;
  right: 26px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 11px;
}

.video-node {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(24, 180, 91, 0.13);
  border: 1px solid rgba(24, 180, 91, 0.24);
  color: #83f1b3;
}

.video-node svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
}

.video-flow-mini span {
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--bavelgo-action), transparent);
}

.cta-band {
  padding: 30px;
  border-radius: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 85% 0%, rgba(255,255,255,0.18), transparent 28%),
    linear-gradient(145deg, var(--bavelgo-green), var(--bavelgo-deep));
  box-shadow: var(--shadow-green);
}

.cta-band h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(30px, 4vw, 50px);
}

.cta-band p {
  color: rgba(255,255,255,0.74);
  margin-bottom: 0;
}

.cta-band .btn-secondary {
  min-width: 190px;
}

.site-footer {
  padding: 40px 0;
  background: #07130d;
  color: rgba(255,255,255,0.72);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(4, 1fr);
  gap: 28px;
}

.footer-brand .logo {
  color: #fff;
}

.footer-brand p {
  max-width: 300px;
  color: rgba(255,255,255,0.62);
}

.footer-col strong {
  display: block;
  color: #fff;
  margin-bottom: 12px;
}

.footer-col a {
  display: block;
  padding: 6px 0;
  color: rgba(255,255,255,0.62);
  font-size: 14px;
}

.footer-col a:hover {
  color: #fff;
}

@keyframes slow-spin {
  to { transform: rotate(360deg); }
}

@keyframes draw-line {
  to { stroke-dashoffset: 0; }
}

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

@keyframes light-sweep {
  0%, 44% { transform: translateX(-100%); }
  70%, 100% { transform: translateX(100%); }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .hero-grid,
  .inventory-layout,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .feature-grid {
    grid-template-columns: repeat(5, 1fr);
  }

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

  .hardware-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav,
  .header-actions .login-link {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 88px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--bavelgo-border);
    border-radius: 22px;
    background: rgba(255,255,255,0.96);
    box-shadow: var(--shadow-card);
    transform: translateY(-12px);
    pointer-events: none;
    opacity: 0;
    transition: 180ms ease;
  }

  .nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    padding: 14px;
    border-bottom: 1px solid #edf3ef;
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  .hero-title {
    font-size: clamp(42px, 12vw, 62px);
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .dashboard-body {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .metric-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orders-panel {
    grid-template-columns: 1fr;
  }

  .phone-mockup,
  .payment-terminal,
  .float-card {
    display: none;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-mini {
    min-height: 88px;
  }

  .live-flow {
    padding: 24px;
    border-radius: 26px;
  }

  .live-head {
    display: block;
  }

  .live-pill {
    margin-top: 14px;
  }

  .flow-timeline {
    grid-template-columns: 1fr;
  }

  .flow-step:not(:last-child)::after {
    left: 34px;
    top: auto;
    bottom: -18px;
    width: 2px;
    height: 18px;
    background: linear-gradient(180deg, var(--bavelgo-action), transparent);
  }

  .inventory-data {
    grid-template-columns: 1fr;
  }

  .inventory-table th:nth-child(3),
  .inventory-table td:nth-child(3),
  .inventory-table th:nth-child(4),
  .inventory-table td:nth-child(4) {
    display: none;
  }

  .hardware-grid {
    grid-template-columns: 1fr;
  }

  .video-card {
    min-height: 330px;
  }

  .video-flow-mini {
    right: 18px;
    left: 18px;
    bottom: 102px;
    justify-content: center;
    transform: scale(0.82);
  }

  .cta-band {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .cta-band .btn-secondary,
  .cta-band .btn-primary {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

/* ================================
   Bavelgo refinement v2
   Lighter scroll, real hardware feel,
   dynamic inventory, reviews and video flow
================================ */

.orbit {
  animation: none !important;
  opacity: 0.32;
}

.live-flow::after {
  display: none;
}

.dashboard-card,
.float-card,
hardware-card,
.table-panel,
.inventory-panel,
.usage-stack > div {
  backdrop-filter: none !important;
}

.reveal {
  transition: opacity 420ms ease, transform 420ms ease;
}

.section {
  contain: layout paint;
}

/* Hero hardware cluster */
.payment-terminal {
  display: none !important;
}

.hero-hardware-stack {
  position: absolute;
  right: 12px;
  bottom: -48px;
  z-index: 7;
  display: flex;
  align-items: flex-end;
  gap: 14px;
}

.bvg-device {
  position: relative;
  background: linear-gradient(145deg, #111a16, #050806);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 28px 58px rgba(18, 26, 23, 0.22);
}

.bvg-device::after {
  content: "bavelgo";
  position: absolute;
  color: rgba(255,255,255,0.78);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.04em;
  font-size: 10px;
}

.bvg-pay-terminal {
  width: 96px;
  height: 142px;
  border-radius: 24px;
  transform: rotate(-7deg);
}

.bvg-pay-terminal .screen {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 68px;
  height: 46px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(24,180,91,.45), rgba(11,122,59,.22)),
    #0d2116;
  border: 1px solid rgba(24,180,91,.34);
}

.bvg-pay-terminal .keys {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.bvg-pay-terminal .keys span {
  height: 12px;
  border-radius: 5px;
  background: #29342e;
}

.bvg-pay-terminal .keys span:nth-child(4) {
  background: var(--bavelgo-action);
}

.bvg-pay-terminal .keys span:nth-child(5) {
  background: #f6a600;
}

.bvg-pay-terminal .keys span:nth-child(6) {
  background: var(--bavelgo-danger);
}

.bvg-pay-terminal::after {
  left: 19px;
  top: 68px;
}

.bvg-receipt-printer {
  width: 120px;
  height: 78px;
  border-radius: 20px 20px 15px 15px;
}

.bvg-receipt-printer .paper {
  position: absolute;
  left: 22px;
  right: 22px;
  top: -34px;
  height: 48px;
  border: 1px solid #dbe8e0;
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: #f8fbf9;
}

.bvg-receipt-printer .slot {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 22px;
  height: 7px;
  border-radius: 999px;
  background: #2d3832;
}

.bvg-receipt-printer::after {
  left: 30px;
  bottom: 16px;
}

.bvg-qr-stand {
  width: 72px;
  height: 112px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--bavelgo-border);
  box-shadow: 0 24px 48px rgba(18,26,23,.13);
  display: grid;
  place-items: center;
  transform: rotate(4deg);
}

.bvg-qr-stand .qr-grid {
  width: 38px;
  height: 38px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.bvg-qr-stand .qr-grid span {
  background: var(--bavelgo-green);
  border-radius: 2px;
}

.bvg-qr-stand small {
  position: absolute;
  top: 12px;
  color: var(--bavelgo-muted);
  font-size: 9px;
  font-weight: 700;
}

.bvg-qr-stand strong {
  position: absolute;
  bottom: 12px;
  color: var(--bavelgo-green);
  font-family: var(--font-heading);
  font-size: 11px;
}

/* Dynamic inventory */
.inventory-dynamic-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(24,180,91,.08), transparent 28%),
    #ffffff;
}

.inventory-dynamic-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 26px;
  align-items: start;
}

.inventory-control-card,
.inventory-live-card,
.inventory-process-card {
  background: #fff;
  border: 1px solid var(--bavelgo-border);
  border-radius: 30px;
  box-shadow: 0 18px 42px rgba(18,26,23,.055);
}

.inventory-control-card {
  padding: 30px;
}

.inventory-control-card h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.045em;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
}

.inventory-tabs {
  margin-top: 26px;
  display: grid;
  gap: 10px;
}

.inventory-tab {
  width: 100%;
  border: 1px solid var(--bavelgo-border);
  border-radius: 18px;
  background: #fff;
  color: var(--bavelgo-ink);
  padding: 15px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  cursor: pointer;
  transition: 160ms ease;
}

.inventory-tab span {
  display: block;
  margin-top: 4px;
  color: var(--bavelgo-muted);
  font-weight: 400;
  font-size: 13px;
}

.inventory-tab.is-active {
  border-color: rgba(11,122,59,.24);
  background: var(--bavelgo-soft-green);
  color: var(--bavelgo-green);
}

.inventory-live-card {
  overflow: hidden;
}

.inventory-live-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--bavelgo-border);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.inventory-live-title strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.035em;
}

.inventory-live-title span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.inventory-live-table {
  width: 100%;
  border-collapse: collapse;
}

.inventory-live-table th,
.inventory-live-table td {
  padding: 15px 22px;
  border-bottom: 1px solid #edf3ef;
  text-align: left;
  font-size: 14px;
}

.inventory-live-table th {
  color: var(--bavelgo-light-text);
  font-size: 12px;
  font-weight: 800;
}

.inventory-change {
  color: var(--bavelgo-green);
  font-weight: 800;
}

.inventory-change.out {
  color: var(--bavelgo-danger);
}

.inventory-process-card {
  margin-top: 18px;
  padding: 20px;
}

.process-title {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.process-title strong {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 500;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.process-step {
  position: relative;
  padding: 16px 12px;
  min-height: 118px;
  border-radius: 20px;
  background: var(--bavelgo-mint);
  border: 1px solid var(--bavelgo-border);
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 42px;
  width: 10px;
  height: 2px;
  background: var(--bavelgo-action);
}

.process-step small {
  color: var(--bavelgo-green);
  font-weight: 800;
}

.process-step strong {
  display: block;
  margin-top: 9px;
  font-size: 14px;
}

.process-step span {
  display: block;
  margin-top: 5px;
  color: var(--bavelgo-muted);
  font-size: 12px;
  line-height: 1.35;
}

.inventory-kpis {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.inventory-kpi {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--bavelgo-border);
  background: #fff;
}

.inventory-kpi span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.inventory-kpi strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 26px;
  letter-spacing: -0.04em;
}

/* Better Bavelgo hardware kit */
.hardware-section {
  background:
    radial-gradient(circle at 5% 10%, rgba(24,180,91,.08), transparent 30%),
    var(--bavelgo-warm-bg);
}

.bvg-kit-stage {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  align-items: stretch;
}

.bvg-kit-hero {
  min-height: 430px;
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 30px;
  background:
    radial-gradient(circle at 20% 15%, rgba(24,180,91,.18), transparent 34%),
    linear-gradient(145deg, #ffffff, #f6fbf7);
  border: 1px solid var(--bavelgo-border);
  box-shadow: 0 26px 64px rgba(18,26,23,.08);
}

.bvg-kit-hero h3 {
  margin: 0;
  max-width: 430px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
}

.bvg-kit-hero p {
  max-width: 430px;
}

.bvg-counter-system {
  position: absolute;
  left: 34px;
  bottom: 42px;
  width: 360px;
  height: 215px;
}

.bvg-main-screen {
  position: absolute;
  left: 52px;
  top: 0;
  width: 250px;
  height: 158px;
  border-radius: 22px;
  background: #07130d;
  box-shadow: 0 30px 55px rgba(18,26,23,.22);
  padding: 14px;
}

.bvg-main-screen::before {
  content: "bavelgo POS";
  color: #fff;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
}

.bvg-main-screen .screen-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.bvg-main-screen .screen-grid span {
  height: 32px;
  border-radius: 9px;
  background:
    linear-gradient(145deg, rgba(24,180,91,.45), rgba(255,255,255,.06));
  border: 1px solid rgba(24,180,91,.16);
}

.bvg-main-stand {
  position: absolute;
  left: 150px;
  top: 154px;
  width: 52px;
  height: 34px;
  background: #111916;
  border-radius: 0 0 14px 14px;
}

.bvg-main-base {
  position: absolute;
  left: 112px;
  top: 184px;
  width: 130px;
  height: 20px;
  background: #111916;
  border-radius: 999px;
}

.bvg-kit-side {
  display: grid;
  gap: 14px;
}

.bvg-hardware-card {
  padding: 20px;
  border-radius: 28px;
  border: 1px solid var(--bavelgo-border);
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 42px rgba(18,26,23,.055);
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
}

.bvg-hardware-card h3 {
  margin: 0 0 7px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 22px;
}

.bvg-hardware-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}

.bvg-mini-device {
  height: 82px;
  display: grid;
  place-items: center;
}

.bvg-mini-device .bvg-pay-terminal {
  width: 52px;
  height: 78px;
  border-radius: 15px;
  transform: rotate(-7deg);
}

.bvg-mini-device .bvg-receipt-printer {
  width: 74px;
  height: 50px;
}

.bvg-mini-device .bvg-qr-stand {
  width: 48px;
  height: 74px;
  border-radius: 12px;
}

.bvg-mini-device .bvg-qr-stand .qr-grid {
  width: 24px;
  height: 24px;
  gap: 2px;
}

.bvg-kitchen-display-mini {
  width: 80px;
  height: 54px;
  border-radius: 14px;
  background: #07130d;
  box-shadow: 0 18px 34px rgba(18,26,23,.17);
  position: relative;
}

.bvg-kitchen-display-mini::before {
  content: "";
  position: absolute;
  inset: 9px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(24,180,91,.55) 0 35%, rgba(255,255,255,.08) 35% 100%);
}

/* Reviews */
.reviews-section {
  background: #fff;
}

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

.review-card {
  border: 1px solid var(--bavelgo-border);
  border-radius: 30px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18,26,23,.055);
}

.review-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.owner-photo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 12px 26px rgba(18,26,23,.11);
}

.review-person strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.review-person span {
  display: block;
  margin-top: 3px;
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.review-card p {
  margin: 0;
  color: var(--bavelgo-ink);
  line-height: 1.65;
}

.review-note {
  margin-top: 18px;
  color: var(--bavelgo-muted);
  font-size: 13px;
  text-align: center;
}

/* Video flow player */
.bavelgo-video-lab {
  background:
    radial-gradient(circle at 50% 0%, rgba(24,180,91,.08), transparent 32%),
    #ffffff;
}

.video-flow-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 20px;
}

.bvg-video-card {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 34px;
  padding: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 18%, rgba(24,180,91,.35), transparent 30%),
    linear-gradient(135deg, #06110c, #0b1810);
  box-shadow: 0 28px 70px rgba(5, 8, 7, 0.2);
}

.bvg-video-card.small {
  min-height: 190px;
}

.bvg-video-card + .bvg-video-card {
  margin-top: 20px;
}

.bvg-video-card h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.bvg-video-card p {
  color: rgba(255,255,255,.68);
  max-width: 540px;
}

.video-stage {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  height: 160px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  overflow: hidden;
}

.video-path {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 74px;
  height: 2px;
  background: linear-gradient(90deg, rgba(24,180,91,.25), rgba(24,180,91,.85), rgba(24,180,91,.2));
}

.video-dot {
  position: absolute;
  left: 30px;
  top: 67px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bavelgo-action);
  box-shadow: 0 0 0 8px rgba(24,180,91,.14);
}

.bvg-video-card.is-playing .video-dot {
  animation: bvg-video-dot 7.2s ease-in-out infinite;
}

.video-step-card {
  position: absolute;
  top: 28px;
  width: 106px;
  min-height: 82px;
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
}

.video-step-card:nth-child(1) { left: 24px; }
.video-step-card:nth-child(2) { left: 20%; }
.video-step-card:nth-child(3) { left: 39%; }
.video-step-card:nth-child(4) { left: 58%; }
.video-step-card:nth-child(5) { left: 77%; }

.video-step-card strong {
  display: block;
  font-size: 12px;
}

.video-step-card span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.58);
  font-size: 11px;
}

.video-action {
  position: absolute;
  right: 28px;
  top: 28px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.12);
  color: #fff;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
}

.video-status-text {
  position: absolute;
  left: 28px;
  top: 92px;
  color: #90efb9;
  font-weight: 800;
}

@keyframes bvg-video-dot {
  0% { left: 30px; }
  18% { left: 20%; }
  36% { left: 39%; }
  54% { left: 58%; }
  72% { left: 77%; }
  100% { left: calc(100% - 46px); }
}

@media (max-width: 1060px) {
  .inventory-dynamic-grid,
  .bvg-kit-stage,
  .video-flow-grid {
    grid-template-columns: 1fr;
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .hero-hardware-stack {
    display: none;
  }

  .process-flow,
  .inventory-kpis {
    grid-template-columns: 1fr;
  }

  .inventory-live-table th:nth-child(3),
  .inventory-live-table td:nth-child(3),
  .inventory-live-table th:nth-child(4),
  .inventory-live-table td:nth-child(4) {
    display: none;
  }

  .bvg-kit-hero {
    min-height: 360px;
  }

  .bvg-counter-system {
    transform: scale(.72);
    transform-origin: left bottom;
  }

  .bvg-hardware-card {
    grid-template-columns: 70px 1fr;
  }

  .video-flow-grid {
    grid-template-columns: 1fr;
  }

  .bvg-video-card {
    min-height: 460px;
  }

  .video-stage {
    height: 270px;
  }

  .video-path,
  .video-dot {
    display: none;
  }

  .video-step-card {
    position: relative;
    left: auto !important;
    top: auto;
    width: auto;
    margin: 10px;
  }
}

/* ================================
   Bavelgo real operating experience v3
================================ */

.live-flow-section,
.inventory-dynamic-section,
.hardware-section,
.reviews-section,
.bavelgo-video-lab {
  contain: layout paint;
}

.bvg-real-flow {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    radial-gradient(circle at 15% 10%, rgba(24,180,91,.18), transparent 32%),
    linear-gradient(135deg, #06110c 0%, #0b1810 55%, #06110c 100%);
  color: #fff;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(5,8,7,.22);
}

.bvg-real-flow-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: start;
  margin-bottom: 26px;
}

.bvg-real-flow-head h2,
.bvg-auto-inventory-card h2,
.bvg-hardware-showcase h2,
.bvg-proof-head h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.bvg-real-flow-head h2 {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 58px);
}

.bvg-real-flow-head p {
  max-width: 680px;
  color: rgba(255,255,255,.68);
  margin: 14px 0 0;
}

.bvg-live-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(24,180,91,.35);
  background: rgba(24,180,91,.14);
  color: #9af1bf;
  border-radius: 999px;
  padding: 9px 13px;
  font-weight: 800;
  font-size: 12px;
  white-space: nowrap;
}

.bvg-live-label::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--bavelgo-action);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(24,180,91,.13);
}

.bvg-operating-board {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 18px;
  position: relative;
  z-index: 2;
}

.bvg-live-order-panel {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.07);
  border-radius: 28px;
  padding: 18px;
}

.bvg-live-order-panel small {
  display: block;
  color: #9af1bf;
  font-weight: 800;
  margin-bottom: 10px;
}

.bvg-live-order-panel h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.03em;
  font-size: 25px;
}

.bvg-live-order-panel p {
  margin: 10px 0 0;
  color: rgba(255,255,255,.65);
  line-height: 1.5;
}

.bvg-live-ticket {
  margin-top: 18px;
  border-radius: 20px;
  background: #fff;
  color: var(--bavelgo-ink);
  padding: 16px;
}

.bvg-ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid #edf3ef;
  font-size: 14px;
}

.bvg-ticket-row:last-child {
  border-bottom: 0;
}

.bvg-ticket-row span {
  color: var(--bavelgo-muted);
}

.bvg-system-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.bvg-system-step {
  position: relative;
  min-height: 250px;
  border-radius: 26px;
  padding: 15px;
  background: rgba(255,255,255,.065);
  border: 1px solid rgba(255,255,255,.11);
  transition: 280ms ease;
}

.bvg-system-step.is-active {
  background: rgba(24,180,91,.16);
  border-color: rgba(24,180,91,.45);
  transform: translateY(-4px);
}

.bvg-system-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 12px;
  height: 2px;
  background: rgba(24,180,91,.7);
}

.bvg-system-step strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.bvg-system-step p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.6);
  font-size: 12px;
  line-height: 1.45;
}

.bvg-mini-screen {
  min-height: 148px;
  border-radius: 18px;
  background: #07130d;
  border: 1px solid rgba(255,255,255,.12);
  padding: 12px;
  overflow: hidden;
}

.bvg-pos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.bvg-pos-grid span {
  height: 42px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(24,180,91,.42), rgba(255,255,255,.06));
  border: 1px solid rgba(24,180,91,.18);
}

.bvg-kitchen-ticket {
  display: grid;
  gap: 8px;
}

.bvg-kitchen-ticket span {
  height: 28px;
  border-radius: 9px;
  background: rgba(255,255,255,.11);
}

.bvg-inventory-lines {
  display: grid;
  gap: 9px;
}

.bvg-stock-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  color: rgba(255,255,255,.72);
  font-size: 12px;
}

.bvg-stock-bar {
  height: 8px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255,255,255,.12);
}

.bvg-stock-bar i {
  display: block;
  height: 100%;
  width: 70%;
  border-radius: inherit;
  background: var(--bavelgo-action);
  transition: width 350ms ease;
}

.bvg-payment-screen {
  display: grid;
  place-items: center;
  text-align: center;
  min-height: 124px;
}

.bvg-payment-amount {
  font-family: var(--font-heading);
  font-size: 30px;
  letter-spacing: -0.04em;
  color: #fff;
}

.bvg-paid-badge {
  margin-top: 8px;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(24,180,91,.18);
  color: #9af1bf;
  font-weight: 800;
  font-size: 12px;
}

.bvg-report-bars {
  height: 130px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.bvg-report-bars span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--bavelgo-action), rgba(24,180,91,.18));
  min-height: 24px;
  transition: height 350ms ease;
}

/* Auto inventory */
.bvg-auto-inventory-section {
  background:
    radial-gradient(circle at 14% 0%, rgba(24,180,91,.08), transparent 32%),
    #fff;
}

.bvg-auto-inventory-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}

.bvg-auto-inventory-card,
.bvg-inventory-machine {
  border: 1px solid var(--bavelgo-border);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18,26,23,.055);
}

.bvg-auto-inventory-card {
  padding: 30px;
}

.bvg-auto-inventory-card h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.bvg-auto-inventory-card p {
  color: var(--bavelgo-muted);
  line-height: 1.65;
}

.bvg-auto-status {
  margin-top: 24px;
  display: grid;
  gap: 12px;
}

.bvg-auto-status-row {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 13px;
  align-items: start;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid var(--bavelgo-border);
  background: var(--bavelgo-mint);
  transition: 240ms ease;
}

.bvg-auto-status-row.is-active {
  background: var(--bavelgo-soft-green);
  border-color: rgba(11,122,59,.24);
  transform: translateX(4px);
}

.bvg-auto-number {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--bavelgo-green);
  font-weight: 900;
}

.bvg-auto-status-row strong {
  display: block;
  margin-bottom: 4px;
}

.bvg-auto-status-row span {
  color: var(--bavelgo-muted);
  font-size: 13px;
  line-height: 1.4;
}

.bvg-inventory-machine {
  overflow: hidden;
}

.bvg-machine-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--bavelgo-border);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.bvg-machine-head strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.bvg-machine-head span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.bvg-machine-body {
  padding: 22px;
}

.bvg-inventory-event {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 24px;
  background: var(--bavelgo-mint);
  border: 1px solid var(--bavelgo-border);
}

.bvg-event-label {
  color: var(--bavelgo-green);
  font-weight: 900;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.bvg-inventory-event h3 {
  margin: 6px 0 5px;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.bvg-inventory-event p {
  margin: 0;
  color: var(--bavelgo-muted);
}

.bvg-event-amount {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  color: var(--bavelgo-green);
  letter-spacing: -0.04em;
}

.bvg-live-table {
  width: 100%;
  border-collapse: collapse;
}

.bvg-live-table th,
.bvg-live-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #edf3ef;
  text-align: left;
  font-size: 14px;
}

.bvg-live-table th {
  color: var(--bavelgo-light-text);
  font-size: 12px;
  font-weight: 900;
}

.bvg-live-table td.change-in {
  color: var(--bavelgo-green);
  font-weight: 900;
}

.bvg-live-table td.change-out {
  color: var(--bavelgo-danger);
  font-weight: 900;
}

.bvg-machine-kpis {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bvg-machine-kpi {
  border: 1px solid var(--bavelgo-border);
  border-radius: 20px;
  padding: 16px;
}

.bvg-machine-kpi span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.bvg-machine-kpi strong {
  display: block;
  margin-top: 7px;
  font-family: var(--font-heading);
  font-size: 24px;
  letter-spacing: -0.04em;
}

/* Hardware system */
.bvg-hardware-real {
  background:
    radial-gradient(circle at 50% 0%, rgba(24,180,91,.08), transparent 30%),
    var(--bavelgo-warm-bg);
}

.bvg-hardware-showcase {
  border: 1px solid var(--bavelgo-border);
  border-radius: 38px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.92), rgba(255,255,255,.68));
  box-shadow: 0 26px 64px rgba(18,26,23,.08);
  padding: 32px;
  overflow: hidden;
}

.bvg-hardware-showcase h2 {
  max-width: 820px;
  font-size: clamp(34px, 4vw, 58px);
}

.bvg-hardware-showcase > p {
  max-width: 780px;
  color: var(--bavelgo-muted);
  line-height: 1.65;
}

.bvg-hardware-stage {
  margin-top: 32px;
  position: relative;
  min-height: 470px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 10%, rgba(24,180,91,.18), transparent 34%),
    linear-gradient(180deg, #f7fbf8, #fff);
  border: 1px solid var(--bavelgo-border);
  overflow: hidden;
}

.bvg-counter-pos-real {
  position: absolute;
  left: 8%;
  top: 58px;
  width: 360px;
  height: 250px;
}

.bvg-pos-monitor {
  position: absolute;
  left: 42px;
  top: 0;
  width: 280px;
  height: 178px;
  border-radius: 24px;
  background: #07130d;
  box-shadow: 0 35px 65px rgba(18,26,23,.24);
  padding: 14px;
}

.bvg-pos-monitor::before {
  content: "bavelgo POS";
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.bvg-pos-products {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.bvg-pos-products span {
  height: 38px;
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(24,180,91,.42), rgba(255,255,255,.07));
  border: 1px solid rgba(24,180,91,.18);
}

.bvg-pos-stand {
  position: absolute;
  left: 155px;
  top: 174px;
  width: 58px;
  height: 44px;
  background: #111916;
  border-radius: 0 0 15px 15px;
}

.bvg-pos-base {
  position: absolute;
  left: 105px;
  top: 214px;
  width: 158px;
  height: 22px;
  background: #111916;
  border-radius: 999px;
}

.bvg-real-terminal {
  position: absolute;
  left: 43%;
  top: 210px;
  width: 105px;
  height: 155px;
  border-radius: 26px;
  background: linear-gradient(145deg, #111916, #050806);
  transform: rotate(-8deg);
  box-shadow: 0 28px 58px rgba(18,26,23,.22);
}

.bvg-real-terminal::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 17px;
  width: 75px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(24,180,91,.5), rgba(11,122,59,.22));
}

.bvg-real-terminal::after {
  content: "bavelgo pay";
  position: absolute;
  left: 18px;
  top: 78px;
  color: rgba(255,255,255,.76);
  font-size: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
}

.bvg-real-terminal .terminal-buttons {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.bvg-real-terminal .terminal-buttons span {
  height: 13px;
  border-radius: 5px;
  background: #2a342f;
}

.bvg-real-terminal .terminal-buttons span:nth-child(1) { background: var(--bavelgo-action); }
.bvg-real-terminal .terminal-buttons span:nth-child(2) { background: #f6a600; }
.bvg-real-terminal .terminal-buttons span:nth-child(3) { background: var(--bavelgo-danger); }

.bvg-real-printer {
  position: absolute;
  right: 13%;
  top: 245px;
  width: 150px;
  height: 92px;
  border-radius: 23px 23px 18px 18px;
  background: #07130d;
  box-shadow: 0 28px 58px rgba(18,26,23,.18);
}

.bvg-real-printer::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: -44px;
  height: 60px;
  border-radius: 14px 14px 0 0;
  background: #f8fbf9;
  border: 1px solid #dbe8e0;
}

.bvg-real-printer::after {
  content: "bavelgo";
  position: absolute;
  left: 47px;
  bottom: 19px;
  color: rgba(255,255,255,.76);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
}

.bvg-real-kitchen {
  position: absolute;
  right: 9%;
  top: 58px;
  width: 295px;
  height: 180px;
  border-radius: 24px;
  background: #07130d;
  box-shadow: 0 35px 65px rgba(18,26,23,.22);
  padding: 14px;
}

.bvg-real-kitchen::before {
  content: "Kitchen Display";
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.bvg-kitchen-orders-real {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 9px;
  margin-top: 12px;
}

.bvg-kitchen-orders-real span {
  height: 48px;
  border-radius: 13px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(24,180,91,.18);
}

.bvg-real-qr {
  position: absolute;
  left: 32%;
  bottom: 54px;
  width: 84px;
  height: 128px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--bavelgo-border);
  box-shadow: 0 26px 52px rgba(18,26,23,.13);
  display: grid;
  place-items: center;
  transform: rotate(5deg);
}

.bvg-real-qr small {
  position: absolute;
  top: 13px;
  color: var(--bavelgo-muted);
  font-size: 10px;
  font-weight: 800;
}

.bvg-real-qr strong {
  position: absolute;
  bottom: 13px;
  color: var(--bavelgo-green);
  font-family: var(--font-heading);
  font-size: 12px;
}

.bvg-real-qr .qr-grid {
  width: 44px;
  height: 44px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.bvg-real-qr .qr-grid span {
  background: var(--bavelgo-green);
  border-radius: 2px;
}

.bvg-hardware-caption {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.bvg-hardware-caption span {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--bavelgo-border);
  border-radius: 16px;
  padding: 12px;
  font-size: 13px;
  color: var(--bavelgo-muted);
}

.bvg-hardware-caption strong {
  display: block;
  color: var(--bavelgo-ink);
  margin-bottom: 4px;
}

/* Proof without fake people */
.bvg-proof-section {
  background: #fff;
}

.bvg-proof-head {
  max-width: 850px;
  margin: 0 auto 28px;
  text-align: center;
}

.bvg-proof-head h2 {
  font-size: clamp(34px, 4vw, 58px);
}

.bvg-proof-head p {
  color: var(--bavelgo-muted);
  line-height: 1.65;
}

.bvg-proof-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--bavelgo-border);
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18,26,23,.055);
}

.bvg-proof-track {
  display: flex;
  transition: transform 520ms ease;
}

.bvg-proof-slide {
  min-width: 100%;
  padding: 32px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items: center;
}

.bvg-proof-photo {
  height: 220px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 20%, rgba(24,180,91,.18), transparent 30%),
    linear-gradient(145deg, var(--bavelgo-soft-green), #fff);
  border: 1px solid var(--bavelgo-border);
  display: grid;
  place-items: center;
  color: var(--bavelgo-green);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  padding: 20px;
}

.bvg-proof-slide h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.bvg-proof-slide p {
  color: var(--bavelgo-muted);
  line-height: 1.75;
  font-size: 17px;
}

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

.bvg-proof-points span {
  border-radius: 18px;
  background: var(--bavelgo-mint);
  border: 1px solid var(--bavelgo-border);
  padding: 14px;
  color: var(--bavelgo-muted);
  font-size: 14px;
}

.bvg-proof-points strong {
  display: block;
  color: var(--bavelgo-ink);
  margin-bottom: 4px;
}

.bvg-proof-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  padding: 0 0 24px;
}

.bvg-proof-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 0;
  background: #d8e6de;
  cursor: pointer;
}

.bvg-proof-dot.is-active {
  background: var(--bavelgo-green);
}

/* Real product video flow */
.bvg-product-video {
  border-radius: 36px;
  background:
    radial-gradient(circle at 14% 10%, rgba(24,180,91,.20), transparent 30%),
    linear-gradient(135deg, #06110c, #0b1810);
  color: #fff;
  padding: 34px;
  box-shadow: 0 28px 70px rgba(5,8,7,.22);
  overflow: hidden;
}

.bvg-product-video h2 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.045em;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.05;
}

.bvg-product-video p {
  color: rgba(255,255,255,.68);
  max-width: 760px;
  line-height: 1.65;
}

.bvg-video-board {
  margin-top: 26px;
  position: relative;
  min-height: 360px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  overflow: hidden;
}

.bvg-video-scene {
  position: absolute;
  inset: 24px;
  display: grid;
  grid-template-columns: 260px 1fr 230px;
  gap: 18px;
}

.bvg-video-phone,
.bvg-video-pos,
.bvg-video-side {
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
}

.bvg-video-phone h3,
.bvg-video-pos h3,
.bvg-video-side h3 {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.bvg-video-order-card {
  background: #fff;
  color: var(--bavelgo-ink);
  border-radius: 18px;
  padding: 14px;
  margin-bottom: 10px;
}

.bvg-video-order-card strong {
  display: block;
}

.bvg-video-order-card span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.bvg-video-pos-screen {
  height: 230px;
  background: #07130d;
  border-radius: 22px;
  padding: 16px;
}

.bvg-video-pos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.bvg-video-pos-grid span {
  height: 52px;
  border-radius: 14px;
  background: rgba(24,180,91,.22);
  border: 1px solid rgba(24,180,91,.22);
}

.bvg-video-side-item {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  margin-bottom: 10px;
}

.bvg-video-side-item strong {
  display: block;
}

.bvg-video-side-item span {
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.bvg-pulse-line {
  position: absolute;
  left: 300px;
  right: 270px;
  top: 52%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--bavelgo-action), transparent);
  transform-origin: left;
  animation: bvgPulseLine 2.8s ease-in-out infinite;
}

@keyframes bvgPulseLine {
  0% { transform: scaleX(.05); opacity: .25; }
  55% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(1); opacity: .25; }
}

@media (max-width: 1060px) {
  .bvg-operating-board,
  .bvg-auto-inventory-grid {
    grid-template-columns: 1fr;
  }

  .bvg-system-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .bvg-hardware-caption {
    grid-template-columns: repeat(2, 1fr);
  }

  .bvg-proof-slide {
    grid-template-columns: 1fr;
  }

  .bvg-video-scene {
    grid-template-columns: 1fr;
    position: relative;
    inset: auto;
  }

  .bvg-video-board {
    padding: 20px;
    min-height: auto;
  }

  .bvg-pulse-line {
    display: none;
  }
}

@media (max-width: 820px) {
  .bvg-real-flow,
  .bvg-product-video,
  .bvg-hardware-showcase {
    padding: 22px;
    border-radius: 28px;
  }

  .bvg-real-flow-head {
    grid-template-columns: 1fr;
  }

  .bvg-system-flow {
    grid-template-columns: 1fr;
  }

  .bvg-system-step:not(:last-child)::after {
    display: none;
  }

  .bvg-machine-kpis,
  .bvg-proof-points {
    grid-template-columns: 1fr;
  }

  .bvg-live-table th:nth-child(3),
  .bvg-live-table td:nth-child(3),
  .bvg-live-table th:nth-child(4),
  .bvg-live-table td:nth-child(4) {
    display: none;
  }

  .bvg-hardware-stage {
    min-height: 720px;
  }

  .bvg-counter-pos-real {
    left: 50%;
    top: 50px;
    transform: translateX(-50%) scale(.76);
    transform-origin: top center;
  }

  .bvg-real-kitchen {
    left: 50%;
    right: auto;
    top: 270px;
    transform: translateX(-50%) scale(.78);
    transform-origin: top center;
  }

  .bvg-real-terminal {
    left: 18%;
    top: 480px;
  }

  .bvg-real-printer {
    right: 10%;
    top: 500px;
  }

  .bvg-real-qr {
    left: 45%;
    bottom: 90px;
  }

  .bvg-hardware-caption {
    display: none;
  }
}


/* ================================
   Bavelgo real screens v4
================================ */

.bvg-real-flow,
.bvg-hardware-showcase,
.bvg-product-video {
  box-shadow: 0 22px 55px rgba(5, 8, 7, 0.18) !important;
}

.bvg-operating-board-v4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.bvg-operation-stage-v4 {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  padding: 22px;
}

.bvg-stage-status-v4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.bvg-stage-status-v4 strong {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.bvg-stage-status-v4 span {
  color: #9af1bf;
  font-weight: 800;
}

.bvg-real-screen-grid-v4 {
  display: grid;
  grid-template-columns: 260px 1.2fr 1fr 230px;
  gap: 16px;
  align-items: stretch;
}

.bvg-real-screen-v4 {
  min-height: 310px;
  border-radius: 24px;
  background: #f8fbf9;
  color: var(--bavelgo-ink);
  border: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(0,0,0,.16);
}

.bvg-screen-top-v4 {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  background: #fff;
  border-bottom: 1px solid #dfeae4;
}

.bvg-screen-top-v4 small {
  color: var(--bavelgo-green);
  font-weight: 900;
}

.bvg-screen-body-v4 {
  padding: 14px;
}

.bvg-customer-phone-v4 {
  max-width: 250px;
  border-radius: 30px;
  background: #07130d;
  padding: 10px;
}

.bvg-phone-inner-v4 {
  min-height: 290px;
  border-radius: 23px;
  background: #fff;
  padding: 14px;
}

.bvg-menu-item-v4 {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid #edf3ef;
}

.bvg-food-photo-v4 {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 35% 35%, #f7b733 0 18%, transparent 20%),
    linear-gradient(145deg, #b45309, #7c2d12);
}

.bvg-menu-item-v4 strong {
  display: block;
  font-size: 13px;
}

.bvg-menu-item-v4 span {
  color: var(--bavelgo-muted);
  font-size: 12px;
}

.bvg-order-button-v4 {
  margin-top: 14px;
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: var(--bavelgo-green);
  color: #fff;
  padding: 12px;
  font-weight: 800;
}

.bvg-pos-real-ui-v4 {
  display: grid;
  grid-template-columns: 92px 1fr;
  min-height: 310px;
}

.bvg-pos-sidebar-v4 {
  background: #07130d;
  color: #fff;
  padding: 14px 10px;
}

.bvg-pos-sidebar-v4 strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-heading);
}

.bvg-pos-sidebar-v4 span {
  display: block;
  padding: 9px 8px;
  margin-bottom: 6px;
  border-radius: 10px;
  background: rgba(255,255,255,.07);
  font-size: 12px;
}

.bvg-pos-sidebar-v4 span.active {
  background: rgba(24,180,91,.22);
}

.bvg-pos-main-v4 {
  padding: 14px;
  background: #f8fbf9;
}

.bvg-pos-metrics-v4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-bottom: 12px;
}

.bvg-pos-metric-v4 {
  background: #fff;
  border: 1px solid var(--bavelgo-border);
  border-radius: 14px;
  padding: 10px;
}

.bvg-pos-metric-v4 span {
  color: var(--bavelgo-muted);
  font-size: 11px;
}

.bvg-pos-metric-v4 strong {
  display: block;
  margin-top: 4px;
}

.bvg-pos-products-v4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.bvg-pos-product-v4 {
  min-height: 70px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid var(--bavelgo-border);
  padding: 10px;
}

.bvg-pos-product-v4::before {
  content: "";
  display: block;
  height: 28px;
  border-radius: 10px;
  margin-bottom: 8px;
  background:
    radial-gradient(circle at 30% 35%, #f7b733 0 18%, transparent 20%),
    linear-gradient(145deg, #b45309, #7c2d12);
}

.bvg-pos-product-v4 strong {
  display: block;
  font-size: 12px;
}

.bvg-kds-real-ui-v4 {
  background: #07130d;
  color: #fff;
  min-height: 310px;
  padding: 14px;
}

.bvg-kds-columns-v4 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bvg-kds-col-v4 {
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  padding: 10px;
}

.bvg-kds-col-v4 h4 {
  margin: 0 0 10px;
  font-size: 13px;
  color: #9af1bf;
}

.bvg-kds-ticket-v4 {
  border-radius: 13px;
  background: rgba(255,255,255,.1);
  padding: 10px;
  margin-bottom: 9px;
  border: 1px solid rgba(24,180,91,.18);
}

.bvg-kds-ticket-v4 strong {
  display: block;
  font-size: 13px;
}

.bvg-kds-ticket-v4 span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.65);
  font-size: 12px;
}

.bvg-side-ops-v4 {
  display: grid;
  gap: 12px;
}

.bvg-ops-card-v4 {
  border-radius: 20px;
  background: #fff;
  color: var(--bavelgo-ink);
  border: 1px solid var(--bavelgo-border);
  padding: 16px;
}

.bvg-ops-card-v4 strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 18px;
}

.bvg-ops-card-v4 span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.bvg-ops-card-v4 .amount {
  margin-top: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  color: var(--bavelgo-green);
  letter-spacing: -0.04em;
}

.bvg-flow-indicators-v4 {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

.bvg-flow-chip-v4 {
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.11);
  color: rgba(255,255,255,.68);
  font-size: 13px;
  transition: 250ms ease;
}

.bvg-flow-chip-v4.is-active {
  background: rgba(24,180,91,.18);
  border-color: rgba(24,180,91,.45);
  color: #fff;
  transform: translateY(-3px);
}

.bvg-flow-chip-v4 strong {
  display: block;
  color: #9af1bf;
  margin-bottom: 4px;
}

/* Inventory full automatic */
.bvg-inventory-auto-only-v4 {
  border: 1px solid var(--bavelgo-border);
  border-radius: 36px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(18,26,23,.055);
  overflow: hidden;
}

.bvg-inventory-auto-head-v4 {
  padding: 34px 34px 22px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 24px;
  align-items: end;
}

.bvg-inventory-auto-head-v4 h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 1.05;
}

.bvg-inventory-auto-head-v4 p {
  color: var(--bavelgo-muted);
  line-height: 1.65;
}

.bvg-inventory-event-box-v4 {
  padding: 18px;
  border-radius: 24px;
  background: var(--bavelgo-soft-green);
  border: 1px solid rgba(11,122,59,.16);
}

.bvg-inventory-event-box-v4 small {
  color: var(--bavelgo-green);
  font-weight: 900;
}

.bvg-inventory-event-box-v4 strong {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 25px;
  letter-spacing: -0.035em;
}

.bvg-inventory-workspace-v4 {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  padding: 0 34px 34px;
}

.bvg-inventory-table-v4,
.bvg-inventory-flow-panel-v4 {
  border: 1px solid var(--bavelgo-border);
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}

.bvg-inventory-table-v4 table {
  width: 100%;
  border-collapse: collapse;
}

.bvg-inventory-table-v4 th,
.bvg-inventory-table-v4 td {
  padding: 15px 18px;
  border-bottom: 1px solid #edf3ef;
  text-align: left;
  font-size: 14px;
}

.bvg-inventory-table-v4 th {
  color: var(--bavelgo-light-text);
  font-size: 12px;
  font-weight: 900;
}

.bvg-inventory-flow-panel-v4 {
  padding: 20px;
}

.bvg-flow-vertical-v4 {
  display: grid;
  gap: 12px;
}

.bvg-flow-vertical-step-v4 {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px;
  border-radius: 20px;
  background: var(--bavelgo-mint);
  border: 1px solid var(--bavelgo-border);
}

.bvg-flow-vertical-step-v4.is-active {
  background: var(--bavelgo-soft-green);
  border-color: rgba(11,122,59,.24);
}

.bvg-flow-vertical-step-v4 i {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: #fff;
  color: var(--bavelgo-green);
  font-style: normal;
  font-weight: 900;
}

.bvg-flow-vertical-step-v4 strong {
  display: block;
  margin-bottom: 4px;
}

.bvg-flow-vertical-step-v4 span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.bvg-inventory-kpi-row-v4 {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.bvg-inventory-kpi-v4 {
  padding: 16px;
  border-radius: 20px;
  background: var(--bavelgo-mint);
  border: 1px solid var(--bavelgo-border);
}

.bvg-inventory-kpi-v4 span {
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.bvg-inventory-kpi-v4 strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 25px;
  letter-spacing: -0.04em;
}

/* Real hardware layout */
.bvg-hardware-stage-v4 {
  margin-top: 28px;
  position: relative;
  min-height: 620px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 12%, rgba(24,180,91,.18), transparent 35%),
    linear-gradient(180deg, #f7fbf8, #fff);
  border: 1px solid var(--bavelgo-border);
  overflow: hidden;
}

.bvg-hardware-floor-v4 {
  position: absolute;
  left: 6%;
  right: 6%;
  bottom: 70px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(11,122,59,.12), transparent 68%);
}

.bvg-pos-device-v4 {
  position: absolute;
  left: 7%;
  top: 76px;
  width: 410px;
  height: 300px;
}

.bvg-pos-device-screen-v4 {
  position: absolute;
  left: 55px;
  top: 0;
  width: 310px;
  height: 205px;
  border-radius: 28px;
  background: #07130d;
  box-shadow: 0 34px 70px rgba(18,26,23,.25);
  padding: 14px;
}

.bvg-pos-device-screen-v4::before {
  content: "bavelgo POS";
  display: block;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bvg-pos-device-grid-v4 {
  display: grid;
  grid-template-columns: 95px 1fr;
  gap: 10px;
}

.bvg-pos-device-menu-v4 {
  display: grid;
  gap: 7px;
}

.bvg-pos-device-menu-v4 span {
  height: 23px;
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.bvg-pos-device-products-v4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
}

.bvg-pos-device-products-v4 span {
  height: 42px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 30% 34%, #f7b733 0 16%, transparent 18%),
    linear-gradient(145deg, rgba(24,180,91,.38), rgba(255,255,255,.06));
  border: 1px solid rgba(24,180,91,.14);
}

.bvg-pos-device-stand-v4 {
  position: absolute;
  left: 180px;
  top: 200px;
  width: 64px;
  height: 48px;
  background: #111916;
  border-radius: 0 0 16px 16px;
}

.bvg-pos-device-base-v4 {
  position: absolute;
  left: 124px;
  top: 242px;
  width: 176px;
  height: 24px;
  background: #111916;
  border-radius: 999px;
}

.bvg-kds-device-v4 {
  position: absolute;
  right: 7%;
  top: 72px;
  width: 390px;
  height: 245px;
  border-radius: 28px;
  background: #07130d;
  box-shadow: 0 34px 70px rgba(18,26,23,.24);
  padding: 16px;
}

.bvg-kds-device-v4::before {
  content: "Kitchen Display";
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
}

.bvg-kds-board-v4 {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.bvg-kds-board-col-v4 {
  border-radius: 16px;
  background: rgba(255,255,255,.07);
  padding: 9px;
  min-height: 166px;
}

.bvg-kds-board-col-v4 small {
  color: #9af1bf;
  font-weight: 900;
}

.bvg-kds-board-ticket-v4 {
  margin-top: 8px;
  border-radius: 11px;
  background: rgba(255,255,255,.10);
  padding: 8px;
  color: rgba(255,255,255,.78);
  font-size: 11px;
}

.bvg-printer-device-v4 {
  position: absolute;
  right: 15%;
  bottom: 130px;
  width: 170px;
  height: 105px;
  border-radius: 26px 26px 18px 18px;
  background: #07130d;
  box-shadow: 0 30px 64px rgba(18,26,23,.18);
}

.bvg-printer-paper-v4 {
  position: absolute;
  left: 34px;
  right: 34px;
  top: -78px;
  height: 96px;
  border-radius: 14px 14px 0 0;
  background: #fff;
  border: 1px solid #dbe8e0;
  padding: 12px;
}

.bvg-printer-paper-v4 strong {
  display: block;
  color: var(--bavelgo-ink);
  font-size: 11px;
  margin-bottom: 7px;
}

.bvg-printer-paper-v4 span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #dfeae4;
  margin-bottom: 5px;
}

.bvg-printer-device-v4::after {
  content: "bavelgo";
  position: absolute;
  left: 54px;
  bottom: 22px;
  color: rgba(255,255,255,.76);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
}

.bvg-terminal-device-v4 {
  position: absolute;
  left: 43%;
  bottom: 122px;
  width: 116px;
  height: 168px;
  border-radius: 30px;
  background: linear-gradient(145deg, #111916, #050806);
  transform: rotate(-8deg);
  box-shadow: 0 30px 64px rgba(18,26,23,.22);
}

.bvg-terminal-screen-v4 {
  position: absolute;
  left: 16px;
  top: 18px;
  width: 84px;
  height: 58px;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(24,180,91,.55), rgba(11,122,59,.22));
}

.bvg-terminal-device-v4::after {
  content: "bavelgo pay";
  position: absolute;
  left: 20px;
  top: 86px;
  color: rgba(255,255,255,.76);
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
}

.bvg-terminal-keys-v4 {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 19px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.bvg-terminal-keys-v4 span {
  height: 14px;
  border-radius: 5px;
  background: #2a342f;
}

.bvg-terminal-keys-v4 span:nth-child(1) { background: var(--bavelgo-action); }
.bvg-terminal-keys-v4 span:nth-child(2) { background: #f6a600; }
.bvg-terminal-keys-v4 span:nth-child(3) { background: var(--bavelgo-danger); }

.bvg-qr-device-v4 {
  position: absolute;
  left: 32%;
  bottom: 120px;
  width: 95px;
  height: 145px;
  border-radius: 23px;
  background: #fff;
  border: 1px solid var(--bavelgo-border);
  box-shadow: 0 26px 52px rgba(18,26,23,.13);
  display: grid;
  place-items: center;
  transform: rotate(5deg);
}

.bvg-qr-device-v4 small {
  position: absolute;
  top: 15px;
  color: var(--bavelgo-muted);
  font-size: 10px;
  font-weight: 900;
}

.bvg-qr-device-v4 strong {
  position: absolute;
  bottom: 14px;
  color: var(--bavelgo-green);
  font-family: var(--font-heading);
  font-size: 12px;
}

.bvg-qr-grid-v4 {
  width: 50px;
  height: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
}

.bvg-qr-grid-v4 span {
  background: var(--bavelgo-green);
  border-radius: 2px;
}

.bvg-hardware-tags-v4 {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.bvg-hardware-tags-v4 span {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--bavelgo-border);
  border-radius: 16px;
  padding: 12px;
  color: var(--bavelgo-muted);
  font-size: 13px;
}

.bvg-hardware-tags-v4 strong {
  display: block;
  color: var(--bavelgo-ink);
  margin-bottom: 4px;
}

/* Production proof, no fake testimonials */
.bvg-proof-section {
  display: none !important;
}

/* Product animation as screens */
.bvg-video-board-v4 {
  margin-top: 28px;
  border-radius: 32px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  padding: 22px;
}

.bvg-video-screens-v4 {
  display: grid;
  grid-template-columns: 250px 1fr 260px;
  gap: 18px;
}

.bvg-video-panel-v4 {
  border-radius: 26px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  padding: 16px;
  min-height: 330px;
}

.bvg-video-panel-v4 h3 {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-weight: 500;
}

.bvg-video-phone-order-v4 {
  border-radius: 22px;
  background: #fff;
  color: var(--bavelgo-ink);
  padding: 14px;
}

.bvg-video-phone-order-v4 .bvg-menu-item-v4 {
  grid-template-columns: 42px 1fr;
}

.bvg-video-kitchen-board-v4 {
  background: #07130d;
  border-radius: 22px;
  padding: 14px;
}

.bvg-video-kitchen-board-v4 .bvg-kds-columns-v4 {
  grid-template-columns: repeat(3, 1fr);
}

.bvg-video-updates-v4 {
  display: grid;
  gap: 12px;
}

.bvg-video-update-v4 {
  border-radius: 18px;
  padding: 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  transition: 260ms ease;
}

.bvg-video-update-v4.is-active {
  background: rgba(24,180,91,.18);
  border-color: rgba(24,180,91,.45);
}

.bvg-video-update-v4 strong {
  display: block;
}

.bvg-video-update-v4 span {
  color: rgba(255,255,255,.65);
  font-size: 13px;
}

@media (max-width: 1180px) {
  .bvg-real-screen-grid-v4,
  .bvg-video-screens-v4 {
    grid-template-columns: 1fr;
  }

  .bvg-customer-phone-v4 {
    max-width: 100%;
  }

  .bvg-inventory-auto-head-v4,
  .bvg-inventory-workspace-v4 {
    grid-template-columns: 1fr;
  }

  .bvg-hardware-tags-v4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .bvg-real-flow,
  .bvg-product-video,
  .bvg-hardware-showcase {
    padding: 22px !important;
    border-radius: 28px !important;
  }

  .bvg-flow-indicators-v4,
  .bvg-inventory-kpi-row-v4 {
    grid-template-columns: 1fr;
  }

  .bvg-hardware-stage-v4 {
    min-height: 900px;
  }

  .bvg-pos-device-v4 {
    left: 50%;
    top: 40px;
    transform: translateX(-50%) scale(.72);
    transform-origin: top center;
  }

  .bvg-kds-device-v4 {
    left: 50%;
    right: auto;
    top: 285px;
    transform: translateX(-50%) scale(.72);
    transform-origin: top center;
  }

  .bvg-terminal-device-v4 {
    left: 16%;
    bottom: 230px;
    transform: scale(.82) rotate(-8deg);
  }

  .bvg-printer-device-v4 {
    right: 8%;
    bottom: 240px;
    transform: scale(.82);
  }

  .bvg-qr-device-v4 {
    left: 43%;
    bottom: 208px;
    transform: scale(.82) rotate(5deg);
  }

  .bvg-hardware-tags-v4 {
    grid-template-columns: 1fr;
  }

  .bvg-live-table th:nth-child(3),
  .bvg-live-table td:nth-child(3),
  .bvg-live-table th:nth-child(4),
  .bvg-live-table td:nth-child(4) {
    display: none;
  }
}

/* Hero real Bavelgo hardware image */
.hero-visual {
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-real-image {
  position: relative;
  z-index: 5;
  display: block;
  width: min(100%, 920px);
  margin-left: auto;
}

.hero-real-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(18, 26, 23, 0.18);
  object-fit: cover;
}

.hero-visual > .orbit,
.hero-visual > .product-stage {
  display: none !important;
}

@media (max-width: 1060px) {
  .hero-visual {
    min-height: auto;
    margin-top: 24px;
  }

  .hero-real-image {
    width: 100%;
    margin: 0 auto;
  }

  .hero-real-image img {
    border-radius: 26px;
  }
}

@media (max-width: 620px) {
  .hero-real-image img {
    border-radius: 20px;
  }
}

/* Hero full-width image banner */
.hero {
  padding: 0 !important;
  margin: 0 !important;
  background: #f4fbf7 !important;
}

.hero .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hero-grid {
  display: block !important;
  width: 100% !important;
}

.hero-content {
  display: none !important;
}

.hero-visual {
  width: 100% !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

.hero-real-image {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  display: block !important;
}

.hero-real-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  object-fit: cover !important;
}

.hero-visual > .orbit,
.hero-visual > .product-stage {
  display: none !important;
}

@media (max-width: 900px) {
  .hero-real-image img {
    min-height: 560px;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (max-width: 620px) {
  .hero-real-image img {
    min-height: 620px;
    object-position: center center !important;
  }
}

/* Crop embedded topbar inside hero image */
.hero-real-image {
  position: relative !important;
  width: 100% !important;
  height: clamp(520px, 52vw, 920px) !important;
  overflow: hidden !important;
  background: #f4fbf7 !important;
}

.hero-real-image img {
  width: 100% !important;
  height: calc(100% + 96px) !important;
  object-fit: cover !important;
  object-position: center top !important;
  transform: translateY(-96px) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

@media (max-width: 900px) {
  .hero-real-image {
    height: 620px !important;
  }

  .hero-real-image img {
    height: calc(100% + 88px) !important;
    transform: translateY(-88px) !important;
    object-position: center top !important;
  }
}

@media (max-width: 620px) {
  .hero-real-image {
    height: 680px !important;
  }

  .hero-real-image img {
    height: calc(100% + 76px) !important;
    transform: translateY(-76px) !important;
    object-position: center top !important;
  }
}

/* =====================================================
   Hero responsive final fix
   Desktop: full image banner without embedded topbar
   Tablet/Mobile: real text + focused hardware image
===================================================== */

/* Desktop banner */
.hero {
  padding: 0 !important;
  margin: 0 !important;
  background: #f4fbf7 !important;
}

.hero .container {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

.hero-grid {
  display: block !important;
  width: 100% !important;
}

.hero-content {
  display: none !important;
}

/* Desktop: crop only the fake topbar inside the generated image */
.hero-visual {
  width: 100% !important;
  min-height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  overflow: hidden !important;
}

.hero-real-image {
  width: 100% !important;
  height: 51.8vw !important;
  max-height: 860px !important;
  min-height: 520px !important;
  overflow: hidden !important;
  display: block !important;
  background: #f4fbf7 !important;
}

.hero-real-image img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  transform: translateY(-5.35vw) !important;
  object-fit: contain !important;
  object-position: center top !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero-visual > .orbit,
.hero-visual > .product-stage {
  display: none !important;
}

/* Tablet: use real HTML text, image becomes product visual */
@media (max-width: 1100px) {
  .hero {
    padding: 52px 0 34px !important;
    background:
      radial-gradient(circle at 12% 0%, rgba(24, 180, 91, 0.08), transparent 28%),
      linear-gradient(180deg, #ffffff 0%, #f6fcf8 100%) !important;
  }

  .hero .container {
    width: min(100% - 32px, 1180px) !important;
    max-width: 1180px !important;
    margin: 0 auto !important;
  }

  .hero-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    align-items: center !important;
  }

  .hero-content {
    display: block !important;
    text-align: center !important;
    max-width: 760px !important;
    margin: 0 auto !important;
  }

  .hero-title {
    font-size: clamp(42px, 8vw, 72px) !important;
    line-height: 1 !important;
  }

  .hero-copy {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-actions,
  .trust-row {
    justify-content: center !important;
  }

  .hero-real-image {
    width: 100% !important;
    height: 520px !important;
    min-height: 520px !important;
    max-height: 520px !important;
    border-radius: 30px !important;
    box-shadow: 0 26px 70px rgba(18, 26, 23, 0.14) !important;
    overflow: hidden !important;
  }

  .hero-real-image img {
    width: 145% !important;
    height: calc(100% + 90px) !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: 70% top !important;
    transform: translate(-22%, -82px) !important;
    border-radius: 0 !important;
  }
}

/* Mobile: text first, focused POS/hardware image below */
@media (max-width: 620px) {
  .hero {
    padding: 34px 0 26px !important;
  }

  .hero .container {
    width: min(100% - 24px, 1180px) !important;
  }

  .hero-title {
    font-size: clamp(40px, 13vw, 58px) !important;
    letter-spacing: -0.055em !important;
  }

  .hero-copy {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  .hero-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .trust-row {
    text-align: center !important;
  }

  .hero-real-image {
    height: 330px !important;
    min-height: 330px !important;
    max-height: 330px !important;
    border-radius: 24px !important;
  }

  .hero-real-image img {
    width: 190% !important;
    height: calc(100% + 72px) !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: 74% top !important;
    transform: translate(-42%, -66px) !important;
  }
}

/* Very small phones */
@media (max-width: 420px) {
  .hero-real-image {
    height: 300px !important;
  }

  .hero-real-image img {
    width: 215% !important;
    transform: translate(-48%, -62px) !important;
    object-position: 76% top !important;
  }
}


/* Mobile: hide hero image, keep real text only */
@media (max-width: 620px) {
  .hero {
    padding: 34px 0 34px !important;
  }

  .hero-grid {
    display: block !important;
  }

  .hero-content {
    display: block !important;
    text-align: left !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-title {
    font-size: clamp(42px, 14vw, 60px) !important;
    line-height: 0.98 !important;
    letter-spacing: -0.06em !important;
  }

  .hero-copy {
    margin-top: 18px !important;
    font-size: 16px !important;
    line-height: 1.6 !important;
  }

  .hero-actions {
    margin-top: 24px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .trust-row {
    justify-content: flex-start !important;
    text-align: left !important;
    margin-top: 22px !important;
  }
}
