﻿:root {
  --softsys-primary: #147696;
  --softsys-secondary: #418F9E;
  --softsys-background: #F4F6F5;
  --softsys-text: #1F1F1F;
  --softsys-surface-soft: #F4F6F5;
  --softsys-line: rgba(31, 31, 31, 0.14);
  --softsys-line-soft: rgba(31, 31, 31, 0.08);
  --softsys-line-strong: rgba(31, 31, 31, 0.22);
  --softsys-focus: rgba(20, 118, 150, 0.42);
  --softsys-shadow-strong: rgba(20, 118, 150, 0.22);
  --ink: var(--softsys-text);
  --ink-soft: rgba(31, 31, 31, 0.72);
  --dark: var(--softsys-text);
  --dark-deep: var(--softsys-text);
  --dark-card: var(--softsys-text);
  --cream: var(--softsys-background);
  --paper: var(--softsys-background);
  --white: #ffffff;
  --line: var(--softsys-line);
  --line-dark: rgba(255, 255, 255, 0.1);
  --line-soft: var(--softsys-line-soft);
  --brand: var(--softsys-primary);
  --brand-bright: var(--softsys-secondary);
  --brand-soft: rgba(20, 118, 150, 0.14);
  --mint: var(--softsys-secondary);
  --mint-deep: var(--softsys-primary);
  --shadow-sm: 0 12px 30px rgba(31, 31, 31, 0.08);
  --shadow-lg: 0 30px 80px rgba(31, 31, 31, 0.2);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 78px;
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: inherit;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open,
body.dialog-open {
  overflow: hidden;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 780;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

p {
  color: var(--ink-soft);
}

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

.section {
  position: relative;
  padding-block: clamp(80px, 9vw, 138px);
}

.section-light {
  background: var(--paper);
}

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.7);
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
.footer-links a:focus-visible,
.footer-links button:focus-visible,
.legal-dialog button:focus-visible {
  outline: 3px solid rgba(65, 143, 158, 0.42);
  outline-offset: 3px;
}

.button-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(20, 118, 150, 0.24);
}

.button-primary:hover {
  background: var(--brand);
  box-shadow: 0 17px 36px rgba(20, 118, 150, 0.3);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.11);
}

.button-sm {
  min-height: 42px;
  padding: 10px 17px;
  font-size: 0.86rem;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-kicker-light {
  color: var(--brand-bright);
}

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(31, 31, 31, 0.91);
  color: var(--white);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(31, 31, 31, 0.96);
  box-shadow: 0 12px 30px rgba(31, 31, 31, 0.16);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.035);
}

.brand-mark::after {
  position: absolute;
  right: -3px;
  bottom: -3px;
  width: 10px;
  height: 10px;
  border: 3px solid var(--dark);
  border-radius: 50%;
  background: var(--brand-bright);
  content: "";
}

.brand-mark span {
  font-size: 1.2rem;
  font-weight: 850;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1.06rem;
  letter-spacing: -0.02em;
}

.brand-copy small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
}

.site-nav > a:not(.button) {
  position: relative;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-bright);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.site-nav > a:hover {
  color: var(--white);
}

.site-nav > a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: min(880px, calc(100svh - var(--header-height)));
  padding-block: clamp(78px, 9vw, 130px) clamp(90px, 11vw, 155px);
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, var(--softsys-text), transparent 86%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(500px, 1.12fr);
  align-items: center;
  gap: clamp(50px, 7vw, 96px);
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 6vw, 4.85rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.96;
}

.hero-copy h1::first-line {
  color: var(--white);
}

.hero-lead {
  max-width: 670px;
  margin-bottom: 32px;
  font-size: clamp(1.05rem, 1.6vw, 1.26rem);
  line-height: 1.65;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-bright);
  box-shadow: 0 0 0 6px rgba(65, 143, 158, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.78rem;
  font-weight: 650;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points li span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--mint);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.62;
  pointer-events: none;
}

.hero-glow-one {
  top: -220px;
  right: -180px;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(20, 118, 150, 0.48), transparent 68%);
}

.hero-glow-two {
  bottom: -360px;
  left: 18%;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(20, 118, 150, 0.2), transparent 68%);
}

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

