/* tokens.css */
:root {
  --orange: #ff6a00;
  --orange-dark: #b84900;
  --orange-soft: #fff0e6;
  --graphite: #1f1f1f;
  --system-gray: #6e6e6e;
  --warehouse-gray: #f3f3f1;
  --border: #d9d9d6;
  --white: #ffffff;
  --light-grid:
    linear-gradient(90deg, rgb(31 31 31 / 4%) 1px, transparent 1px),
    linear-gradient(rgb(31 31 31 / 4%) 1px, transparent 1px);
  --light-grid-size: 48px 48px;
  --font-display: "Manrope", Arial Black, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
  --font-body-xs: 0.75rem;
  --font-body-sm: 0.875rem;
  --font-body-md: 1rem;
  --font-body-lg: clamp(1.125rem, 1.5vw, 1.25rem);
  --font-display-xs: clamp(0.75rem, 1vw, 1rem);
  --font-display-sm: clamp(1.25rem, 2.4vw, 2.25rem);
  --font-display-md: clamp(2rem, 4.2vw, 4rem);
  --font-display-lg: clamp(2.75rem, 6vw, 5.5rem);
  --max-width: 1240px;
  --section-space: clamp(4.5rem, 7vw, 6rem);
  --section-space-mobile: clamp(3rem, 12vw, 4rem);
  --radius-control: 8px;
  --line: 2px;
  --line-heavy: 4px;
  --shadow-small: 5px 5px 0 var(--graphite);
  --shadow-large: 10px 10px 0 var(--graphite);
  --space-1: 0.5rem;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 7rem;
  --motion-fast: 160ms;
  --motion-base: 280ms;
  --motion-slow: 12s;
}

/* base.css */
@font-face {
  font-family: "Manrope";
  src: url(../fonts/manrope-cyrillic-800-normal.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

@font-face {
  font-family: "Inter";
  src: url(../fonts/inter-cyrillic-400-normal.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: "Inter";
  src: url(../fonts/inter-cyrillic-600-normal.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Inter";
  src: url(../fonts/inter-cyrillic-700-normal.woff2) format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}

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

html {
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: clip;
  background: var(--white);
  color: var(--graphite);
  font-family: var(--font-body);
  font-size: var(--font-body-md);
  line-height: 1.45;
  text-rendering: optimizeLegibility;
}

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

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

a {
  color: inherit;
}

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

p,
li,
dd,
a {
  overflow-wrap: anywhere;
}

small {
  font-size: var(--font-body-sm);
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  border: var(--line) solid var(--graphite);
  background: var(--orange);
  font-weight: 700;
  transform: translateY(-180%);
}

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

/* shell.css */
.section-shell {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.section-eyebrow {
  margin: 0 0 0.75rem;
  color: var(--orange-dark);
  font-size: var(--font-body-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.25rem;
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.button-primary {
  background: var(--orange);
  color: var(--graphite);
  box-shadow: 4px 4px 0 var(--graphite);
}

.button-secondary {
  background: var(--white);
  color: var(--graphite);
}

.button-primary:disabled {
  cursor: wait;
  opacity: 0.65;
}

.lead-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--white);
}

.lead-field {
  display: grid;
  gap: 0.4rem;
}

.lead-field label {
  font-size: var(--font-body-sm);
  font-weight: 700;
}

.lead-field input,
.lead-field select {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 0.875rem;
  border: 1px solid var(--system-gray);
  border-radius: var(--radius-control);
  background: var(--white);
}

.lead-field [aria-invalid="true"],
.lead-consent input[aria-invalid="true"] {
  border-color: #a0271d;
}

.lead-consent {
  display: grid;
  gap: 0.4rem;
}

.lead-consent label {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  font-size: var(--font-body-xs);
  line-height: 1.45;
}

.lead-consent input {
  width: 20px;
  height: 20px;
  margin: 0.1rem 0 0;
  accent-color: var(--orange);
}

.lead-consent a,
.form-message a {
  text-underline-offset: 0.18em;
}

.field-error {
  margin: 0;
  color: #8d1f16;
  font-size: var(--font-body-xs);
  font-weight: 700;
}

.lead-estimate,
.form-message {
  display: grid;
  gap: 0.25rem;
  padding: 0.875rem 1rem;
  border-left: 4px solid var(--orange);
  background: var(--orange-soft);
  font-size: var(--font-body-sm);
}

.form-message--success {
  border-left-color: #26734d;
  background: #eaf7f0;
}

.form-message--error {
  border-left-color: #a0271d;
  background: #fff0ee;
}

.lead-submit {
  width: 100%;
}

/* header-hero.css */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  align-items: center;
  width: 100%;
  min-height: 90px;
  padding: 0.65rem max(1rem, calc((100vw - var(--max-width)) / 2));
  border-bottom: 1px solid var(--border);
  background: rgb(255 255 255 / 94%);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  width: clamp(184px, 14vw, 242px);
  align-items: center;
  flex-direction: row;
  gap: 0.45rem;
  line-height: 1;
}

.brand img {
  display: block;
  object-fit: contain;
}

.brand__wordmark {
  width: min(76%, 184px);
  height: auto;
  transform: translateY(2px);
}

.brand__mark {
  width: min(24%, 52px);
  height: auto;
}

.site-navigation {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.75rem);
  justify-content: center;
  align-items: center;
}

.site-navigation a,
.header-phone {
  font-size: var(--font-body-sm);
  font-weight: 700;
  text-decoration: none;
}

.site-navigation a:hover,
.header-phone:hover {
  color: var(--orange-dark);
}

.menu-toggle {
  display: none;
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--white);
  font-weight: 700;
}

.header-actions {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.header-messengers {
  display: flex;
  gap: 0.35rem;
}

.header-messenger {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 2px solid var(--graphite);
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
  box-shadow: 2px 2px 0 rgb(255 106 0 / 34%);
}

.header-messenger svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.header-messenger:hover,
.header-messenger:focus-visible {
  background: var(--orange);
  color: var(--graphite);
  box-shadow: 3px 3px 0 var(--graphite);
  transform: translateY(-2px);
}

.header-cta {
  min-height: 44px;
  padding-block: 0.65rem;
  box-shadow: none;
}

.hero-conversion {
  padding: 0 0 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--light-grid), var(--white);
  background-size: var(--light-grid-size);
}

.hero-conversion__main {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(380px, 0.86fr);
  gap: clamp(2rem, 3.2vw, 3rem);
  min-height: calc(100svh - 90px);
  align-items: center;
  padding-block: clamp(1rem, 2.2vh, 2rem);
}

.hero-conversion__copy {
  min-width: 0;
}

.hero-conversion__promotion {
  width: fit-content;
  max-width: min(100%, 720px);
  margin: 0.15rem 0 1.25rem;
}

.hero-conversion__promo-mark {
  display: inline-flex;
  width: fit-content;
  align-items: flex-start;
  padding: 0.65rem 0.9rem;
  border: 2px solid var(--graphite);
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--graphite);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: 0.08em;
  line-height: 1;
  transform: rotate(-1.5deg);
}

.hero-conversion__promo-mark sup {
  margin-left: 0.08em;
  font-family: var(--font-body);
  font-size: 0.54em;
  line-height: 1;
}

.hero-conversion h1 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.35rem, min(5.35vw, 9.2vh), 4.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.045;
}

.hero-conversion__title-line {
  display: block;
  white-space: nowrap;
}

.hero-conversion h1 .hero-conversion__title-accent {
  color: var(--orange-dark);
}

.hero-conversion__lead {
  max-width: 690px;
  margin: 1.15rem 0 0;
  font-size: var(--font-body-lg);
  line-height: 1.55;
}

.hero-conversion__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.35rem;
}

.warehouse-reel {
  position: relative;
  min-width: 0;
  height: clamp(460px, calc(100svh - 150px), 680px);
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--graphite);
  box-shadow: 10px 10px 0 var(--orange);
  transform: translateY(-8px);
}

.warehouse-reel__screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--graphite);
}

.warehouse-reel__video {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

.hero-conversion__offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  margin-top: 2rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--orange-soft);
  box-shadow: 8px 8px 0 var(--graphite);
}

.hero-conversion__offer-copy h2 {
  max-width: 680px;
  margin: 0.75rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  letter-spacing: -0.05em;
  line-height: 0.92;
}

.hero-conversion__offer-copy > p:not(.section-eyebrow) {
  max-width: 660px;
  margin: 1rem 0 0;
  line-height: 1.55;
}

.hero-conversion__offer-lead {
  padding-left: 1rem;
  border-left: 4px solid var(--orange);
  color: var(--system-gray);
  font-size: var(--font-body-sm);
}

.hero-conversion__offer-lead strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--graphite);
  font-size: var(--font-body-lg);
}

.hero-conversion__offer-copy > small {
  display: block;
  max-width: 640px;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgb(31 31 31 / 22%);
  color: var(--system-gray);
}

.hero-conversion__offer .lead-form {
  box-shadow: none;
}

.marketplace-strip {
  padding: 1.8rem 0 2.25rem;
  border-bottom: 1px solid var(--border);
  background: var(--warehouse-gray);
}

.marketplace-ribbon {
  position: relative;
  display: grid;
  min-height: 116px;
  align-items: center;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent,
    #000 8%,
    #000 92%,
    transparent
  );
}

.marketplace-ribbon__track {
  display: flex;
  width: max-content;
  min-height: 116px;
  align-items: center;
  padding-block: 0;
  animation: marketplace-ribbon 20s linear infinite;
  will-change: transform;
}

.marketplace-ribbon__segment {
  display: flex;
  width: max-content;
  gap: clamp(2.5rem, 6vw, 6rem);
  min-height: 116px;
  align-items: center;
  padding: 0 2.5rem;
  margin: 0;
  list-style: none;
}

.marketplace-ribbon__segment li {
  display: grid;
  width: clamp(190px, 22vw, 280px);
  height: 116px;
  flex: 0 0 auto;
  place-items: center;
}

.marketplace-ribbon img {
  width: auto;
  max-width: 100%;
  max-height: 76px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.marketplace-strip__disclaimer {
  max-width: 760px;
  margin: 0.75rem 0 0;
  color: var(--system-gray);
  font-size: var(--font-body-xs);
}

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

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-navigation {
    position: absolute;
    top: 100%;
    right: 1rem;
    left: 1rem;
    display: none;
    padding: 1rem;
    border: 1px solid var(--graphite);
    background: var(--white);
  }

  .site-navigation[data-open="true"] {
    display: grid;
  }

  .header-actions {
    justify-self: end;
  }

  .header-phone {
    display: none;
  }

  .hero-conversion__main {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  }
}

