@font-face {
  font-family: ImpactLocal;
  src: local("Impact");
}

:root {
  --bg: #07152a;
  --bg-2: #0c1b32;
  --white: #ffffff;
  --muted: #aac0d8;
  --yellow: #f5b51b;
  --ink: #07152a;
  --line: rgba(255, 255, 255, .14);
  --max: 1120px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 300;
  padding-top: 86px;
}

a { color: inherit; }

.wrap,
.footer-inner,
.pr-nav {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(7, 21, 42, .96), rgba(7, 21, 42, .74));
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.pr-nav {
  height: 86px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
}

.pr-logo img {
  width: 162px;
  height: auto;
  display: block;
}

.pr-nav a {
  text-decoration: none;
}

.pr-menu {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255,255,255,.88);
}

.pr-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.88);
  background: transparent;
  font-family: ImpactLocal, Impact, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.pr-link > span,
.pr-dropdown a > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: 900;
}

.pr-nav-item {
  position: relative;
}

.pr-trigger {
  cursor: pointer;
}

.pr-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--yellow);
  transform: translateY(1px);
}

.pr-link:hover,
.pr-link[aria-current],
.pr-nav-item:hover > .pr-link,
.pr-nav-item:focus-within > .pr-link,
.pr-nav-item.is-active > .pr-link {
  color: var(--yellow);
}

.pr-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  display: none;
  width: min(390px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(245, 181, 27, .42);
  background: linear-gradient(180deg, rgba(12, 27, 50, .99), rgba(7, 21, 42, .99));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.pr-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.pr-nav-item:hover > .pr-dropdown,
.pr-nav-item:focus-within > .pr-dropdown {
  display: grid;
  gap: 8px;
}

.pr-dropdown-title {
  margin: 4px 8px 6px;
  color: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  font-size: .98rem;
}

.pr-dropdown a {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .035);
  font-family: ImpactLocal, Impact, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.pr-dropdown a:hover {
  border-color: rgba(245, 181, 27, .65);
  background: rgba(245, 181, 27, .07);
  color: var(--yellow);
}

.pr-dropdown a > span {
  width: 26px;
  height: 26px;
  font-size: .7rem;
}

.pr-dropdown strong {
  display: block;
  min-width: 0;
}

.pr-dropdown a small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.25;
  text-transform: none;
}

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

.pr-mobile-toggle {
  display: none;
  width: 48px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(245, 181, 27, .48);
  color: var(--yellow);
  background: rgba(255, 255, 255, .035);
  cursor: pointer;
}

.pr-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.site-header.is-menu-open .pr-mobile-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .pr-mobile-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .pr-mobile-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Backward-compatible styles for already-open tabs that still hold the old header DOM. */
.nav {
  width: min(var(--max), calc(100% - 40px));
  height: 86px;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 24px;
  margin: 0 auto;
}

.logo img {
  width: 162px;
  height: auto;
  display: block;
}

.nav a {
  text-decoration: none;
}

.nav-groups,
.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  color: rgba(255,255,255,.88);
}

.nav-trigger,
.nav-groups > a,
.nav-links > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 86px;
  padding: 0;
  border: 0;
  color: rgba(255,255,255,.88);
  background: transparent;
  font-family: ImpactLocal, Impact, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-groups span,
.nav-links span,
.nav-dropdown a > span {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: .72rem;
  font-weight: 900;
}

.nav-item {
  position: relative;
}

.nav-trigger::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--yellow);
  transform: translateY(1px);
}

.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger,
.nav-groups > a:hover,
.nav-links > a:hover,
.nav a[aria-current],
.nav-item.is-active > .nav-trigger {
  color: var(--yellow);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  display: none;
  width: min(390px, calc(100vw - 40px));
  padding: 12px;
  border: 1px solid rgba(245, 181, 27, .42);
  background: linear-gradient(180deg, rgba(12, 27, 50, .99), rgba(7, 21, 42, .99));
  box-shadow: 0 24px 70px rgba(0, 0, 0, .55);
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  display: grid;
  gap: 8px;
}

.nav-menu-group {
  display: grid;
  gap: 8px;
}