.device-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.orbit-one {
  inset: 3% 1% 8% 3%;
}

.orbit-two {
  inset: 13% 11% 18% 14%;
}

.media-placeholder {
  position: relative;
  overflow: hidden;
}

.media-placeholder::after {
  position: absolute;
  inset: 0;
  border: 1px dashed rgba(65, 143, 158, 0.22);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.slot-label {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.desktop-device {
  position: absolute;
  top: 58px;
  left: 0;
  width: min(88%, 590px);
  border: 8px solid var(--dark);
  border-bottom-width: 14px;
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.device-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 34px;
  padding: 0 10px;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.63rem;
}

.device-topbar .slot-label {
  margin-left: auto;
}

.device-camera {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.pos-preview {
  display: grid;
  grid-template-columns: 45px 1fr;
  min-height: 345px;
}

.pos-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 17px;
  padding-block: 14px;
  background: var(--dark);
}

.pos-logo {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  border-radius: 8px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
}

.pos-sidebar i {
  width: 17px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.pos-content {
  padding: 15px;
}

.pos-toolbar,
.pos-categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pos-toolbar {
  margin-bottom: 18px;
  color: var(--dark);
  font-size: 0.72rem;
}

.pos-toolbar span {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--line);
  color: var(--mint-deep);
  font-size: 0.56rem;
  font-weight: 800;
}

.pos-categories {
  justify-content: flex-start;
  gap: 7px;
  margin-bottom: 14px;
}

.pos-categories span {
  padding: 6px 9px;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-soft);
  font-size: 0.56rem;
  box-shadow: 0 4px 10px rgba(31, 31, 31, 0.06);
}

.pos-categories span:first-child {
  background: var(--brand);
  color: var(--white);
}

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

.pos-cards article {
  display: grid;
  min-height: 112px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  box-shadow: 0 7px 14px rgba(31, 31, 31, 0.05);
}

.pos-cards article i {
  width: 100%;
  height: 48px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--line), var(--line));
}

.pos-cards article b {
  align-self: end;
  color: var(--ink);
  font-size: 0.6rem;
}

.pos-cards article small {
  color: var(--ink-soft);
  font-size: 0.5rem;
}

.device-stand {
  position: absolute;
  right: 37%;
  bottom: -54px;
  width: 25%;
  height: 54px;
  border-radius: 0 0 14px 14px;
  background: linear-gradient(to right, var(--dark), var(--line), var(--dark));
  clip-path: polygon(30% 0, 70% 0, 88% 78%, 100% 100%, 0 100%, 12% 78%);
}

.phone-device {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  width: 220px;
  padding: 9px;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-radius: 34px;
  background: var(--dark);
  box-shadow: 0 35px 70px rgba(31, 31, 31, 0.45);
  transform: rotate(2deg);
}

.phone-speaker {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 50%;
  width: 48px;
  height: 5px;
  border-radius: 99px;
  background: var(--dark);
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 430px;
  padding: 25px 10px 12px;
  border-radius: 26px;
  background: var(--paper);
  color: var(--ink);
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 0.67rem;
}

.phone-brand-dot {
  width: 23px;
  height: 23px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--brand), var(--brand-soft));
}

.phone-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
  overflow: hidden;
}

.phone-tabs span {
  flex: 0 0 auto;
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--line);
  font-size: 0.48rem;
  font-weight: 700;
}

.phone-tabs span:first-child {
  background: var(--dark);
  color: var(--white);
}

.phone-product {
  display: grid;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 7px 14px rgba(31, 31, 31, 0.06);
}

.phone-product i {
  height: 86px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: radial-gradient(circle at 60% 40%, var(--brand) 0 14%, transparent 15%), linear-gradient(135deg, var(--dark), var(--brand-soft));
}

.phone-product.compact {
  grid-template-columns: 55px 1fr;
  column-gap: 8px;
}

.phone-product.compact i {
  grid-row: span 2;
  height: 56px;
  margin: 0;
}

.phone-product strong {
  font-size: 0.6rem;
}

.phone-product small {
  color: var(--ink-soft);
  font-size: 0.49rem;
}