@media (max-width: 767px) {
  .site-header {
    min-height: 76px;
    padding: 0.5rem 1rem;
  }

  .brand {
    width: 132px;
    gap: 0.3rem;
  }

  .brand__wordmark {
    width: 96px;
  }

  .brand__mark {
    width: 34px;
  }

  .header-cta {
    display: none;
  }

  .hero-conversion__main {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
    padding-block: 2rem 0;
  }

  .hero-conversion__copy {
    padding-top: 0;
  }

  .hero-conversion h1 {
    font-size: clamp(1.95rem, 9.1vw, 2.45rem);
    letter-spacing: -0.05em;
    line-height: 1.07;
  }

  .hero-conversion__title-line {
    white-space: nowrap;
  }

  .hero-conversion__promotion {
    margin-bottom: 1rem;
  }

  .hero-conversion__promo-mark {
    font-size: clamp(1.12rem, 5vw, 1.35rem);
  }

  .hero-conversion__lead {
    margin-top: 1rem;
    font-size: var(--font-body-md);
  }

  .hero-conversion__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 1.25rem;
  }

  .warehouse-reel {
    height: min(96vw, 420px);
    box-shadow: 6px 6px 0 var(--orange);
    transform: translateY(-4px);
  }

  .hero-conversion__offer {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    padding: 1.25rem;
    box-shadow: 5px 5px 0 var(--graphite);
  }

  .marketplace-ribbon__segment {
    gap: 2rem;
    padding-inline: 1.5rem;
  }

  .marketplace-ribbon__segment li {
    width: 176px;
    height: 88px;
  }
}

@media (min-width: 768px) and (max-height: 720px) {
  .hero-conversion__main {
    padding-block: 0.75rem;
  }

  .hero-conversion h1 {
    font-size: clamp(3.35rem, min(5.6vw, 9.4vh), 4.7rem);
    line-height: 1.035;
  }

  .hero-conversion__lead {
    margin-top: 0.8rem;
    line-height: 1.4;
  }

  .hero-conversion__actions {
    margin-top: 1rem;
  }

  .warehouse-reel {
    height: clamp(400px, calc(100svh - 120px), 560px);
  }
}

@keyframes marketplace-ribbon {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* location.css */
.south-gate {
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.south-gate__grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.south-gate h2 {
  max-width: 620px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.south-gate__intro {
  max-width: 560px;
  margin: 1.25rem 0 0;
  color: var(--system-gray);
  font-size: var(--font-body-md);
  line-height: 1.6;
}

.south-gate__facts {
  display: grid;
  gap: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--border);
}

.south-gate__facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}

.south-gate__facts dt {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.south-gate__facts dd {
  margin: 0;
  font-weight: 700;
}

.south-gate__benefits {
  display: grid;
  gap: 0.7rem;
  padding: 0;
  margin: 1.5rem 0 0;
  list-style: none;
}

.south-gate__benefits li {
  position: relative;
  padding-left: 1.25rem;
}

.south-gate__benefits li::before {
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--orange);
  content: "";
  transform: translateY(-50%);
}

.south-gate__route {
  margin-top: 1.75rem;
}

.yandex-map {
  min-width: 0;
}

.yandex-map__frame {
  position: relative;
  aspect-ratio: 12 / 7;
  overflow: hidden;
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--warehouse-gray);
  box-shadow: 8px 8px 0 var(--graphite);
}

.yandex-map__frame img,
.yandex-map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.yandex-map__frame img {
  object-fit: cover;
}

.yandex-map__marker {
  position: absolute;
  top: var(--marker-y);
  left: var(--marker-x);
  display: grid;
  justify-items: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.yandex-map__marker > span {
  width: 42px;
  filter: drop-shadow(0 6px 4px rgb(31 31 31 / 24%));
}

.yandex-map__marker svg {
  display: block;
  width: 100%;
}

.yandex-map__marker path {
  fill: var(--orange);
  stroke: var(--graphite);
  stroke-width: 2;
}

.yandex-map__marker circle {
  fill: var(--graphite);
}

.yandex-map__marker strong {
  margin-top: 0.3rem;
  padding: 0.35rem 0.5rem;
  border: 2px solid var(--graphite);
  background: var(--white);
  color: var(--graphite);
  font-size: var(--font-body-xs);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.yandex-map__load {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
}

.yandex-map__fallback {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
}

.yandex-map__fallback p {
  display: grid;
  gap: 0.2rem;
  margin: 0;
}

.yandex-map__fallback span {
  color: var(--system-gray);
  font-size: var(--font-body-sm);
}

.yandex-map__fallback a {
  flex: 0 0 auto;
  font-weight: 700;
  text-underline-offset: 0.2em;
}

.yandex-map__error {
  margin: 0.75rem 0 0;
  color: #8d1f16;
  font-size: var(--font-body-sm);
}

@media (max-width: 880px) {
  .south-gate__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .south-gate {
    padding: var(--section-space-mobile) 0;
  }

  .south-gate__facts div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .yandex-map__frame {
    aspect-ratio: 4 / 3;
    box-shadow: 5px 5px 0 var(--graphite);
  }

  .yandex-map__load {
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
  }

  .yandex-map__fallback {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* conveyor.css */
.conveyor-process {
  padding: clamp(5rem, 8vw, 8rem) 0;
  overflow: clip;
  border-bottom: 1px solid #4e4e4b;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 3%) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 3%) 1px, transparent 1px),
    var(--graphite);
  background-size: 52px 52px;
  color: var(--white);
}

.conveyor-process__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}

.conveyor-process .section-eyebrow {
  color: var(--orange);
}

.conveyor-process__heading h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.conveyor-process__heading > p {
  max-width: 500px;
  margin: 0;
  color: #c9c9c5;
  line-height: 1.55;
}

.process-route {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid #5a5a56;
  background: #242422;
  box-shadow: 12px 12px 0 rgb(0 0 0 / 28%);
}

.process-route__track {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #5a5a56;
  background:
    linear-gradient(180deg, rgb(255 106 0 / 5%), transparent 54%),
    #1b1b1a;
}

.process-route__line {
  position: absolute;
  z-index: 0;
  top: 44px;
  right: 8.333%;
  left: 8.333%;
  height: 2px;
  background:
    linear-gradient(
      90deg,
      var(--orange) calc(var(--process-progress, 0) * 100%),
      #676762 0
    );
}

.process-route__line::after {
  position: absolute;
  inset: -6px 0;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 18px,
    rgb(255 255 255 / 12%) 18px 20px
  );
  content: "";
}

.process-route__marker {
  position: absolute;
  z-index: 4;
  top: 25px;
  left: calc(8.333% + var(--process-progress, 0) * 83.334%);
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--graphite);
  background: var(--orange);
  box-shadow: 0 0 0 4px #1b1b1a;
  color: var(--graphite);
  transform: translateX(-50%);
  transition: left 560ms cubic-bezier(0.22, 1, 0.36, 1);
}

.process-route__marker span {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 800;
}

.process-route__marker i {
  position: absolute;
  top: -110px;
  bottom: -150px;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    transparent,
    rgb(255 106 0 / 70%),
    transparent
  );
  opacity: 0;
}

[data-process-route][data-route-changed="true"] .process-route__marker i {
  animation: process-scan 620ms ease-out;
}

.process-route__steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-route__steps li + li {
  border-left: 1px solid #4d4d49;
}

.process-route__steps button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 164px;
  gap: 0.25rem;
  align-content: end;
  padding: 4.2rem 0.8rem 0.85rem;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background 260ms ease,
    color 260ms ease;
}

.process-route__steps button::before {
  position: absolute;
  z-index: 1;
  top: 36px;
  left: 50%;
  width: 18px;
  height: 18px;
  border: 4px solid #1b1b1a;
  background: #757570;
  box-shadow: 0 0 0 2px #757570;
  content: "";
  transform: translateX(-50%);
}

