/* RestaurantPos public site - BSoft
   Cleaned from Vinext export for PHP hosting
*/
@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/400.css");
@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/500.css");
@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/600.css");
@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/700.css");
@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-sans@5.2.5/800.css");
@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-mono@5.2.5/400.css");
@import url("https://cdn.jsdelivr.net/npm/@fontsource/geist-mono@5.2.5/500.css");

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.5;
  tab-size: 4;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input {
  font: inherit;
  color: inherit;
}

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

ul,
ol,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

:root {
  --font-geist-sans: "Geist Sans", "Segoe UI", system-ui, sans-serif;
  --font-geist-mono: "Geist Mono", ui-monospace, monospace;
}

.solution-panel[hidden] {
  display: none !important;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px #334c6014;
}

body.nav-open {
  overflow: hidden;
}

/* Hero with floating restaurant icons */
.hero.hero-with-motion {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  min-height: 620px;
  padding-top: 72px;
  padding-bottom: 72px;
  gap: clamp(28px, 5vw, 64px);
}

.hero.hero-with-motion .hero-copy {
  max-width: 650px;
  padding-bottom: 0;
  z-index: 2;
}

.hero-orbit {
  position: relative;
  min-height: 420px;
  height: 100%;
  isolation: isolate;
}

.hero-orbit-glow {
  position: absolute;
  inset: 12% 8% 18% 12%;
  background:
    radial-gradient(circle at 40% 40%, #6e9fc738, transparent 55%),
    radial-gradient(circle at 70% 65%, #3a6b9424, transparent 50%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-orbit-ring {
  position: absolute;
  border: 1px solid #3a6b941f;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-ring.one {
  width: min(92%, 460px);
  aspect-ratio: 1;
  top: 4%;
  left: 6%;
  animation: hero-spin 48s linear infinite;
}

.hero-orbit-ring.two {
  width: min(72%, 340px);
  aspect-ratio: 1;
  top: 16%;
  left: 18%;
  border-style: dashed;
  animation: hero-spin 36s linear infinite reverse;
}

.hero-float {
  position: absolute;
  z-index: 2;
  animation: hero-drift 7.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.hero-float span {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  color: var(--forest);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d1d9df;
  box-shadow: 0 14px 30px #334c601a;
  backdrop-filter: blur(8px);
}

.hero-float svg {
  width: 28px;
  height: 28px;
}

.hero-float.i1 { top: 8%; left: 18%; }
.hero-float.i2 { top: 18%; right: 14%; animation-duration: 8.4s; }
.hero-float.i3 { top: 42%; left: 6%; animation-duration: 6.8s; }
.hero-float.i4 { top: 38%; right: 8%; width: auto; animation-duration: 9s; }
.hero-float.i4 span { width: 76px; height: 76px; border-radius: 22px; background: linear-gradient(145deg, #3a6b94, #334c60); color: #fff; border-color: transparent; box-shadow: 0 18px 36px #3a6b9433; }
.hero-float.i4 svg { width: 32px; height: 32px; }
.hero-float.i5 { bottom: 22%; left: 22%; animation-duration: 7.2s; }
.hero-float.i6 { bottom: 12%; right: 20%; animation-duration: 8s; }
.hero-float.i7 { top: 58%; left: 42%; animation-duration: 6.4s; }
.hero-float.i8 { bottom: 28%; right: 38%; animation-duration: 9.2s; }

.hero-float.i1 span,
.hero-float.i5 span { animation: hero-bob 4.8s ease-in-out infinite; }
.hero-float.i2 span,
.hero-float.i6 span { animation: hero-bob 5.4s ease-in-out infinite reverse; }
.hero-float.i3 span,
.hero-float.i7 span { animation: hero-bob 5s ease-in-out infinite; }
.hero-float.i8 span { animation: hero-bob 4.4s ease-in-out infinite reverse; }

@keyframes hero-drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -14px, 0); }
}

@keyframes hero-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(3deg); }
}

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