.phone-cart {
  margin-top: 17px;
  padding: 9px 10px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.55rem;
  font-weight: 800;
  text-align: center;
}

.phone-label {
  position: absolute;
  bottom: -33px;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%);
}

.proof-strip {
  position: relative;
  z-index: 4;
  margin-top: -32px;
  padding-block: 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1.15fr auto 0.9fr;
  align-items: center;
  gap: 32px;
  padding: 30px 34px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 26px;
  background: rgba(244, 246, 245, 0.96);
  box-shadow: var(--shadow-lg);
}

.proof-grid h2 {
  max-width: 430px;
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.035em;
}

.proof-grid .section-kicker {
  margin-bottom: 8px;
}

.client-list {
  display: flex;
  gap: 10px;
}

.client-list span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
    color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 760;
  white-space: nowrap;
}

.coverage-copy {
  margin: 0;
  font-size: 0.83rem;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 50px;
  margin-bottom: 48px;
}

.split-heading h2,
.centered-heading h2,
.section-copy h2,
.panel-heading h2 {
  max-width: 780px;
}

.split-heading > p {
  max-width: 520px;
  margin-bottom: 6px;
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.feature-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--brand-soft);
  content: "";
  opacity: 0;
  transition: opacity 200ms ease;
}

.feature-card:hover {
  border-color: rgba(20, 118, 150, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--ink-soft);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 36px;
  place-items: center;
  border-radius: 15px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.feature-card:nth-child(3n + 2) .feature-icon {
  background: var(--brand);
}

.feature-card:nth-child(3n) .feature-icon {
  background: var(--mint-deep);
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.menu-section {
  background: var(--paper);
  overflow: hidden;
}

.menu-grid,
.admin-grid,
.web-orders-grid,
.devices-grid,
.final-cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(470px, 1.1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.section-copy > p {
  max-width: 590px;
  font-size: 1.02rem;
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 27px;
}

.chip-list span {
  padding: 8px 11px;
  border: 1px solid rgba(31, 31, 31, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
}

.menu-showcase {
  position: relative;
  display: grid;
  min-height: 650px;
  place-items: center;
}

.menu-showcase::before {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(65, 143, 158, 0.56), rgba(65, 143, 158, 0.04) 68%, transparent 70%);
  content: "";
}

.menu-phone-frame {
  z-index: 2;
  width: 310px;
  padding: 30px 15px 15px;
  border: 7px solid var(--dark);
  border-radius: 42px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
}

.menu-phone-frame::before {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 60px;
  height: 6px;
  border-radius: 999px;
  background: var(--dark);
  content: "";
  transform: translateX(-50%);
}

.menu-phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.menu-avatar {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--dark), var(--brand));
}

.menu-phone-header div {
  display: flex;
  flex-direction: column;
}

.menu-phone-header b {
  font-size: 0.74rem;
}

.menu-phone-header small {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.menu-phone-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 15px;
  overflow: hidden;
}

.menu-phone-tabs span,
.menu-phone-tabs b {
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--line);
  font-size: 0.55rem;
}

.menu-phone-tabs b {
  background: var(--dark);
  color: var(--white);
}

.menu-phone-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

.menu-phone-grid article {
  display: flex;
  flex-direction: column;
  min-height: 230px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  box-shadow: 0 8px 18px rgba(31, 31, 31, 0.07);
}

.food-image {
  height: 112px;
  margin-bottom: 9px;
  border-radius: 9px;
}

.food-one {
  background: radial-gradient(circle at 54% 40%, var(--brand-soft) 0 12%, transparent 13%), radial-gradient(circle at 48% 52%, var(--mint-deep) 0 21%, transparent 22%), linear-gradient(145deg, var(--dark), var(--brand));
}

.food-two {
  background: radial-gradient(circle at 42% 43%, var(--brand-soft) 0 18%, transparent 19%), radial-gradient(circle at 58% 54%, var(--mint-deep) 0 20%, transparent 21%), linear-gradient(145deg, var(--dark), var(--brand-soft));
}

.menu-phone-grid b {
  font-size: 0.62rem;
  line-height: 1.25;
}

.menu-phone-grid small {
  margin: 4px 0 8px;
  color: var(--ink-soft);
  font-size: 0.52rem;
}