.process-route__steps button:hover,
.process-route__steps button:focus-visible {
  background: rgb(255 255 255 / 5%);
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.process-route__steps button[aria-selected="true"] {
  background: linear-gradient(
    180deg,
    rgb(255 106 0 / 4%),
    rgb(255 106 0 / 18%)
  );
}

.process-route__steps button[aria-selected="true"]::before {
  background: var(--orange);
  box-shadow:
    0 0 0 2px var(--orange),
    0 0 22px rgb(255 106 0 / 52%);
}

.process-route__steps button > span {
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.process-route__steps button > strong {
  min-width: 0;
  font-size: 0.75rem;
  line-height: 1.25;
}

.process-route__steps button > small {
  overflow: hidden;
  color: #999994;
  font-size: 0.625rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.process-route__panels {
  min-height: 266px;
}

.process-route__panel {
  display: grid;
  grid-template-columns: auto minmax(240px, 1.1fr) minmax(320px, 1fr);
  gap: clamp(1.25rem, 3vw, 3.25rem);
  align-items: start;
  min-height: 266px;
  padding: clamp(1.35rem, 3vw, 2.5rem);
  animation: process-panel-enter 420ms cubic-bezier(0.22, 1, 0.36, 1)
    both;
}

.process-route__panel + .process-route__panel {
  border-top: 1px solid #4d4d49;
}

.process-route__panel[hidden] {
  display: none;
}

.process-route__index {
  display: grid;
  min-width: 76px;
}

.process-route__index span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.process-route__index small {
  color: #999994;
  font-size: 0.625rem;
  font-weight: 800;
}

.process-route__copy > p {
  margin: 0 0 0.35rem;
  color: var(--orange);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-route__copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  letter-spacing: -0.04em;
  line-height: 1;
}

.process-route__copy > span {
  display: block;
  max-width: 600px;
  margin-top: 0.65rem;
  color: #c9c9c5;
  line-height: 1.5;
}

.process-route__panel dl {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.process-route__panel dl div {
  padding-top: 0.8rem;
  border-top: 1px solid #595955;
}

.process-route__panel dt {
  color: #999994;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-route__panel dd {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.45;
}

.process-route__controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem;
  border-top: 1px solid #5a5a56;
  background: #1b1b1a;
}

.process-route__controls button {
  min-height: 42px;
  padding: 0.55rem 0.8rem;
  border: 1px solid #777772;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 800;
}

.process-route__controls button:last-child {
  justify-self: end;
}

.process-route__controls button:hover:not(:disabled),
.process-route__controls button:focus-visible {
  border-color: var(--orange);
  outline: none;
}

.process-route__controls button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.process-route__controls span {
  color: var(--orange);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

@keyframes process-panel-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes process-scan {
  0% {
    opacity: 0;
    transform: scaleY(0.1);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scaleY(1);
  }
}

@media (max-width: 980px) {
  .conveyor-process__heading {
    grid-template-columns: 1fr;
  }

  .process-route__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-route__line,
  .process-route__marker {
    display: none;
  }

  .process-route__steps li:nth-child(4) {
    border-left: 0;
  }

  .process-route__steps li:nth-child(n + 4) {
    border-top: 1px solid #4d4d49;
  }

  .process-route__steps button {
    min-height: 126px;
    padding-top: 2.5rem;
  }

  .process-route__steps button::before {
    top: 20px;
  }

  .process-route__panel {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .process-route__panel dl {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .conveyor-process {
    padding: var(--section-space-mobile) 0;
  }

  .process-route {
    box-shadow: 6px 6px 0 rgb(0 0 0 / 28%);
  }

  .process-route__steps {
    grid-template-columns: 1fr;
  }

  .process-route__steps li + li,
  .process-route__steps li:nth-child(4) {
    border-top: 1px solid #4d4d49;
    border-left: 0;
  }

  .process-route__steps button {
    min-height: 72px;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.15rem 0.75rem;
    align-content: center;
    padding: 0.8rem 0.9rem 0.8rem 3.2rem;
  }

  .process-route__steps button::before {
    top: 50%;
    left: 1.5rem;
    transform: translate(-50%, -50%);
  }

  .process-route__steps button > span {
    grid-row: 1 / 3;
    align-self: center;
  }

  .process-route__steps button > small {
    white-space: normal;
  }

  .process-route__panel {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 1rem;
    padding: 1rem;
  }

  .process-route__index {
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: end;
  }

  .process-route__index span {
    font-size: 2.8rem;
  }

  .process-route__panel dl {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .process-route__controls {
    grid-template-columns: 1fr 1fr;
  }

  .process-route__controls span {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-self: center;
  }

  .process-route__controls button {
    grid-row: 2;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-route__marker {
    transition: none;
  }

  .process-route__marker i,
  .process-route__panel {
    animation: none !important;
  }
}

/* equipment.css */
.equipment-showcase {
  padding: clamp(2rem, 4vh, 3.5rem) 0;
  overflow: clip;
  border-bottom: 1px solid var(--graphite);
  background:
    linear-gradient(90deg, rgb(255 106 0 / 6%) 1px, transparent 1px),
    linear-gradient(rgb(255 106 0 / 6%) 1px, transparent 1px),
    #f2f2ef;
  background-size: 48px 48px;
}

.equipment-showcase__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  gap: clamp(1.25rem, 3vw, 3rem);
  align-items: end;
}

.equipment-showcase__heading h2 {
  max-width: 900px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.equipment-showcase__heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--system-gray);
  line-height: 1.45;
}

.equipment-showcase__stage {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  height: clamp(420px, calc(100svh - 300px), 540px);
  min-height: 0;
  margin-top: clamp(1rem, 2.5vh, 2rem);
  overflow: hidden;
  border: 2px solid var(--graphite);
  background: var(--white);
  box-shadow: 10px 10px 0 var(--orange);
}

.equipment-showcase__visual {
  position: relative;
  display: grid;
  min-width: 0;
  place-items: center;
  overflow: hidden;
  border-right: 2px solid var(--graphite);
  background: transparent;
}

.equipment-showcase__visual::after {
  position: absolute;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 72px;
  height: 72px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  content: "";
}

.equipment-showcase__visual > span {
  position: absolute;
  z-index: 2;
  top: 1.25rem;
  left: 1.25rem;
  padding: 0.45rem 0.55rem;
  background: rgb(31 31 31 / 84%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--font-display-xs);
  letter-spacing: 0.12em;
}

.equipment-showcase__visual img {
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(1rem, 2vw, 1.75rem);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 16px rgb(31 31 31 / 20%));
  animation: equipment-arrival 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.equipment-showcase__copy {
  display: grid;
  min-height: 0;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  padding: clamp(1.15rem, 2.5vw, 2rem);
}

.equipment-showcase__copy > p {
  margin: 0;
  color: var(--orange-dark);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.11em;
}

.equipment-showcase__copy h3 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.6vw, 2.8rem);
  overflow-wrap: normal;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.equipment-showcase__copy dl {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.equipment-showcase__copy dl div {
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
}

.equipment-showcase__copy dt {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.equipment-showcase__copy dd {
  margin: 0.35rem 0 0;
  line-height: 1.4;
}

.equipment-showcase__arrows {
  display: flex;
  align-self: end;
  gap: 0.65rem;
  margin-top: 1rem;
}

.equipment-showcase__arrows button {
  width: 48px;
  height: 48px;
  border: 2px solid var(--graphite);
  background: var(--white);
  cursor: pointer;
  font-size: var(--font-body-lg);
  font-weight: 800;
}

.equipment-showcase__arrows button:hover {
  background: var(--orange);
}

@keyframes equipment-arrival {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 920px) {
  .equipment-showcase__heading,
  .equipment-showcase__stage {
    grid-template-columns: 1fr;
  }

  .equipment-showcase__stage {
    height: auto;
  }

  .equipment-showcase__visual {
    aspect-ratio: 3 / 2;
    border-right: 0;
    border-bottom: 2px solid var(--graphite);
  }

  .equipment-showcase__visual img {
    height: 100%;
    min-height: 0;
  }

}

@media (max-width: 620px) {
  .equipment-showcase {
    padding: var(--section-space-mobile) 0;
  }

  .equipment-showcase__heading {
    gap: 1rem;
  }

  .equipment-showcase__stage {
    min-height: 0;
    box-shadow: 6px 6px 0 var(--orange);
  }

  .equipment-showcase__visual {
    min-height: 0;
  }

  .equipment-showcase__visual img {
    height: 100%;
    min-height: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  .equipment-showcase__visual img {
    animation: none;
  }
}

/* services-pricing.css */
.benefit-section,
.fulfillment-models {
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--border);
}

.benefit-section {
  background: var(--warehouse-gray);
}

.benefit-section__heading,
.fulfillment-models__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  gap: 2rem;
  align-items: end;
}

.benefit-section__heading h2,
.fulfillment-models__heading h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.benefit-section__heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--system-gray);
  line-height: 1.6;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.2rem);
  min-height: 430px;
  margin-top: 2.5rem;
  padding: clamp(2.25rem, 4vw, 3.75rem) clamp(1.1rem, 2.4vw, 2.1rem);
  overflow: hidden;
  border: 3px solid var(--graphite);
  border-radius: 18px;
  background-color: var(--graphite);
  background-image: url(../assets/benefits/conveyor-surface.png);
  background-position: center;
  background-size: cover;
  box-shadow: 10px 10px 0 rgb(31 31 31 / 18%);
}

.benefit-label {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 306px;
  flex-direction: column;
  padding: clamp(1.2rem, 2vw, 1.65rem);
  border: 1px solid #c9c1b2;
  border-radius: 5px 9px 6px 4px;
  background-color: #fffaf0;
  background-image: url(../assets/benefits/label-paper.png);
  background-position: center;
  background-size: cover;
  box-shadow: 6px 8px 12px rgb(0 0 0 / 34%);
  color: var(--graphite);
  transform-origin: center;
}

.benefit-label--1 {
  transform: rotate(-0.9deg) translateY(-8px);
}

.benefit-label--2 {
  transform: rotate(0.7deg) translateY(15px);
}

.benefit-label--3 {
  transform: rotate(-0.45deg) translateY(-14px);
}

.benefit-label--4 {
  transform: rotate(0.9deg) translateY(10px);
}

.benefit-label__header {
  display: flex;
  gap: 0.75rem;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 0.85rem;
  border-bottom: 2px solid rgb(31 31 31 / 78%);
}

.benefit-label__header > span {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 4.2vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
}

.benefit-label__header small {
  max-width: 96px;
  color: #615d55;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-align: right;
}

.benefit-label h3 {
  margin: 1.15rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.65vw, 1.55rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.benefit-label > p {
  margin: 0.8rem 0 1.25rem;
  color: #555149;
  font-size: var(--font-body-sm);
  line-height: 1.48;
}

.benefit-label__footer {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.75rem;
  margin-top: auto;
  border-top: 1px solid rgb(31 31 31 / 28%);
  color: #6b665d;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.benefit-label__footer b {
  color: var(--orange-dark);
}

.benefit-grid article {
  min-width: 0;
}

.fulfillment-models {
  background: var(--white);
}

.fulfillment-models__switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--graphite);
  border-radius: var(--radius-control);
  overflow: hidden;
}

.fulfillment-models__switch button {
  display: grid;
  min-height: 76px;
  gap: 0.1rem;
  place-content: center;
  padding: 0.75rem 1.25rem;
  border: 0;
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  text-align: center;
}

.fulfillment-models__switch button + button {
  border-left: 1px solid var(--graphite);
}

.fulfillment-models__switch button[aria-pressed="true"] {
  background: var(--orange);
}

.fulfillment-models__switch strong {
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
}

.fulfillment-models__switch span {
  font-size: var(--font-body-xs);
}

.fulfillment-models__panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(340px, 1fr) minmax(
      260px,
      0.75fr
    );
  min-height: 470px;
  margin-top: 2.5rem;
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  overflow: hidden;
}

.fulfillment-models__panel > * {
  padding: clamp(1.4rem, 2.5vw, 2.25rem);
}

.fulfillment-models__panel > * + * {
  border-left: 1px solid var(--border);
}

.fulfillment-models__purpose {
  background: var(--orange-soft);
}

.fulfillment-models__purpose > span {
  display: block;
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: var(--font-display-lg);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.fulfillment-models__purpose h3 {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  line-height: 1.2;
}

.fulfillment-models__purpose p {
  margin: 1.25rem 0 0;
  padding-top: 1rem;
  border-top: 2px solid var(--orange);
  font-weight: 800;
}

.fulfillment-models__responsibilities {
  display: grid;
  gap: 1.25rem;
  margin: 0;
}

.fulfillment-models__responsibilities div {
  display: grid;
  gap: 0.35rem;
}

.fulfillment-models__responsibilities dt,
.fulfillment-models__included > p {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-models__responsibilities dd {
  margin: 0;
  line-height: 1.5;
}

.fulfillment-models__included > p {
  margin: 0 0 1rem;
}

.fulfillment-models__included ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fulfillment-models__included li {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
  font-size: var(--font-body-sm);
  font-weight: 700;
}

.fulfillment-models__included li span {
  color: var(--orange-dark);
}

@media (max-width: 960px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    min-height: 0;
    padding: 3rem 2rem;
  }

  .benefit-label {
    min-height: 284px;
  }

  .benefit-label--1,
  .benefit-label--3 {
    transform: rotate(-0.6deg) translateY(-6px);
  }

  .benefit-label--2,
  .benefit-label--4 {
    transform: rotate(0.6deg) translateY(8px);
  }

  .fulfillment-models__panel {
    grid-template-columns: 1fr;
    min-height: 790px;
  }

  .fulfillment-models__panel > * + * {
    border-top: 1px solid var(--border);
    border-left: 0;
  }
}

@media (max-width: 680px) {
  .benefit-section,
  .fulfillment-models {
    padding: var(--section-space-mobile) 0;
  }

  .benefit-section__heading,
  .fulfillment-models__heading {
    grid-template-columns: 1fr;
  }

  .benefit-grid {
    display: flex;
    min-height: 390px;
    gap: 1rem;
    align-items: center;
    padding: 2.25rem 1rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .benefit-label {
    width: min(78vw, 310px);
    flex: 0 0 min(78vw, 310px);
    min-height: 312px;
    scroll-snap-align: start;
    transform: rotate(0) translateY(0);
  }

  .benefit-grid h3 {
    margin-top: 1.15rem;
  }

  .fulfillment-models__heading {
    gap: 1rem;
  }

  .fulfillment-models__panel {
    min-height: 790px;
    margin-top: 1.5rem;
  }

  .fulfillment-models__panel > * {
    padding: 1.1rem;
  }

  .fulfillment-models__purpose > span {
    font-size: var(--font-display-lg);
  }

  .fulfillment-models__purpose h3 {
    margin-top: 1rem;
  }

  .fulfillment-models__responsibilities {
    gap: 0.75rem;
  }

  .fulfillment-models__responsibilities div {
    grid-template-columns: minmax(88px, 0.65fr) minmax(0, 1.35fr);
    gap: 0.75rem;
    align-items: start;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
  }

  .fulfillment-models__included ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 0.8rem;
  }

  .fulfillment-models__included li {
    grid-template-columns: 1.5rem 1fr;
    gap: 0.4rem;
    font-size: var(--font-body-xs);
  }
}

.pricing-conversion {
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--border);
  background: var(--light-grid), var(--warehouse-gray);
  background-size: var(--light-grid-size);
}

.pricing-conversion__rates-zone {
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 2px solid var(--graphite);
  background: #fffdf7;
  box-shadow: 10px 10px 0 var(--orange);
}

.pricing-conversion__heading {
  display: block;
}

.pricing-conversion__heading h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.pricing-conversion__heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--system-gray);
  line-height: 1.6;
}

