:root {
  color-scheme: light;
  --navy-950: #031a3f;
  --navy-900: #06275c;
  --navy-800: #0a3474;
  --navy-700: #17417f;
  --red-600: #e30620;
  --red-700: #bd061c;
  --cream: #fff8ec;
  --paper: #ffffff;
  --mist: #eef4fb;
  --steel: #d9e4f2;
  --teal: #06746f;
  --gold: #f3bd3e;
  --ink: #172033;
  --muted: #66748a;
  --line: #dce5f0;
  --shadow: 0 28px 70px rgba(3, 26, 63, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fffaf2;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 229, 240, 0.86);
  background: rgba(255, 250, 242, 0.94);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--navy-950);
  font-weight: 900;
}

.brand-copy,
.footer-brand div {
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  color: var(--navy-950);
  font-size: 1rem;
  line-height: 1;
}

.footer-brand strong {
  color: #fff;
  font-size: 1rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1.1;
  white-space: nowrap;
}

.brand img,
.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(3, 26, 63, 0.18);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  justify-self: center;
  border: 1px solid rgba(6, 39, 92, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  padding: 5px;
  color: #4d5d75;
  box-shadow: 0 12px 28px rgba(3, 26, 63, 0.08);
  font-size: 0.86rem;
  font-weight: 850;
}

.main-nav a {
  border-radius: 999px;
  padding: 10px 14px;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.main-nav a:hover {
  background: var(--navy-900);
  color: #fff;
  box-shadow: 0 8px 18px rgba(6, 39, 92, 0.18);
}

.site-footer a:hover {
  color: var(--red-700);
}

.site-footer .footer-primary,
.site-footer .footer-primary:hover,
.site-footer .footer-primary:focus-visible,
.site-footer .footer-primary:visited {
  color: #fff;
}

.site-footer .footer-secondary,
.site-footer .footer-secondary:hover,
.site-footer .footer-secondary:focus-visible,
.site-footer .footer-secondary:visited {
  color: var(--navy-900);
}

.mobile-dock {
  display: none;
}

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

.header-action,
.header-secondary,
.primary-button,
.secondary-button,
.footer-primary,
.footer-secondary {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.header-action,
.primary-button,
.footer-primary {
  background: var(--red-600);
  color: #fff;
  box-shadow: 0 16px 34px rgba(227, 6, 32, 0.26);
}

.header-secondary,
.secondary-button,
.footer-secondary {
  border: 1px solid rgba(6, 39, 92, 0.24);
  background: #fff;
  color: var(--navy-900);
}

.header-action,
.header-secondary {
  padding: 0 18px;
  font-size: 0.9rem;
}

.primary-button,
.secondary-button,
.footer-primary,
.footer-secondary {
  padding: 0 22px;
}

.header-action:hover,
.header-secondary:hover,
.primary-button:hover,
.secondary-button:hover,
.footer-primary:hover,
.footer-secondary:hover {
  transform: translateY(-2px);
}

.header-action:hover,
.primary-button:hover,
.footer-primary:hover {
  background: var(--red-700);
  color: #fff;
  box-shadow: 0 20px 44px rgba(227, 6, 32, 0.34);
}

.header-secondary:hover,
.secondary-button:hover,
.footer-secondary:hover {
  border-color: var(--navy-900);
  color: var(--navy-900);
  box-shadow: 0 14px 28px rgba(3, 26, 63, 0.12);
}

.hero-section {
  display: grid;
  min-height: calc(100vh - 77px);
  grid-template-columns: minmax(0, 0.78fr) minmax(650px, 1.22fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: clamp(44px, 7vw, 82px) clamp(18px, 5vw, 74px) clamp(36px, 6vw, 70px);
  overflow: hidden;
}

.hero-copy {
  max-width: 740px;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 20px;
  color: var(--navy-950);
  font-size: clamp(2.45rem, 4.9vw, 4.55rem);
  font-weight: 900;
  line-height: 0.98;
}

.hero-text {
  max-width: 690px;
  color: #3e4e66;
  font-size: clamp(1.04rem, 1.72vw, 1.24rem);
  font-weight: 700;
  line-height: 1.55;
}

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

.value-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.value-row article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  box-shadow: 0 10px 26px rgba(3, 26, 63, 0.06);
}

.value-row span {
  color: var(--red-700);
  font-size: 0.72rem;
  font-weight: 900;
}

.value-row strong {
  display: block;
  margin: 8px 0 6px;
  color: var(--navy-950);
  font-weight: 900;
}

.value-row p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.42;
}

.hero-preview {
  position: relative;
  display: grid;
  min-height: 790px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(145deg, var(--navy-950), #082b64 58%, #0b3777);
  box-shadow: var(--shadow);
  padding: clamp(18px, 4vw, 42px);
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  pointer-events: none;
}

.preview-panel {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(190px, calc(100% - 48px));
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  color: #fff;
  padding: 12px;
  backdrop-filter: blur(14px);
}

.preview-panel img {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.preview-panel span,
.preview-panel small {
  display: block;
  color: #4d6079;
  font-size: 0.78rem;
  font-weight: 800;
}

.preview-panel strong {
  display: block;
  margin: 4px 0;
  color: var(--navy-950);
  font-size: 1rem;
  font-weight: 900;
}

.panel-summary {
  top: 28px;
  left: 28px;
}

.phone {
  position: relative;
  z-index: 1;
  width: min(100%, 360px);
  min-height: 632px;
  border: 10px solid #101827;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.34);
  padding: 20px;
}

.menu-phone {
  width: min(100%, 390px);
  min-height: auto;
  justify-self: center;
  margin-right: 0;
  border-width: 8px;
  padding: 10px;
  background: #eef6ff;
}

.phone-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-phone .phone-head {
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}

.phone-head img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
}

.phone-head strong,
.phone-head span {
  display: block;
}

.phone-head strong {
  color: var(--navy-950);
  font-size: 1.1rem;
  font-weight: 900;
}

.phone-head span {
  color: var(--red-600);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.search-preview {
  margin: 22px 0 14px;
  border: 1px solid #b9c8da;
  border-radius: 8px;
  padding: 14px;
  background: #fff;
  color: #40516b;
  font-size: 0.85rem;
  font-weight: 800;
}

.menu-phone .search-preview,
.menu-phone .category-row {
  margin-inline: 2px;
}

.category-row {
  display: flex;
  gap: 8px;
  margin-bottom: 18px;
}

.category-row span {
  border-radius: 999px;
  background: #f1f5fb;
  padding: 8px 12px;
  color: #516078;
  font-size: 0.78rem;
  font-weight: 900;
}

.category-row .active {
  background: var(--navy-900);
  color: #fff;
}

.product-preview {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  border: 1px solid #edf0f5;
  border-radius: 8px;
  padding: 12px;
}

.product-preview strong,
.product-preview b {
  color: var(--ink);
  font-weight: 900;
}

.product-preview span {
  display: block;
  margin-top: 3px;
  color: #77849a;
  font-size: 0.78rem;
  font-weight: 700;
}

.phone-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  border: 1px dashed #cfd9e8;
  border-radius: 8px;
  padding: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.phone-note strong {
  color: var(--navy-950);
}

.cart-preview {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 10px;
  margin-top: 86px;
  border-radius: 8px;
  background: var(--navy-950);
  color: #fff;
  padding: 14px;
  font-size: 0.85rem;
  font-weight: 900;
}

.cart-preview button {
  border: 0;
  border-radius: 8px;
  background: var(--gold);
  color: var(--navy-950);
  padding: 10px 12px;
  font: inherit;
  cursor: pointer;
}

.menu-product-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 10px;
  margin-top: 10px;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background: #fff;
  padding: 10px;
  box-shadow: 0 10px 20px rgba(6, 39, 92, 0.08);
}

.product-image-wrap {
  display: grid;
  place-items: start center;
}

.product-image-wrap img {
  width: 76px;
  height: 86px;
  object-fit: cover;
  border-radius: 8px;
}

.product-card-body {
  min-width: 0;
}

.product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}

.product-title-row h3,
.product-name {
  display: block;
  margin: 0;
  color: var(--navy-950);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.12;
}

.product-title-row span {
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--red-600);
  color: #fff;
  padding: 5px 8px;
  font-size: 0.68rem;
  font-weight: 900;
}