.menu-phone-grid strong {
  margin-top: auto;
  font-size: 0.62rem;
}

.menu-phone-cart {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding: 11px 13px;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white);
  font-size: 0.62rem;
}

.menu-floating-card {
  position: absolute;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-width: 200px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.83);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.menu-floating-card small {
  color: var(--ink-soft);
  font-size: 0.65rem;
}

.menu-floating-card strong {
  font-size: 0.78rem;
}

.card-options {
  top: 18%;
  left: 1%;
}

.card-online {
  right: 0;
  bottom: 15%;
}

.flow-section {
  overflow: hidden;
}

.flow-section::after {
  position: absolute;
  top: 10%;
  left: 50%;
  width: 900px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 118, 150, 0.24), transparent 68%);
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.centered-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin-bottom: 52px;
  text-align: center;
}

.centered-heading h2 {
  margin-inline: auto;
}

.centered-heading p {
  max-width: 620px;
  margin-inline: auto;
}

.flow-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.75fr auto 1fr auto 0.95fr auto 0.85fr auto 1.3fr auto 0.7fr;
  align-items: center;
  gap: 10px;
}

.flow-track > i {
  color: rgba(255, 255, 255, 0.26);
  font-size: 1.15rem;
  font-style: normal;
}

.flow-node {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 130px;
  padding: 17px 13px;
  border: 1px solid var(--line-dark);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.045);
  text-align: center;
}

.flow-node span {
  margin-bottom: 16px;
  color: var(--brand-bright);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.13em;
}

.flow-node strong {
  font-size: 0.8rem;
}

.flow-node small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.55rem;
}

.flow-node-active {
  border-color: rgba(65, 143, 158, 0.58);
  background: linear-gradient(145deg, rgba(20, 118, 150, 0.22), rgba(20, 118, 150, 0.08));
  box-shadow: 0 18px 45px rgba(31, 31, 31, 0.25);
  transform: translateY(-7px);
}

.operations-section {
  background: var(--paper);
}

.operations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.operation-panel {
  min-width: 0;
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.operation-panel h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

.panel-heading > p {
  max-width: 520px;
}

.destination-map {
  display: grid;
  grid-template-columns: 0.74fr 45px 1.26fr;
  align-items: center;
  margin-top: 35px;
}

.order-source {
  display: flex;
  flex-direction: column;
  padding: 19px;
  border-radius: 18px;
  background: var(--dark);
  color: var(--white);
}

.order-source span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.order-source b {
  font-size: 0.88rem;
}

.route-line {
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--brand) 0 7px, transparent 7px 12px);
}

.destination-list {
  display: grid;
  gap: 8px;
}

.destination-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
}

.destination-list i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 5px rgba(20, 118, 150, 0.09);
}

.destination-list span {
  display: flex;
  flex-direction: column;
}

.destination-list b {
  font-size: 0.72rem;
}

.destination-list small {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.table-panel {
  background: var(--paper);
}

.table-ui {
  margin-top: 35px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 15px 35px rgba(31, 31, 31, 0.07);
}

.table-status,
.table-ui li,
.table-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.table-status {
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}

.table-status span {
  font-size: 1.05rem;
  font-weight: 800;
}

.table-status b {
  padding: 5px 8px;
  border-radius: 999px;
  background: var(--line);
  color: var(--mint-deep);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.table-ui ul {
  margin: 0;
  padding: 8px 0;
  list-style: none;
}

.table-ui li {
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 0.74rem;
}

.table-ui li strong {
  color: var(--ink);
}

.table-actions {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.table-actions span,
.table-actions b {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--paper);
  font-size: 0.65rem;
}

.table-actions b {
  background: var(--brand);
  color: var(--white);
}

.flexible-section {
  background: var(--paper);
}

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

.flex-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.62);
}

.flex-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.flex-card-head span {
  color: var(--brand);
  font-size: 0.65rem;
  font-weight: 850;
}

.flex-card-head h3 {
  margin: 0;
}

.size-steps,
.addon-stack,
.weight-scale {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 105px;
}

.size-steps span,
.addon-stack span,
.weight-scale span {
  padding: 9px 11px;
  border-radius: 999px;
  background: var(--dark);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
  white-space: nowrap;
}