.pricing-conversion__calculator-zone {
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding: clamp(1rem, 2.2vw, 1.75rem);
  border: 3px solid var(--graphite);
  background:
    linear-gradient(90deg, rgb(255 255 255 / 12%) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 12%) 1px, transparent 1px),
    var(--orange);
  background-size: 48px 48px;
  box-shadow: 12px 12px 0 var(--graphite);
}

.pricing-conversion__calculator-label {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 1rem;
}

.pricing-conversion__calculator-label span {
  padding: 0.35rem 0.55rem;
  background: var(--graphite);
  color: var(--white);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.pricing-conversion__calculator-label strong {
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 2.5rem;
  border: 1px solid var(--graphite);
  background: var(--white);
}

.pricing-highlights article {
  display: grid;
  min-width: 0;
  min-height: 230px;
  align-content: start;
  padding: clamp(1.25rem, 2.5vw, 1.85rem);
}

.pricing-highlights article + article {
  border-left: 1px solid var(--border);
}

.pricing-highlights article > span {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  font-weight: 800;
}

.pricing-highlights h3 {
  margin: 2.5rem 0 0;
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  line-height: 1.12;
}

.pricing-highlights strong {
  margin-top: 0.35rem;
  font-size: var(--font-body-sm);
}

.pricing-highlights p {
  margin: 0.9rem 0 0;
  color: var(--system-gray);
  font-size: var(--font-body-sm);
  line-height: 1.5;
}

.pricing-conversion__layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1.28fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 2rem;
}

.pricing-conversion .estimate-builder {
  position: sticky;
  top: 92px;
  display: grid;
  gap: 1rem;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--white);
  box-shadow: 6px 6px 0 var(--graphite);
}

.pricing-conversion .estimate-heading {
  display: grid;
  gap: 0.2rem;
  padding: 0;
  border: 0;
}

.pricing-conversion .estimate-heading span {
  color: var(--orange-dark);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pricing-conversion .estimate-heading strong {
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  line-height: 1.2;
}

.pricing-conversion .estimate-heading small {
  color: var(--system-gray);
}

.pricing-conversion .estimate-field,
.pricing-conversion .estimate-field--split {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  border: 0;
}

.pricing-conversion .estimate-field--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-conversion .estimate-field label,
.pricing-conversion .estimate-field > span,
.pricing-conversion .estimate-field legend {
  display: grid;
  gap: 0.35rem;
  padding: 0;
  font-size: var(--font-body-sm);
  font-weight: 700;
}

.pricing-conversion .estimate-field input,
.pricing-conversion .estimate-field select {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.8rem;
  border: 1px solid var(--system-gray);
  border-radius: var(--radius-control);
  background: var(--white);
}

.pricing-conversion .model-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-conversion .model-options legend {
  grid-column: 1 / -1;
}

.pricing-conversion .model-options label {
  display: block;
  padding: 0;
  border: 0;
}

.pricing-conversion .model-options label + label {
  border: 0;
}

.pricing-conversion .model-options input {
  position: absolute;
  opacity: 0;
}

.pricing-conversion .model-options input + span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid var(--graphite);
  border-radius: var(--radius-control);
}

.pricing-conversion .model-options input:checked + span {
  background: var(--orange);
  color: var(--graphite);
}

.pricing-conversion .estimate-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  padding: 0;
  border: 0;
}

.pricing-conversion .estimate-checks label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-control);
  font-size: var(--font-body-sm);
}

.pricing-conversion .estimate-checks input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--orange);
}

.pricing-conversion .estimate-result {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border: 0;
  border-left: 5px solid var(--orange);
  background: var(--orange-soft);
  color: var(--graphite);
}

.pricing-conversion .estimate-result span {
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pricing-conversion .estimate-result strong {
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-conversion .estimate-result p {
  margin: 0.5rem 0 0;
  font-size: var(--font-body-xs);
  line-height: 1.45;
}

.pricing-conversion .estimate-submit {
  min-height: 48px;
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
  font-weight: 800;
}

.pricing-conversion .estimate-lead {
  width: 100%;
}

.pricing-details {
  border: 1px solid var(--border);
  background: var(--white);
}

.pricing-details summary {
  min-height: 62px;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 800;
}

.pricing-details[open] summary {
  border-bottom: 1px solid var(--border);
}

.pricing-details__body {
  overflow-x: auto;
}

.pricing-details table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-body-sm);
}

.pricing-details caption {
  padding: 1rem 1.25rem;
  color: var(--system-gray);
  text-align: left;
}

.pricing-details th,
.pricing-details td {
  padding: 0.9rem 1rem;
  border-top: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.pricing-details th {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-details td:first-child span {
  margin-right: 0.5rem;
  color: var(--orange-dark);
  font-weight: 800;
}

.pricing-logistics {
  padding: 1.5rem;
  border-top: 1px solid var(--border);
}

.pricing-logistics h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
}

.pricing-logistics > div {
  display: grid;
  gap: 0;
  margin-top: 1rem;
}

.pricing-logistics p {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 1rem;
  margin: 0;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border);
}

.pricing-logistics span {
  color: var(--system-gray);
}

.pricing-handoff {
  padding: var(--section-space) 0;
  background: var(--orange-soft);
}

.pricing-handoff__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.pricing-handoff h2 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.messenger-channels {
  margin-top: clamp(2rem, 5vw, 4rem);
  padding-top: 1.25rem;
  border-top: 2px solid var(--graphite);
}

.messenger-channels__heading {
  display: flex;
  gap: 1rem 2rem;
  align-items: baseline;
  justify-content: space-between;
}

.messenger-channels__heading > span {
  color: var(--orange-dark);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.11em;
}

.messenger-channels__heading p {
  margin: 0;
  color: var(--system-gray);
  font-size: var(--font-body-sm);
}

.messenger-channels__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.messenger-channel {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr) auto;
  gap: 1rem;
  min-width: 0;
  align-items: center;
  padding: 1.25rem;
  overflow: hidden;
  border: 2px solid var(--graphite);
  background: var(--white);
  color: var(--graphite);
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--graphite);
}

.messenger-channel::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: var(--channel-color);
  content: "";
}

.messenger-channel--telegram {
  --channel-color: #229ed9;
}

.messenger-channel--whatsapp {
  --channel-color: #25d366;
}

.messenger-channel:hover,
.messenger-channel:focus-visible {
  background: var(--channel-color);
  color: var(--graphite);
  box-shadow: 7px 7px 0 var(--graphite);
  transform: translateY(-3px);
}

.messenger-channel__index {
  color: var(--system-gray);
  font-family: var(--font-display);
  font-size: var(--font-display-xs);
}

.messenger-channel > svg {
  width: 42px;
  height: 42px;
  padding: 0.55rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  background: var(--white);
  fill: var(--channel-color);
}

.messenger-channel__copy {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.messenger-channel__copy small {
  color: var(--channel-color);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.messenger-channel__copy strong {
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
}

.messenger-channel__copy > span {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
  line-height: 1.45;
}

.messenger-channel:hover .messenger-channel__copy > span,
.messenger-channel:hover .messenger-channel__index,
.messenger-channel:hover .messenger-channel__copy small,
.messenger-channel:focus-visible .messenger-channel__copy > span,
.messenger-channel:focus-visible .messenger-channel__index,
.messenger-channel:focus-visible .messenger-channel__copy small {
  color: var(--graphite);
}

.messenger-channel > b {
  color: var(--channel-color);
  font-size: var(--font-body-lg);
}

@media (max-width: 980px) {
  .pricing-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-highlights article:nth-child(3) {
    border-left: 0;
  }

  .pricing-highlights article:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .pricing-conversion__layout,
  .pricing-handoff__grid {
    grid-template-columns: 1fr;
  }

  .messenger-channels__grid {
    grid-template-columns: 1fr;
  }

  .pricing-conversion .estimate-builder {
    position: static;
  }
}

@media (max-width: 680px) {
  .pricing-conversion,
  .pricing-handoff {
    padding: var(--section-space-mobile) 0;
  }

  .pricing-conversion__heading,
  .pricing-highlights {
    grid-template-columns: 1fr;
  }

  .pricing-highlights article {
    min-height: 0;
  }

  .pricing-highlights article + article,
  .pricing-highlights article:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .pricing-highlights h3 {
    margin-top: 1.5rem;
  }

  .pricing-conversion .estimate-field--split,
  .pricing-conversion .estimate-checks {
    grid-template-columns: 1fr;
  }

  .pricing-details table,
  .pricing-details tbody,
  .pricing-details tr,
  .pricing-details td {
    display: block;
  }

  .pricing-details thead {
    display: none;
  }

  .pricing-details tr {
    padding: 0.8rem 0;
    border-top: 1px solid var(--border);
  }

  .pricing-details td {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 0.75rem;
    padding: 0.4rem 1rem;
    border: 0;
  }

  .pricing-details td::before {
    color: var(--system-gray);
    content: attr(data-label);
    font-size: var(--font-body-xs);
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .pricing-logistics p {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .messenger-channels__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .messenger-channel {
    grid-template-columns: auto auto minmax(0, 1fr);
  }

  .messenger-channel > b {
    display: none;
  }
}

/* pricing-terminal.css */
.pricing-details {
  margin-top: 2.5rem;
  overflow: hidden;
  border: 2px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--graphite);
}

.pricing-details__header {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(210px, 0.48fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.25rem, 2.5vw, 2rem);
  border-bottom: 2px solid var(--graphite);
  background: var(--orange);
}

.pricing-details__header > div {
  display: grid;
  gap: 0.3rem;
}

.pricing-details__header span {
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.11em;
}

.pricing-details__header h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  letter-spacing: -0.04em;
  line-height: 1;
}

.pricing-details__promo {
  display: grid;
  justify-items: center;
  gap: 0.35rem;
}

.pricing-details__promo > strong {
  padding: 0.45rem 0.65rem;
  border: 2px solid var(--graphite);
  background: var(--white);
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.07em;
  line-height: 0.9;
  transform: rotate(2deg);
}

.pricing-details__promo > strong sup {
  margin-left: 0.08em;
  font-family: var(--font-body);
  font-size: 0.48em;
  vertical-align: top;
}

.pricing-details__promo > span {
  padding: 0.2rem 0.4rem;
  background: var(--graphite);
  color: var(--white);
  font-size: var(--font-body-xs);
  letter-spacing: 0.09em;
}

.pricing-details__promo-copy {
  align-content: center;
}

.pricing-details__promo-copy > p {
  margin: 0;
  font-size: var(--font-body-sm);
  font-weight: 700;
  line-height: 1.45;
}

.pricing-details__promo-copy time {
  display: grid;
  width: fit-content;
  min-width: 210px;
  gap: 0.25rem;
  padding: 0.7rem 0.9rem 0.8rem;
  border: 2px solid var(--graphite);
  background: var(--graphite);
  box-shadow: 4px 4px 0 var(--white);
  color: var(--white);
}

.pricing-details__promo-copy time > span {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  color: var(--white);
  font-size: var(--font-body-xs);
}

.pricing-details__promo-copy time > span::before {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgb(255 106 0 / 20%);
  content: "";
  animation: promotion-pulse 1.5s ease-in-out infinite;
}

.pricing-details__promo-copy time > strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
}

.pricing-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
}