.product-card-body p {
  margin: 5px 0 9px;
  color: #566983;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.35;
}

.option-row,
.extra-row,
.product-buy-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.option-row {
  margin-bottom: 9px;
}

.extra-row {
  gap: 6px;
  margin-bottom: 10px;
}

.option,
.extra {
  min-height: 31px;
  border: 1px solid #d7e5f5;
  border-radius: 999px;
  background: #fff;
  color: var(--navy-900);
  padding: 0 10px;
  font: inherit;
  font-size: 0.68rem;
  font-weight: 900;
}

.option.active,
.extra.active {
  border-color: #144ca7;
  background: #144ca7;
  color: #fff;
  box-shadow: 0 8px 18px rgba(20, 76, 167, 0.2);
}

.option.active {
  background: var(--navy-950);
  border-color: var(--navy-950);
}

.product-buy-row {
  justify-content: space-between;
  margin-bottom: 10px;
}

.product-buy-row > strong {
  color: var(--navy-950);
  font-size: 1.05rem;
  font-weight: 900;
}

.stepper {
  display: inline-grid;
  grid-template-columns: 32px 24px 32px;
  align-items: center;
  justify-items: center;
  border-radius: 999px;
  background: #f6f9fd;
  color: var(--navy-950);
  font-weight: 900;
  box-shadow: inset 0 0 0 1px #dce5f0;
}

.stepper button {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 900;
}

.stepper .minus {
  background: #fff;
  color: #9aa9bb;
}

.stepper .plus {
  background: #144ca7;
  color: #fff;
  box-shadow: 0 8px 16px rgba(20, 76, 167, 0.28);
}

.stepper.muted .plus {
  background: #144ca7;
}

.add-button,
.cart-send {
  display: inline-flex;
  width: 100%;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: #ed1f2a;
  color: #fff;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 14px 26px rgba(237, 31, 42, 0.22);
}

.add-button.disabled {
  background: #d9e2ec;
  color: #40516b;
  box-shadow: none;
}

.cart-panel {
  position: absolute;
  top: 146px;
  right: 28px;
  z-index: 3;
  width: min(100%, 326px);
  border: 1px solid #d8e4f1;
  border-radius: 8px;
  background: #fff;
  padding: 18px 16px;
  box-shadow: 0 24px 56px rgba(3, 26, 63, 0.24);
}

.cart-panel h3 {
  margin-bottom: 22px;
  color: var(--navy-950);
  font-size: 1.25rem;
  font-weight: 900;
}

.cart-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  margin-bottom: 18px;
}

.cart-line strong,
.cart-line b {
  color: #07142a;
  font-weight: 900;
}

.cart-line span,
.cart-line small {
  display: block;
  margin-top: 5px;
  color: #415674;
  font-size: 0.82rem;
  font-weight: 750;
}

.cart-line span:nth-of-type(n + 2) {
  color: #144ca7;
}