.nav-menu-group p,
.nav-dropdown > p {
  margin: 4px 8px 6px;
  color: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  font-size: .98rem;
}

.nav-dropdown a {
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .035);
  font-family: ImpactLocal, Impact, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
}

.nav-dropdown a:hover {
  border-color: rgba(245, 181, 27, .65);
  background: rgba(245, 181, 27, .07);
  color: var(--yellow);
}

.nav-dropdown a > span {
  width: 26px;
  height: 26px;
  font-size: .7rem;
}

.nav-dropdown strong {
  display: block;
  min-width: 0;
}

.nav-dropdown small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-size: .86rem;
  font-weight: 300;
  line-height: 1.25;
  text-transform: none;
}

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

.btn-yellow {
  border-color: var(--yellow);
  color: var(--ink);
  background: var(--yellow);
}

.btn-outline {
  border-color: rgba(255,255,255,.28);
  color: var(--white);
}

html.seo-page-active .hero,
body.seo-page-active .hero,
.hero {
  position: relative;
  min-height: 0 !important;
  padding: 24px 0 44px !important;
}

html.seo-page-active .hero::before,
body.seo-page-active .hero::before,
.hero::before {
  content: none !important;
  display: none !important;
}

main {
  opacity: 1;
  transition: opacity .18s ease, transform .18s ease;
}

main.page-leaving,
main.page-entering {
  opacity: 0;
  transform: translateY(8px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: 1.25rem;
}

.eyebrow::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 8px rgba(245, 181, 27, .12);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: ImpactLocal, Impact, "Arial Black", sans-serif;
  text-transform: uppercase;
  line-height: .9;
}

h1 {
  max-width: 680px;
  font-size: clamp(2.35rem, 3.25vw, 3.45rem);
}

.mark {
  display: inline-block;
  padding: 0 .08em .05em;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-1deg) translateY(.02em);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.title-mark {
  display: inline-block;
  padding: 0 .1em .06em;
  color: var(--ink);
  background: var(--yellow);
  transform: rotate(-1deg) translateY(.02em);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.lead {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.35;
}

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

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  color: var(--white);
  text-decoration: none;
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
}

.btn-primary {
  border-color: var(--yellow);
  color: var(--ink);
  background: var(--yellow);
}

.section {
  padding: 44px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 34px;
  align-items: start;
}

.panel {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.035) 1px, transparent 1px),
    rgba(255,255,255,.035);
  background-size: 72px 72px;
}

.panel h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(1.55rem, 2.15vw, 2.35rem);
  color: var(--white);
}

.panel p,
.panel li {
  color: var(--muted);
  font-size: 1.25rem;
  line-height: 1.45;
}

.panel ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.panel li {
  padding-left: 34px;
  position: relative;
}

.panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 15px;
  height: 15px;
  background: var(--yellow);
}

.modules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  counter-reset: module-cards;
}

.module-link {
  counter-increment: module-cards;
  position: relative;
  min-height: 118px;
  padding: 22px 20px 20px 86px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.03) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 72px 72px;
  text-decoration: none;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.module-link::before {
  content: counter(module-cards, decimal-leading-zero);
  position: absolute;
  left: 20px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.module-link::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 78px;
  width: 1px;
  height: calc(100% - 96px);
  min-height: 20px;
  background: linear-gradient(var(--yellow), transparent);
  opacity: .65;
}

.module-link:hover {
  border-color: rgba(245,181,27,.75);
  background-color: rgba(245,181,27,.055);
  transform: translateY(-2px);
}