.pricing-preview article {
  display: grid;
  min-width: 0;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  padding: clamp(1rem, 2vw, 1.5rem);
}

.pricing-preview article + article {
  border-left: 1px solid var(--border);
}

.pricing-preview article > span {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--graphite);
  background: var(--orange-soft);
  font-size: var(--font-body-xs);
  font-weight: 800;
}

.pricing-preview article > div {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
  align-content: start;
}

.pricing-preview h4 {
  min-height: 2.7em;
  margin: 0;
  overflow: hidden;
  font-size: var(--font-body-sm);
  line-height: 1.35;
}

.pricing-preview strong {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2.15rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.pricing-preview small {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
}

.pricing-details__expander {
  border-top: 2px solid var(--graphite);
}

.pricing-details__toggle {
  display: flex;
  min-height: 64px;
  gap: 0.7rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem 1rem;
  background: #fffdf7;
  cursor: pointer;
  list-style: none;
}

.pricing-details__toggle::-webkit-details-marker {
  display: none;
}

.pricing-details__toggle > span {
  padding: 0.7rem 0.9rem;
  border: 2px solid var(--graphite);
  background: var(--graphite);
  color: var(--white);
  font-size: var(--font-body-sm);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.pricing-details__toggle:hover > span,
.pricing-details__toggle:focus-visible > span {
  background: var(--orange);
  color: var(--graphite);
}

.pricing-details__toggle > small {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
  font-weight: 800;
}

.pricing-details__toggle > i {
  position: relative;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border: 2px solid var(--graphite);
  background: var(--white);
}

.pricing-details__toggle > i::before,
.pricing-details__toggle > i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--graphite);
  content: "";
  transform: translate(-50%, -50%);
}

.pricing-details__toggle > i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.pricing-details__expander[open] .pricing-details__toggle > i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.pricing-details__body {
  overflow-x: auto;
  border-top: 1px solid var(--border);
}

.pricing-details table {
  min-width: 860px;
}

.pricing-details tbody tr:hover {
  background: var(--orange-soft);
}

.pricing-details tbody strong,
.pricing-logistics b {
  color: var(--orange-dark);
  font-size: var(--font-body-sm);
}

.pricing-conversion__layout {
  display: block;
  margin-top: 0;
}

.pricing-conversion .estimate-builder {
  position: static;
  top: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(300px, 1fr);
  height: clamp(700px, calc(100svh - 24px), 760px);
  gap: clamp(0.9rem, 1.6vw, 1.35rem);
  align-items: stretch;
  padding: clamp(0.8rem, 1.35vw, 1.1rem);
  overflow: hidden;
  border: 3px solid var(--graphite);
  border-radius: 18px;
  background: #181817;
  box-shadow: 12px 12px 0 rgb(31 31 31 / 20%);
}

.pricing-conversion .estimate-builder.estimate-builder--custom-packaging {
  height: clamp(780px, calc(100svh + 56px), 840px);
}

.estimate-terminal {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  height: 100%;
  gap: 0.7rem;
  padding: 0.75rem;
  overflow: hidden;
  border: 3px solid #0c0c0b;
  border-radius: 16px 16px 28px 28px;
  background:
    linear-gradient(145deg, #4a4a47 0 7%, #292927 7% 84%, #141413 84%),
    var(--graphite);
  box-shadow:
    inset 0 4px 0 #666661,
    inset -5px -7px 0 #111110,
    8px 9px 0 rgb(0 0 0 / 30%);
  color: var(--white);
}

.estimate-terminal__bezel {
  display: flex;
  gap: 0.35rem;
  justify-content: flex-end;
  min-height: 12px;
  padding-inline: 0.25rem;
}

.estimate-terminal__bezel i {
  width: 9px;
  height: 9px;
  border: 1px solid #0c0c0b;
  background: #70706b;
  box-shadow: inset 1px 1px 0 rgb(255 255 255 / 25%);
}

.estimate-terminal__bezel i:first-child {
  margin-right: auto;
  background: var(--orange);
}

.estimate-terminal__screen {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 0.8rem;
  align-content: start;
  padding: clamp(0.8rem, 1.1vw, 1rem);
  overflow: hidden;
  border: 3px solid #0d0d0c;
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 0, #2e2e2b 0, #20201e 56%),
    #20201e;
  box-shadow:
    inset 5px 5px 0 #111110,
    inset -3px -3px 0 #555551;
}

.estimate-terminal__top,
.pricing-conversion .estimate-heading,
.estimate-dimensions,
.estimate-packaging,
.estimate-fbs-included {
  grid-column: 1 / -1;
}

.estimate-terminal__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid #555551;
  color: #aaa9a3;
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.estimate-terminal__lights {
  display: flex;
  gap: 0.35rem;
}

.estimate-terminal__lights i {
  width: 8px;
  height: 8px;
  border: 1px solid #0d0d0c;
  background: #62625e;
}

.estimate-terminal__lights i:first-child {
  background: #54d783;
  box-shadow: 0 0 8px #54d783;
}

.estimate-terminal__lights i:nth-child(2) {
  background: var(--orange);
}

.pricing-conversion .estimate-heading {
  gap: 0.15rem;
  padding: 0;
}

.pricing-conversion .estimate-heading span {
  color: var(--orange);
}

.pricing-conversion .estimate-heading strong {
  color: var(--white);
  font-size: var(--font-display-sm);
}

.pricing-conversion .estimate-heading small {
  color: #aaa9a3;
  font-size: var(--font-body-xs);
}

.pricing-conversion .estimate-field label,
.pricing-conversion .estimate-field > span,
.pricing-conversion .estimate-field legend {
  color: #d9d9d5;
}

.pricing-conversion .estimate-field input,
.pricing-conversion .estimate-field select {
  min-height: 44px;
  padding-block: 0.55rem;
  border: 2px solid #696965;
  border-radius: 2px;
  background: #0e0e0d;
  color: var(--white);
  box-shadow:
    inset 3px 3px 0 #050505,
    2px 2px 0 #4d4d49;
}

.pricing-conversion .estimate-field input:focus,
.pricing-conversion .estimate-field select:focus {
  border-color: var(--orange);
  box-shadow:
    inset 3px 3px 0 #050505,
    3px 3px 0 var(--orange);
}

.pricing-conversion .estimate-field select:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.estimate-dimensions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0;
  border: 0;
}

.estimate-dimensions > legend,
.estimate-dimensions__total {
  grid-column: 1 / -1;
}

.estimate-dimensions > label {
  min-width: 0;
}

.estimate-dimensions > label > span {
  color: #aaa9a3;
  font-size: 0.625rem;
  line-height: 1.15;
}

.estimate-dimensions__total {
  margin: 0;
  padding: 0.45rem 0.55rem;
  border-left: 3px solid var(--orange);
  background: rgb(255 106 0 / 10%);
  color: #f4f4ef;
  font-size: 0.6875rem;
  font-weight: 800;
}

.estimate-packaging__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.estimate-packaging__choices button {
  display: flex;
  min-width: 0;
  min-height: 44px;
  gap: 0.45rem;
  align-items: center;
  justify-content: flex-start;
  padding: 0.55rem 0.65rem;
  border: 2px solid #696965;
  border-radius: 2px;
  background: #0e0e0d;
  box-shadow:
    inset 2px 2px 0 #050505,
    2px 2px 0 #4d4d49;
  color: #d9d9d5;
  cursor: pointer;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
}

.estimate-packaging__choices button > i {
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  background: transparent;
}

.estimate-packaging__choices button:hover,
.estimate-packaging__choices button:focus-visible {
  border-color: var(--orange);
  outline: none;
  box-shadow:
    inset 2px 2px 0 #050505,
    3px 3px 0 var(--orange);
}

.estimate-packaging__choices button[aria-pressed="true"] {
  border-color: var(--orange);
  background: var(--orange);
  box-shadow:
    inset 0 -4px 0 rgb(31 31 31 / 24%),
    2px 3px 0 #050505;
  color: var(--graphite);
  transform: translateY(1px);
}

.estimate-packaging__choices button[aria-pressed="true"] > i {
  background: var(--graphite);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.estimate-packaging__choices button:disabled {
  border-color: #454542;
  background: #181817;
  box-shadow: none;
  color: #777772;
  cursor: not-allowed;
  opacity: 0.56;
  transform: none;
}

.estimate-packaging__choices button:disabled:hover {
  border-color: #454542;
  box-shadow: none;
}

.estimate-packaging__other {
  display: grid;
  gap: 0.35rem;
}

.estimate-packaging__other > span {
  color: #aaa9a3;
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1.2;
}

.estimate-packaging__notice {
  margin: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid #d87830;
  background: rgb(255 106 0 / 13%);
  color: #ffd7b8;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.35;
}

.estimate-fbs-included {
  display: grid;
  gap: 0.45rem;
  padding: 0.75rem;
  border: 2px solid #696965;
  background: #0e0e0d;
  box-shadow:
    inset 3px 3px 0 #050505,
    2px 2px 0 #4d4d49;
}

.estimate-fbs-included > strong {
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.estimate-fbs-included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 0.75rem;
  margin: 0;
  padding: 0;
  color: #d9d9d5;
  font-size: 0.6875rem;
  font-weight: 700;
  list-style: none;
}

.estimate-fbs-included li::before {
  margin-right: 0.35rem;
  color: var(--orange);
  content: "✓";
}

.estimate-terminal__controls {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 0.7rem;
  padding: 0.15rem 0.2rem 0;
}

.estimate-terminal__model,
.estimate-terminal__extras {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  min-width: 0;
  padding: 0;
  border: 0;
}

.estimate-terminal__model legend,
.estimate-terminal__extras > span {
  grid-column: 1 / -1;
  padding: 0;
  color: #aaa9a3;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.estimate-terminal__model button,
.estimate-terminal__extras button {
  display: flex;
  min-width: 0;
  min-height: 40px;
  gap: 0.45rem;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.55rem;
  border: 2px solid #10100f;
  border-radius: 2px;
  background: #444440;
  box-shadow:
    inset 0 3px 0 #65655f,
    0 4px 0 #111110;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.6875rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.estimate-terminal__model button:hover,
.estimate-terminal__extras button:hover,
.estimate-terminal__model button:focus-visible,
.estimate-terminal__extras button:focus-visible {
  border-color: var(--orange);
  outline: none;
}

.estimate-terminal__model button[aria-pressed="true"],
.estimate-terminal__extras button[aria-pressed="true"] {
  background: var(--orange);
  box-shadow:
    inset 0 -4px 0 rgb(31 31 31 / 28%),
    0 4px 0 #111110;
  color: var(--graphite);
  transform: translateY(2px);
}

.estimate-terminal__extras button > i {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  border: 2px solid currentColor;
  background: transparent;
}

.estimate-terminal__extras button[aria-pressed="true"] > i {
  background: var(--graphite);
  box-shadow: inset 0 0 0 2px var(--orange);
}

.estimate-progress,
.estimate-article-list {
  grid-column: 1 / -1;
}

.estimate-progress {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.15rem 0.75rem;
  align-items: center;
  padding: 0.6rem 0.7rem;
  border: 1px solid #5b5b57;
  background: #151514;
  color: #aaa9a3;
  font-size: 0.6875rem;
  font-weight: 800;
}

.estimate-progress::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--orange) calc(var(--estimate-progress, 0) * 100%),
    #4b4b47 0
  );
  content: "";
  transition: background 240ms ease;
}