.cart-line small {
  color: #5f748f;
  font-size: 0.76rem;
  font-weight: 900;
}

.cart-line button {
  margin-top: 5px;
  border: 0;
  background: transparent;
  color: var(--red-600);
  padding: 0;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: underline;
}

.cart-note {
  display: block;
  margin: 20px 0;
  border: 1px solid #cfe0f3;
  border-radius: 8px;
  background: #edf6ff;
  padding: 14px;
}

.cart-note strong,
.cart-note span {
  display: block;
}

.cart-note strong {
  color: var(--navy-950);
  font-weight: 900;
}

.cart-note-field {
  display: flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  margin: 10px 0;
  border: 1px solid #b9c8da;
  border-radius: 999px;
  background: #fff;
  padding: 0 18px;
  color: #40516b;
  font-size: 0.82rem;
  font-weight: 800;
}

.cart-note span {
  color: #415674;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.4;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid #dce5f0;
  padding-top: 18px;
  color: #07142a;
  font-size: 1.18rem;
  font-weight: 900;
}

.cart-send {
  margin-top: 22px;
  color: #fff;
}

.trust-strip,
.audience-section,
.feature-section,
.data-section,
.dashboard-section,
.backoffice-section,
.seo-section,
.install-section,
.about-section,
.contact-section,
.faq-section {
  padding: clamp(44px, 7vw, 88px) clamp(18px, 5vw, 74px);
}

.trust-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: center;
  border-block: 1px solid var(--line);
  background: #fff;
}

.trust-strip p {
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.28;
}

.trust-strip div,
.pill-list,
.backoffice-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-strip span,
.pill-list li,
.backoffice-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--mist);
  color: var(--navy-900);
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
  margin-bottom: 32px;
}

.section-heading.narrow {
  max-width: none;
}

.section-heading h2,
.backoffice-copy h2,
.seo-section h2,
.install-section h2 {
  margin-bottom: 0;
  color: var(--navy-950);
  font-size: clamp(1.65rem, 3.55vw, 3.08rem);
  font-weight: 900;
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.backoffice-copy p,
.seo-copy p,
.install-section p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.62;
}

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

.audience-grid article,
.feature-grid article,
.catalog-card,
.table-card,
.workflow-card,
.backoffice-panel,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 26, 63, 0.06);
}

.audience-grid article,
.feature-grid article,
.catalog-card,
.table-card,
.workflow-card,
.faq-list details {
  padding: clamp(20px, 3vw, 28px);
}

.audience-grid h3,
.feature-grid h3,
.catalog-card h3,
.workflow-card h3 {
  margin-bottom: 10px;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 900;
}

.audience-grid p,
.feature-grid p,
.catalog-card p,
.workflow-card li,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.feature-section,
.dashboard-section,
.install-section {
  background: #fff;
}

.feature-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #ffe8eb;
  color: var(--red-700);
  font-weight: 900;
}

.data-section {
  background: var(--navy-950);
  color: #fff;
}

.data-section .eyebrow,
.data-section .section-heading h2 {
  color: #fff;
}

.data-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
}

.pill-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.table-card {
  padding: 0;
  overflow: hidden;
}

.table-row {
  display: grid;
  grid-template-columns: 1.08fr 1.35fr auto;
  gap: 16px;
  align-items: center;
  padding: 17px 20px;
  border-bottom: 1px solid var(--line);
  color: #536276;
  font-weight: 800;
}

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

.table-row strong {
  color: var(--navy-950);
  font-weight: 900;
}

.table-head {
  background: var(--mist);
  color: var(--navy-900);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.workflow-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
}

.workflow-top,
.workflow-card footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.workflow-top span {
  color: var(--red-700);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.workflow-top strong {
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  padding: 7px 10px;
  font-size: 0.82rem;
}

.menu-list,
.receipt {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.menu-list div,
.receipt div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.menu-list span,
.receipt span {
  color: var(--navy-950);
  font-weight: 900;
}

.menu-list small,
.receipt p {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.menu-list small {
  grid-column: 1;
}

.menu-list strong,
.receipt strong {
  color: var(--navy-950);
  font-weight: 900;
}

.receipt p {
  margin: -6px 0 8px;
}

.admin-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 26px 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.admin-mini img {
  width: 66px;
  height: 66px;
  border-radius: 16px;
}

.admin-mini strong,
.admin-mini span {
  display: block;
}

.admin-mini strong {
  color: var(--navy-950);
  font-weight: 900;
}

.admin-mini span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.42;
}

.workflow-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding-left: 18px;
}

.workflow-card footer {
  margin-top: auto;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  color: var(--navy-950);
  font-weight: 900;
}

.order-card {
  background: var(--navy-950);
  color: #fff;
}

.order-card .workflow-top span,
.order-card .receipt p {
  color: rgba(255, 255, 255, 0.76);
}

.order-card .workflow-top strong {
  background: var(--red-600);
}

.order-card .receipt div {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.order-card .receipt span,
.order-card .receipt strong,
.order-card footer {
  color: #fff;
}

.order-card footer {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.backoffice-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 40px);
  align-items: stretch;
}

.backoffice-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: end;
}

.backoffice-list {
  margin-top: 24px;
}

.backoffice-panel {
  display: grid;
  gap: 24px;
  justify-items: center;
  padding: clamp(24px, 4vw, 38px);
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.16), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
}

.backoffice-panel img {
  border-radius: 28px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.28);
}

.admin-lines {
  display: grid;
  width: min(100%, 390px);
  gap: 10px;
}

.admin-lines div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  padding: 14px 16px;
  font-weight: 900;
}