.module-link strong {
  display: block;
  color: var(--white);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.module-link span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta {
  margin-top: 38px;
  padding: 62px 20px 48px;
  border: 0;
  background: #2b2b2b;
  text-align: center;
}

.cta h3 {
  max-width: 880px;
  margin: 0 auto;
  font-size: clamp(1.7rem, 2.55vw, 2.75rem);
}

.cta p {
  max-width: 880px;
  margin: 22px auto 0;
  color: var(--white);
}

.cta .actions {
  justify-content: center;
  margin-top: 30px;
}

.cta-band {
  padding: 74px 0 58px;
  text-align: center;
  background: #2b2b2b;
}

.cta-band h2 {
  max-width: 940px;
  margin: 0 auto;
  font-size: clamp(1.8rem, 2.85vw, 3rem);
}

.cta-band p {
  max-width: 880px;
  margin: 24px auto 0;
  color: var(--white);
  font-size: 1.26rem;
  line-height: 1.45;
}

.cta-band .actions {
  justify-content: center;
  margin-top: 34px;
}

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

.final-index-cta h2 {
  max-width: 1020px;
  font-size: clamp(2.35rem, 5vw, 4.35rem);
  line-height: .88;
}

.final-index-cta .title-mark {
  display: inline-block;
}

.contact-page {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: center;
  padding: 72px 0;
  background: var(--bg);
}

.contact-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: center;
}

.contact-copy h1 {
  max-width: 560px;
  font-size: clamp(2.35rem, 3.85vw, 3.95rem);
}

.contact-copy p {
  max-width: 640px;
  color: var(--white);
  font-size: 1.24rem;
  line-height: 1.45;
}

.contact-benefits {
  display: grid;
  gap: 18px;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
}

.contact-benefits li {
  position: relative;
  padding-left: 44px;
  color: var(--white);
  font-size: 1.12rem;
  line-height: 1.35;
}

.contact-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -.06em;
  color: var(--yellow);
  font-family: Arial, sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
}

.contact-form {
  padding: 28px;
  border: 2px solid var(--yellow);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}

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

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 7px;
  color: var(--white);
  background: rgba(0,0,0,.22);
  font: inherit;
  font-size: 1.02rem;
}

.contact-form textarea {
  min-height: 86px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--muted);
}

.contact-form select {
  color: var(--muted);
}

.contact-consent {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  margin: 14px 0 16px;
  color: var(--white);
  font-size: .92rem;
  line-height: 1.35;
}

.contact-consent input {
  min-height: 0;
  width: 24px;
  height: 24px;
  accent-color: var(--yellow);
}

.contact-consent a {
  color: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
}

.contact-submit {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.seo-section {
  padding: 46px 0;
}

.seo-section h2 {
  max-width: 980px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: clamp(1.75rem, 2.65vw, 2.85rem);
  color: var(--white);
  letter-spacing: 0;
}

.seo-section h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 1.85vw, 2rem);
  color: var(--white);
}

.seo-section p {
  max-width: 920px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.48;
}

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

.seo-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
  counter-reset: seo-cards;
}

.seo-card {
  counter-increment: seo-cards;
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.03) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 72px 72px;
}

.seo-card h3 {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

.seo-card h3::before {
  content: counter(seo-cards);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--yellow);
}

.seo-card p {
  margin: 0;
  font-size: 1.12rem;
}

.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.keyword-strip span {
  padding: 8px 12px;
  border: 1px solid rgba(245,181,27,.35);
  color: var(--yellow);
  background: rgba(245,181,27,.08);
  font-size: 1rem;
}

.tablet-mockup-section {
  padding: 42px 0 54px;
  overflow: hidden;
}

.tablet-mockup-layout {
  display: grid;
  grid-template-columns: minmax(280px, .82fr) minmax(520px, 1.18fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: center;
}

.tablet-mockup-copy h2 {
  margin: 0 0 22px;
  text-align: left;
  font-size: clamp(2rem, 3.55vw, 3.35rem);
  line-height: .92;
}

.tablet-mockup-copy p {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.48;
}

.tablet-mockup-copy ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.tablet-mockup-copy li {
  position: relative;
  padding-left: 34px;
  color: var(--white);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1.04rem;
}

.tablet-mockup-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .18em;
  width: 18px;
  height: 18px;
  background: var(--yellow);
}

.tablet-device {
  position: relative;
  margin: 0;
  padding: clamp(12px, 1.4vw, 18px);
  border: 2px solid rgba(255,255,255,.72);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04)), #070d18;
  box-shadow: 0 36px 80px rgba(0,0,0,.5), inset 0 0 0 5px rgba(0,0,0,.6);
  transform: rotate(-1.5deg);
}