@media (width<=920px) {
  .hero.hero-with-motion {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
    padding-top: 64px;
    padding-bottom: 36px;
  }

  .hero.hero-with-motion .hero-copy {
    margin: 0 auto;
  }

  .hero.hero-with-motion .hero-actions,
  .hero.hero-with-motion .hero-trust {
    justify-content: center;
  }

  .hero-orbit {
    min-height: 300px;
    margin-top: 8px;
  }

  .hero-float span {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .hero-float svg {
    width: 24px;
    height: 24px;
  }

  .hero-float.i4 span {
    width: 64px;
    height: 64px;
  }
}

@media (width<=680px) {
  .hero-orbit {
    min-height: 250px;
  }

  .hero-float.i7,
  .hero-float.i8 {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float,
  .hero-float span,
  .hero-orbit-ring {
    animation: none !important;
  }
}
:root{--ink:#302f2f;--forest:#334c60;--forest-deep:#2f353b;--green:#3a6b94;--lime:#6e9fc7;--lime-pale:#e5eef5;--surface:#fff;--soft:#f3f6f8;--border:#d1d9df;--muted:#6e7b85;--orange:#6e8aa0}*{box-sizing:border-box}html{scroll-behavior:smooth}body{background:var(--surface);color:var(--ink);font-family:var(--font-geist-sans);margin:0;overflow-x:hidden}button,input{font:inherit}a{color:inherit;text-decoration:none}.shell{width:100%;max-width:1450px;margin:0 auto;padding-left:44px;padding-right:44px}.site-header{z-index:50;-webkit-backdrop-filter:blur(16px);backdrop-filter:blur(16px);background:#ffffffeb;border-bottom:1px solid #e7edf1;height:82px;position:sticky;top:0}.nav-wrap{justify-content:space-between;align-items:center;height:100%;display:flex}.brand{white-space:nowrap;align-items:center;display:inline-flex}.official-brand-logo{object-fit:contain;width:auto;height:54px;display:block}.official-logo-icon{display:inline-block;position:relative;overflow:hidden}.official-logo-icon img{width:auto;max-width:none;height:100%;display:block;position:absolute;top:0;left:0}.nav-wrap nav{align-items:center;gap:clamp(28px,3.5vw,56px);margin-left:auto;margin-right:clamp(34px,5vw,74px);display:flex}.nav-wrap nav a{color:#334c60;font-size:15px;font-weight:600;position:relative}.nav-wrap nav a:after{background:var(--green);content:"";transform-origin:100%;width:100%;height:2px;transition:transform .18s;position:absolute;bottom:-9px;left:0;transform:scaleX(0)}.nav-wrap nav a:hover:after,.nav-wrap nav a:focus-visible:after{transform-origin:0;transform:scaleX(1)}.button{border-radius:15px;justify-content:center;align-items:center;gap:10px;min-height:54px;padding:0 24px;font-size:15px;font-weight:750;transition:transform .18s,box-shadow .18s,background .18s;display:inline-flex}.button:hover{transform:translateY(-2px)}.nav-cta,.button.primary{color:#fff;background:linear-gradient(135deg,#3a6b94 0%,#334c60 100%);box-shadow:0 10px 22px #2f4c6029}.nav-cta:hover,.button.primary:hover{background:linear-gradient(135deg,#477aa4 0%,#3a566d 100%);box-shadow:0 14px 30px #2f4c603b}.nav-toggle{background:0 0;border:0;display:none}.hero{grid-template-columns:minmax(420px,.78fr) minmax(640px,1.22fr);align-items:center;gap:clamp(28px,4vw,68px);min-height:750px;padding-top:64px;padding-bottom:76px;display:grid;position:relative}.hero-copy{z-index:3;padding-bottom:12px;position:relative}.status-pill{background:var(--lime-pale);color:#3a566d;border:1px solid #6e9fc726;border-radius:999px;align-items:center;gap:9px;margin-bottom:28px;padding:8px 14px;font-size:13px;font-weight:700;display:inline-flex}.status-pill span{background:#5b90bc;border-radius:50%;width:8px;height:8px;animation:2.2s infinite pulse;box-shadow:0 0 0 4px #6e9fc71f}.hero h1{letter-spacing:-.065em;max-width:650px;margin:0;font-size:clamp(58px,5.25vw,82px);font-weight:850;line-height:.95}.hero h1 span{color:#0000;background:linear-gradient(120deg,#3a6b94 0%,#334c60 70%);-webkit-background-clip:text;background-clip:text}.hero-copy>p{color:var(--muted);max-width:560px;margin:30px 0 34px;font-size:18px;line-height:1.65}.hero-actions{flex-wrap:wrap;gap:14px;display:flex}.hero-actions .button{min-height:59px;padding:0 26px}.button.secondary{border:1.5px solid var(--forest);color:var(--forest);background:#fff}.button.secondary:hover{background:var(--lime-pale)}.hero-trust{color:#5e6c77;flex-wrap:wrap;gap:24px;margin-top:27px;font-size:12px;font-weight:650;display:flex}.hero-trust span{align-items:center;gap:7px;display:flex}.hero-trust svg{color:var(--green)}.product-stage{width:100%;height:650px;position:relative}.orbit{border:1px solid #e4edf4;border-radius:50%;width:780px;height:670px;position:absolute;top:-7%;left:-5%}.orbit-two{width:700px;height:570px;top:4%;left:7%;transform:rotate(8deg)}.dot-field{opacity:.38;background-image:radial-gradient(#6e9fc7 1.1px,#0000 1.1px);background-size:14px 14px;width:450px;height:180px;position:absolute;bottom:16px;right:-4%;transform:rotate(-5deg)}.pos-window{z-index:2;background:#fff;border:1px solid #e2e9ee;border-radius:24px;grid-template-columns:98px 1fr;width:calc(100% + 18px);height:492px;animation:.65s cubic-bezier(.2,.8,.2,1) 80ms both stage-in;display:grid;position:absolute;top:25px;left:0;overflow:hidden;box-shadow:0 28px 70px #3a6b9421,0 3px 14px #3a6b9412}.pos-sidebar{color:#fff;background:linear-gradient(#3a6b94 0%,#293b49 100%);flex-direction:column;padding:21px 11px 15px;display:flex}.pos-wordmark{justify-content:center;margin:-5px 0 14px;display:flex}.pos-logo-icon{border-radius:7px;width:37px;height:37px}.side-link{color:#ffffffad;border-radius:8px;align-items:center;gap:7px;margin-bottom:5px;padding:8px 7px;font-size:9px;font-weight:650;display:flex}.side-link.active{color:#fff;background:#ffffff21}.sidebar-user{border-top:1px solid #ffffff1f;align-items:center;gap:7px;margin-top:auto;padding:13px 4px 0;display:flex}.sidebar-user>span{background:var(--lime);color:var(--forest);border-radius:8px;place-items:center;width:25px;height:25px;font-size:9px;font-weight:800;display:grid}.sidebar-user b,.sidebar-user small{font-size:8px;display:block}.sidebar-user small{color:#ffffff8c;margin-top:2px}.pos-main{min-width:0}.pos-topbar{border-bottom:1px solid #e9eff3;grid-template-columns:1fr 180px auto;align-items:center;gap:14px;height:62px;padding:0 18px;display:grid}.pos-topbar>div:first-child{align-items:center;gap:6px;display:flex}.pos-topbar b{font-size:11px}.pos-topbar small{color:var(--green);font-size:8px;font-weight:700}.live-dot{background:#6b9ec4;border-radius:50%;width:5px;height:5px;margin-left:6px}.pos-search{color:#9da8b1;border:1px solid #e4eaee;border-radius:9px;align-items:center;gap:7px;height:32px;padding:0 10px;display:flex}.pos-search input{border:0;outline:0;width:100%;font-size:8px}.restaurant-name{white-space:nowrap;font-size:8px;font-weight:700}.pos-workspace{background:#fafcfd;grid-template-columns:minmax(0,1fr) 203px;height:calc(100% - 62px);padding:14px;display:grid}.floor-plan{grid-template-columns:repeat(4,1fr);align-content:start;gap:18px;padding:10px 17px 0 5px;display:grid;position:relative}.table-card{background:#fff;border:1px solid #dee5ea;border-radius:10px;flex-direction:column;justify-content:center;align-items:center;height:74px;display:flex;position:relative;box-shadow:0 3px 7px #334c600d}.table-card.round{border-radius:50%;width:75px;height:75px;margin:0 auto}.table-card.active{background:#f4f8fb;border-color:#7aa6c8;box-shadow:0 4px 12px #6e9fc721}.table-card b{font-size:13px}.table-card small{color:#74808a;margin-top:4px;font-size:7px}.table-card em{color:#5b8fb8;margin-top:4px;font-size:7px;font-style:normal}.table-card i{background:#6a9fc6;border-radius:50%;width:4px;height:4px;position:absolute;bottom:8px}.plant{color:#5c8fb8;filter:drop-shadow(0 3px 4px #3a6b9433);font-size:31px;position:absolute}.plant-one{top:105px;left:-4px}.plant-two{top:182px;right:0}.order-panel{background:#fff;border:1px solid #e1e8ed;border-radius:13px;padding:14px;box-shadow:0 6px 18px #334c600d}.order-panel-head{justify-content:space-between;align-items:flex-start;display:flex}.order-panel-head small{color:#7c8993;font-size:7px}.order-panel h3{margin:3px 0 0;font-size:14px}.order-panel-head>span,.mobile-table>span{color:#4e7fa8;background:#e4eff7;border-radius:999px;padding:5px 7px;font-size:7px;font-weight:750}.order-meta{color:#87949e;margin:8px 0 12px;font-size:7px}.order-lines{border-top:1px solid #edf1f4;border-bottom:1px solid #edf1f4;padding:8px 0}.order-lines>div{grid-template-columns:15px 1fr auto;align-items:center;min-height:24px;font-size:7px;display:grid}.order-lines b{color:#76838d}.order-lines em{font-style:normal}.order-total{margin:10px 0 12px}.order-total>div{justify-content:space-between;margin-bottom:6px;font-size:7px;display:flex}.order-total .total{font-size:9px;font-weight:800}.order-panel button,.mobile-order button{background:var(--forest-deep);color:#fff;border:0;border-radius:8px;width:100%;min-height:34px;font-size:8px;font-weight:750}.order-panel button.more{color:#576672;background:#fff;border:1px solid #dee5ea;margin-top:7px}.mobile-order{z-index:5;background:#fff;border:1px solid #dbe4ea;border-radius:25px;width:189px;height:346px;padding:14px;animation:.55s cubic-bezier(.2,.8,.2,1) .21s both stage-in;position:absolute;bottom:4px;left:-52px;overflow:hidden;box-shadow:0 20px 40px #334c6029}.mobile-order header{justify-content:space-between;align-items:center;margin:2px 1px 16px;font-size:9px;display:flex}.phone-live{color:var(--green)}.mobile-table{justify-content:space-between;align-items:center;margin-bottom:10px;display:flex}.mobile-table b,.mobile-table small{font-size:9px;display:block}.mobile-table small{color:#8f9ca6;margin-top:2px;font-size:7px}.mobile-items>div{border-top:1px solid #edf1f4;grid-template-columns:28px 10px 1fr auto;align-items:center;gap:4px;min-height:45px;font-size:6.5px;display:grid}.mobile-items i{background:#f5f7f9;border-radius:50%;place-items:center;width:27px;height:27px;font-size:15px;font-style:normal;display:grid}.mobile-items em{font-style:normal}.add-note{color:var(--green);padding:12px 0;font-size:7px;font-weight:700}.mobile-order button{height:37px}.kitchen-ticket{z-index:6;background:#f5f7f9;border:1px solid #d2e0ea;border-radius:16px;width:220px;height:275px;padding:17px;animation:.55s cubic-bezier(.2,.8,.2,1) .3s both stage-in;position:absolute;bottom:-13px;left:32%;box-shadow:0 16px 32px #334c601c}.kitchen-ticket header{color:#4b7596;text-transform:uppercase;justify-content:space-between;align-items:center;font-size:8px;font-weight:750;display:flex}.kitchen-ticket header span{align-items:center;gap:6px;display:flex}.kitchen-ticket header i{background:#6e8aa0;border-radius:50%;width:7px;height:7px}.kitchen-ticket h3{margin:14px 0 4px;font-size:16px}.kitchen-ticket p{color:#7a848c;margin:0;font-size:8px}.ticket-line{border-top:1px solid #d8e3eb;margin:13px 0 6px}.kitchen-ticket ol{margin:0;padding:0;list-style:none}.kitchen-ticket li{grid-template-columns:12px 1fr;gap:7px;padding:6px 0;font-size:8px;display:grid}.kitchen-ticket li span,.kitchen-ticket li em{display:block}.kitchen-ticket li em{color:#4d7899;margin-top:3px;font-size:7px;font-style:normal}.kitchen-ticket footer{color:#75818b;border-top:1px solid #d8e3eb;justify-content:space-between;margin-top:6px;padding-top:11px;font-size:7px;display:flex}.kitchen-ticket footer b{color:#537f9f}.sales-card{z-index:7;background:#fff;border:1px solid #dee5ea;border-radius:15px;width:225px;height:130px;padding:15px;animation:.55s cubic-bezier(.2,.8,.2,1) .39s both stage-in;position:absolute;bottom:30px;right:-12px;box-shadow:0 14px 30px #334c601c}.sales-card header{justify-content:space-between;align-items:center;font-size:8px;display:flex}.sales-card header b{color:#4b80ac;align-items:center;gap:4px;font-size:7px;display:flex}.sales-card header i{background:#78a9cc;border-radius:50%;width:5px;height:5px}.sales-card>strong{margin-top:10px;font-size:21px;display:block}.sales-card>strong small{color:#818d96;font-size:8px}.sales-trend{color:#8d99a3;justify-content:space-between;align-items:flex-end;font-size:6px;display:flex}.sales-trend b{color:#5b8fb8;margin-top:3px;font-size:7px;display:block}.sales-trend svg{width:80px;height:36px}.sales-trend path{fill:none;stroke:#5d91bb;stroke-dasharray:140;stroke-dashoffset:140px;stroke-width:2px;animation:1s .8s both draw}.connection-strip{color:#fff;background:linear-gradient(110deg,#2f353b 0%,#334c60 100%)}.connection-strip .shell{justify-content:space-between;align-items:center;min-height:108px;display:flex}.connection-strip p{color:var(--lime);letter-spacing:.08em;text-transform:uppercase;margin-right:20px;font-size:13px;font-weight:750}.connection-item{align-items:center;gap:8px;font-size:12px;display:flex;position:relative}.connection-item svg{color:var(--lime)}.connector{color:#ffffff59;position:absolute;left:-32px}.placeholder-slice{background:var(--soft);text-align:center;min-height:360px;padding:120px 0}.eyebrow{color:var(--green);letter-spacing:.16em;text-transform:uppercase;font-size:12px;font-weight:800}.placeholder-slice h2{letter-spacing:-.045em;max-width:780px;margin:18px auto 0;font-size:clamp(36px,4vw,58px);line-height:1.05}.section-heading{max-width:720px}.section-heading.centered{text-align:center;margin-left:auto;margin-right:auto}.section-heading h2,.online-copy h2,.reports-copy h2,.promotion-copy h2,.security-copy h2,.faq-heading h2{letter-spacing:-.055em;margin:18px 0 0;font-size:clamp(40px,4.6vw,66px);line-height:1.02}.section-heading p,.online-copy>p,.promotion-copy>p,.security-copy>p,.faq-heading>p{color:var(--muted);margin:24px 0 0;font-size:17px;line-height:1.7}.solutions-section{background:var(--soft);padding:126px 0 120px}.solution-tabs{background:#e8eef2;border-radius:16px;grid-template-columns:repeat(3,1fr);gap:4px;max-width:750px;margin:64px auto 24px;padding:5px;display:grid}.solution-tabs button{color:#6e7c87;cursor:pointer;background:0 0;border:0;border-radius:12px;justify-content:center;align-items:center;gap:9px;min-height:52px;padding:0 20px;font-size:14px;font-weight:750;transition:background .18s,color .18s,box-shadow .18s;display:flex}.solution-tabs button.active{color:var(--forest-deep);background:#fff;box-shadow:0 5px 14px #3a6b9417}.solution-panel{background:#fff;border:1px solid #e0e8ed;border-radius:30px;grid-template-columns:.78fr 1.22fr;align-items:center;gap:30px;min-height:590px;padding:44px 44px 44px 58px;display:grid;overflow:hidden;box-shadow:0 24px 60px #3a6b9414}.solution-copy>span{color:var(--green);letter-spacing:.13em;text-transform:uppercase;font-size:12px;font-weight:800}.solution-copy h3{letter-spacing:-.05em;margin:17px 0 20px;font-size:clamp(36px,3.1vw,50px);line-height:1.04}.solution-copy>p{color:var(--muted);margin:0;font-size:16px;line-height:1.7}.solution-copy ul{flex-wrap:wrap;gap:12px 18px;margin:28px 0 32px;padding:0;list-style:none;display:flex}.solution-copy li{color:#516270;align-items:center;gap:6px;font-size:12px;font-weight:700;display:flex}.solution-copy li svg,.online-copy li>svg{color:var(--green)}.solution-copy>a,.text-link{color:var(--forest-deep);align-items:center;gap:8px;font-size:14px;font-weight:800;display:inline-flex}.solution-copy>a svg,.text-link svg{transition:transform .18s}.solution-copy>a:hover svg,.text-link:hover svg{transform:translate(4px)}.solution-visual{background:linear-gradient(145deg,#eef3f7 0%,#f7f9fb 100%);border-radius:24px;height:500px;position:relative;overflow:hidden}.solution-visual:before{content:"";border:1px solid #d8e4ec;border-radius:50%;width:520px;height:520px;position:absolute;top:-210px;right:-200px}.solution-visual:after{content:"";opacity:.4;background-image:radial-gradient(#5d91bb 1px,#0000 1px);background-size:12px 12px;width:190px;height:100px;position:absolute;bottom:18px;right:20px}.visual-phone{z-index:3;background:#fff;border:1px solid #d8e0e6;border-radius:32px;width:235px;height:438px;padding:14px 18px;position:absolute;top:32px;left:17%;overflow:hidden;box-shadow:0 24px 50px #3a6b9429}.visual-phone:after{content:"";background:#d7dee3;border-radius:99px;width:60px;height:3px;position:absolute;bottom:8px;left:50%;transform:translate(-50%)}.visual-phone>header{justify-content:space-between;align-items:center;padding:0 5px 10px;font-size:7px;display:flex}.visual-phone>header b{letter-spacing:1px}.mini-mobile-head{grid-template-columns:25px 1fr auto;align-items:center;padding:8px 0 14px;font-size:10px;display:grid}.mini-mobile-head>span{font-size:19px}.mini-mobile-head i{background:var(--lime-pale);color:#4c7596;border-radius:999px;padding:5px 7px;font-size:6px;font-style:normal;font-weight:700}.mini-guest-row{background:var(--soft);border-radius:9px;justify-content:space-between;align-items:center;margin-bottom:14px;padding:10px;font-size:8px;display:flex}.mini-guest-row div{align-items:center;gap:10px;display:flex}.mini-guest-row button{background:#fff;border:1px solid #dae1e6;border-radius:5px;width:19px;height:19px;padding:0}.mini-categories{gap:11px;margin-bottom:9px;font-size:7px;display:flex}.mini-categories b{color:var(--green)}.mini-products>div{border-top:1px solid #edf1f4;grid-template-columns:33px 1fr 23px;align-items:center;gap:8px;min-height:60px;display:grid}.mini-products i{background:var(--soft);border-radius:50%;place-items:center;width:32px;height:32px;font-size:19px;font-style:normal;display:grid}.mini-products b,.mini-products small{font-size:7px;display:block}.mini-products small{color:#8b98a1;margin-top:4px}.mini-products button{background:var(--lime-pale);color:var(--forest);border:0;border-radius:7px;width:23px;height:23px;font-size:15px}.mini-cart{background:var(--forest-deep);color:#fff;border:0;border-radius:8px;height:36px;font-size:8px;font-weight:750;position:absolute;bottom:18px;left:18px;right:18px}.sync-card,.routing-card,.cloud-badge,.online-pop{z-index:5;background:#fff;border:1px solid #dbe4ea;border-radius:14px;position:absolute;box-shadow:0 14px 32px #3a6b9421}.sync-card{width:205px;padding:16px 18px;top:130px;right:8%}.sync-card>span{color:var(--green);align-items:center;gap:6px;font-size:8px;font-weight:750;display:flex}.sync-card strong,.sync-card small{display:block}.sync-card strong{margin:11px 0 3px;font-size:19px}.sync-card small{color:#818e98;font-size:8px}.kds-board,.owner-dashboard{z-index:3;background:linear-gradient(145deg,#293b49 0%,#334c60 100%);border:1px solid #ffffff17;border-radius:20px;width:90%;height:400px;position:absolute;top:42px;left:5%;overflow:hidden;box-shadow:0 24px 50px #293b4940}.kds-board>header,.owner-dashboard>header{color:#fff;border-bottom:1px solid #ffffff17;justify-content:space-between;align-items:center;height:58px;padding:0 18px;display:flex}.kds-board>header>div,.owner-dashboard>header>div{align-items:center;gap:9px;font-size:11px;display:flex}.small-mark{border-radius:6px;width:25px;height:25px}.kds-live{color:#a7c6de;align-items:center;gap:5px;font-size:8px;display:flex}.kds-live i{background:var(--lime);border-radius:50%;width:5px;height:5px}.kds-orders{grid-template-columns:repeat(3,1fr);gap:9px;padding:14px;display:grid}.kds-orders article{background:#fff;border:2px solid #0000;border-radius:11px;min-height:294px;padding:13px}.kds-orders article.late{border-color:#6e96b5}.kds-orders article>header{border-bottom:1px solid #e9eef2;justify-content:space-between;align-items:center;padding-bottom:9px;font-size:10px;display:flex}.kds-orders time{color:var(--green);font-size:8px;font-weight:750}.kds-orders article.late time{color:#527c9d}.kds-orders p{color:#7f8c96;font-size:8px}.kds-orders ul{min-height:110px;margin:13px 0;padding:0;list-style:none}.kds-orders li{border-top:1px dashed #e4e9ed;padding:9px 0;font-size:8px}.kds-orders button{background:var(--soft);color:var(--forest-deep);border:1px solid #dbe4ea;border-radius:7px;width:100%;height:30px;font-size:7px;font-weight:750}.routing-card{grid-template-columns:34px 1fr 20px;align-items:center;gap:10px;width:240px;padding:12px 14px;display:grid;bottom:24px;left:13%}.routing-card>svg:first-child{background:var(--lime-pale);color:var(--green);border-radius:9px;padding:7px}.routing-card b,.routing-card span{font-size:8px;display:block}.routing-card span{color:#828f99;margin-top:3px}.routing-card>svg:last-child{color:var(--green)}.owner-dashboard{color:var(--ink);background:#fff}.owner-dashboard>header{color:var(--ink);border-bottom-color:#e6ecef}.owner-dashboard>header>span{background:var(--soft);color:#788691;border-radius:7px;padding:7px 10px;font-size:8px}.owner-grid{grid-template-columns:1.7fr 1fr 1fr;gap:10px;padding:14px;display:grid}.owner-grid article{background:var(--soft);border:1px solid #e2e9ee;border-radius:11px;min-height:100px;padding:13px}.owner-grid small,.owner-grid strong,.owner-grid>article>span{display:block}.owner-grid small{color:#7e8b95;font-size:7px}.owner-grid strong{margin:8px 0 4px;font-size:20px}.owner-grid strong i{color:#84919b;font-size:7px;font-style:normal}.owner-grid>article>span{color:#5486ae;font-size:6.5px}.owner-revenue{grid-row:span 2;position:relative;min-height:264px!important}.owner-revenue strong{font-size:27px}.owner-revenue svg{width:calc(100% - 24px);height:115px;position:absolute;bottom:18px;left:12px;right:12px}.owner-revenue path{fill:none;stroke:#628fb3;stroke-width:4px}.owner-top{grid-column:2/4;min-height:153px!important}.owner-top>div{border-top:1px solid #e0e7ec;justify-content:space-between;padding:8px 0;font-size:7px;display:flex}.owner-top>div b{font-weight:650}.cloud-badge{color:var(--forest-deep);align-items:center;gap:7px;padding:11px 14px;font-size:8px;font-weight:750;display:flex;bottom:24px;right:10%}.cloud-badge svg{color:var(--green)}.workflow-section{background:#fff;padding:126px 0}.workflow-grid{grid-template-columns:repeat(4,1fr);gap:18px;margin-top:58px;display:grid}.workflow-grid article{border:1px solid var(--border);background:#fff;border-radius:20px;min-height:260px;padding:28px;transition:transform .18s,box-shadow .18s,border-color .18s;position:relative}.workflow-grid article:hover{border-color:#bcc9d3;transform:translateY(-4px);box-shadow:0 18px 36px #3a6b9417}.workflow-number{color:#9daab3;letter-spacing:.12em;font-size:11px;font-weight:800}.workflow-icon{background:var(--lime-pale);color:var(--forest);border-radius:14px;place-items:center;width:48px;height:48px;margin:34px 0 24px;display:grid}.workflow-grid h3{letter-spacing:-.025em;margin:0 0 11px;font-size:21px}.workflow-grid p{color:var(--muted);margin:0;font-size:13px;line-height:1.65}.workflow-arrow{color:#b8c1c8;z-index:2;font-size:20px;font-style:normal;position:absolute;top:48%;right:-22px}.real-software-section{background:radial-gradient(circle at 85% 5%,#6e9fc72e,#0000 29%),linear-gradient(#f3f6f8 0%,#e9f0f5 100%);padding:125px 0 118px;position:relative;overflow:hidden}.real-software-section:before{content:"";border:1px solid #3a6b941a;border-radius:50%;width:520px;height:520px;position:absolute;top:80px;left:-260px}.real-software-heading{z-index:2;grid-template-columns:1.1fr .9fr;align-items:end;gap:80px;margin-bottom:58px;display:grid;position:relative}.real-software-heading h2{letter-spacing:-.055em;max-width:760px;margin:16px 0 0;font-size:clamp(44px,4.4vw,68px);line-height:1.02}.real-software-heading>p{color:var(--muted);max-width:560px;margin:0 0 7px;font-size:16px;line-height:1.75}.software-showcase{z-index:2;grid-template-columns:1.12fr .88fr;gap:24px;display:grid;position:relative}.software-shot{background:#ffffffdb;border:1px solid #d1d9dff2;border-radius:25px;padding:26px;overflow:hidden;box-shadow:0 24px 55px #334c601a}.dashboard-shot{margin-top:72px}.software-shot-copy{min-height:166px;padding:2px 3px 24px}.software-shot-copy>span{color:var(--green);letter-spacing:.11em;text-transform:uppercase;align-items:center;gap:8px;font-size:11px;font-weight:800;display:flex}.software-shot-copy h3{letter-spacing:-.04em;margin:16px 0 11px;font-size:clamp(24px,2.2vw,34px);line-height:1.08}.software-shot-copy p{color:var(--muted);max-width:610px;margin:0;font-size:13px;line-height:1.65}.software-image-link{background:#dde6ec;border:1px solid #c8d3db;border-radius:14px;display:block;position:relative;overflow:hidden;box-shadow:0 16px 34px #2f353b24}.software-window-bar{background:linear-gradient(#fff 0%,#edf2f5 100%);border-bottom:1px solid #cbd6de;align-items:center;gap:6px;height:35px;padding:0 12px;display:flex}.software-window-bar i{background:#aebbc5;border-radius:50%;width:7px;height:7px}.software-window-bar i:first-child{background:#6e8aa0}.software-window-bar span{color:#667783;margin-left:5px;font-size:8px;font-weight:700}.software-window-bar b{color:var(--green);margin-left:auto;font-size:8px}.software-image-link img{width:100%;height:auto;transition:transform .3s cubic-bezier(.2,.8,.2,1);display:block}.software-image-link:hover img,.software-image-link:focus-visible img{transform:scale(1.018)}.software-image-link:focus-visible{outline:3px solid var(--lime);outline-offset:4px}.real-software-note{color:#546875;z-index:2;flex-wrap:wrap;align-items:center;gap:28px;margin-top:30px;font-size:11px;font-weight:700;display:flex;position:relative}.real-software-note span{align-items:center;gap:7px;display:flex}.real-software-note svg{color:var(--green)}.mobile-app-proof{color:#fff;z-index:2;background:radial-gradient(circle at 76% 12%,#2491ff29,#0000 34%),linear-gradient(135deg,#081624 0%,#0e2438 56%,#102c42 100%);border:1px solid #6e9fc747;border-radius:34px;grid-template-columns:.72fr 1.28fr;align-items:center;gap:clamp(38px,5vw,78px);margin-top:70px;padding:64px 58px 54px;display:grid;position:relative;overflow:hidden;box-shadow:0 34px 75px #192f4038}.mobile-app-proof:before,.mobile-app-proof:after{content:"";pointer-events:none;border:1px solid #5fa5dd1c;border-radius:50%;position:absolute}.mobile-app-proof:before{width:430px;height:430px;top:-215px;left:-275px}.mobile-app-proof:after{width:620px;height:620px;bottom:-360px;right:-210px}.mobile-app-copy{z-index:2;position:relative}.mobile-app-eyebrow{color:#72b8f1;letter-spacing:.14em;text-transform:uppercase;align-items:center;gap:8px;font-size:11px;font-weight:800;display:inline-flex}.mobile-app-copy h3{letter-spacing:-.055em;max-width:490px;margin:20px 0 22px;font-size:clamp(40px,3.9vw,60px);line-height:.98}.mobile-app-copy>p{color:#e0ebf4ab;max-width:480px;margin:0;font-size:14px;line-height:1.72}.mobile-app-copy ul{gap:15px;margin:30px 0 34px;padding:0;list-style:none;display:grid}.mobile-app-copy li{align-items:center;gap:12px;display:flex}.mobile-app-copy li>svg{color:#72b8f1;background:#3a6b943d;border:1px solid #72b8f12e;border-radius:10px;flex:none;width:38px;height:38px;padding:9px}.mobile-app-copy li b,.mobile-app-copy li small{display:block}.mobile-app-copy li b{font-size:12px}.mobile-app-copy li small{color:#dae7f185;margin-top:3px;font-size:9px}.mobile-app-button{color:#fff;background:linear-gradient(135deg,#2491ff 0%,#3a6b94 100%);min-height:57px;box-shadow:0 13px 30px #2491ff2e}.mobile-app-button:hover{box-shadow:0 16px 36px #2491ff45}.mobile-screen-gallery{z-index:2;grid-template-columns:repeat(4,minmax(0,1fr));gap:13px;min-width:0;display:grid;position:relative}.mobile-phone-card{min-width:0;display:block}.mobile-phone-card:nth-child(2n){padding-top:44px}.mobile-phone-shell{background:#030b13;border:1px solid #72b8f14a;border-radius:28px;padding:6px;transition:border-color .2s,transform .25s,box-shadow .25s;display:block;overflow:hidden;box-shadow:0 22px 38px #00000057}.mobile-phone-shell img{border-radius:22px;width:100%;height:auto;display:block}.mobile-phone-card:hover .mobile-phone-shell,.mobile-phone-card:focus-visible .mobile-phone-shell{border-color:#72b8f1b8;transform:translateY(-7px);box-shadow:0 28px 45px #0000006b,0 0 30px #2491ff1c}.mobile-phone-card:focus-visible{outline-offset:5px;border-radius:28px;outline:3px solid #72b8f1}.mobile-phone-caption{align-items:center;gap:7px;margin-top:14px;padding-left:3px;display:flex}.mobile-phone-caption i{color:#72b8f1;font-size:8px;font-style:normal;font-weight:800}.mobile-phone-caption b{color:#eaf2f8c7;white-space:nowrap;font-size:8px;font-weight:700}.online-section{background:#eef3f7;padding:128px 0;overflow:hidden}.online-layout{grid-template-columns:1.15fr .85fr;align-items:center;gap:clamp(60px,8vw,130px);display:grid}.online-visual{height:580px;position:relative}.online-visual:before{content:"";border:1px solid #d6e0e7;border-radius:50%;width:650px;height:650px;position:absolute;top:-120px;left:-220px}.menu-browser{z-index:2;background:#fff;border:1px solid #dbe5ec;border-radius:22px;width:100%;height:505px;position:absolute;top:20px;left:0;overflow:hidden;box-shadow:0 30px 65px #3a6b9424}.menu-browser>header{grid-template-columns:32px 1fr auto;align-items:center;gap:10px;height:64px;padding:0 20px;display:grid}.menu-logo{background:var(--forest-deep);color:#fff;border-radius:50%;place-items:center;width:31px;height:31px;font-family:Georgia,serif;font-size:17px;font-weight:700;display:grid}.menu-browser>header b,.menu-browser>header small{font-size:9px;display:block}.menu-browser>header small{color:#8e9ba5;margin-top:3px;font-size:7px}.menu-browser>header button{background:var(--forest-deep);color:#fff;border:0;border-radius:8px;padding:9px 12px;font-size:7px;font-weight:700}.menu-hero{background:#dceaf4;justify-content:space-between;align-items:center;height:180px;padding:24px 36px;display:flex;position:relative;overflow:hidden}.menu-hero:after{content:"";border:1px solid #3a6b942e;border-radius:50%;width:250px;height:250px;position:absolute;top:-90px;right:-60px}.menu-hero>div{z-index:2;position:relative}.menu-hero span{color:#527997;letter-spacing:.12em;text-transform:uppercase;font-size:7px;font-weight:750}.menu-hero h3{letter-spacing:-.04em;margin:10px 0 0;font-family:Georgia,serif;font-size:30px;font-weight:500;line-height:.95}.menu-hero .menu-dish{filter:drop-shadow(0 10px 12px #3a6b9433);z-index:2;font-size:98px;position:relative;transform:rotate(-10deg)}.menu-nav{border-bottom:1px solid #e6ecef;gap:22px;padding:16px 22px 12px;font-size:8px;display:flex}.menu-nav b{color:var(--green)}.menu-products{grid-template-columns:repeat(3,1fr);gap:10px;padding:17px;display:grid}.menu-products article{border:1px solid #e0e7ec;border-radius:12px;grid-template-columns:1fr auto;min-height:164px;padding:10px;display:grid;position:relative}.menu-products article>span{background:var(--soft);text-align:center;border-radius:9px;grid-column:1/3;height:84px;padding-top:11px;font-size:48px}.menu-products b,.menu-products small{grid-column:1;font-size:8px;display:block}.menu-products small{color:#84919a;margin-top:3px;font-size:7px}.menu-products button{background:var(--lime-pale);color:var(--forest);border:0;border-radius:6px;grid-area:2/2/4;align-self:end;width:25px;height:25px;font-size:14px}.online-pop{z-index:4;flex-direction:column;width:225px;padding:15px 18px;display:flex;bottom:0;left:14%}.online-pop>span{color:var(--green);align-items:center;gap:6px;font-size:8px;font-weight:750;display:flex}.online-pop b{margin:9px 0 3px;font-size:12px}.online-pop small{color:#828f99;font-size:7px}.online-copy h2{max-width:500px}.online-copy ul{gap:18px;margin:34px 0;padding:0;list-style:none;display:grid}.online-copy li{align-items:flex-start;gap:12px;display:flex}.online-copy li>svg{background:#fff;border-radius:50%;flex:none;padding:5px;box-shadow:0 5px 12px #3a6b9414}.online-copy li b,.online-copy li span{display:block}.online-copy li b{font-size:13px}.online-copy li span{color:var(--muted);margin-top:4px;font-size:12px;line-height:1.5}.reports-section{color:#fff;background:linear-gradient(135deg,#2f353b 0%,#334c60 62%,#3a6b94 125%);padding:130px 0;position:relative;overflow:hidden}.reports-section:before{content:"";border:1px solid #6e9fc71a;border-radius:50%;width:900px;height:900px;position:absolute;top:-350px;left:-450px}.reports-layout{z-index:2;grid-template-columns:.82fr 1.18fr;align-items:center;gap:70px;display:grid;position:relative}.dark-eyebrow{color:var(--lime);letter-spacing:.16em;text-transform:uppercase;font-size:12px;font-weight:800}.reports-copy>p{color:#ffffffa8;margin:25px 0 30px;font-size:16px;line-height:1.75}.report-points{grid-template-columns:1fr 1fr;gap:13px;margin-bottom:36px;display:grid}.report-points span{color:#fffc;align-items:center;gap:8px;font-size:11px;font-weight:650;display:flex}.report-points svg{color:var(--lime)}.lime-button{background:var(--lime);color:var(--forest-deep)}.lime-button:hover{background:#8fb8d8;box-shadow:0 12px 28px #6e9fc72b}.report-dashboard{color:var(--ink);background:#f7f9fb;border:1px solid #ffffff2b;border-radius:22px;width:760px;height:530px;overflow:hidden;transform:rotate(1.3deg);box-shadow:0 30px 80px #00000040}.report-dashboard>header{background:#fff;border-bottom:1px solid #e7edf1;grid-template-columns:1fr auto auto;align-items:center;gap:20px;height:61px;padding:0 18px;display:grid}.report-dashboard .brand{max-width:145px}.report-dashboard .official-brand-logo{max-width:145px;height:33px}.report-dashboard>header>span{background:var(--lime-pale);color:#486d8a;border-radius:999px;padding:6px 9px;font-size:7px;font-weight:750}.report-dashboard>header>div{align-items:center;gap:6px;font-size:8px;display:flex}.report-dashboard>header>div b{background:var(--forest);color:#fff;border-radius:7px;place-items:center;width:25px;height:25px;display:grid}.report-body{grid-template-columns:125px 1fr;height:calc(100% - 61px);display:grid}.report-body>aside{background:#fff;border-right:1px solid #e4ebef;flex-direction:column;gap:7px;padding:17px 10px;display:flex}.report-body>aside span,.report-body>aside b{color:#818e98;border-radius:7px;align-items:center;gap:7px;padding:9px 8px;font-size:8px;display:flex}.report-body>aside b{background:var(--lime-pale);color:var(--forest-deep)}.report-content{min-width:0;padding:20px}.report-title{justify-content:space-between;align-items:center;display:flex}.report-title small{color:#8c99a3;font-size:7px}.report-title h3{margin:4px 0 0;font-size:16px}.report-title button{color:#576672;background:#fff;border:1px solid #dbe3e9;border-radius:7px;padding:8px 10px;font-size:7px}.report-kpis{grid-template-columns:1.3fr 1fr 1fr;gap:10px;margin:17px 0 11px;display:grid}.report-kpis article{background:#fff;border:1px solid #e0e7ec;border-radius:10px;min-height:88px;padding:12px}.report-kpis span{color:#828f99;justify-content:space-between;font-size:7px;display:flex}.report-kpis span i{color:#5a8db5;font-style:normal}.report-kpis strong{margin-top:13px;font-size:20px;display:block}.report-kpis strong small{color:#8c99a4;font-size:7px}.report-chart{background:#fff;border:1px solid #e0e7ec;border-radius:10px;height:270px;padding:14px;position:relative;overflow:hidden}.report-chart>header{justify-content:space-between;align-items:flex-start;display:flex}.report-chart>header b,.report-chart>header small{font-size:9px;display:block}.report-chart>header small{color:#8d9aa4;margin-top:3px;font-size:7px}.report-chart>header>span{color:#5a8db5;font-size:7px}.chart-scale{color:#a0abb4;flex-direction:column;gap:29px;font-size:6px;display:flex;position:absolute;top:69px;left:13px}.report-chart svg{width:calc(100% - 51px);height:160px;position:absolute;bottom:28px;left:38px;right:13px}.report-chart .area{fill:url(#area)}.report-chart .line{fill:none;stroke:#5f93bd;stroke-width:3px}.chart-times{color:#9fabb4;justify-content:space-between;font-size:6px;display:flex;position:absolute;bottom:12px;left:42px;right:15px}.features-section{background:#fff;padding:130px 0}.features-grid{grid-template-columns:repeat(3,1fr);gap:16px;margin-top:64px;display:grid}.features-grid article{border:1px solid var(--border);border-radius:20px;min-height:230px;padding:25px;transition:border-color .18s,box-shadow .18s,transform .18s;position:relative}.features-grid article:hover{border-color:#b9c7d1;transform:translateY(-3px);box-shadow:0 18px 36px #3a6b9414}.feature-top{justify-content:space-between;align-items:center;display:flex}.feature-top>span{background:var(--soft);color:var(--green);border-radius:12px;place-items:center;width:46px;height:46px;display:grid}.feature-top i{background:var(--lime-pale);color:#4c7493;letter-spacing:.08em;text-transform:uppercase;border-radius:999px;padding:6px 9px;font-size:7px;font-style:normal;font-weight:800}.features-grid h3{letter-spacing:-.02em;margin:28px 0 10px;font-size:18px}.features-grid p{color:var(--muted);margin:0;font-size:13px;line-height:1.65}.promotion-section{background:var(--soft);padding:116px 0;overflow:hidden}.promotion-layout{grid-template-columns:.9fr 1.1fr;align-items:center;gap:100px;display:grid}.promotion-copy h2{max-width:560px}.promo-example{border:1px solid var(--border);background:#fff;border-radius:16px;align-items:center;gap:18px;margin-top:28px;padding:15px 18px;display:inline-flex}.promo-example>div span,.promo-example del,.promo-example strong{display:block}.promo-example>div span{color:#86939c;margin-bottom:5px;font-size:8px}.promo-example del{color:#86939c;font-size:14px}.promo-example strong{color:var(--green);font-size:17px}.promo-example svg{color:#9eabb4}.promo-card{background:#fff;border:1px solid #dbe4ea;border-radius:24px;max-width:560px;padding:26px;position:relative;box-shadow:0 25px 55px #3a6b941f}.promo-card:before,.promo-card:after{content:"";z-index:-1;border:1px solid #dfe7ec;border-radius:24px;width:100%;height:100%;position:absolute;top:16px;left:16px}.promo-card:after{opacity:.55;top:32px;left:32px}.promo-card>header{border-bottom:1px solid #e7edf1;justify-content:space-between;align-items:center;padding-bottom:20px;display:flex}.promo-card>header>div{align-items:center;gap:10px;font-size:13px;display:flex}.active-tag{background:var(--lime-pale);color:#4c789b;border-radius:999px;padding:6px 9px;font-size:8px;font-weight:750}.promo-fields{gap:12px;padding:20px 0;display:grid}.promo-fields label{background:var(--soft);color:#828f99;border:1px solid #e3eaef;border-radius:10px;justify-content:space-between;padding:13px;font-size:9px;display:flex}.promo-fields b{color:var(--ink);font-weight:650}.promo-fields strong{color:var(--green);font-size:12px}.promo-fields>div{grid-template-columns:1fr 1fr;gap:12px;display:grid}.promo-card>footer{gap:10px;display:flex}.promo-card>footer span{color:#6b7984;border:1px solid #dbe4ea;border-radius:8px;align-items:center;gap:6px;padding:8px 10px;font-size:8px;display:flex}.promo-card>footer svg{color:var(--green)}.proof-section{text-align:center;background:#fff;padding:76px 0}.proof-section p{color:#818e98;letter-spacing:.14em;text-transform:uppercase;margin:0 0 32px;font-size:10px;font-weight:800}.client-list{grid-template-columns:repeat(6,1fr);align-items:center;gap:24px;display:grid}.client-list span{color:#334c60;letter-spacing:-.02em;font-size:14px;font-weight:850}.client-list span:nth-child(2){letter-spacing:.08em}.client-list span:nth-child(3),.client-list span:nth-child(4){font-family:Georgia,serif;font-size:17px;font-style:italic;font-weight:600}.venue-types{color:#828f99;border-top:1px solid #e4ebef;justify-content:center;align-items:center;gap:16px;margin-top:35px;padding-top:23px;font-size:9px;display:flex}.venue-types i{color:#6b99bd;font-style:normal}.security-section{background:#eef3f7;padding:122px 0}.security-layout{grid-template-columns:.9fr 1.1fr;align-items:center;gap:100px;display:grid}.permission-card{background:#fff;border:1px solid #dae3e9;border-radius:23px;width:100%;max-width:520px;margin:0 auto;padding:24px;box-shadow:0 24px 55px #3a6b941c}.permission-card>header{border-bottom:1px solid #e4ebf0;justify-content:space-between;align-items:center;padding-bottom:18px;display:flex}.permission-card>header>div{align-items:center;gap:11px;display:flex}.permission-card>header>div>svg{background:var(--lime-pale);color:var(--green);border-radius:11px;padding:8px}.permission-card>header b,.permission-card>header small{display:block}.permission-card>header b{font-size:12px}.permission-card>header small{color:#85929c;margin-top:4px;font-size:8px}.permission-card>header>i{color:var(--green);background:#eff4f8;border-radius:999px;padding:6px 9px;font-size:7px;font-style:normal;font-weight:750}.permission-card>p{color:#7a8893;margin:18px 0 11px;font-size:9px}.approval-options{gap:9px;display:grid}.approval-options button{color:var(--ink);text-align:left;background:#fff;border:1px solid #dee6eb;border-radius:11px;grid-template-columns:34px 1fr 20px;align-items:center;padding:12px;display:grid}.approval-options button.selected{background:#f4f8fb;border-color:#739fc0}.approval-options button>svg{color:var(--green)}.approval-options button b,.approval-options button small{display:block}.approval-options button b{font-size:9px}.approval-options button small{color:#8896a0;margin-top:3px;font-size:7px}.approval-options button>i{color:#9aa6af;font-size:17px;font-style:normal}.approval-options button.selected>i{background:var(--green);border-radius:99px;width:28px;height:16px;padding:3px}.approval-options button.selected>i span{background:#fff;border-radius:50%;width:10px;height:10px;margin-left:auto;display:block}.rfid-status{color:#fff;background:linear-gradient(135deg,#2f353b 0%,#334c60 100%);border-radius:13px;align-items:center;gap:13px;margin-top:13px;padding:15px;display:flex}.rfid-status>span{color:var(--lime);background:#6e9fc721;border:1px solid #6e9fc73d;border-radius:50%;place-items:center;width:40px;height:40px;animation:1.9s infinite pulse-ring;display:grid}.rfid-status b,.rfid-status small{display:block}.rfid-status b{font-size:9px}.rfid-status small{color:#ffffff94;margin-top:4px;font-size:7px}.faq-section{background:#fff;padding:130px 0}.faq-layout{grid-template-columns:.8fr 1.2fr;align-items:start;gap:110px;display:grid}.faq-heading{position:sticky;top:130px}.faq-heading h2{font-size:clamp(40px,4vw,59px)}.faq-heading .text-link{margin-top:30px}.faq-list{border-top:1px solid var(--border)}.faq-list details{border-bottom:1px solid var(--border);padding:0}.faq-list summary{cursor:pointer;justify-content:space-between;align-items:center;gap:25px;padding:25px 0;font-size:17px;font-weight:750;list-style:none;display:flex}.faq-list summary::-webkit-details-marker{display:none}.faq-list summary span{background:var(--soft);border-radius:50%;flex:none;place-items:center;width:34px;height:34px;font-size:20px;font-weight:400;transition:transform .18s;display:grid}.faq-list details[open] summary span{background:var(--lime-pale);color:var(--green);transform:rotate(45deg)}.faq-list details p{color:var(--muted);margin:-5px 60px 25px 0;font-size:14px;line-height:1.7}.demo-section{background:#fff;padding:0 0 30px}.demo-card{color:#fff;background:linear-gradient(135deg,#2f353b 0%,#334c60 60%,#3a6b94 125%);border-radius:30px;grid-template-columns:1fr .68fr;align-items:center;gap:70px;min-height:500px;padding-top:70px;padding-bottom:70px;display:grid;position:relative;overflow:hidden}.demo-orbit{border:1px solid #6e9fc71f;border-radius:50%;width:620px;height:620px;position:absolute;top:-230px;right:-240px}.demo-orbit.two{width:440px;height:440px;top:-120px;right:-140px}.demo-content{z-index:2;padding-left:42px;position:relative}.demo-content>span{color:var(--lime);letter-spacing:.16em;text-transform:uppercase;font-size:11px;font-weight:800}.demo-content h2{letter-spacing:-.06em;max-width:650px;margin:18px 0 23px;font-size:clamp(45px,5vw,72px);line-height:.98}.demo-content>p{color:#ffffffad;max-width:600px;font-size:16px;line-height:1.7}.demo-content>div{flex-wrap:wrap;align-items:center;gap:24px;margin-top:34px;display:flex}.demo-button{background:var(--lime);color:var(--forest-deep)}.demo-button:hover{background:#8fb8d8}.demo-site-link{color:#ffffffb8;font-size:13px;font-weight:700}.demo-mini-ui{color:var(--ink);z-index:2;background:#fff;border:1px solid #fff3;border-radius:20px;padding:25px;position:relative;transform:rotate(2deg);box-shadow:0 25px 60px #0000003d}.demo-check{background:var(--lime-pale);color:var(--green);border-radius:14px;place-items:center;width:52px;height:52px;margin-bottom:20px;display:grid}.demo-mini-ui>span{color:var(--green);letter-spacing:.12em;text-transform:uppercase;font-size:8px;font-weight:800}.demo-mini-ui>strong{margin:7px 0 19px;font-size:19px;display:block}.demo-mini-ui>div:not(.demo-check){border-top:1px solid #e5ebef;align-items:center;gap:11px;padding:13px 0;display:flex}.demo-mini-ui>div:not(.demo-check)>i{background:var(--lime);border-radius:50%;width:7px;height:7px}.demo-mini-ui b,.demo-mini-ui small{font-size:9px;display:block}.demo-mini-ui small{color:#84919b;margin-top:4px;font-size:7px}.site-footer{background:#fff;padding:58px 0 26px}.footer-main{grid-template-columns:1.6fr repeat(3,.7fr);gap:50px;padding-bottom:50px;display:grid}.footer-brand p{color:var(--muted);max-width:310px;font-size:12px;line-height:1.65}.footer-main>div:not(.footer-brand){flex-direction:column;gap:12px;display:flex}.footer-main>div:not(.footer-brand) b{margin-bottom:5px;font-size:12px}.footer-main>div:not(.footer-brand) a,.footer-main>div:not(.footer-brand) span{color:#798690;font-size:11px}.footer-main>div:not(.footer-brand) a:hover{color:var(--green)}.footer-bottom{color:#8c99a3;border-top:1px solid #e4ebef;justify-content:space-between;padding-top:23px;font-size:9px;display:flex}@keyframes stage-in{0%{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}@keyframes pulse{50%{opacity:.5}}@keyframes draw{to{stroke-dashoffset:0}}@keyframes pulse-ring{50%{box-shadow:0 0 0 8px #6e9fc712}}@media (width<=1180px){.shell{padding-left:28px;padding-right:28px}.hero{grid-template-columns:.8fr 1.2fr}.product-stage{transform-origin:0;width:113%;transform:scale(.88)}.nav-wrap nav{gap:24px;margin-right:28px}.connection-strip p{display:none}.solution-panel{grid-template-columns:.72fr 1.28fr;padding:34px}.reports-layout{gap:40px}.report-dashboard{transform-origin:0;transform:scale(.88)rotate(1deg)}.reports-copy{z-index:2;position:relative}.online-layout,.promotion-layout,.security-layout{gap:55px}.faq-layout{gap:60px}}@media (width<=920px){.site-header{height:72px}.nav-toggle{cursor:pointer;gap:6px;margin-left:auto;padding:12px;display:grid}.nav-toggle span{background:var(--forest);border-radius:2px;width:24px;height:2px;display:block}.nav-wrap nav{border-bottom:1px solid var(--border);background:#fff;flex-direction:column;align-items:stretch;gap:0;width:100%;margin:0;padding:14px 28px 22px;display:none;position:absolute;top:72px;left:0;box-shadow:0 18px 30px #302f2f14}.nav-wrap nav.open{display:flex}.nav-wrap nav a{border-bottom:1px solid #edf2f5;padding:15px 0}.nav-cta{display:none}.hero{text-align:center;grid-template-columns:1fr;padding-top:70px}.hero-copy{max-width:720px;margin:0 auto}.hero-copy>p{margin-left:auto;margin-right:auto}.hero-actions,.hero-trust{justify-content:center}.product-stage{transform-origin:50%;width:104%;max-width:740px;margin:-50px auto 0;transform:scale(.93)}.connection-strip .shell{flex-wrap:wrap;justify-content:center;gap:22px;padding-top:28px;padding-bottom:28px}.connector{display:none}.solutions-section,.workflow-section,.real-software-section,.online-section,.reports-section,.features-section,.promotion-section,.security-section,.faq-section{padding-top:90px;padding-bottom:90px}.solution-panel,.online-layout,.reports-layout,.promotion-layout,.security-layout,.faq-layout{grid-template-columns:1fr}.solution-panel{padding:38px}.solution-copy{max-width:650px}.workflow-grid{grid-template-columns:repeat(2,1fr)}.workflow-arrow{display:none}.real-software-heading{grid-template-columns:1fr;gap:36px}.real-software-heading>p{max-width:700px}.software-showcase{grid-template-columns:1fr}.dashboard-shot{margin-top:0}.software-shot-copy{min-height:auto}.mobile-app-proof{grid-template-columns:1fr;padding:52px 48px 44px}.mobile-app-copy{max-width:680px}.mobile-screen-gallery{scroll-snap-type:x mandatory;grid-template-columns:repeat(4,180px);padding:8px 4px 18px;overflow-x:auto}.mobile-phone-card{scroll-snap-align:start}.mobile-phone-card:nth-child(2n){padding-top:30px}.online-layout{gap:30px}.online-visual{width:100%;max-width:680px;margin:0 auto}.online-copy{max-width:650px;margin:0 auto}.reports-copy{max-width:680px}.report-dashboard{width:100%;max-width:760px;margin:-20px auto 0;transform:scale(1)rotate(0)}.features-grid{grid-template-columns:repeat(2,1fr)}.promo-card{margin:0 auto}.security-copy{max-width:650px}.faq-heading{max-width:650px;position:static}.client-list{grid-template-columns:repeat(3,1fr);row-gap:34px}.demo-card{grid-template-columns:1fr;padding-left:48px;padding-right:48px}.demo-content{padding-left:0}.demo-mini-ui{max-width:480px;transform:none}.footer-main{grid-template-columns:1.5fr repeat(3,1fr);gap:28px}}@media (width<=680px){.shell{padding-left:20px;padding-right:20px}.official-brand-logo{height:45px}.hero{min-height:auto;padding-top:54px;padding-bottom:30px}.hero h1{font-size:clamp(44px,13vw,64px)}.hero-copy>p{font-size:16px}.hero-actions{display:grid}.hero-actions .button{width:100%}.hero-trust{flex-direction:column;align-items:center;gap:10px}.product-stage{transform-origin:50%;width:160%;height:430px;margin:-85px auto 0;transform:scale(.59)}.pos-window{width:96%;left:4%}.mobile-order{left:0}.connection-item{width:calc(50% - 14px)}.connection-strip .shell{justify-content:flex-start}.placeholder-slice{min-height:300px;padding:86px 0}.section-heading h2,.online-copy h2,.reports-copy h2,.promotion-copy h2,.security-copy h2,.faq-heading h2{font-size:40px}.section-heading p,.online-copy>p,.promotion-copy>p,.security-copy>p,.faq-heading>p{font-size:15px}.solution-tabs{background:0 0;grid-template-columns:1fr;gap:7px;margin-top:42px;padding:0}.solution-tabs button{background:#e8eef2}.solution-panel{border-radius:22px;padding:27px 20px 20px}.solution-copy h3{font-size:36px}.solution-visual{height:420px}.visual-phone{transform-origin:0 0;top:18px;left:4%;transform:scale(.85)}.sync-card{top:80px;right:3%}.kds-board,.owner-dashboard{transform-origin:0 0;width:123%;left:2%;transform:scale(.78)}.routing-card{left:5%}.workflow-grid{grid-template-columns:1fr}.workflow-grid article{min-height:230px}.real-software-heading{margin-bottom:38px}.real-software-heading h2{font-size:40px}.software-shot{border-radius:20px;padding:16px}.software-shot-copy{padding:5px 3px 20px}.software-shot-copy h3{font-size:27px}.software-window-bar span{text-overflow:ellipsis;white-space:nowrap;max-width:140px;overflow:hidden}.software-window-bar b{font-size:0}.software-window-bar b:after{content:"Open ↗";font-size:8px}.real-software-note{flex-direction:column;align-items:flex-start;gap:12px}.mobile-app-proof{border-radius:26px;margin-top:52px;padding:42px 22px 28px}.mobile-app-copy h3{font-size:40px}.mobile-app-button{width:100%}.mobile-screen-gallery{grid-template-columns:repeat(4,156px);gap:10px;margin-left:-4px;margin-right:-4px}.mobile-phone-shell{border-radius:24px;padding:5px}.mobile-phone-shell img{border-radius:19px}.online-visual{height:450px}.menu-browser{transform-origin:0 0;width:125%;height:440px;transform:scale(.8)}.online-pop{bottom:-2px;left:8%}.report-points{grid-template-columns:1fr}.report-dashboard{transform-origin:0 0;width:128%;height:405px;transform:scale(.78)}.report-body{grid-template-columns:90px 1fr}.report-kpis article:nth-child(3){display:none}.report-kpis{grid-template-columns:1.2fr 1fr}.features-grid{grid-template-columns:1fr}.features-grid article{min-height:210px}.promo-example{align-items:stretch;width:100%;display:flex}.promo-example>div{flex:1}.promo-card{padding:20px}.promo-card:before,.promo-card:after{display:none}.promo-fields>div{grid-template-columns:1fr}.client-list{grid-template-columns:repeat(2,1fr)}.venue-types{flex-wrap:wrap}.faq-list summary{font-size:15px}.demo-section{padding:0 10px 10px}.demo-card{border-radius:24px;gap:45px;padding:55px 22px}.demo-content h2{font-size:44px}.demo-content>div{flex-direction:column;align-items:stretch}.demo-button{width:100%}.demo-site-link{text-align:center}.footer-main{grid-template-columns:1fr 1fr}.footer-brand{grid-column:1/3}.footer-bottom{flex-direction:column;gap:9px}}@media (prefers-reduced-motion:reduce){*,:before,:after{scroll-behavior:auto!important;transition-duration:.01ms!important;animation-duration:.01ms!important;animation-iteration-count:1!important}}

/* === Hero floating icons (final overrides) === */
.hero.hero-with-motion {
  display: grid !important;
  grid-template-columns: minmax(280px, 1fr) minmax(320px, 1fr) !important;
  align-items: center !important;
  min-height: 560px !important;
  gap: 24px !important;
}

.hero-orbit {
  display: block !important;
  position: relative !important;
  width: 100% !important;
  min-height: 440px !important;
  height: 440px !important;
  visibility: visible !important;
  opacity: 1 !important;
  z-index: 1 !important;
  background:
    radial-gradient(circle at 50% 45%, rgba(110, 159, 199, 0.18), transparent 60%);
  border-radius: 28px;
}

.hero-orbit-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(58, 107, 148, 0.16), transparent 70%);
  pointer-events: none;
}

.hero-orbit-ring {
  position: absolute;
  border: 1px solid rgba(58, 107, 148, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-ring.one {
  width: 360px;
  height: 360px;
  top: 40px;
  left: 50%;
  margin-left: -180px;
  animation: hero-spin 40s linear infinite;
}

.hero-orbit-ring.two {
  width: 250px;
  height: 250px;
  top: 95px;
  left: 50%;
  margin-left: -125px;
  border-style: dashed;
  animation: hero-spin 28s linear infinite reverse;
}

.hero-float {
  position: absolute !important;
  z-index: 5 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  animation: hero-drift 6.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.hero-float span {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 72px !important;
  height: 72px !important;
  border-radius: 20px;
  color: #334c60 !important;
  background: #ffffff !important;
  border: 1px solid #c5d2dc !important;
  box-shadow: 0 12px 28px rgba(51, 76, 96, 0.18) !important;
}

.hero-float svg {
  width: 30px !important;
  height: 30px !important;
  max-width: none !important;
  display: block !important;
  stroke: #3a6b94 !important;
}

.hero-float.i1 { top: 36px; left: 48px; }
.hero-float.i2 { top: 56px; right: 56px; }
.hero-float.i3 { top: 170px; left: 24px; }
.hero-float.i4 { top: 150px; right: 40px; }
.hero-float.i4 span {
  width: 88px !important;
  height: 88px !important;
  background: linear-gradient(145deg, #3a6b94, #334c60) !important;
  border-color: transparent !important;
  color: #fff !important;
}
.hero-float.i4 svg { stroke: #fff !important; width: 34px !important; height: 34px !important; }
.hero-float.i5 { bottom: 70px; left: 70px; }
.hero-float.i6 { bottom: 48px; right: 70px; }
.hero-float.i7 { top: 210px; left: 46%; }
.hero-float.i8 { bottom: 120px; right: 42%; }

@keyframes hero-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

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

@media (max-width: 920px) {
  .hero.hero-with-motion {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
    text-align: center;
  }

  .hero-orbit {
    min-height: 320px !important;
    height: 320px !important;
    margin: 12px auto 0;
    max-width: 420px;
  }

  .hero-orbit-ring.one { width: 260px; height: 260px; margin-left: -130px; top: 30px; }
  .hero-orbit-ring.two { width: 180px; height: 180px; margin-left: -90px; top: 70px; }
  .hero-float span { width: 58px !important; height: 58px !important; }
  .hero-float.i4 span { width: 70px !important; height: 70px !important; }
  .hero-float.i7, .hero-float.i8 { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float,
  .hero-orbit-ring {
    animation: none !important;
  }
}