.estimate-progress strong {
  color: var(--white);
  font-size: inherit;
  text-align: right;
}

.estimate-progress > small {
  grid-column: 1 / -1;
  color: #ffb093;
  font-size: 0.625rem;
  line-height: 1.3;
}

.estimate-progress > small:empty {
  display: none;
}

.estimate-progress[data-allocation="matched"] strong {
  color: #54d783;
}

.estimate-progress[data-allocation="under"] strong,
.estimate-progress[data-allocation="over"] strong {
  color: #ffb093;
}

.estimate-article-list {
  display: grid;
  min-height: 0;
  max-height: 358px;
  gap: 0.5rem;
  align-content: start;
  padding: 0.1rem 0.25rem 0.35rem 0.1rem;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--orange) #191918;
  scrollbar-width: thin;
}

.estimate-article {
  min-width: 0;
  border: 1px solid #575753;
  background: #1a1a19;
}

.estimate-article.is-complete {
  border-color: #54d783;
}

.estimate-article.has-error {
  border-color: #e77b57;
}

.estimate-article__toggle {
  display: grid;
  width: 100%;
  min-height: 46px;
  grid-template-columns: minmax(0, 1fr) auto 20px;
  gap: 0.6rem;
  align-items: center;
  padding: 0.65rem 0.75rem;
  border: 0;
  background: #292927;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.estimate-article__toggle:hover,
.estimate-article__toggle:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: -2px;
}

.estimate-article__toggle span {
  font-weight: 800;
}

.estimate-article__toggle b {
  color: var(--orange);
}

.estimate-article__toggle small {
  color: #aaa9a3;
  font-size: 0.625rem;
  font-weight: 800;
}

.estimate-article.is-complete .estimate-article__toggle small {
  color: #54d783;
}

.estimate-article__toggle i {
  position: relative;
  width: 18px;
  height: 18px;
}

.estimate-article__toggle i::before,
.estimate-article__toggle i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  content: "";
  transform: translate(-50%, -50%);
}

.estimate-article__toggle i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.estimate-article__toggle[aria-expanded="true"] i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.estimate-article__panel {
  display: grid;
  gap: 0.7rem;
  padding: 0.75rem;
  border-top: 1px solid #575753;
}

.estimate-article__panel[hidden] {
  display: none;
}

.estimate-article__quick-actions {
  display: grid;
  gap: 0.4rem;
  padding: 0.55rem;
  border-left: 3px solid var(--orange);
  background: rgb(255 106 0 / 9%);
}

.estimate-article__quick-actions[hidden] {
  display: none;
}

.estimate-article__quick-actions > span {
  color: #c9c9c5;
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.estimate-article__quick-actions > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.estimate-article__quick-actions button {
  min-height: 34px;
  padding: 0.4rem 0.55rem;
  border: 1px solid #777772;
  background: #242422;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 0.625rem;
  font-weight: 800;
}

.estimate-article__quick-actions button:hover,
.estimate-article__quick-actions button:focus-visible {
  border-color: var(--orange);
  outline: none;
}

.estimate-article__units {
  display: grid;
  max-width: 260px;
  gap: 0.3rem;
}

.estimate-article__units input {
  width: 100%;
}

.estimate-article .estimate-dimensions {
  display: grid;
  grid-template-columns: 1fr;
}

.estimate-dimensions__inputs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}

.estimate-dimensions__inputs label {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
}

.estimate-dimensions__inputs label > span {
  color: #aaa9a3;
  font-size: 0.625rem;
  line-height: 1.15;
}

.estimate-field__error {
  display: block;
  min-height: 0;
  color: #ffb093;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.25;
}

.estimate-field__error:empty {
  display: none;
}

.pricing-conversion .estimate-field input[aria-invalid="true"] {
  border-color: #e77b57;
  box-shadow:
    inset 3px 3px 0 #050505,
    2px 2px 0 #8d2f18;
}

.estimate-packaging.has-error {
  padding: 0.5rem;
  border: 1px solid #e77b57;
}

.estimate-article .estimate-terminal__extras {
  margin-top: 0.5rem;
}

.estimate-terminal__controls {
  grid-template-columns: 1fr;
}

.estimate-terminal__model {
  max-width: 320px;
}

.receipt-station {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr);
  min-width: 0;
  height: 100%;
  align-content: stretch;
  justify-items: center;
  padding: clamp(0.8rem, 1.35vw, 1.15rem);
  overflow: hidden;
  border: 3px solid #0c0c0b;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 14%) 0 12%, transparent 12% 88%, rgb(31 31 31 / 10%) 88%),
    var(--orange);
  box-shadow:
    inset 0 4px 0 rgb(255 255 255 / 28%),
    7px 8px 0 rgb(0 0 0 / 28%);
}

.receipt-station__printer-stage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.estimate-receipt {
  position: absolute;
  z-index: 1;
  bottom: 184px;
  left: 50%;
  width: min(76%, 296px);
  height: min(var(--receipt-height, 82px), calc(100% - 184px));
  min-height: 82px;
  max-height: calc(100% - 184px);
  overflow-x: hidden;
  overflow-y: auto;
  clip-path: polygon(
    0 2%,
    4% 0,
    8% 2%,
    12% 0,
    16% 2%,
    20% 0,
    24% 2%,
    28% 0,
    32% 2%,
    36% 0,
    40% 2%,
    44% 0,
    48% 2%,
    52% 0,
    56% 2%,
    60% 0,
    64% 2%,
    68% 0,
    72% 2%,
    76% 0,
    80% 2%,
    84% 0,
    88% 2%,
    92% 0,
    96% 2%,
    100% 0,
    100% 100%,
    0 100%
  );
  background:
    repeating-linear-gradient(
      0deg,
      rgb(31 31 31 / 2%) 0 1px,
      transparent 1px 4px
    ),
    #fffdf5;
  color: #252522;
  filter: drop-shadow(4px 7px 2px rgb(31 31 31 / 24%));
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  transform: translateX(-50%);
  transform-origin: bottom center;
  transition: height 420ms cubic-bezier(0.22, 0.8, 0.3, 1);
}

.estimate-receipt::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
  content: "";
  opacity: 0;
  transform: translateY(3px);
}

.estimate-receipt[data-printing="true"]::after {
  animation: receipt-thermal-line 420ms steps(4, end) both;
}

.estimate-receipt__paper {
  position: static;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0.85rem 0.7rem 0.65rem;
}

.estimate-receipt__parameters {
  margin-top: 0.4rem !important;
}

.estimate-receipt__parameter--pending dd {
  color: #8a5b36;
}

.estimate-receipt__articles {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.5rem;
  padding-top: 0.45rem;
  border-top: 1px dashed #6e6e69;
}

.estimate-receipt__article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.15rem 0.45rem;
  padding-bottom: 0.3rem;
  border-bottom: 1px dotted #cbc8bd;
}

.estimate-receipt__article strong,
.estimate-receipt__article span,
.estimate-receipt__article small {
  font-size: 0.5625rem;
  line-height: 1.25;
}

.estimate-receipt__article strong {
  grid-column: 1 / -1;
  letter-spacing: 0.05em;
}

.estimate-receipt__article small {
  font-weight: 800;
  text-align: right;
}

.estimate-receipt__article.is-pending span {
  color: #8a5b36;
}

.estimate-receipt__total > b {
  padding-top: 0.35rem;
  border-top: 2px solid #252522;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.estimate-receipt__empty {
  display: grid;
  min-height: 44px;
  place-items: center;
  color: #696963;
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
}

.estimate-receipt__header {
  display: grid;
  gap: 0.15rem;
  text-align: center;
}

.estimate-receipt__header strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.estimate-receipt__header span {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.estimate-receipt__rule {
  margin: 0.42rem 0;
  border-top: 1px dashed #6e6e69;
}

.estimate-receipt dl {
  display: grid;
  gap: 0.12rem;
  margin: 0;
}

.estimate-receipt__parameter {
  display: grid;
  grid-template-columns: minmax(62px, 0.75fr) minmax(96px, 1.25fr);
  gap: 0.45rem;
  padding-bottom: 0.12rem;
  border-bottom: 1px dotted #cbc8bd;
}

.estimate-receipt__parameter dt,
.estimate-receipt__parameter dd {
  margin: 0;
  font-size: 0.625rem;
  line-height: 1.25;
}

.estimate-receipt__parameter dd {
  font-weight: 800;
  text-align: right;
}

.estimate-receipt__parameter--manual dd {
  color: #7d3c14;
}

.receipt-line--printing {
  animation: receipt-line-print 420ms steps(4, end) both;
}

.estimate-receipt__line {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.2rem;
  font-size: 0.625rem;
}

.estimate-receipt__line strong {
  text-align: right;
}

.estimate-receipt__breakdown {
  display: grid;
  gap: 0.18rem;
  margin-bottom: 0.4rem;
}

.estimate-receipt__operation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.1rem 0.5rem;
  padding-bottom: 0.18rem;
  border-bottom: 1px dotted #cbc8bd;
  font-size: 0.625rem;
}

.estimate-receipt__operation strong {
  text-align: right;
}

.estimate-receipt__operation small {
  grid-column: 1 / -1;
  color: #7d3c14;
  font-size: 0.5625rem;
  font-weight: 800;
}

.estimate-receipt__manual {
  display: grid;
  gap: 0.35rem;
  padding: 0.55rem;
  border: 2px solid #7d3c14;
  background: #fff0e3;
}

.estimate-receipt__manual strong {
  color: #7d3c14;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.estimate-receipt__manual p {
  margin: 0;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 1.35;
}

.estimate-receipt__total {
  display: grid;
  gap: 0.2rem;
}

.estimate-receipt__total > span {
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.estimate-receipt__total > strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  line-height: 1;
}

.estimate-receipt__total > small,
.estimate-receipt__paper > p {
  font-size: 0.625rem;
  line-height: 1.3;
}

.estimate-receipt__paper > p {
  margin: 0.35rem 0 0;
  color: #666660;
}

.estimate-receipt__pending {
  display: grid;
  gap: 0.25rem;
  padding-top: 0.25rem;
  border-top: 1px dotted #aaa69b;
}

.estimate-receipt__pending strong {
  color: #8d1f16;
  font-size: 0.625rem;
  letter-spacing: 0.04em;
}

.estimate-receipt__pending p {
  margin: 0;
  font-size: 0.625rem;
  line-height: 1.3;
}

.estimate-receipt__error {
  color: #8d1f16 !important;
  font-weight: 800;
}

.estimate-receipt__barcode {
  width: 72%;
  height: 17px;
  margin: 0.4rem auto 0.15rem;
  background: repeating-linear-gradient(
    90deg,
    #191918 0 2px,
    transparent 2px 4px,
    #191918 4px 5px,
    transparent 5px 8px,
    #191918 8px 11px,
    transparent 11px 13px
  );
}

.estimate-receipt__number {
  display: block;
  font-size: 0.625rem;
  text-align: center;
}

.receipt-printer {
  position: absolute;
  z-index: 2;
  bottom: -0.2rem;
  left: 50%;
  width: min(100%, 390px);
  margin: 0;
  padding: 0 0.75rem 0.5rem;
  transform: translateX(-50%);
}

.receipt-printer::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: 12%;
  left: 12%;
  height: 34px;
  border: 3px solid #111110;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(#474743, #1c1c1b);
  box-shadow: inset 0 4px 0 rgb(255 255 255 / 18%);
  content: "";
}