.size-steps i {
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-style: normal;
}

.addon-stack {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.addon-stack span {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 7px 15px rgba(31, 31, 31, 0.07);
}

.weight-scale {
  justify-content: space-between;
}

.weight-scale span {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--mint-deep);
}

.weight-scale span:nth-child(2) {
  transform: scale(1.14);
}

.weight-scale span:nth-child(3) {
  transform: scale(1.28);
}

.flex-card p {
  margin: 25px 0 0;
  font-size: 0.85rem;
}

.admin-section {
  background: var(--paper);
  overflow: hidden;
}

.admin-grid {
  grid-template-columns: minmax(500px, 1.12fr) minmax(0, 0.88fr);
}

.admin-dashboard {
  padding: 24px;
  border: 8px solid var(--dark);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
}

.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--dark);
  font-size: 0.76rem;
}

.dashboard-top span {
  color: var(--ink-soft);
  font-size: 0.62rem;
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.dashboard-kpis span {
  display: flex;
  flex-direction: column;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
}

.dashboard-kpis small {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.dashboard-kpis b {
  font-size: 0.78rem;
}

.dashboard-main {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 12px;
}

.chart-card,
.dashboard-list {
  min-height: 220px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

.chart-card > small,
.dashboard-list > small {
  color: var(--ink-soft);
  font-size: 0.58rem;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 155px;
  gap: 8px;
  padding-top: 24px;
}

.chart-bars i {
  flex: 1;
  height: 34%;
  border-radius: 6px 6px 2px 2px;
  background: var(--line);
}

.chart-bars i:nth-child(2) { height: 52%; }
.chart-bars i:nth-child(3) { height: 44%; }
.chart-bars i:nth-child(4) { height: 73%; background: var(--brand); }
.chart-bars i:nth-child(5) { height: 61%; }
.chart-bars i:nth-child(6) { height: 88%; background: var(--mint-deep); }
.chart-bars i:nth-child(7) { height: 76%; }

.dashboard-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-list span {
  padding: 7px 8px;
  border-radius: 8px;
  background: var(--line);
  color: var(--ink-soft);
  font-size: 0.6rem;
}

.admin-dashboard > .slot-label {
  position: absolute;
  right: 18px;
  bottom: 14px;
  border-color: rgba(31, 31, 31, 0.12);
  color: var(--ink-soft);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 20px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 23px;
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 650;
}

.check-list li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--mint-deep);
  border-radius: 50%;
  content: "";
}

.web-orders-section {
  background: var(--paper);
}

.web-orders-grid {
  grid-template-columns: minmax(0, 0.72fr) minmax(580px, 1.28fr);
}

.domain-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 13px;
  border: 1px solid rgba(20, 118, 150, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--mint-deep);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.76rem;
  text-decoration: none;
}

.domain-pill span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint-deep);
  box-shadow: 0 0 0 5px rgba(65, 143, 158, 0.12);
}

.order-journey {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 6px;
}

.order-journey > i {
  color: var(--ink-soft);
  font-style: normal;
}

.order-journey > div {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 0;
  min-height: 150px;
  padding: 18px 10px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.order-journey span {
  margin-bottom: 24px;
  color: var(--brand);
  font-size: 0.58rem;
  font-weight: 850;
}

.order-journey b {
  font-size: 0.73rem;
}

.order-journey small {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.54rem;
}

.devices-section {
  overflow: hidden;
}

.devices-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(570px, 1.3fr);
}

.device-family {
  position: relative;
  min-height: 390px;
}

.device-family > div {
  position: absolute;
  display: grid;
  place-items: center;
  border: 6px solid var(--dark);
  background: linear-gradient(145deg, var(--line), var(--line-soft));
  box-shadow: var(--shadow-lg);
}

.device-family span {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 800;
}

.family-monitor {
  top: 20px;
  left: 3%;
  width: 53%;
  height: 245px;
  border-radius: 18px;
}

.family-monitor i,
.family-laptop i {
  position: absolute;
  right: 38%;
  bottom: -50px;
  left: 38%;
  height: 50px;
  background: var(--dark);
  clip-path: polygon(28% 0, 72% 0, 88% 82%, 100% 100%, 0 100%, 12% 82%);
}