.tablet-device::before {
  content: "";
  position: absolute;
  inset: -26px;
  z-index: -1;
  border: 2px dashed rgba(245,181,27,.28);
  border-radius: 44px;
  transform: rotate(2.5deg);
}

.tablet-camera {
  position: absolute;
  left: 50%;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #1b2637;
  box-shadow: 0 0 0 3px rgba(255,255,255,.08);
  transform: translateX(-50%);
  z-index: 2;
}

.tablet-screen {
  overflow: hidden;
  border-radius: 22px;
  background: #07152a;
  border: 1px solid rgba(255,255,255,.2);
}

.tablet-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.escandallos-tablet-device {
  justify-self: stretch;
}

.supplier-flow-section {
  padding: 34px 0 58px;
  overflow: hidden;
}

.supplier-flow-layout {
  display: grid;
  grid-template-columns: minmax(330px, .86fr) minmax(560px, 1.14fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}

.supplier-flow-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  text-align: left;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
}

.supplier-flow-copy p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.supplier-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.supplier-status-row span {
  position: relative;
  padding: 10px 13px 10px 30px;
  border: 1px solid rgba(245,181,27,.35);
  color: var(--white);
  background: rgba(245,181,27,.07);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  font-size: .98rem;
  line-height: 1;
}

.supplier-status-row span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--yellow);
  transform: translateY(-50%);
}

.supplier-flow-mockups {
  position: relative;
  min-height: 610px;
}

.supplier-flow-mockups::before {
  content: "";
  position: absolute;
  inset: 38px -18px 36px 24px;
  z-index: 0;
  border: 2px dashed rgba(170,192,216,.26);
  border-radius: 42px;
  transform: rotate(2deg);
}

.supplier-device {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.58);
  background: #070d18;
  box-shadow: 0 34px 80px rgba(0,0,0,.52);
}

.supplier-device img {
  display: block;
  width: 100%;
  height: auto;
}

.supplier-device-catalog {
  right: 0;
  top: 0;
  z-index: 1;
  width: min(770px, 100%);
  border-radius: 28px;
  transform: rotate(-1deg);
}

.supplier-device-status {
  left: 0;
  bottom: 14px;
  z-index: 2;
  width: min(610px, 68%);
  border-radius: 24px;
  transform: rotate(2deg);
}

.stock-flow-section {
  padding: 34px 0 60px;
  overflow: hidden;
}

.stock-flow-layout {
  display: grid;
  grid-template-columns: minmax(330px, .82fr) minmax(560px, 1.18fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}

.stock-flow-copy h2 {
  max-width: 720px;
  margin: 0 0 22px;
  text-align: left;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
}

.stock-flow-copy p {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.stock-flow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  counter-reset: stock-flow;
}

.stock-flow-steps span {
  counter-increment: stock-flow;
  position: relative;
  min-height: 62px;
  padding: 14px 14px 14px 58px;
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,.035);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  line-height: 1.05;
}

.stock-flow-steps span::before {
  content: counter(stock-flow, decimal-leading-zero);
  position: absolute;
  left: 13px;
  top: 13px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--ink);
  background: var(--yellow);
}

.stock-flow-mockups {
  position: relative;
  min-height: 560px;
}

.stock-flow-mockups::before {
  content: "";
  position: absolute;
  left: -26px;
  right: 8%;
  top: 34px;
  bottom: 34px;
  z-index: 0;
  border: 2px dashed rgba(245,181,27,.28);
  border-radius: 44px;
  transform: rotate(-2.5deg);
}

.flow-device {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.62);
  background: #070d18;
  box-shadow: 0 34px 80px rgba(0,0,0,.52);
}

.flow-device img {
  display: block;
  width: 100%;
  height: auto;
}

.flow-device-inventory {
  right: 0;
  top: 16px;
  z-index: 1;
  width: min(850px, 100%);
  border-radius: 28px;
  transform: rotate(1deg);
}

.flow-device-recipe {
  left: 0;
  bottom: 6px;
  z-index: 2;
  width: min(520px, 58%);
  border-radius: 24px;
  transform: rotate(-3deg);
}

.mockup-showcase {
  position: relative;
  min-height: 680px;
  margin-top: 34px;
  overflow: hidden;
}