.receipt-printer__slot {
  position: relative;
  z-index: 3;
  width: 76%;
  height: 20px;
  margin: 0 auto -3px;
  border: 3px solid #0d0d0c;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(#050505, #222220);
  box-shadow: inset 0 5px 0 #1f1f1d;
}

.receipt-printer__body {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  min-height: 138px;
  padding: 0.85rem 1rem 3.4rem;
  border: 3px solid #111110;
  border-radius: 9px 9px 20px 20px;
  background:
    linear-gradient(145deg, #f2f2ed 0 11%, #b8b8b0 11% 78%, #72726c 78%);
  box-shadow:
    inset 0 6px 0 rgb(255 255 255 / 55%),
    inset -5px -6px 0 rgb(31 31 31 / 22%),
    7px 8px 0 rgb(31 31 31 / 30%);
}

.receipt-printer__body::before {
  position: absolute;
  right: 0;
  bottom: 48px;
  left: 0;
  height: 3px;
  background: #252522;
  box-shadow: 0 2px 0 rgb(255 255 255 / 28%);
  content: "";
}

.receipt-printer__body::after {
  content: none;
}

.receipt-printer__body > span {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  padding: 0.35rem;
  border: 3px solid var(--graphite);
  background: var(--orange);
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
  text-align: center;
}

.receipt-printer__body > b {
  color: #2e2e2b;
  font-size: var(--font-body-xs);
  letter-spacing: 0.08em;
  text-shadow: 0 1px 0 rgb(255 255 255 / 55%);
}

.receipt-printer__feet {
  display: flex;
  justify-content: space-between;
  padding-inline: 1.6rem;
}

.receipt-printer__feet i {
  width: 38px;
  height: 10px;
  background: #181817;
}

.receipt-printer__lead {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.7rem;
  left: 1rem;
  min-height: 34px;
  padding: 0.35rem 0.7rem;
  border: 3px solid #262623;
  border-radius: 7px;
  background: var(--orange);
  box-shadow:
    inset 0 3px 0 rgb(255 255 255 / 24%),
    0 3px 0 #54544f;
  color: var(--graphite);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
}

.receipt-printer__lead:hover,
.receipt-printer__lead:focus-visible {
  background: var(--white);
  outline: 2px solid var(--graphite);
  outline-offset: 2px;
}

.receipt-printer__lead:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

@keyframes receipt-line-print {
  from {
    opacity: 0.2;
    clip-path: inset(100% 0 0);
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    clip-path: inset(0);
    transform: translateY(0);
  }
}

@keyframes receipt-thermal-line {
  0% {
    opacity: 0;
  }

  25%,
  75% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
  }
}

@keyframes promotion-pulse {
  50% {
    opacity: 0.45;
    transform: scale(0.78);
  }
}

@media (max-width: 920px) {
  .pricing-details__header {
    grid-template-columns: 1fr auto;
  }

  .pricing-details__promo-copy {
    grid-column: 1 / -1;
  }

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

  .pricing-preview article:nth-child(3) {
    border-left: 0;
  }

  .pricing-preview article:nth-child(n + 3) {
    border-top: 1px solid var(--border);
  }

  .pricing-conversion .estimate-builder {
    grid-template-columns: 1fr;
    height: auto;
  }

  .pricing-conversion
    .estimate-builder.estimate-builder--custom-packaging {
    height: auto;
  }

  .estimate-terminal,
  .receipt-station {
    min-height: 680px;
  }

  .estimate-terminal {
    height: auto;
    grid-template-rows: auto auto auto;
  }

  .estimate-terminal__screen {
    overflow: visible;
  }

  .receipt-station {
    padding-inline: clamp(1rem, 8vw, 5rem);
  }
}

@media (max-width: 680px) {
  .pricing-details {
    box-shadow: 4px 4px 0 var(--graphite);
  }

  .pricing-details__header {
    grid-template-columns: 1fr;
  }

  .pricing-details__promo {
    justify-self: start;
  }

  .pricing-details__promo-copy {
    grid-column: 1 / -1;
  }

  .pricing-details__promo-copy time {
    width: 100%;
  }

  .pricing-preview {
    grid-template-columns: 1fr;
  }

  .pricing-preview article + article,
  .pricing-preview article:nth-child(3) {
    border-top: 1px solid var(--border);
    border-left: 0;
  }

  .pricing-preview h4 {
    min-height: 0;
  }

  .pricing-details__toggle {
    justify-content: flex-start;
  }

  .pricing-details__toggle > span {
    flex: 1;
    text-align: center;
  }

  .pricing-conversion__calculator-label {
    display: grid;
    justify-content: stretch;
  }

  .pricing-conversion__calculator-label strong {
    font-size: clamp(1.65rem, 9vw, 2.4rem);
  }

  .pricing-conversion .estimate-builder {
    gap: 0.85rem;
    padding: 0.65rem;
    border-width: 2px;
    border-radius: 12px;
    box-shadow: 7px 7px 0 rgb(31 31 31 / 18%);
  }

  .estimate-terminal {
    padding: 0.7rem;
  }

  .estimate-terminal__screen {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    padding: 1rem;
  }

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

  .estimate-dimensions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .estimate-dimensions > label > span {
    font-size: 0.5625rem;
  }

  .estimate-fbs-included ul {
    grid-template-columns: 1fr;
  }

  .estimate-terminal__controls {
    grid-template-columns: 1fr;
  }

  .receipt-station {
    padding: 0.8rem;
  }

  .receipt-station__printer-stage {
    min-height: 640px;
  }

  .estimate-receipt {
    bottom: 178px;
    width: calc(100% - 0.75rem);
    max-width: 258px;
    max-height: calc(100% - 178px);
    padding-inline: 1rem;
  }

  .estimate-receipt__parameter {
    grid-template-columns: minmax(68px, 0.7fr) minmax(100px, 1.3fr);
  }

  .receipt-printer__body {
    min-height: 132px;
    padding-bottom: 3.3rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .estimate-receipt {
    transition: none;
  }

  .receipt-line--printing,
  .estimate-receipt[data-printing="true"]::after {
    animation: none;
  }
}

/* trust-legal.css */
.trust-gallery {
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--border);
  background: var(--graphite);
  color: var(--white);
}

.trust-gallery__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: 2rem;
  align-items: end;
}

.trust-gallery .section-eyebrow {
  color: var(--orange);
}

.trust-gallery__heading h2 {
  max-width: 820px;
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.trust-gallery__heading > p {
  max-width: 480px;
  margin: 0;
  color: #c9c9c5;
  line-height: 1.6;
}

.trust-gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2rem;
}

.trust-gallery figure {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid #545451;
  background: #292927;
}

.trust-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-gallery figcaption {
  position: absolute;
  right: 0.75rem;
  bottom: 0.75rem;
  left: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-left: 3px solid var(--orange);
  background: rgb(31 31 31 / 88%);
  color: var(--white);
  font-size: var(--font-body-xs);
  font-weight: 700;
}

.faq-focused {
  padding: var(--section-space) 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.faq-focused__layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.64fr) minmax(0, 1.36fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.faq-focused__heading {
  position: sticky;
  top: 100px;
}

.faq-focused h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.faq-focused__heading > p:last-child {
  max-width: 430px;
  margin: 1.25rem 0 0;
  color: var(--system-gray);
  line-height: 1.6;
}

.faq-focused__list {
  border-top: 2px solid var(--graphite);
}

.faq-focused details {
  border-bottom: 1px solid var(--border);
}

.faq-focused summary {
  display: grid;
  grid-template-columns: 2.15rem 1fr;
  gap: 0.8rem;
  min-height: 58px;
  align-items: center;
  padding: 0.7rem 0.2rem;
  cursor: pointer;
  list-style-position: inside;
}

.faq-focused summary span {
  color: var(--orange-dark);
  font-family: var(--font-display);
  font-size: var(--font-display-xs);
  font-weight: 800;
}

.faq-focused summary strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  line-height: 1.2;
}

.faq-focused details > p {
  max-width: 680px;
  margin: 0;
  padding: 0 0.75rem 1rem 3rem;
  color: var(--system-gray);
  font-size: var(--font-body-sm);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .trust-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .faq-focused__layout {
    grid-template-columns: 1fr;
  }

  .faq-focused__heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .trust-gallery,
  .faq-focused {
    padding: var(--section-space-mobile) 0;
  }

  .trust-gallery__heading,
  .trust-gallery__heading {
    grid-template-columns: 1fr;
  }

  .trust-gallery__grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .trust-gallery figure {
    width: min(82vw, 340px);
    flex: 0 0 min(82vw, 340px);
    aspect-ratio: 3 / 2;
    scroll-snap-align: start;
  }

  .faq-focused summary {
    grid-template-columns: 1.75rem 1fr;
    min-height: 54px;
  }

  .faq-focused details > p {
    padding-left: 2.55rem;
  }
}

.legal-footer {
  padding: 3.5rem 0 1.5rem;
  background: var(--graphite);
  color: var(--white);
}

.legal-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1fr) minmax(
      300px,
      1fr
    );
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.legal-footer__brand img {
  width: 154px;
  height: 50px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) invert(1);
}

.legal-footer__brand p {
  max-width: 300px;
  margin: 1rem 0 0;
  color: #b8b8b3;
  font-size: var(--font-body-sm);
  line-height: 1.55;
}

.legal-footer__contacts,
.legal-footer__links {
  display: grid;
  gap: 0.75rem;
  font-style: normal;
}

.legal-footer__contacts a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  font-weight: 800;
  text-decoration: none;
}

.legal-footer__contacts span {
  color: #b8b8b3;
  font-size: var(--font-body-sm);
  line-height: 1.5;
}

.legal-footer__links a,
.legal-footer__cookie-settings {
  color: var(--white);
  font-size: var(--font-body-sm);
  line-height: 1.4;
  text-underline-offset: 0.2em;
}

.legal-footer__cookie-settings {
  justify-self: start;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  cursor: pointer;
}

.legal-footer__operator,
.legal-footer__bottom {
  display: flex;
  gap: 0.5rem 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid #545451;
  color: #b8b8b3;
  font-size: var(--font-body-xs);
}

.legal-footer__dev-warning {
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  border-left: 4px solid var(--orange);
  background: #292927;
  color: #d7d7d3;
  font-size: var(--font-body-xs);
}

.legal-footer__bottom {
  justify-content: space-between;
}

.legal-dialog__backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  justify-items: end;
  background: rgb(0 0 0 / 64%);
}

.legal-dialog {
  width: min(760px, 100%);
  height: 100%;
  padding: clamp(1.25rem, 4vw, 3rem);
  overflow-y: auto;
  background: var(--white);
  color: var(--graphite);
  box-shadow: -12px 0 0 var(--orange);
}