.family-laptop {
  right: 3%;
  bottom: 28px;
  width: 45%;
  height: 205px;
  border-radius: 15px;
}

.family-laptop i {
  right: -8%;
  bottom: -13px;
  left: -8%;
  height: 13px;
  border-radius: 3px 3px 11px 11px;
  clip-path: none;
}

.family-tablet {
  z-index: 3;
  right: 34%;
  bottom: 5px;
  width: 120px;
  height: 165px;
  border-width: 5px !important;
  border-radius: 17px;
}

.family-phone {
  z-index: 4;
  right: 19%;
  bottom: 0;
  width: 72px;
  height: 138px;
  border-width: 5px !important;
  border-radius: 17px;
}

.family-tablet span,
.family-phone span {
  padding: 5px 7px;
  font-size: 0.5rem;
}

.final-cta {
  overflow: hidden;
}

.final-cta::before {
  position: absolute;
  top: -200px;
  right: -120px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 118, 150, 0.2), transparent 65%);
  content: "";
}

.final-cta-grid {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr minmax(310px, 0.42fr);
}

.final-cta h2 {
  max-width: 820px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  font-style: normal;
}

.contact-label {
  margin-bottom: 20px;
  color: var(--brand-bright);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-card a {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  text-decoration-color: rgba(255, 255, 255, 0.25);
  text-underline-offset: 4px;
}

.contact-card p {
  margin: 18px 0 0;
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 48px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--dark-deep);
  color: var(--white);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 34px;
}

.footer-brand p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 24px;
}

.footer-links a,
.footer-links button {
  padding: 3px 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.footer-links a:hover,
.footer-links button:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.68rem;
}

.legal-dialog {
  width: min(620px, calc(100% - 32px));
  max-height: min(720px, calc(100dvh - 32px));
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 35px 100px rgba(31, 31, 31, 0.4);
  overflow: auto;
}

.legal-dialog::backdrop {
  background: rgba(31, 31, 31, 0.72);
  backdrop-filter: blur(5px);
}

.legal-dialog-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 21px 24px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
}