.seo-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 64px);
  background: var(--mist);
}

.seo-copy p:last-child {
  margin-bottom: 0;
}

.install-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  border-block: 1px solid var(--line);
}

.install-section p {
  max-width: 760px;
  margin-top: 16px;
}

.install-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.about-section {
  background: #fff;
}

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

.about-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(20px, 3vw, 28px);
  box-shadow: 0 12px 30px rgba(3, 26, 63, 0.06);
}

.about-grid span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: #ffe8eb;
  color: var(--red-700);
  font-weight: 900;
}

.about-grid h3 {
  margin: 18px 0 8px;
  color: var(--navy-900);
  font-size: 1.08rem;
  font-weight: 900;
}

.about-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
  background: var(--navy-950);
  color: #fff;
}

.contact-copy h2 {
  margin-bottom: 18px;
  color: #fff;
  font-size: clamp(1.65rem, 3.55vw, 2.98rem);
  font-weight: 900;
  line-height: 1;
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.62;
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 9px 12px;
  font-size: 0.86rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #fff;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy-950);
  font-weight: 900;
}

.contact-form span {
  font-size: 0.84rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d7e2f0;
  border-radius: 8px;
  background: #f8fbff;
  color: var(--navy-950);
  padding: 12px 14px;
  font: inherit;
  font-weight: 750;
}

.contact-form textarea {
  resize: vertical;
}

.full-field,
.contact-form button,
.form-status {
  grid-column: 1 / -1;
}

.contact-form button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--red-600);
  color: #fff;
  font: inherit;
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(227, 6, 32, 0.24);
}

.contact-form button:hover {
  background: var(--red-700);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 800;
}

.form-status.is-error {
  color: var(--red-700);
}

.form-status.is-success {
  color: #147a3d;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 980px;
}

.faq-list details {
  padding: 20px 22px;
}

.faq-list summary {
  color: var(--navy-950);
  cursor: pointer;
  font-weight: 900;
}

.faq-list p {
  margin-top: 12px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, auto) minmax(360px, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 28px clamp(18px, 5vw, 74px);
  border-top: 1px solid var(--line);
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.74);
  font-weight: 850;
}

.footer-brand {
  color: #fff;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.site-footer p {
  justify-self: center;
  max-width: 780px;
  margin-bottom: 0;
  text-align: center;
  line-height: 1.5;
}

.footer-actions {
  display: flex;
  gap: 10px;
}

.legacy-section {
  display: none !important;
}

.ops-dashboard,
.admin-dashboard {
  display: grid;
  gap: 14px;
}

.orders-filter,
.orders-list,
.admin-categories,
.admin-products {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(3, 26, 63, 0.06);
}

.orders-filter {
  padding: 10px;
}

.filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 999px;
  background: #123f5b;
  color: #fff;
  padding: 12px 16px;
}

.filter-head h3,
.admin-categories h3 {
  margin: 0;
  color: inherit;
  font-size: 1rem;
  font-weight: 900;
}

.filter-head button {
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 900;
}

.filter-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) repeat(2, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.filter-grid label {
  display: grid;
  gap: 7px;
  color: #526780;
  font-size: 0.82rem;
  font-weight: 900;
}

.state-pills,
.filter-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.state-pills b,
.filter-actions button {
  border: 0;
  border-radius: 999px;
  padding: 11px 18px;
  font: inherit;
  font-weight: 900;
}

.state-pills b:nth-child(1) {
  border: 2px solid #0b7898;
  background: #e7f9ff;
  color: #075f7d;
}

.state-pills b:nth-child(2) {
  background: #d7f8e4;
  color: #0b6d31;
}

.state-pills b:nth-child(3) {
  background: #dfeaff;
  color: #144ca7;
}

.state-pills b:nth-child(4) {
  background: #ffe2e2;
  color: #b60816;
}

.filter-grid input,
.date-label {
  display: flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid #cfd9e8;
  border-radius: 8px;
  padding: 0 12px;
  color: var(--navy-950);
  font: inherit;
  font-weight: 800;
  background: #fff;
}

.filter-actions {
  margin-top: 10px;
}

.filter-actions button:first-child {
  background: #123f5b;
  color: #fff;
}

.filter-actions button:not(:first-child) {
  background: #e7edf5;
  color: var(--navy-950);
}

.orders-list {
  overflow: hidden;
}

.orders-list article {
  display: grid;
  grid-template-columns: 38px 52px minmax(240px, 1fr) 44px 150px 90px 96px 58px 42px;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  border-bottom: 1px solid #e6edf5;
  padding: 6px 10px;
  color: var(--navy-950);
  font-weight: 900;
}

.orders-list article:last-child {
  border-bottom: 0;
}

.discard,
.pay {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  font: inherit;
  font-weight: 900;
}

.discard {
  background: #d1161d;
  font-size: 1.3rem;
}

.pay {
  background: #078561;
}

.orders-list em,
.orders-list small {
  justify-self: start;
  border-radius: 999px;
  padding: 8px 12px;
  font-style: normal;
  font-size: 0.76rem;
}

.orders-list em {
  background: #eaf0f7;
}

.orders-list small {
  background: #e3f2f5;
  color: #006486;
}

.orders-list time {
  color: #526780;
  font-size: 0.82rem;
}

.order-icons {
  display: flex;
  gap: 6px;
}

.order-icons b {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid #cfe0f3;
  border-radius: 999px;
  background: #f5f9ff;
  font-size: 0.86rem;
}

.admin-dashboard {
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
  align-items: start;
}

.admin-categories {
  display: grid;
  gap: 8px;
  padding: 12px;
}

.admin-categories article {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #d7e2f0;
  border-radius: 8px;
  padding: 8px 10px;
}

.admin-categories article > span,
.drag {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 999px;
  background: #eef4fb;
  color: #3d6d96;
  font-weight: 900;
}

.admin-categories strong,
.admin-product-row strong {
  display: block;
  color: var(--navy-950);
  font-weight: 900;
}

.admin-categories small,
.admin-product-row small {
  display: block;
  color: #526780;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.35;
}

.admin-categories button,
.admin-product-row button {
  border: 0;
  border-radius: 999px;
  background: #e6edf5;
  color: var(--navy-950);
  padding: 10px 17px;
  font: inherit;
  font-weight: 900;
}

.admin-products {
  overflow: hidden;
}

.admin-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f6f9fd;
  border-bottom: 1px solid #dce5f0;
  padding: 12px 14px;
}