.legal-dialog__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.legal-dialog__top p {
  margin: 0;
  color: var(--orange-dark);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.legal-dialog__top button {
  min-height: 44px;
  padding: 0.55rem 0.85rem;
  border: 1px solid var(--graphite);
  border-radius: var(--radius-control);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
}

.legal-dialog > h2 {
  margin: 2rem 0 0;
  font-family: var(--font-display);
  font-size: var(--font-display-md);
  letter-spacing: -0.05em;
  line-height: 1;
}

.legal-dialog__warning {
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 5px solid #a0271d;
  background: #fff0ee;
}

.legal-dialog__warning p {
  margin: 0.35rem 0 0;
  font-size: var(--font-body-sm);
  line-height: 1.5;
}

.legal-dialog__content {
  display: grid;
  gap: 2rem;
  margin-top: 2.5rem;
}

.legal-dialog__content section {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.legal-dialog__content h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
}

.legal-dialog__content p {
  margin: 0.75rem 0 0;
  color: #4e4e4b;
  line-height: 1.65;
}

@media (max-width: 780px) {
  .legal-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .legal-dialog {
    box-shadow: none;
  }
}

/* cookies.css */
.cookie-manifest {
  position: fixed;
  z-index: 90;
  right: clamp(0.75rem, 2vw, 1.5rem);
  bottom: clamp(0.75rem, 2vw, 1.5rem);
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) 18px;
  width: min(680px, calc(100vw - 1.5rem));
  border: 2px solid var(--graphite);
  border-radius: 10px;
  overflow: hidden;
  background: #fffdf7;
  box-shadow: 10px 10px 0 rgb(31 31 31 / 24%);
}

.cookie-manifest__ticket {
  display: grid;
  align-content: space-between;
  padding: 1rem 0.7rem;
  border-right: 1px dashed var(--graphite);
  background: var(--orange);
  font-family: var(--font-display);
  font-size: var(--font-display-xs);
}

.cookie-manifest__ticket span {
  font-size: var(--font-display-xs);
  letter-spacing: 0.12em;
}

.cookie-manifest__ticket strong {
  font-size: var(--font-display-sm);
  letter-spacing: -0.08em;
  writing-mode: vertical-rl;
}

.cookie-manifest__body {
  min-width: 0;
  padding: 1rem 1.15rem;
}

.cookie-manifest__heading {
  display: grid;
  gap: 0.15rem;
}

.cookie-manifest__heading > span {
  color: var(--orange-dark);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
}

.cookie-manifest__heading > strong {
  font-family: var(--font-display);
  font-size: var(--font-display-sm);
  line-height: 1.15;
}

.cookie-manifest__body > p {
  margin: 0.55rem 0 0;
  color: var(--system-gray);
  font-size: var(--font-body-sm);
  line-height: 1.45;
}

.cookie-manifest__body a {
  color: var(--graphite);
  font-weight: 700;
  text-underline-offset: 0.18em;
}

.cookie-manifest__settings {
  display: grid;
  margin-top: 0.8rem;
  border-top: 1px solid var(--border);
}

.cookie-manifest__settings label {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
}

.cookie-manifest__settings span {
  display: grid;
  gap: 0.1rem;
}

.cookie-manifest__settings strong {
  font-size: var(--font-body-sm);
}

.cookie-manifest__settings small {
  color: var(--system-gray);
  font-size: var(--font-body-xs);
}

.cookie-manifest__settings input {
  width: 38px;
  height: 22px;
  accent-color: var(--orange);
}

.cookie-manifest__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.cookie-manifest__actions button {
  min-height: 38px;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--graphite);
  border-radius: 5px;
  background: transparent;
  cursor: pointer;
  font-size: var(--font-body-xs);
  font-weight: 800;
}

.cookie-manifest__actions .cookie-manifest__accept {
  background: var(--orange);
}

.cookie-manifest__actions .cookie-manifest__settings-save {
  background: var(--graphite);
  color: var(--white);
}

.cookie-manifest__barcode {
  opacity: 0.62;
  background: repeating-linear-gradient(
    90deg,
    var(--graphite) 0 2px,
    transparent 2px 4px,
    var(--graphite) 4px 5px,
    transparent 5px 8px
  );
}

@media (max-width: 620px) {
  .cookie-manifest {
    grid-template-columns: 44px minmax(0, 1fr) 10px;
  }

  .cookie-manifest__ticket {
    padding-inline: 0.45rem;
  }

  .cookie-manifest__ticket strong {
    font-size: var(--font-display-sm);
  }

  .cookie-manifest__body {
    padding: 0.9rem;
  }

  .cookie-manifest__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* promotion.css */
.promotion-modal {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  overflow: auto;
  background:
    linear-gradient(90deg, rgb(255 255 255 / 5%) 1px, transparent 1px),
    linear-gradient(rgb(255 255 255 / 5%) 1px, transparent 1px),
    rgb(18 18 17 / 96%);
  background-size: 26px 26px;
  animation: promotion-backdrop-in 240ms ease-out both;
}

.promotion-modal__dialog {
  position: relative;
  display: grid;
  width: min(1040px, 100%);
  min-height: min(660px, calc(100svh - 2rem));
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, 0.72fr);
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 4px solid var(--graphite);
  background: var(--white);
  box-shadow:
    14px 14px 0 var(--orange),
    0 30px 90px rgb(0 0 0 / 48%);
  animation: promotion-dialog-in 420ms cubic-bezier(0.2, 0.85, 0.25, 1) both;
}

.promotion-modal__masthead {
  display: flex;
  min-height: 88px;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem 0.85rem 1.25rem;
  border-bottom: 4px solid var(--graphite);
  background:
    repeating-linear-gradient(
      0deg,
      rgb(255 255 255 / 7%) 0 1px,
      transparent 1px 7px
    ),
    var(--graphite);
  color: var(--white);
}

.promotion-modal__identity {
  display: flex;
  min-width: 0;
  gap: 1rem;
  align-items: center;
}

.promotion-modal__identity > span {
  display: grid;
  width: 58px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--white);
  background: var(--orange);
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: -0.08em;
}

.promotion-modal__identity > b {
  font-size: var(--font-body-xs);
  letter-spacing: 0.16em;
  line-height: 1.35;
}

.promotion-modal__close {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 3px solid var(--white);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.promotion-modal__close span {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 0.8;
  transform: translateY(-2px);
}

.promotion-modal__close:hover,
.promotion-modal__close:focus-visible {
  border-color: var(--graphite);
  background: var(--orange);
  color: var(--graphite);
}

.promotion-modal__copy {
  display: grid;
  min-width: 0;
  align-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
  background:
    linear-gradient(90deg, rgb(31 31 31 / 7%) 1px, transparent 1px),
    var(--orange);
  background-size: 20px 20px;
}

.promotion-modal__copy > p:first-child,
.promotion-modal__action > p {
  margin: 0;
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.13em;
}

.promotion-modal__copy > strong {
  margin-top: clamp(1.25rem, 3vw, 2.25rem);
  font-family: var(--font-display);
  font-size: clamp(6rem, 12vw, 10rem);
  letter-spacing: -0.11em;
  line-height: 0.68;
  text-shadow: 6px 6px 0 rgb(255 255 255 / 36%);
}

.promotion-modal__copy > strong sup {
  margin-left: 0.08em;
  font-family: var(--font-body);
  font-size: 0.25em;
  letter-spacing: 0;
  vertical-align: top;
}

.promotion-modal__copy h2 {
  max-width: 560px;
  margin: clamp(1.25rem, 3vw, 2rem) 0 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.promotion-modal__copy > p:last-child {
  max-width: 560px;
  margin: 1.15rem 0 0;
  font-weight: 600;
  line-height: 1.55;
}

.promotion-modal__action {
  display: grid;
  min-width: 0;
  gap: 1.1rem;
  align-content: center;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-left: 4px solid var(--graphite);
  background:
    repeating-linear-gradient(
      0deg,
      rgb(31 31 31 / 3%) 0 1px,
      transparent 1px 6px
    ),
    #fffdf7;
}

.promotion-modal__action > p {
  color: var(--orange-dark);
}

.promotion-modal__action time {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 3px solid var(--graphite);
  background: var(--graphite);
  color: var(--white);
}

.promotion-modal__action time > span {
  color: var(--orange);
  font-size: var(--font-body-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
}

.promotion-countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  font-variant-numeric: tabular-nums;
}

.promotion-countdown > span {
  display: grid;
  min-width: 0;
  gap: 0.25rem;
  justify-items: center;
  padding: 0.6rem 0.25rem 0.5rem;
  border: 1px solid #575753;
  background: #292927;
}

.promotion-countdown b {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.2vw, 1.8rem);
  letter-spacing: -0.05em;
  line-height: 1;
}

.promotion-countdown small {
  color: #b7b7b1;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
}

.promotion-countdown.is-expired {
  display: block;
  padding: 0.75rem;
  border: 1px solid #575753;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1.25rem;
  text-align: center;
}

.promotion-modal__action .button-primary {
  width: 100%;
  min-height: 58px;
}

.promotion-modal__action small {
  color: var(--system-gray);
  line-height: 1.45;
}

@media (max-width: 760px) {
  .promotion-modal {
    display: block;
    padding: 0;
  }

  .promotion-modal__dialog {
    width: 100%;
    min-height: 100svh;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    border: 0;
    box-shadow: none;
  }

  .promotion-modal__masthead {
    min-height: 78px;
    grid-column: auto;
    border-bottom-width: 3px;
  }

  .promotion-modal__identity > span {
    width: 50px;
    border-width: 2px;
    font-size: 1.55rem;
  }

  .promotion-modal__identity > b {
    letter-spacing: 0.1em;
  }

  .promotion-modal__copy {
    align-content: start;
    padding: 1.6rem 1rem 1.5rem;
  }

  .promotion-modal__copy > strong {
    margin-top: 1.35rem;
    font-size: clamp(5rem, 27vw, 7rem);
  }

  .promotion-modal__copy h2 {
    margin-top: 1rem;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .promotion-modal__copy > p:last-child {
    margin-top: 0.9rem;
    font-size: var(--font-body-sm);
  }

  .promotion-modal__action {
    align-content: start;
    padding: 1.35rem 1rem 1.5rem;
    border-top: 3px solid var(--graphite);
    border-left: 0;
  }
}

@media (max-width: 420px) {
  .promotion-countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  .promotion-modal,
  .promotion-modal__dialog {
    animation: none;
  }
}

@keyframes promotion-backdrop-in {
  from {
    opacity: 0;
  }
}

@keyframes promotion-dialog-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
}

/* responsive.css */
@media (max-width: 767px) {
  .section-shell {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  [id] {
    scroll-margin-top: 72px;
  }

  .south-gate__route,
  .yandex-map__fallback a {
    width: 100%;
  }

  .pricing-conversion .estimate-builder,
  .lead-form {
    min-width: 0;
  }

  .legal-footer__links a {
    max-width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .conveyor-process__sticky {
    height: min(78vh, 680px);
  }

  .conveyor-detail {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .conveyor-detail dl,
  .conveyor-detail__controls {
    grid-column: 2;
  }

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

@media (min-width: 1100px) {
  .site-navigation {
    min-width: 0;
  }
}

/* motion.css */
button,
a,
input,
select,
summary {
  transition:
    border-color var(--motion-fast) ease,
    background-color var(--motion-fast) ease,
    color var(--motion-fast) ease,
    box-shadow var(--motion-fast) ease;
}

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

  button,
  a,
  input,
  select,
  summary,
  .conveyor-cargo {
    transition: none !important;
  }

  .conveyor-process__sticky,
  .faq-focused__heading,
  .pricing-conversion .estimate-builder {
    position: static !important;
  }

  .conveyor-cargo {
    transform: none !important;
  }

  .marketplace-ribbon__track,
  .estimate-receipt,
  .conveyor-stages button,
  .conveyor-detail {
    animation: none !important;
  }

}