.legal-dialog-head h2 {
  margin: 0;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.legal-dialog-head button {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.35rem;
  cursor: pointer;
}

.legal-dialog-body {
  padding: 24px;
}

.legal-dialog-body p {
  margin-bottom: 15px;
}

.legal-dialog-body p:last-child {
  margin-bottom: 0;
}

.legal-dialog-body a {
  color: var(--mint-deep);
  font-weight: 700;
}

.noscript-message {
  position: fixed;
  z-index: 2000;
  right: 12px;
  bottom: 12px;
  left: 12px;
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.78rem;
  text-align: center;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay {
  transition-delay: 90ms;
}

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

@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .site-nav {
    gap: 15px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.78rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(450px, 1.15fr);
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 6vw, 5rem);
  }

  .phone-device {
    width: 190px;
  }

  .phone-screen {
    min-height: 380px;
  }

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

  .coverage-copy {
    grid-column: 1 / -1;
  }

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

  .feature-card {
    min-height: 230px;
  }

  .flow-track {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .flow-track > i {
    display: none;
  }

  .web-orders-grid,
  .devices-grid {
    grid-template-columns: 1fr;
  }

  .order-journey {
    margin-top: 28px;
  }

  .device-family {
    width: min(720px, 100%);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 16px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(31, 31, 31, 0.985);
    box-shadow: 0 24px 50px rgba(31, 31, 31, 0.3);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    font-size: 0.9rem;
  }

  .site-nav > a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 16px;
  }

  .hero-grid,
  .menu-grid,
  .admin-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-visual {
    width: min(680px, 100%);
    margin: 5px auto 0;
  }

  .proof-strip {
    margin-top: -22px;
  }

  .split-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .menu-grid,
  .admin-grid {
    gap: 45px;
  }

  .menu-showcase {
    min-height: 590px;
  }

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

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

  .flex-card {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    align-items: center;
    gap: 20px;
  }

  .flex-card-head {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .flex-card p {
    margin: 0;
  }

  .admin-dashboard {
    order: 2;
  }

  .admin-grid .section-copy {
    order: 1;
  }

  .final-cta-grid {
    gap: 45px;
  }

  .contact-card {
    max-width: 520px;
  }
}

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

  .section {
    padding-block: 76px;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero {
    padding-top: 62px;
    padding-bottom: 92px;
  }

  .hero-copy h1 {
    font-size: clamp(2.8rem, 14.2vw, 4.4rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-points {
    gap: 10px 16px;
  }

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

  .desktop-device {
    top: 55px;
    width: 91%;
    border-width: 5px;
    border-bottom-width: 9px;
  }

  .pos-preview {
    grid-template-columns: 34px 1fr;
    min-height: 245px;
  }

  .pos-sidebar {
    gap: 11px;
    padding-block: 9px;
  }

  .pos-logo {
    width: 22px;
    height: 22px;
  }

  .pos-sidebar i {
    width: 13px;
  }

  .pos-content {
    padding: 10px;
  }

  .pos-cards article {
    min-height: 78px;
    padding: 6px;
  }

  .pos-cards article i {
    height: 29px;
  }

  .phone-device {
    width: 150px;
    border-radius: 27px;
  }

  .phone-screen {
    min-height: 310px;
    border-radius: 20px;
  }

  .phone-product i {
    height: 52px;
  }

  .phone-product.compact {
    display: none;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 25px 22px;
  }

  .client-list {
    flex-wrap: wrap;
  }

  .coverage-copy {
    grid-column: auto;
  }

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

  .feature-card {
    min-height: 0;
  }

  .feature-icon {
    margin-bottom: 25px;
  }

  .menu-showcase {
    min-height: 560px;
  }

  .menu-phone-frame {
    width: 270px;
  }

  .menu-floating-card {
    min-width: 165px;
    padding: 11px 13px;
  }

  .card-options {
    top: 7%;
    left: -3%;
  }

  .card-online {
    right: -2%;
    bottom: 7%;
  }

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

  .flow-node {
    min-height: 112px;
  }

  .destination-map {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .route-line {
    width: 2px;
    height: 25px;
    margin-inline: auto;
    background: repeating-linear-gradient(180deg, var(--brand) 0 7px, transparent 7px 12px);
  }

  .flex-card {
    display: block;
  }

  .flex-card-head {
    margin-bottom: 20px;
  }

  .flex-card p {
    margin-top: 24px;
  }

  .admin-dashboard {
    padding: 14px;
    border-width: 5px;
  }

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

  .dashboard-list {
    min-height: 0;
  }

  .order-journey {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .order-journey > i {
    display: none;
  }

  .order-journey > div {
    min-height: 120px;
  }

  .device-family {
    min-height: 320px;
    transform: scale(0.9);
    transform-origin: center;
  }

  .family-monitor {
    width: 62%;
    height: 190px;
  }

  .family-laptop {
    width: 49%;
    height: 160px;
  }

  .family-tablet {
    right: 35%;
    width: 95px;
    height: 140px;
  }

  .family-phone {
    right: 15%;
    width: 62px;
    height: 118px;
  }

  .footer-grid,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .hero-visual {
    min-height: 390px;
  }

  .desktop-device {
    top: 45px;
  }

  .device-topbar {
    height: 27px;
  }

  .device-topbar > span:nth-child(2) {
    display: none;
  }

  .phone-device {
    width: 138px;
  }

  .phone-screen {
    min-height: 285px;
  }

  .phone-head {
    margin-bottom: 9px;
  }

  .phone-product {
    margin-bottom: 7px;
  }

  .menu-showcase {
    min-height: 510px;
  }

  .menu-phone-frame {
    width: 250px;
  }

  .card-options {
    left: 0;
  }

  .card-online {
    right: 0;
  }

  .size-steps {
    gap: 4px;
  }

  .size-steps span {
    padding-inline: 8px;
  }

  .weight-scale span {
    width: 62px;
    height: 62px;
  }

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

  .check-list {
    grid-template-columns: 1fr;
  }

  .order-journey {
    grid-template-columns: 1fr;
  }

  .device-family {
    min-height: 275px;
    transform: scale(0.8);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