.mockup-showcase::before,
.mockup-showcase::after {
  content: "";
  position: absolute;
  border: 2px dashed rgba(245,181,27,.34);
  border-radius: 50%;
  pointer-events: none;
}

.mockup-showcase::before {
  width: 620px;
  height: 220px;
  right: 3%;
  top: 6%;
  transform: rotate(-10deg);
}

.mockup-showcase::after {
  width: 520px;
  height: 180px;
  left: 2%;
  bottom: 8%;
  border-color: rgba(170,192,216,.34);
  transform: rotate(-14deg);
}

.mockup-frame {
  position: absolute;
  margin: 0;
  z-index: 1;
  filter: drop-shadow(0 28px 44px rgba(0,0,0,.45));
}

.mockup-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.mockup-frame figcaption {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
}

.mockup-tablet {
  width: min(760px, 68vw);
  right: 0;
  top: 20px;
}

.mockup-phone-home {
  width: min(310px, 28vw);
  left: 2%;
  top: 112px;
  transform: rotate(-5deg);
  z-index: 3;
}

.mockup-phone-products {
  width: min(290px, 26vw);
  left: 28%;
  bottom: 8px;
  transform: rotate(4deg);
  z-index: 4;
}

.menu-admin-section {
  padding: 38px 0 62px;
  overflow: hidden;
}

.menu-admin-layout {
  display: grid;
  grid-template-columns: minmax(330px, .86fr) minmax(560px, 1.14fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}

.menu-admin-copy h2 {
  max-width: 780px;
  margin: 0 0 22px;
  text-align: left;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
}

.menu-admin-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.menu-admin-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.menu-admin-steps article {
  position: relative;
  min-height: 104px;
  padding: 18px 18px 18px 78px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.menu-admin-steps span {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
}

.menu-admin-steps h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.25rem;
}

.menu-admin-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.35;
}

.menu-admin-mockups {
  position: relative;
  min-height: 650px;
}

.menu-admin-mockups::before {
  content: "";
  position: absolute;
  inset: 42px -18px 34px 36px;
  z-index: 0;
  border: 2px dashed rgba(245,181,27,.28);
  border-radius: 44px;
  transform: rotate(-2deg);
}

.admin-device {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.58);
  background: #070d18;
  box-shadow: 0 34px 80px rgba(0,0,0,.52);
}

.admin-device img {
  display: block;
  width: 100%;
  height: auto;
}

.admin-device-edit {
  right: 0;
  top: 0;
  z-index: 1;
  width: min(760px, 100%);
  border-radius: 26px;
  transform: rotate(1deg);
}

.admin-device-list {
  left: 0;
  bottom: 12px;
  z-index: 2;
  width: min(520px, 62%);
  border-radius: 22px;
  transform: rotate(-3deg);
}

.order-flow-section {
  padding: 38px 0 64px;
  overflow: hidden;
}

.order-flow-layout {
  display: grid;
  grid-template-columns: minmax(330px, .86fr) minmax(560px, 1.14fr);
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
}

.order-flow-copy h2 {
  max-width: 760px;
  margin: 0 0 22px;
  text-align: left;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
}

.order-flow-copy > p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.order-flow-steps {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.order-flow-steps article {
  position: relative;
  min-height: 104px;
  padding: 18px 18px 18px 78px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.035);
}

.order-flow-steps span {
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
}

.order-flow-steps h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.25rem;
}

.order-flow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.35;
}

.order-flow-mockups {
  position: relative;
  min-height: 700px;
}

.order-flow-mockups::before {
  content: "";
  position: absolute;
  inset: 46px -20px 38px 34px;
  z-index: 0;
  border: 2px dashed rgba(245,181,27,.28);
  border-radius: 44px;
  transform: rotate(2deg);
}

.order-device {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.58);
  background: #070d18;
  box-shadow: 0 34px 80px rgba(0,0,0,.52);
}

.order-device img {
  display: block;
  width: 100%;
  height: auto;
}

.order-device-menu {
  right: 6%;
  top: 0;
  z-index: 1;
  width: min(430px, 62%);
  border-radius: 28px;
  transform: rotate(1deg);
}