.admin-group-head h3 {
  margin: 0;
  color: #073052;
  font-size: 0.92rem;
  font-weight: 900;
}

.admin-group-head span {
  border-radius: 999px;
  background: #e5f8fb;
  color: #06718d;
  padding: 6px 11px;
  font-size: 0.76rem;
  font-weight: 900;
}

.admin-product-row {
  display: grid;
  grid-template-columns: 34px minmax(240px, 1.45fr) minmax(170px, 0.82fr) minmax(200px, 0.95fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid #e6edf5;
  padding: 12px 14px;
}

.admin-product-row b {
  display: block;
  color: #526780;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 1320px) {
  .hero-section {
    grid-template-columns: 1fr;
  }

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

  .hero-preview {
    width: min(100%, 920px);
    justify-self: center;
  }
}

@media (max-width: 1180px) {
  .main-nav {
    gap: 12px;
    font-size: 0.82rem;
  }

  .header-secondary {
    display: none;
  }

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

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

  .backoffice-section {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

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

  .admin-categories h3 {
    grid-column: 1 / -1;
  }

  .admin-product-row {
    grid-template-columns: 34px minmax(0, 1.22fr) minmax(160px, 0.82fr) minmax(190px, 0.95fr) auto;
  }

  .admin-product-row strong,
  .admin-product-row small,
  .orders-list span {
    white-space: normal;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 960px) {
  body {
    padding-bottom: 94px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .mobile-dock {
    position: fixed;
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    left: 14px;
    z-index: 70;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 7px;
    max-width: 560px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    background:
      linear-gradient(145deg, rgba(3, 26, 63, 0.96), rgba(6, 39, 92, 0.96));
    padding: 8px;
    box-shadow: 0 22px 58px rgba(3, 26, 63, 0.34);
    backdrop-filter: blur(18px);
  }

  .mobile-dock a {
    display: grid;
    min-width: 0;
    min-height: 58px;
    place-items: center;
    gap: 4px;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease;
  }

  .mobile-dock a::before {
    content: attr(data-icon);
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 950;
  }

  .mobile-dock a:hover,
  .mobile-dock a:focus-visible {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .mobile-dock .dock-contact {
    background: var(--red-600);
    color: #fff;
    box-shadow: 0 12px 28px rgba(227, 6, 32, 0.28);
  }

  .mobile-dock .dock-contact::before {
    background: rgba(255, 255, 255, 0.2);
  }

  .hero-section,
  .trust-strip,
  .section-heading,
  .backoffice-copy,
  .data-layout,
  .workflow-board,
  .filter-grid,
  .admin-dashboard,
  .backoffice-section,
  .seo-section,
  .install-section,
  .contact-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .hero-preview {
    min-height: auto;
    align-items: start;
    gap: 16px;
  }

  .preview-panel {
    position: static;
    width: 100%;
  }

  .menu-phone {
    margin-right: 0;
  }

  .cart-panel {
    position: static;
    width: 100%;
  }

  .install-actions,
  .footer-actions {
    justify-content: flex-start;
  }

  .orders-list,
  .admin-products {
    overflow-x: auto;
  }

  .orders-list article {
    min-width: 980px;
  }

  .admin-product-row {
    min-width: 760px;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand img {
    width: 42px;
    height: 42px;
    border-radius: 11px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .brand-copy small {
    max-width: 190px;
    font-size: 0.68rem;
    white-space: normal;
  }

  .header-actions {
    display: none;
  }

  .header-action {
    min-height: 40px;
    padding: 0 14px;
  }

  .hero-section {
    padding: 28px 12px 34px;
  }

  h1 {
    font-size: clamp(1.65rem, 8.6vw, 2.05rem);
    line-height: 1.03;
    overflow-wrap: anywhere;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.48;
  }

  .hero-actions,
  .install-actions,
  .footer-actions {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button,
  .footer-primary,
  .footer-secondary {
    width: 100%;
  }

  .value-row,
  .audience-grid,
  .feature-grid,
  .about-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .value-row {
    gap: 8px;
    margin-top: 20px;
  }

  .value-row article {
    padding: 12px;
  }

  .value-row strong {
    margin: 6px 0 4px;
    font-size: 0.88rem;
  }

  .value-row p {
    font-size: 0.76rem;
  }

  .hero-preview {
    padding: 12px;
  }

  .phone {
    min-height: 570px;
    padding: 16px;
  }

  .menu-phone {
    padding: 8px;
  }

  .menu-product-card {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .product-image-wrap img {
    width: 64px;
    height: 74px;
  }

  .product-title-row {
    align-items: flex-start;
  }

  .product-title-row h3 {
    font-size: 0.82rem;
  }

  .option,
  .extra {
    min-height: 30px;
    padding: 0 8px;
    font-size: 0.64rem;
  }

  .stepper {
    grid-template-columns: 32px 24px 32px;
  }

  .product-preview {
    grid-template-columns: 48px 1fr;
  }

  .product-preview b {
    grid-column: 2;
  }

  .cart-preview {
    margin-top: 50px;
    grid-template-columns: 1fr auto;
  }

  .cart-preview button {
    grid-column: 1 / -1;
  }

  .table-row,
  .menu-list div,
  .receipt div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .filter-head {
    border-radius: 8px;
  }

  .state-pills b,
  .filter-actions button {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .admin-categories,
  .admin-products,
  .orders-filter,
  .orders-list {
    width: 100%;
  }

  .admin-categories {
    grid-template-columns: 1fr;
  }

  .admin-products {
    overflow-x: visible;
  }

  .admin-product-row {
    min-width: 0;
    grid-template-columns: 30px 1fr auto;
    grid-template-areas:
      "drag name edit"
      ". sizes edit"
      ". attrs edit";
    align-items: start;
  }

  .admin-product-row .drag {
    grid-area: drag;
  }

  .admin-product-row > div:nth-of-type(1) {
    grid-area: name;
  }

  .admin-product-row > div:nth-of-type(2) {
    grid-area: sizes;
  }

  .admin-product-row > div:nth-of-type(3) {
    grid-area: attrs;
  }

  .admin-product-row button {
    grid-area: edit;
    justify-self: end;
    padding: 8px 12px;
  }
}

/* Modern visual refresh */
:root {
  --navy-950: #061225;
  --navy-900: #09204c;
  --navy-800: #0d347c;
  --navy-700: #1854b5;
  --red-600: #f01832;
  --red-700: #c70b22;
  --cream: #f7f5ef;
  --paper: #ffffff;
  --mist: #edf5ff;
  --steel: #c8d8ea;
  --teal: #00a594;
  --gold: #ffc247;
  --ink: #101827;
  --muted: #64748b;
  --line: rgba(15, 38, 79, 0.12);
  --shadow: 0 34px 90px rgba(6, 18, 37, 0.18);
}

body {
  font-family: "Plus Jakarta Sans", Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(rgba(6, 18, 37, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 18, 37, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #fbfdff 0%, #f3f7fc 42%, #ffffff 100%);
  background-size: 34px 34px, 34px 34px, auto;
  color: var(--ink);
}

.site-header {
  top: 10px;
  width: min(calc(100% - 28px), 1460px);
  margin: 10px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(6, 18, 37, 0.84);
  box-shadow: 0 18px 60px rgba(6, 18, 37, 0.22);
}

.brand,
.brand-copy strong {
  color: #fff;
}

.brand-copy small {
  color: rgba(255, 255, 255, 0.72);
}

.brand img,
.footer-brand img {
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.main-nav {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  box-shadow: none;
}

.main-nav a:hover {
  background: #fff;
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.header-action,
.primary-button,
.footer-primary {
  background: linear-gradient(135deg, #ff1e38, var(--red-700));
  color: #fff;
  box-shadow: 0 18px 40px rgba(240, 24, 50, 0.32);
}

.header-secondary,
.secondary-button,
.footer-secondary {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.92);
  color: var(--navy-950);
  box-shadow: 0 10px 24px rgba(6, 18, 37, 0.08);
}

.header-action,
.header-secondary,
.primary-button,
.secondary-button,
.footer-primary,
.footer-secondary,
.contact-form button,
.cart-send,
.add-button {
  border-radius: 8px;
}

.hero-section {
  position: relative;
  margin-top: -88px;
  padding-top: clamp(128px, 12vw, 172px);
  background:
    linear-gradient(135deg, rgba(6, 18, 37, 0.98), rgba(9, 32, 76, 0.94) 46%, rgba(24, 84, 181, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 52px 52px;
  color: #fff;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: clamp(18px, 4vw, 70px);
  bottom: 0;
  left: clamp(18px, 4vw, 70px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.hero-copy,
.hero-preview {
  position: relative;
  z-index: 1;
}

h1 {
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-text {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  color: #ff5a6b;
}

.value-row article,
.preview-panel,
.phone,
.menu-product-card,
.cart-panel,
.trust-strip,
.audience-grid article,
.feature-grid article,
.workflow-card,
.about-grid article,
.faq-list details,
.orders-filter,
.orders-list,
.admin-categories,
.admin-products,
.contact-form {
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 58px rgba(6, 18, 37, 0.11);
  backdrop-filter: blur(18px);
}

.value-row article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
}

.value-row strong,
.value-row p {
  color: #fff;
}

.value-row span {
  color: var(--gold);
}

.hero-preview {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    linear-gradient(145deg, #071326, #0d2b62 56%, #105fb5);
}

.hero-preview::before {
  inset: 14px;
  border-color: rgba(255, 255, 255, 0.16);
}

.phone {
  border-color: #050b17;
  border-radius: 28px;
  background: #f7fbff;
}

.menu-phone .phone-head,
.search-preview,
.product-preview,
.phone-note,
.cart-note,
.cart-note-field,
.date-label {
  border-radius: 8px;
}

.category-row span,
.option,
.extra,
.stepper,
.state-pills b,
.filter-actions button {
  border-radius: 999px;
}

.option.active,
.extra.active,
.category-row .active,
.stepper .plus {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  box-shadow: 0 12px 24px rgba(24, 84, 181, 0.22);
}

.trust-strip,
.feature-section,
.dashboard-section,
.install-section,
.about-section {
  background: transparent;
}

.trust-strip {
  border: 0;
}

.trust-strip p,
.section-heading h2,
.backoffice-copy h2,
.seo-section h2,
.install-section h2,
.audience-grid h3,
.feature-grid h3,
.about-grid h3,
.cart-panel h3 {
  color: var(--navy-950);
  letter-spacing: -0.02em;
}

.audience-grid article,
.feature-grid article,
.about-grid article,
.faq-list details {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.audience-grid article:hover,
.feature-grid article:hover,
.about-grid article:hover,
.faq-list details:hover {
  transform: translateY(-4px);
  border-color: rgba(24, 84, 181, 0.22);
  box-shadow: 0 30px 70px rgba(6, 18, 37, 0.15);
}

.feature-grid span,
.about-grid span {
  background: linear-gradient(135deg, #ffe9a8, var(--gold));
  color: var(--navy-950);
}

.seo-section {
  background:
    linear-gradient(135deg, #f8fbff, #eaf3ff);
  border-block: 1px solid rgba(15, 38, 79, 0.08);
}

.install-section {
  border-block-color: rgba(15, 38, 79, 0.08);
}

.backoffice-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(237, 245, 255, 0.58));
}

.filter-head {
  background: linear-gradient(135deg, var(--navy-950), #123f5b);
}

.state-pills b:nth-child(1) {
  border-color: #0ea5c6;
  background: #e7fbff;
}

.state-pills b:nth-child(2) {
  background: #dcfce7;
}

.state-pills b:nth-child(3) {
  background: #e9efff;
}

.state-pills b:nth-child(4) {
  background: #ffe1e6;
}

.orders-list article,
.admin-product-row,
.admin-categories article {
  border-bottom-color: rgba(15, 38, 79, 0.08);
}

.admin-categories article {
  background: #fbfdff;
}

.admin-categories button,
.admin-product-row button {
  background: #e8eef7;
}

.contact-section,
.site-footer {
  background:
    linear-gradient(135deg, #061225, #09204c 62%, #0d347c);
}

.contact-form {
  background: rgba(255, 255, 255, 0.94);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-color: rgba(15, 38, 79, 0.12);
  background: #f9fbff;
}

.mobile-dock {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(6, 18, 37, 0.94), rgba(13, 52, 124, 0.92));
}

@media (max-width: 960px) {
  .site-header {
    width: min(calc(100% - 20px), 1460px);
    margin-top: 8px;
  }

  .hero-section {
    margin-top: -86px;
    padding-top: 126px;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 116px;
  }

  .mobile-dock {
    border-radius: 8px;
  }
}

/* Variant B: sharper editorial SaaS */
body {
  font-family: "Aptos", "Segoe UI Variable", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background:
    linear-gradient(90deg, rgba(6, 18, 37, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(6, 18, 37, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 10% 8%, rgba(240, 24, 50, 0.1), transparent 26%),
    radial-gradient(circle at 90% 18%, rgba(0, 165, 148, 0.12), transparent 28%),
    #f7f9fd;
  background-size: 46px 46px, 46px 46px, auto, auto, auto;
}

h1,
h2,
h3,
.brand-copy strong,
.footer-brand strong,
.main-nav,
.header-action,
.header-secondary,
.primary-button,
.secondary-button,
.footer-primary,
.footer-secondary {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}

.site-header {
  grid-template-columns: minmax(245px, 0.9fr) auto minmax(250px, 0.9fr);
  gap: clamp(14px, 2vw, 28px);
  padding: 12px clamp(14px, 2.6vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  color: var(--navy-950);
  box-shadow: 0 18px 50px rgba(6, 18, 37, 0.14);
}

.brand,
.brand-copy strong,
.main-nav {
  color: var(--navy-950);
}

.brand-copy small {
  color: #637089;
}

.main-nav {
  gap: 2px;
  border-color: rgba(6, 18, 37, 0.08);
  background: rgba(6, 18, 37, 0.055);
  padding: 4px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.main-nav a {
  padding: 10px 16px;
}

.main-nav a:hover {
  background: var(--navy-950);
  color: #fff;
}

.header-actions {
  justify-self: end;
  min-width: max-content;
  border: 1px solid rgba(6, 18, 37, 0.08);
  border-radius: 8px;
  background: rgba(6, 18, 37, 0.055);
  padding: 4px;
}

.header-action,
.header-secondary {
  min-height: 42px;
  padding: 0 17px;
  white-space: nowrap;
}

.header-secondary {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.header-action {
  box-shadow: 0 12px 28px rgba(240, 24, 50, 0.3);
}

.hero-section {
  grid-template-columns: minmax(0, 0.86fr) minmax(600px, 1.14fr);
  background:
    linear-gradient(135deg, #f9fbff 0%, #eef5ff 42%, #dceaff 100%);
  color: var(--navy-950);
}

h1 {
  max-width: 860px;
  color: var(--navy-950);
  font-size: clamp(2.6rem, 5.3vw, 5.35rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.hero-text {
  max-width: 760px;
  color: #40516b;
  font-size: clamp(1.04rem, 1.35vw, 1.22rem);
  line-height: 1.72;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--red-700);
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero-actions {
  display: inline-grid;
  grid-template-columns: minmax(190px, auto) minmax(160px, auto);
  gap: 8px;
  border: 1px solid rgba(6, 18, 37, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  padding: 6px;
  box-shadow: 0 18px 45px rgba(6, 18, 37, 0.13);
}

.primary-button,
.secondary-button {
  min-height: 48px;
  box-shadow: none;
}

.secondary-button {
  background: var(--navy-950);
  color: #fff;
}

.secondary-button:hover,
.secondary-button:focus-visible {
  color: #fff;
}

.value-row {
  margin-top: 28px;
}

.value-row article {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(6, 18, 37, 0.08);
}

.value-row strong {
  color: var(--navy-950);
}

.value-row p {
  color: #5d6d84;
}

.value-row span {
  color: var(--red-700);
}

.hero-preview {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.28)),
    linear-gradient(145deg, #061225, #0d347c);
}

.section-heading,
.backoffice-copy,
.seo-section,
.install-section {
  gap: clamp(28px, 6vw, 86px);
}

.section-heading h2,
.backoffice-copy h2,
.seo-section h2,
.install-section h2,
.contact-copy h2 {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.95rem, 4.3vw, 4.05rem);
  line-height: 0.96;
  letter-spacing: -0.045em;
}

.section-heading p:not(.eyebrow),
.backoffice-copy > p,
.install-section p {
  position: relative;
  border: 1px solid rgba(6, 18, 37, 0.08);
  border-left: 4px solid var(--red-600);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  padding: clamp(18px, 2.3vw, 28px);
  color: #364861;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 750;
  line-height: 1.72;
  box-shadow: 0 18px 44px rgba(6, 18, 37, 0.08);
}

.seo-copy {
  display: grid;
  gap: 14px;
}

.seo-copy p {
  border: 1px solid rgba(6, 18, 37, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  padding: clamp(18px, 2.2vw, 26px);
  color: #364861;
  box-shadow: 0 18px 44px rgba(6, 18, 37, 0.07);
}

.audience-grid,
.feature-grid,
.about-grid {
  gap: 18px;
}

.audience-grid article,
.feature-grid article,
.about-grid article,
.faq-list details {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 255, 0.86));
}

.audience-grid h3,
.feature-grid h3,
.about-grid h3,
.workflow-card h3 {
  font-size: 1.18rem;
}

.feature-grid span,
.about-grid span {
  width: 42px;
  height: 42px;
  border-radius: 8px;
}

.trust-strip p {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.trust-strip span,
.pill-list li,
.backoffice-list span {
  background: #fff;
  box-shadow: 0 10px 28px rgba(6, 18, 37, 0.08);
}

.contact-section {
  background:
    radial-gradient(circle at 20% 20%, rgba(240, 24, 50, 0.18), transparent 28%),
    linear-gradient(135deg, #061225, #09204c 58%, #1854b5);
}

.contact-form {
  border-color: rgba(255, 255, 255, 0.58);
}

.mobile-dock {
  grid-template-columns: 1fr 1fr 1fr 1fr 1.25fr;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 60px rgba(6, 18, 37, 0.24);
}

.mobile-dock a {
  color: var(--navy-950);
}

.mobile-dock a::before {
  background: #eef4fb;
  color: var(--navy-950);
}

.mobile-dock a:hover,
.mobile-dock a:focus-visible {
  background: #eef4fb;
  color: var(--navy-950);
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }
}

@media (max-width: 960px) {
  .section-heading p:not(.eyebrow),
  .backoffice-copy > p,
  .install-section p,
  .seo-copy p {
    padding: 18px;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.1rem);
    line-height: 0.94;
  }

  .section-heading h2,
  .backoffice-copy h2,
  .seo-section h2,
  .install-section h2,
  .contact-copy h2 {
    font-size: clamp(1.72rem, 8.6vw, 2.45rem);
  }

  .hero-actions {
    border-radius: 8px;
  }

  .mobile-dock a {
    font-size: 0.62rem;
  }
}

/* Variant B responsive repair */
@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    justify-self: end;
  }

  .hero-section {
    grid-template-columns: 1fr;
    gap: clamp(24px, 5vw, 44px);
  }

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

  .hero-preview {
    width: min(100%, 860px);
    min-height: auto;
    justify-self: center;
  }

  .menu-phone {
    width: min(100%, 410px);
  }
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .hero-section {
    margin-top: -84px;
    padding: 124px 14px 42px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .hero-preview {
    padding: 12px;
  }

  .phone,
  .menu-phone {
    width: 100%;
    max-width: 430px;
  }

  .section-heading,
  .backoffice-copy,
  .seo-section,
  .install-section {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .section-heading p:not(.eyebrow),
  .backoffice-copy > p,
  .install-section p,
  .seo-copy p {
    border-left-width: 3px;
    padding: 16px;
    font-size: 0.98rem;
    line-height: 1.62;
  }

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

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 18px), 1460px);
    padding: 10px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    max-width: 230px;
    font-size: 0.66rem;
    white-space: normal;
  }

  h1 {
    font-size: clamp(2.05rem, 11vw, 3.2rem);
    line-height: 0.96;
    letter-spacing: -0.035em;
  }

  .hero-text {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .section-heading h2,
  .backoffice-copy h2,
  .seo-section h2,
  .install-section h2,
  .contact-copy h2 {
    font-size: clamp(1.72rem, 8.4vw, 2.45rem);
    line-height: 1;
  }
}

@media (max-width: 430px) {
  .brand-copy small {
    max-width: 190px;
  }

  .hero-section {
    padding-inline: 10px;
  }

  .mobile-dock {
    right: 8px;
    left: 8px;
    gap: 4px;
    padding: 6px;
  }

  .mobile-dock a {
    min-height: 54px;
    font-size: 0.58rem;
  }

  .mobile-dock a::before {
    width: 23px;
    height: 23px;
  }
}

.audience-section,
.feature-section,
.dashboard-section,
.backoffice-section,
.seo-section,
.install-section,
.about-section,
.contact-section,
.faq-section {
  content-visibility: auto;
  contain-intrinsic-size: 760px;
}