.order-device-table {
  left: 0;
  top: 86px;
  z-index: 2;
  width: min(310px, 43%);
  border-radius: 24px;
  transform: rotate(-4deg);
}

.order-device-product {
  left: 22%;
  bottom: 0;
  z-index: 3;
  width: min(360px, 52%);
  border-radius: 24px;
  transform: rotate(3deg);
}

.kitchen-routing-section {
  padding: 40px 0 70px;
  overflow: hidden;
}

.kitchen-routing-layout {
  display: grid;
  grid-template-columns: minmax(340px, .8fr) minmax(620px, 1.2fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.kitchen-routing-copy h2 {
  max-width: 760px;
  margin: 0 0 20px;
  text-align: left;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
}

.kitchen-routing-copy > p {
  max-width: 690px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.kitchen-routing-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.kitchen-routing-points article {
  position: relative;
  min-height: 118px;
  padding: 20px 20px 20px 82px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(245,181,27,.09), transparent 36%),
    rgba(255,255,255,.035);
}

.kitchen-routing-points span {
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  font-size: 1.25rem;
}

.kitchen-routing-points h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.22rem;
}

.kitchen-routing-points p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.38;
}

.kitchen-routing-visuals {
  position: relative;
  min-height: 500px;
}

.kitchen-routing-visuals::before {
  content: "";
  position: absolute;
  inset: 22px 0 28px 7%;
  border: 2px dashed rgba(245,181,27,.32);
  border-radius: 48px;
  transform: rotate(-2deg);
}

.kds-screen {
  position: absolute;
  margin: 0;
}

.kds-screen {
  top: 26px;
  right: 0;
  z-index: 1;
  width: min(820px, 96%);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: #07111f;
  box-shadow: 0 32px 90px rgba(0,0,0,.45);
}

.kds-screen img {
  display: block;
  width: 100%;
  height: auto;
}

.printer-split-section {
  padding: 42px 0 72px;
  overflow: hidden;
}

.printer-split-layout {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(540px, 1.08fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.printer-split-copy h2 {
  max-width: 760px;
  margin: 0 0 20px;
  text-align: left;
  font-size: clamp(2rem, 3.45vw, 3.25rem);
}

.printer-split-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.5;
}

.printer-split-steps {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.printer-split-steps article {
  position: relative;
  min-height: 112px;
  padding: 19px 20px 19px 82px;
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(135deg, rgba(245,181,27,.1), transparent 38%),
    rgba(255,255,255,.035);
}

.printer-split-steps span {
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--yellow);
  font-family: ImpactLocal, Impact, sans-serif;
  font-size: 1.25rem;
}

.printer-split-steps h3 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 1.22rem;
}

.printer-split-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.38;
}

.printer-split-visual {
  position: relative;
  margin: 0;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.printer-split-visual::before {
  content: "";
  position: absolute;
  inset: 18px 2% 22px 2%;
  z-index: 0;
  border: 2px dashed rgba(245,181,27,.32);
  border-radius: 48px;
  transform: rotate(2deg);
}

.printer-split-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 860px);
  height: auto;
  filter: drop-shadow(0 34px 50px rgba(0,0,0,.48));
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 30px;
  counter-reset: faq-cards;
}

.home-faq-section .faq-title {
  max-width: 980px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: clamp(2.45rem, 5vw, 4.5rem);
  line-height: .86;
}

.home-faq-section .faq-title .title-mark {
  display: inline-block;
}

.faq-item {
  counter-increment: faq-cards;
  min-height: 180px;
  padding: 24px;
  border: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255,255,255,.03) 1px, transparent 1px),
    rgba(255,255,255,.04);
  background-size: 72px 72px;
}

.faq-item h3 {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
}

.faq-item h3::before {
  content: counter(faq-cards);
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  background: var(--yellow);
}

.faq-item p {
  margin: 18px 0 0 58px;
  font-size: 1.12rem;
}

.site-footer,
footer {
  margin-top: 40px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #050f1f;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-brand {
  display: grid;
  gap: 7px;
}

.footer-brand img,
.footer-inner img {
  width: 154px;
  height: auto;
}

.footer-brand span {
  font-size: .95rem;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
}

.footer-inner a {
  text-decoration: none;
  color: var(--white);
}

.legal-page {
  padding: 62px 0 84px;
}

.legal-content {
  max-width: 920px;
}

.legal-content h1 {
  margin-bottom: 26px;
  max-width: 760px;
  font-size: clamp(2.1rem, 3vw, 3.2rem);
}

.legal-content h2 {
  margin: 38px 0 16px;
  font-size: clamp(1.42rem, 2.1vw, 2.15rem);
  color: var(--white);
}

.legal-heading {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
}

.legal-num {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 2px solid var(--yellow);
  color: var(--yellow);
  background: #07152a;
  font-size: 1rem;
  line-height: 1;
}

.legal-content h3 {
  margin: 24px 0 10px;
  color: var(--white);
  font-size: clamp(1.15rem, 1.5vw, 1.45rem);
}

.legal-content h3::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 2px solid var(--yellow);
  vertical-align: -.05em;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.55;
}

.legal-content a {
  color: var(--yellow);
}

.legal-updated,
.legal-content .notice {
  margin: 0 0 26px;
  padding: 18px 20px;
  border-left: 4px solid var(--yellow);
  background: rgba(255, 183, 24, .08);
}

.legal-content .table-wrap {
  overflow-x: auto;
  margin: 22px 0 30px;
}

.legal-content table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  color: var(--muted);
  background: rgba(255,255,255,.03);
}

.legal-content th,
.legal-content td {
  padding: 14px 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  color: var(--white);
  font-family: ImpactLocal, Impact, sans-serif;
  text-transform: uppercase;
  background: rgba(255, 183, 24, .12);
}

@media (max-width: 820px) {
  .pr-nav {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    height: 72px;
    padding: 0;
    z-index: 120;
  }

  body {
    padding-top: 72px;
  }

  .pr-logo img {
    width: 150px;
  }

  .pr-mobile-toggle {
    display: block;
    justify-self: end;
    position: relative;
    z-index: 130;
    touch-action: manipulation;
    pointer-events: auto;
  }

  .pr-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 110;
    display: none;
    width: 100vw;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    padding: 14px 20px 20px;
    border: 1px solid rgba(245, 181, 27, .32);
    border-top: 0;
    background: linear-gradient(180deg, rgba(7, 21, 42, .99), rgba(12, 27, 50, .99));
    box-shadow: 0 28px 70px rgba(0,0,0,.58);
  }

  .site-header.is-menu-open .pr-menu {
    display: grid;
    gap: 8px;
  }

  .pr-menu .pr-link {
    width: 100%;
    min-height: 48px;
    padding: 0 10px;
    justify-content: flex-start;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.035);
  }

  .pr-nav-item {
    width: 100%;
  }

  .pr-trigger::after {
    margin-left: auto;
  }

  .pr-dropdown {
    position: static;
    display: grid;
    width: 100%;
    margin-top: 8px;
    padding: 8px;
    border-color: rgba(255,255,255,.12);
    background: rgba(0,0,0,.16);
    box-shadow: none;
  }

  .pr-dropdown::before {
    content: none;
  }

  .pr-dropdown-title {
    margin: 2px 4px 4px;
  }

  .pr-dropdown a {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 58px;
    padding: 10px 8px;
    font-size: .94rem;
    pointer-events: auto;
    touch-action: manipulation;
    isolation: isolate;
  }

  .pr-dropdown a + a {
    margin-top: 0;
  }

  .pr-dropdown a > span,
  .pr-dropdown a > strong,
  .pr-dropdown a small {
    pointer-events: none;
  }

  .pr-actions {
    display: none;
  }

  .hero {
    padding-top: 24px !important;
  }

  h1 {
    font-size: clamp(2.15rem, 8.4vw, 2.85rem);
  }

  .grid,
  .modules,
  .seo-columns,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .seo-section h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.45rem);
  }

  .faq-item p {
    margin-left: 0;
  }

  .module-link {
    padding-left: 78px;
  }

  .cta-band {
    padding: 52px 0 46px;
  }

  .contact-page {
    padding: 42px 0;
  }

  .contact-layout,
  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-copy h1 {
    font-size: clamp(2.2rem, 9vw, 3.05rem);
  }

  .tablet-mockup-layout {
    grid-template-columns: 1fr;
  }

  .tablet-mockup-copy h2,
  .tablet-mockup-copy p {
    text-align: center;
  }

  .tablet-mockup-copy p,
  .tablet-mockup-copy ul {
    margin-left: auto;
    margin-right: auto;
  }

  .tablet-device {
    transform: none;
  }

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

  .supplier-flow-copy h2,
  .supplier-flow-copy p {
    text-align: center;
  }

  .supplier-flow-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .supplier-status-row {
    justify-content: center;
  }

  .supplier-flow-mockups {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .supplier-flow-mockups::before {
    inset: 16px;
    transform: none;
  }

  .supplier-device {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
  }

  .supplier-device-status {
    width: 88%;
    justify-self: center;
  }

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

  .stock-flow-copy h2,
  .stock-flow-copy p {
    text-align: center;
  }

  .stock-flow-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .stock-flow-steps {
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
  }

  .stock-flow-mockups {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .stock-flow-mockups::before {
    inset: 16px;
    transform: none;
  }

  .flow-device {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
  }

  .flow-device-recipe {
    width: 86%;
    justify-self: center;
  }

  .mockup-showcase {
    min-height: 840px;
  }

  .mockup-tablet {
    width: 96%;
    right: 2%;
    top: 30px;
  }

  .mockup-phone-home {
    width: 46%;
    left: 0;
    top: 280px;
  }

  .mockup-phone-products {
    width: 44%;
    left: auto;
    right: 0;
    bottom: 70px;
  }

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

  .menu-admin-copy h2,
  .menu-admin-copy > p {
    text-align: center;
  }

  .menu-admin-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .menu-admin-mockups {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .menu-admin-mockups::before {
    inset: 16px;
    transform: none;
  }

  .admin-device {
    position: relative;
    width: 100%;
    inset: auto;
    transform: none;
  }

  .admin-device-list {
    width: 88%;
    justify-self: center;
  }

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

  .order-flow-copy h2,
  .order-flow-copy > p {
    text-align: center;
  }

  .order-flow-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .order-flow-mockups {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .order-flow-mockups::before {
    inset: 16px;
    transform: none;
  }

  .order-device {
    position: relative;
    width: min(100%, 430px);
    inset: auto;
    justify-self: center;
    transform: none;
  }

  .order-device-product,
  .order-device-table {
    width: min(92%, 390px);
  }

  .kitchen-routing-layout {
    grid-template-columns: 1fr;
  }

  .kitchen-routing-copy h2,
  .kitchen-routing-copy > p {
    text-align: center;
  }

  .kitchen-routing-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .kitchen-routing-visuals {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .kitchen-routing-visuals::before {
    inset: 16px;
    transform: none;
  }

  .kds-screen {
    position: relative;
    inset: auto;
    width: min(100%, 760px);
    justify-self: center;
  }

  .printer-split-layout {
    grid-template-columns: 1fr;
  }

  .printer-split-copy h2,
  .printer-split-copy > p {
    text-align: center;
  }

  .printer-split-copy > p {
    margin-left: auto;
    margin-right: auto;
  }

  .printer-split-visual {
    min-height: 0;
  }

  .printer-split-visual::before {
    inset: 34px 3% 18px 3%;
    transform: none;
  }

  .printer-split-visual img {
    width: min(100%, 720px);
  }

}


/* Ajuste táctil definitivo del menú móvil: cada opción ocupa una fila independiente. */
@media (max-width: 820px) {
  .pr-dropdown {
    grid-auto-flow: row;
    grid-auto-rows: max-content;
    align-items: stretch;
    gap: 6px !important;
    overflow: visible;
  }

  .pr-dropdown a[role="menuitem"] {
    position: static !important;
    display: grid !important;
    min-height: 64px !important;
    height: auto !important;
    margin: 0 !important;
    transform: none !important;
    overflow: hidden;
    contain: layout paint;
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(245, 181, 27, .18);
  }

  .pr-dropdown-title {
    position: static !important;
    clear: both;
  }
}
