/* Shared light/dark theme for niki-losk.ru. The default is light. */
:root,
html[data-theme="light"] {
  color-scheme: light;
  --bg: #ffffff;
  --text: #181817;
  --muted: #686762;
  --line: #e5e1d7;
  --card: #fcfcfa;
  --thumb: #e8e5dc;
  --accent: #c8a24a;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #0f0f0f;
  --text: #f4f2ed;
  --muted: #b7b4ac;
  --line: #33312d;
  --card: #1a1a19;
  --thumb: #34332f;
  --accent: #d5b15a;
}

.theme-toggle {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  width: 66px;
  height: 34px;
  margin: 0;
  padding: 0 7px;
  overflow: hidden;
  border: 1px solid #ded9cd;
  border-radius: 999px;
  background: #ffffff;
  color: #282722;
  box-shadow: 0 3px 10px rgba(17, 17, 17, 0.06);
  cursor: pointer;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgba(213, 177, 90, 0.85);
  outline: none;
}

.theme-toggle-icon {
  z-index: 1;
  display: inline-flex;
  width: 16px;
  height: 16px;
}

.theme-toggle-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.theme-toggle-thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #f7e7ad;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.18s ease, background-color 0.18s ease;
}

html[data-theme="dark"] .theme-toggle-thumb {
  transform: translateX(30px);
  background: #d0b367;
}

html[data-theme="dark"] .theme-toggle {
  border-color: rgba(255, 255, 255, 0.2);
  background: #151515;
  color: #f6f3e9;
  box-shadow: none;
}

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

/* The personal-site surface uses older hard-coded dark values. */
html[data-theme="light"] body:not(.fulfillment-body) .link-group,
html[data-theme="light"] body:not(.fulfillment-body) .links a,
html[data-theme="light"] body:not(.fulfillment-body) .contacts a,
html[data-theme="light"] body:not(.fulfillment-body) .button,
html[data-theme="light"] body:not(.fulfillment-body) .video-section .card,
html[data-theme="light"] body:not(.fulfillment-body) #cases .card,
html[data-theme="light"] body:not(.fulfillment-body) #projects .card {
  background: var(--card);
}

html[data-theme="light"] .blog-card-cover,
html[data-theme="light"] .thumb {
  color: #77736a;
}

/* The black top navigation remains readable in both themes. */
.site-contact-bar .site-primary-links a,
.site-contact-bar .site-contact-links a {
  color: #f5f3ed;
}

.site-contact-bar .theme-toggle {
  margin-left: 2px;
}

/* Fulfillment: variables and explicit component surfaces for dark mode. */
html[data-theme="dark"] .fulfillment-body {
  --color-bg: #111111;
  --color-text: #f4f2ed;
  --color-muted: #bab7af;
  --color-soft: #1b1b1a;
  --color-soft-strong: #262522;
  --color-border: #3a3833;
  --color-card: #1a1a19;
  --color-accent: #d0aa52;
  --color-accent-dark: #e2bf6b;
  --color-dark: #fbfaf6;
  --f-accent-soft: #30291b;
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 18px 44px rgba(0, 0, 0, 0.28);
  --button-primary-bg: #d0aa52;
  --button-primary-hover: #e2bf6b;
  --button-primary-text: #171510;
  --button-secondary-bg: #262521;
  --button-secondary-hover: #302f2a;
  --button-secondary-text: #f4f2ed;
  --button-secondary-border: #4a4841;
}

html[data-theme="light"] .fulfillment-body {
  --button-primary-bg: #1c1c1a;
  --button-primary-hover: #35342f;
  --button-primary-text: #ffffff;
  --button-secondary-bg: #ffffff;
  --button-secondary-hover: #f4f1e9;
  --button-secondary-text: #1c1c1a;
  --button-secondary-border: #ded9cd;
}

html[data-theme="dark"] .fulfillment-header {
  background: rgba(17, 17, 17, 0.96);
}

.fulfillment-header .theme-toggle {
  align-self: flex-start;
  margin-top: 2px;
}

/* Buttons use theme variables instead of a fixed white label. */
.fulfillment-body .button,
.fulfillment-body .fulfillment-button {
  border-color: var(--button-primary-bg) !important;
  background: var(--button-primary-bg) !important;
  color: var(--button-primary-text) !important;
}

.fulfillment-body .button:hover,
.fulfillment-body .button:focus-visible,
.fulfillment-body .fulfillment-button:hover,
.fulfillment-body .fulfillment-button:focus-visible {
  border-color: var(--button-primary-hover) !important;
  background: var(--button-primary-hover) !important;
  color: var(--button-primary-text) !important;
}

.fulfillment-body .button.button-secondary,
.fulfillment-body .fulfillment-button.fulfillment-button-secondary,
.fulfillment-body .blog-card-read {
  border-color: var(--button-secondary-border) !important;
  background: var(--button-secondary-bg) !important;
  color: var(--button-secondary-text) !important;
}

.fulfillment-body .button.button-secondary:hover,
.fulfillment-body .button.button-secondary:focus-visible,
.fulfillment-body .fulfillment-button.fulfillment-button-secondary:hover,
.fulfillment-body .fulfillment-button.fulfillment-button-secondary:focus-visible,
.fulfillment-body .blog-card-link:hover .blog-card-read,
.fulfillment-body .blog-card-link:focus-visible .blog-card-read {
  border-color: var(--color-accent) !important;
  background: var(--button-secondary-hover) !important;
  color: var(--button-secondary-text) !important;
}

html[data-theme="dark"] .fulfillment-body .price-card,
html[data-theme="dark"] .fulfillment-body .feature-list li,
html[data-theme="dark"] .fulfillment-body .fulfillment-rich-card,
html[data-theme="dark"] .fulfillment-body .pill,
html[data-theme="dark"] .fulfillment-body .fulfillment-steps span,
html[data-theme="dark"] .fulfillment-body .faq-item,
html[data-theme="dark"] .fulfillment-body .fulfillment-faq-item,
html[data-theme="dark"] .fulfillment-body .form-card,
html[data-theme="dark"] .fulfillment-body .fulfillment-form,
html[data-theme="dark"] .fulfillment-body .fulfillment-footer-links a,
html[data-theme="dark"] .fulfillment-body .blog-card,
html[data-theme="dark"] .fulfillment-body .blog-article-summary,
html[data-theme="dark"] .fulfillment-body .blog-article-links,
html[data-theme="dark"] .fulfillment-body .blog-article-cta {
  background: var(--color-card);
}

html[data-theme="dark"] .fulfillment-body .fulfillment-calculator-result {
  background: linear-gradient(180deg, #201f1c 0%, var(--f-accent-soft) 100%);
}

.fulfillment-footer-legal {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-soft);
}

.fulfillment-footer-legal-title,
.fulfillment-footer-legal-company {
  margin: 0;
  color: var(--color-text) !important;
}

.fulfillment-footer-legal-title {
  color: var(--color-accent-dark) !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-footer-legal-company {
  font-size: 14px !important;
  font-weight: 700 !important;
}

.fulfillment-footer-legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin: 0;
}

.fulfillment-footer-legal-list div {
  display: flex;
  gap: 6px;
}

.fulfillment-footer-legal-list dt,
.fulfillment-footer-legal-list dd {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.5;
}

.fulfillment-footer-legal-list dt {
  font-weight: 700;
}

.fulfillment-footer-legal-list dd {
  color: var(--color-text);
}

html[data-theme="dark"] .fulfillment-footer-legal {
  border-color: var(--color-border);
  background: var(--color-card);
}

@media (max-width: 720px) {
  .fulfillment-footer-legal {
    padding: 16px;
  }

  .fulfillment-footer-legal-list {
    display: grid;
    gap: 4px;
  }
}

html[data-theme="dark"] .fulfillment-body .fulfillment-field input,
html[data-theme="dark"] .fulfillment-body .fulfillment-field textarea,
html[data-theme="dark"] .fulfillment-body .fulfillment-field select,
html[data-theme="dark"] .fulfillment-body .blog-comments-field input,
html[data-theme="dark"] .fulfillment-body .blog-comments-field textarea {
  background: #252421;
  color: var(--f-text);
}

html[data-theme="dark"] .fulfillment-body .button-secondary,
html[data-theme="dark"] .fulfillment-body .fulfillment-button-secondary,
html[data-theme="dark"] .fulfillment-body .blog-card-read,
html[data-theme="dark"] .fulfillment-body .fulfillment-body-blog-post .blog-article-links .pill {
  background: #262521;
  color: var(--f-text);
}

html[data-theme="dark"] .fulfillment-body .blog-card-image,
html[data-theme="dark"] .fulfillment-body .blog-card-image-placeholder,
html[data-theme="dark"] .fulfillment-body .blog-article-hero-image,
html[data-theme="dark"] .fulfillment-body .blog-article-image-placeholder,
html[data-theme="dark"] .fulfillment-body .blog-article-hero-placeholder {
  border-color: rgba(255, 255, 255, 0.08);
  background-color: #2c2b28;
}

html[data-theme="dark"] .fulfillment-body .blog-card-title,
html[data-theme="dark"] .fulfillment-body .blog-article-title,
html[data-theme="dark"] .fulfillment-body .blog-article-section h2,
html[data-theme="dark"] .fulfillment-body .blog-article-summary h2,
html[data-theme="dark"] .fulfillment-body .blog-article-cta h2,
html[data-theme="dark"] .fulfillment-body .blog-comments-title,
html[data-theme="dark"] .fulfillment-body .blog-comment-author {
  color: var(--f-text);
}

html[data-theme="dark"] .fulfillment-body .blog-card-description,
html[data-theme="dark"] .fulfillment-body .blog-card-date,
html[data-theme="dark"] .fulfillment-body .blog-article-meta-item,
html[data-theme="dark"] .fulfillment-body .blog-article-lead,
html[data-theme="dark"] .fulfillment-body .blog-article-section p,
html[data-theme="dark"] .fulfillment-body .blog-article-cta p,
html[data-theme="dark"] .fulfillment-body .blog-article-disclaimer,
html[data-theme="dark"] .fulfillment-body .blog-article-list,
html[data-theme="dark"] .fulfillment-body .blog-comment-text,
html[data-theme="dark"] .fulfillment-body .blog-comments-empty {
  color: var(--f-muted);
}

html[data-theme="dark"] .fulfillment-body .blog-card-badge {
  border-color: rgba(226, 191, 107, 0.26);
  background: rgba(208, 170, 82, 0.16);
  color: #e5c978;
}

@media (max-width: 760px) {
  .site-contact-bar .theme-toggle {
    position: absolute;
    top: 10px;
    right: 12px;
  }

  .fulfillment-header .theme-toggle {
    margin-top: 0;
  }
}

/* Compact hero and services overview on the fulfillment home page. */
.fulfillment-section-hero {
  min-height: min(76svh, 760px);
  padding-top: 54px;
  padding-bottom: 54px;
}

.fulfillment-section-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-hero-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 360px);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.fulfillment-hero-content-primary {
  min-width: 0;
}

.fulfillment-section-hero .section-title {
  max-width: 18ch;
  font-size: clamp(42px, 5vw, 64px);
  animation: fulfillment-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-section-hero .section-description {
  max-width: 700px;
  margin-top: 16px;
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.58;
  animation: fulfillment-hero-enter 0.62s 0.08s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-section-hero .fulfillment-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: none;
  gap: 12px;
  margin-top: 26px;
}

.fulfillment-section-hero .fulfillment-list li {
  min-height: 0;
  padding: 15px 16px;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.45;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, background-color 0.22s ease;
  animation: fulfillment-hero-enter 0.54s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-section-hero .fulfillment-list li:nth-child(1) {
  animation-delay: 0.16s;
}

.fulfillment-section-hero .fulfillment-list li:nth-child(2) {
  animation-delay: 0.22s;
}

.fulfillment-section-hero .fulfillment-list li:nth-child(3) {
  animation-delay: 0.28s;
}

.fulfillment-section-hero .fulfillment-list li:nth-child(4) {
  animation-delay: 0.34s;
}

.fulfillment-section-hero .fulfillment-list li:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
}

.fulfillment-section-hero .fulfillment-actions {
  margin-top: 24px;
}

.fulfillment-section-hero .fulfillment-actions .fulfillment-button {
  animation: fulfillment-hero-enter 0.56s 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-section-hero .fulfillment-actions .fulfillment-button + .fulfillment-button {
  animation-delay: 0.5s;
}

.fulfillment-hero-typing {
  display: grid;
  align-content: start;
  min-height: 250px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-hero-card-enter 0.72s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
  transition: transform 0.26s ease, box-shadow 0.26s ease, border-color 0.26s ease;
}

.fulfillment-hero-typing:hover {
  transform: translateY(-3px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.fulfillment-hero-typing-kicker,
.fulfillment-hero-typing-label,
.fulfillment-hero-typing-text,
.fulfillment-hero-typing-note {
  margin: 0;
}

.fulfillment-hero-typing-kicker {
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-hero-typing-label {
  margin-top: 22px;
  color: var(--color-muted);
  font-size: 14px;
  font-weight: 700;
}

.fulfillment-hero-typing-text {
  min-height: 5.1em;
  margin-top: 10px;
  color: var(--color-dark);
  font-size: clamp(23px, 2.4vw, 30px);
  font-weight: 800;
  line-height: 1.33;
  letter-spacing: -0.035em;
}

.fulfillment-hero-typing-cursor {
  display: inline-block;
  margin-left: 2px;
  color: var(--color-accent-dark);
  animation: fulfillment-hero-cursor-blink 0.9s steps(1) infinite;
}

.fulfillment-hero-typing-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

@keyframes fulfillment-hero-cursor-blink {
  50% {
    opacity: 0;
  }
}

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

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

@keyframes fulfillment-hero-card-enter {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.985);
  }

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

/* Hero flow: a compact warehouse conveyor with visible stages, not a decorative line. */
.fulfillment-hero-flow {
  width: 100%;
  max-width: 1120px;
  margin-top: clamp(42px, 5vw, 62px);
  animation: fulfillment-hero-enter 0.7s 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-hero-flow-track {
  position: relative;
  height: 142px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  background: var(--color-soft);
}

.fulfillment-hero-flow-track::before,
.fulfillment-hero-flow-track::after {
  position: absolute;
  z-index: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--color-border);
  content: "";
}

.fulfillment-hero-flow-track::before {
  top: 25px;
}

.fulfillment-hero-flow-track::after {
  bottom: 25px;
}

.fulfillment-hero-flow-lane {
  position: absolute;
  top: 31px;
  right: 0;
  left: 0;
  z-index: 0;
  height: 80px;
  border-radius: 0;
  background-image: radial-gradient(circle, var(--color-muted) 1.5px, transparent 1.8px), radial-gradient(circle, var(--color-muted) 1.5px, transparent 1.8px);
  background-position: 0 7px, 9px 66px;
  background-repeat: repeat-x;
  background-size: 18px 18px;
  opacity: 0.45;
  animation: fulfillment-hero-conveyor-dots 16s ease-in-out infinite;
}

.fulfillment-hero-flow-lane::before,
.fulfillment-hero-flow-lane::after {
  position: absolute;
  right: 20%;
  width: 1px;
  height: 43px;
  background: var(--color-border);
  content: "";
  transform-origin: top;
}

.fulfillment-hero-flow-lane::before {
  top: 7px;
  transform: rotate(38deg);
}

.fulfillment-hero-flow-lane::after {
  bottom: 7px;
  transform: rotate(-38deg);
}

.fulfillment-hero-box {
  position: absolute;
  z-index: 3;
  top: 52px;
  left: -70px;
  display: block;
  width: 58px;
  height: 44px;
  border: 2px solid #9c762c;
  border-radius: 5px;
  background: #d3b363;
  box-shadow: 0 4px 10px rgba(30, 25, 14, 0.2);
  will-change: left, top, opacity, transform;
}

.fulfillment-hero-box::before,
.fulfillment-hero-box::after {
  position: absolute;
  display: block;
  background: rgba(71, 54, 25, 0.58);
  content: "";
}

.fulfillment-hero-box::before {
  top: -2px;
  bottom: -2px;
  left: calc(50% - 3px);
  width: 6px;
}

.fulfillment-hero-box::after {
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
}

.fulfillment-hero-box-seal {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: calc(50% - 3px);
  width: 6px;
  background: rgba(71, 54, 25, 0.58);
}

.fulfillment-hero-box-lid {
  position: absolute;
  z-index: 1;
  top: 46px;
  left: 35%;
  width: 58px;
  height: 18px;
  border: 2px solid #9c762c;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: #dfc178;
  box-shadow: 0 -2px 4px rgba(30, 25, 14, 0.08);
  transform-origin: bottom center;
}

.fulfillment-hero-box-check {
  position: absolute;
  z-index: 4;
  top: -15px;
  right: -13px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid #278a52;
  border-radius: 50%;
  background: var(--color-card);
  box-shadow: 0 0 0 4px rgba(39, 138, 82, 0.14);
  color: #278a52;
  font-size: 15px;
  font-weight: 900;
  opacity: 0;
}

.fulfillment-hero-box-item {
  position: absolute;
  z-index: 2;
  top: 56px;
  left: calc(35% + 18px);
  width: 22px;
  height: 24px;
  border: 1px solid var(--color-text);
  border-radius: 4px;
  background: var(--color-card);
  opacity: 0;
}

.fulfillment-hero-box-one {
  animation: fulfillment-hero-box-flow 16s ease-in-out infinite;
}

.fulfillment-hero-box-one .fulfillment-hero-box-check {
  animation: fulfillment-hero-box-checkmark 16s ease-in-out infinite;
}

.fulfillment-hero-box-lid {
  animation: fulfillment-hero-box-lid 16s ease-in-out infinite;
}

.fulfillment-hero-box-item {
  animation: fulfillment-hero-box-item 16s ease-in-out infinite;
}

.fulfillment-hero-box-one .fulfillment-hero-box-seal {
  animation: fulfillment-hero-box-seal 16s ease-in-out infinite;
}

.fulfillment-hero-flow-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.fulfillment-hero-flow-steps li {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 8px;
  color: var(--color-text);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  text-align: center;
}

@keyframes fulfillment-hero-conveyor-dots {
  0%, 4% { background-position: 0 7px, 9px 66px; }
  10%, 24% { background-position: 26px 7px, 35px 66px; }
  30%, 42% { background-position: 52px 7px, 61px 66px; }
  48%, 68% { background-position: 78px 7px, 87px 66px; }
  74%, 90% { background-position: 104px 7px, 113px 66px; }
  100% { background-position: 144px 7px, 153px 66px; }
}

@keyframes fulfillment-hero-box-flow {
  0%, 4% { opacity: 0; left: -70px; top: 48px; transform: scale(0.85); }
  10%, 24% { opacity: 1; left: 10%; top: 48px; transform: scale(1); }
  30%, 42% { opacity: 1; left: 35%; top: 48px; transform: scale(1); }
  48%, 68% { opacity: 1; left: 59%; top: 48px; transform: scale(1); }
  74%, 90% { opacity: 1; left: 83%; top: 48px; transform: scale(1); }
  100% { opacity: 0; left: calc(100% + 20px); top: 48px; transform: scale(0.9); }
}

@keyframes fulfillment-hero-box-checkmark {
  0%, 10%, 70%, 100% { opacity: 0; transform: scale(0.6); }
  14%, 21% { opacity: 1; transform: scale(1); }
  26% { opacity: 0; transform: scale(0.7); }
  79%, 88% { opacity: 1; transform: scale(1); }
  92% { opacity: 0; transform: scale(0.7); }
}

@keyframes fulfillment-hero-box-lid {
  0%, 29%, 100% { opacity: 0; left: 35%; transform: translateY(0) rotate(0); }
  32% { opacity: 1; left: 35%; transform: translateY(0) rotate(0); }
  36%, 42% { opacity: 1; left: 35%; transform: translateY(-38px) rotate(-10deg); }
  48% { opacity: 1; left: 59%; transform: translateY(-38px) rotate(-10deg); }
  55% { opacity: 1; left: 59%; transform: translateY(0) rotate(0); }
  63% { opacity: 0; left: 59%; transform: translateY(0) rotate(0); }
}

@keyframes fulfillment-hero-box-item {
  0%, 30%, 100% { opacity: 0; left: calc(35% + 18px); transform: translateY(8px); }
  36%, 42% { opacity: 1; left: calc(35% + 18px); transform: translateY(-34px); }
  48% { opacity: 1; left: calc(59% + 18px); transform: translateY(-34px); }
  55% { opacity: 1; left: calc(59% + 18px); transform: translateY(5px); }
  63% { opacity: 0; left: calc(59% + 18px); transform: translateY(8px); }
}

@keyframes fulfillment-hero-box-seal {
  0%, 57%, 100% { opacity: 0; transform: scaleY(0.4); }
  63%, 72% { opacity: 0.72; transform: scaleY(1); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-hero-box {
    animation: none;
  }

  .fulfillment-hero-box-check,
  .fulfillment-hero-box-item,
  .fulfillment-hero-box-lid,
  .fulfillment-hero-box-one .fulfillment-hero-box-seal,
  .fulfillment-hero-flow-lane {
    animation: none;
  }

  .fulfillment-section-hero .section-title,
  .fulfillment-section-hero .section-description,
  .fulfillment-section-hero .fulfillment-list li,
  .fulfillment-section-hero .fulfillment-actions .fulfillment-button,
  .fulfillment-hero-typing,
  .fulfillment-hero-flow {
    animation: none;
  }

  .fulfillment-hero-typing-cursor {
    animation: none;
  }

  .fulfillment-hero-box-one {
    left: 16%;
  }

  .fulfillment-hero-box-check,
  .fulfillment-hero-box-item {
    opacity: 1;
    transform: none;
  }
}

/* Services hero: a compact visual of the complete fulfillment cycle. */
.fulfillment-services-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-services-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-services-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-services-hero .section-header {
  max-width: 650px;
}

.fulfillment-services-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-services-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-services-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-services-cycle {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-services-cycle::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent), transparent 78%);
  content: "";
}

.fulfillment-services-cycle-kicker,
.fulfillment-services-cycle-note {
  margin: 0;
}

.fulfillment-services-cycle-kicker {
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-services-cycle-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.fulfillment-services-cycle-step {
  position: relative;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-card);
  color: var(--color-text);
  animation: fulfillment-services-cycle-pulse 8s ease-in-out infinite;
}

.fulfillment-services-cycle-step:not(:last-child)::after {
  position: absolute;
  bottom: -11px;
  left: 30px;
  z-index: 1;
  width: 1px;
  height: 11px;
  background: var(--color-accent);
  content: "";
}

.fulfillment-services-cycle-step:nth-child(2) {
  animation-delay: -2s;
}

.fulfillment-services-cycle-step:nth-child(3) {
  animation-delay: -4s;
}

.fulfillment-services-cycle-step:nth-child(4) {
  animation-delay: -6s;
}

.fulfillment-services-cycle-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--color-soft-strong);
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.fulfillment-services-cycle-title {
  font-size: 17px;
  font-weight: 750;
  line-height: 1.2;
}

.fulfillment-services-cycle-note {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

@keyframes fulfillment-services-hero-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

@keyframes fulfillment-services-cycle-pulse {
  0%,
  17%,
  100% {
    border-color: var(--color-border);
    background: var(--color-card);
    box-shadow: none;
  }

  5%,
  12% {
    border-color: var(--color-accent);
    background: var(--color-soft-strong);
    box-shadow: 0 8px 20px rgba(200, 162, 74, 0.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-services-hero .section-title,
  .fulfillment-services-hero .section-description,
  .fulfillment-services-hero .fulfillment-actions,
  .fulfillment-services-cycle,
  .fulfillment-services-cycle-step {
    animation: none;
  }
}

/* Wildberries hero: a neutral operational scene with a violet process accent. */
.fulfillment-wildberries-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-wildberries-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-wildberries-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-wildberries-hero .section-header {
  max-width: 650px;
}

.fulfillment-wildberries-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-wildberries-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-wildberries-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-wb-scene {
  --wb-accent: #9e4cc5;
  --wb-accent-soft: rgba(158, 76, 197, 0.15);
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html[data-theme="dark"] .fulfillment-wb-scene {
  --wb-accent: #c070df;
  --wb-accent-soft: rgba(192, 112, 223, 0.17);
}

.fulfillment-wb-scene-kicker {
  margin: 0;
  color: var(--wb-accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-wb-stage {
  position: relative;
  height: 164px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-soft);
}

.fulfillment-wb-stage-lane {
  position: absolute;
  top: 50%;
  right: 18px;
  left: 18px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--wb-accent), rgba(158, 76, 197, 0.18));
}

.fulfillment-wb-box {
  position: absolute;
  top: 58px;
  left: 28px;
  width: 64px;
  height: 48px;
  border: 2px solid #86541f;
  border-radius: 6px;
  background: #d3af63;
  box-shadow: 0 5px 12px rgba(31, 22, 11, 0.22);
  animation: fulfillment-wb-box-move 8s ease-in-out infinite;
}

.fulfillment-wb-box::before,
.fulfillment-wb-box::after,
.fulfillment-wb-box-tape {
  position: absolute;
  display: block;
  background: rgba(77, 52, 21, 0.6);
  content: "";
}

.fulfillment-wb-box::before {
  top: -2px;
  bottom: -2px;
  left: calc(50% - 3px);
  width: 6px;
}

.fulfillment-wb-box::after {
  top: 9px;
  right: 0;
  left: 0;
  height: 2px;
}

.fulfillment-wb-box-tape {
  top: 0;
  bottom: 0;
  left: 24%;
  width: 1px;
  opacity: 0.45;
}

.fulfillment-wb-scan {
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 152px;
  width: 2px;
  opacity: 0;
  background: var(--wb-accent);
  box-shadow: 0 0 18px var(--wb-accent);
  animation: fulfillment-wb-scan 8s ease-in-out infinite;
}

.fulfillment-wb-label {
  position: absolute;
  top: 45px;
  left: 194px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--wb-accent);
  border-radius: 6px;
  background: var(--color-card);
  color: var(--wb-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(8px);
  animation: fulfillment-wb-label 8s ease-in-out infinite;
}

.fulfillment-wb-ready {
  position: absolute;
  right: 30px;
  bottom: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--wb-accent);
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  opacity: 0;
  transform: scale(0.5);
  animation: fulfillment-wb-ready 8s ease-in-out infinite;
}

.fulfillment-wb-statuses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.fulfillment-wb-status {
  min-height: 36px;
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: var(--color-card);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  animation: fulfillment-wb-status 8s ease-in-out infinite;
}

.fulfillment-wb-status:nth-child(2) {
  animation-delay: -2s;
}

.fulfillment-wb-status:nth-child(3) {
  animation-delay: -4s;
}

.fulfillment-wb-status:nth-child(4) {
  animation-delay: -6s;
}

@keyframes fulfillment-wb-box-move {
  0%,
  8% {
    opacity: 0;
    transform: translateX(-28px) scale(0.92);
  }

  18%,
  80% {
    opacity: 1;
    transform: translateX(72px) scale(1);
  }

  94%,
  100% {
    opacity: 0;
    transform: translateX(112px) scale(0.94);
  }
}

@keyframes fulfillment-wb-scan {
  0%,
  22%,
  42%,
  100% {
    opacity: 0;
  }

  28%,
  36% {
    opacity: 1;
  }
}

@keyframes fulfillment-wb-label {
  0%,
  40%,
  88%,
  100% {
    opacity: 0;
    transform: translateY(8px);
  }

  48%,
  80% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fulfillment-wb-ready {
  0%,
  68%,
  90%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }

  76%,
  86% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fulfillment-wb-status {
  0%,
  17%,
  100% {
    border-color: var(--color-border);
    background: var(--color-card);
    color: var(--color-muted);
  }

  5%,
  12% {
    border-color: var(--wb-accent);
    background: var(--wb-accent-soft);
    color: var(--color-text);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-wildberries-hero .section-title,
  .fulfillment-wildberries-hero .section-description,
  .fulfillment-wildberries-hero .fulfillment-actions,
  .fulfillment-wb-scene,
  .fulfillment-wb-box,
  .fulfillment-wb-scan,
  .fulfillment-wb-label,
  .fulfillment-wb-ready,
  .fulfillment-wb-status {
    animation: none;
  }

  .fulfillment-wb-box,
  .fulfillment-wb-label,
  .fulfillment-wb-ready {
    opacity: 1;
    transform: none;
  }
}

/* Ozon hero: a cool-blue technical preparation line with several parcels. */
.fulfillment-ozon-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-ozon-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-ozon-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-ozon-hero .section-header {
  max-width: 650px;
}

.fulfillment-ozon-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-ozon-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-ozon-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-ozon-scene {
  --ozon-accent: #1478d4;
  --ozon-accent-soft: rgba(20, 120, 212, 0.13);
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html[data-theme="dark"] .fulfillment-ozon-scene {
  --ozon-accent: #58aeef;
  --ozon-accent-soft: rgba(88, 174, 239, 0.16);
}

.fulfillment-ozon-scene-kicker {
  margin: 0;
  color: var(--ozon-accent);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-ozon-stage {
  position: relative;
  height: 164px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-soft), var(--color-card));
}

.fulfillment-ozon-stage::before,
.fulfillment-ozon-stage::after {
  position: absolute;
  content: "";
}

.fulfillment-ozon-stage::before {
  top: 17px;
  bottom: 17px;
  left: 50%;
  width: 1px;
  background: var(--color-border);
}

.fulfillment-ozon-stage::after {
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--ozon-accent), transparent);
  opacity: 0.45;
}

.fulfillment-ozon-stage-line {
  position: absolute;
  top: 104px;
  right: 22px;
  left: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--ozon-accent), rgba(20, 120, 212, 0.15));
}

.fulfillment-ozon-stage-pulse {
  position: absolute;
  top: 96px;
  left: 35px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--ozon-accent);
  border-radius: 50%;
  background: var(--color-card);
  animation: fulfillment-ozon-pulse 7.5s ease-in-out infinite;
}

.fulfillment-ozon-box {
  position: absolute;
  bottom: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 42px;
  border: 2px solid #8a632a;
  border-radius: 6px;
  background: #d1af68;
  box-shadow: 0 5px 12px rgba(31, 22, 11, 0.2);
  color: #493516;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  animation: fulfillment-ozon-box-float 7.5s ease-in-out infinite;
}

.fulfillment-ozon-box::before,
.fulfillment-ozon-box::after {
  position: absolute;
  background: rgba(76, 53, 24, 0.55);
  content: "";
}

.fulfillment-ozon-box::before {
  top: -2px;
  bottom: -2px;
  left: calc(50% - 2px);
  width: 4px;
}

.fulfillment-ozon-box::after {
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
}

.fulfillment-ozon-box span {
  position: relative;
  z-index: 1;
}

.fulfillment-ozon-box-one {
  left: 58px;
  animation-delay: -0.4s;
}

.fulfillment-ozon-box-two {
  left: calc(50% - 28px);
  animation-delay: -2.9s;
}

.fulfillment-ozon-box-three {
  right: 58px;
  animation-delay: -5.4s;
}

.fulfillment-ozon-statuses {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.fulfillment-ozon-status {
  min-height: 34px;
  padding: 9px 10px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-card);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  animation: fulfillment-ozon-status 7.5s ease-in-out infinite;
}

.fulfillment-ozon-status:nth-child(2) {
  animation-delay: -1.5s;
}

.fulfillment-ozon-status:nth-child(3) {
  animation-delay: -3s;
}

.fulfillment-ozon-status:nth-child(4) {
  animation-delay: -4.5s;
}

.fulfillment-ozon-status:nth-child(5) {
  animation-delay: -6s;
}

@keyframes fulfillment-ozon-box-float {
  0%,
  16%,
  100% {
    transform: translateY(0);
    filter: none;
  }

  6%,
  11% {
    transform: translateY(-10px);
    filter: drop-shadow(0 0 8px rgba(20, 120, 212, 0.35));
  }
}

@keyframes fulfillment-ozon-pulse {
  0%,
  72%,
  100% {
    opacity: 0.35;
    transform: translateX(0) scale(1);
  }

  12%,
  62% {
    opacity: 1;
    transform: translateX(235px) scale(1.32);
  }
}

@keyframes fulfillment-ozon-status {
  0%,
  15%,
  100% {
    border-color: var(--color-border);
    background: var(--color-card);
    color: var(--color-muted);
    box-shadow: none;
  }

  5%,
  11% {
    border-color: var(--ozon-accent);
    background: var(--ozon-accent-soft);
    color: var(--color-text);
    box-shadow: 0 0 16px rgba(20, 120, 212, 0.18);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-ozon-hero .section-title,
  .fulfillment-ozon-hero .section-description,
  .fulfillment-ozon-hero .fulfillment-actions,
  .fulfillment-ozon-scene,
  .fulfillment-ozon-stage-pulse,
  .fulfillment-ozon-box,
  .fulfillment-ozon-status {
    animation: none;
  }
}

/* Yandex Market hero: warm yellow processing route with a compact ready-to-ship state. */
.fulfillment-yandex-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-yandex-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-yandex-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-yandex-hero .section-header {
  max-width: 650px;
}

.fulfillment-yandex-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-yandex-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-yandex-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-yandex-scene {
  --yandex-yellow: #f0bf22;
  --yandex-yellow-soft: rgba(240, 191, 34, 0.16);
  --yandex-red: #df4b43;
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

html[data-theme="dark"] .fulfillment-yandex-scene {
  --yandex-yellow: #f4ca3b;
  --yandex-yellow-soft: rgba(244, 202, 59, 0.18);
}

.fulfillment-yandex-scene-kicker {
  margin: 0;
  color: var(--yandex-yellow);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-yandex-stage {
  position: relative;
  height: 190px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-soft), var(--color-card));
}

.fulfillment-yandex-stage::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 2px;
  background: var(--yandex-red);
  content: "";
  opacity: 0.85;
}

.fulfillment-yandex-stage::after {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--yandex-red);
  box-shadow: 0 0 0 5px rgba(223, 75, 67, 0.12);
  content: "";
}

.fulfillment-yandex-route {
  position: absolute;
  top: 114px;
  right: 28px;
  left: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yandex-yellow), rgba(240, 191, 34, 0.16));
}

.fulfillment-yandex-route::after {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--yandex-yellow);
  content: "";
  transform: translateY(-50%);
}

.fulfillment-yandex-package,
.fulfillment-yandex-label,
.fulfillment-yandex-ready {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.fulfillment-yandex-package {
  bottom: 51px;
  width: 62px;
  height: 45px;
  border: 2px solid #836b20;
  border-radius: 6px;
  background: #d9b949;
  box-shadow: 0 6px 14px rgba(46, 35, 9, 0.2);
  color: #3f330e;
  animation: fulfillment-yandex-package 8s ease-in-out infinite;
}

.fulfillment-yandex-package::before,
.fulfillment-yandex-package::after {
  position: absolute;
  background: rgba(63, 51, 14, 0.5);
  content: "";
}

.fulfillment-yandex-package::before {
  top: -2px;
  bottom: -2px;
  left: calc(50% - 2px);
  width: 4px;
}

.fulfillment-yandex-package::after {
  top: 8px;
  right: 0;
  left: 0;
  height: 2px;
}

.fulfillment-yandex-package span {
  position: relative;
  z-index: 1;
}

.fulfillment-yandex-package-new {
  left: 28px;
  animation-delay: -0.3s;
}

.fulfillment-yandex-package-checked {
  left: calc(50% - 31px);
  animation-delay: -2.9s;
}

.fulfillment-yandex-package-packed {
  right: 78px;
  animation-delay: -5.3s;
}

.fulfillment-yandex-label {
  right: 94px;
  bottom: 94px;
  min-width: 34px;
  min-height: 22px;
  padding: 5px;
  border: 1px solid var(--yandex-red);
  border-radius: 4px;
  background: var(--color-card);
  color: var(--yandex-red);
  animation: fulfillment-yandex-label 8s ease-in-out infinite;
}

.fulfillment-yandex-ready {
  right: 19px;
  bottom: 64px;
  min-width: 48px;
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--yandex-yellow);
  border-radius: 12px;
  background: var(--yandex-yellow-soft);
  color: var(--color-text);
  text-align: center;
  animation: fulfillment-yandex-ready 8s ease-in-out infinite;
}

.fulfillment-yandex-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 5px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.fulfillment-yandex-steps li {
  min-height: 36px;
  padding: 8px 5px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: var(--color-card);
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  animation: fulfillment-yandex-step 8s ease-in-out infinite;
}

.fulfillment-yandex-steps li:nth-child(2) { animation-delay: -1.6s; }
.fulfillment-yandex-steps li:nth-child(3) { animation-delay: -3.2s; }
.fulfillment-yandex-steps li:nth-child(4) { animation-delay: -4.8s; }
.fulfillment-yandex-steps li:nth-child(5) { animation-delay: -6.4s; }

@keyframes fulfillment-yandex-package {
  0%, 14%, 100% { transform: translateY(0); filter: none; }
  6%, 10% { transform: translateY(-9px); filter: drop-shadow(0 0 8px rgba(240, 191, 34, 0.42)); }
}

@keyframes fulfillment-yandex-label {
  0%, 44%, 100% { opacity: 0.45; transform: translateY(4px) scale(0.9); }
  52%, 60% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fulfillment-yandex-ready {
  0%, 66%, 100% { box-shadow: none; transform: scale(1); }
  74%, 84% { box-shadow: 0 0 18px rgba(240, 191, 34, 0.35); transform: scale(1.06); }
}

@keyframes fulfillment-yandex-step {
  0%, 15%, 100% { border-color: var(--color-border); background: var(--color-card); color: var(--color-muted); box-shadow: none; }
  5%, 11% { border-color: var(--yandex-yellow); background: var(--yandex-yellow-soft); color: var(--color-text); box-shadow: 0 0 15px rgba(240, 191, 34, 0.18); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-yandex-hero .section-title,
  .fulfillment-yandex-hero .section-description,
  .fulfillment-yandex-hero .fulfillment-actions,
  .fulfillment-yandex-scene,
  .fulfillment-yandex-package,
  .fulfillment-yandex-label,
  .fulfillment-yandex-ready,
  .fulfillment-yandex-steps li {
    animation: none;
  }
}

/* Prices hero: an animated composition of operations, never a promised final price. */
.fulfillment-prices-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-prices-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-prices-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-prices-hero .section-header {
  max-width: 650px;
}

.fulfillment-prices-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-prices-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-prices-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-prices-calculation {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-prices-calculation::before {
  position: absolute;
  top: -62px;
  right: -38px;
  width: 164px;
  height: 164px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  box-shadow: 0 0 0 18px var(--color-soft), 0 0 0 19px var(--color-border);
  content: "";
  opacity: 0.65;
}

.fulfillment-prices-calculation-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-prices-calculation-card {
  position: relative;
  z-index: 1;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-card);
}

.fulfillment-prices-calculation-party {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
  animation: fulfillment-prices-row 7.4s ease-in-out infinite;
}

.fulfillment-prices-calculation-party span,
.fulfillment-prices-calculation-result-label {
  color: var(--color-muted);
  font-size: 13px;
  font-weight: 650;
}

.fulfillment-prices-calculation-party strong {
  color: var(--color-text);
  font-size: 20px;
}

.fulfillment-prices-calculation-list {
  display: grid;
  gap: 9px;
  margin: 15px 0;
  padding: 0;
  list-style: none;
}

.fulfillment-prices-calculation-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 8px 10px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: var(--color-soft);
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  animation: fulfillment-prices-row 7.4s ease-in-out infinite;
}

.fulfillment-prices-calculation-list li:nth-child(1) { animation-delay: -1.2s; }
.fulfillment-prices-calculation-list li:nth-child(2) { animation-delay: -2.4s; }
.fulfillment-prices-calculation-list li:nth-child(3) { animation-delay: -3.6s; }

.fulfillment-prices-calculation-list li span {
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 16px;
  line-height: 1;
}

.fulfillment-prices-calculation-result {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
  animation: fulfillment-prices-result 7.4s ease-in-out infinite;
}

.fulfillment-prices-calculation-result strong {
  color: var(--color-text);
  font-size: 18px;
  line-height: 1.2;
}

@keyframes fulfillment-prices-row {
  0%, 10%, 100% { opacity: 0.42; transform: translateX(-8px); }
  16%, 26% { opacity: 1; transform: translateX(0); }
}

@keyframes fulfillment-prices-result {
  0%, 52%, 100% { opacity: 0.45; transform: translateY(6px); }
  63%, 79% { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-prices-hero .section-title,
  .fulfillment-prices-hero .section-description,
  .fulfillment-prices-hero .fulfillment-actions,
  .fulfillment-prices-calculation,
  .fulfillment-prices-calculation-party,
  .fulfillment-prices-calculation-list li,
  .fulfillment-prices-calculation-result {
    animation: none;
  }
}

/* Cases hero: changing practical client tasks rather than a decorative illustration. */
.fulfillment-cases-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-cases-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-cases-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-cases-hero .section-header {
  max-width: 650px;
}

.fulfillment-cases-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-cases-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-cases-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-cases-scene {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-cases-scene::before {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-accent);
  box-shadow: 0 0 0 6px rgba(200, 162, 74, 0.13);
  content: "";
}

.fulfillment-cases-scene-kicker {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-cases-stack {
  position: relative;
  height: 262px;
  margin-top: 18px;
}

.fulfillment-cases-task-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  align-content: start;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-card);
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  animation: fulfillment-cases-task 12s ease-in-out infinite;
}

.fulfillment-cases-task-card:nth-child(2) {
  animation-delay: 4s;
}

.fulfillment-cases-task-card:nth-child(3) {
  animation-delay: 8s;
}

.fulfillment-cases-task-count {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 11px;
  font-weight: 800;
}

.fulfillment-cases-task-card h2 {
  margin: 3px 0 0;
  color: var(--color-text);
  font-size: 21px;
  line-height: 1.14;
}

.fulfillment-cases-task-card p {
  grid-column: 1 / -1;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.5;
}

.fulfillment-cases-task-statuses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  grid-column: 1 / -1;
  margin: 19px 0 0;
  padding: 0;
  list-style: none;
}

.fulfillment-cases-task-statuses li {
  min-height: 37px;
  padding: 9px 5px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: var(--color-soft);
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  animation: fulfillment-cases-status 12s ease-in-out infinite;
}

.fulfillment-cases-task-card:nth-child(2) .fulfillment-cases-task-statuses li {
  animation-delay: 4s;
}

.fulfillment-cases-task-card:nth-child(3) .fulfillment-cases-task-statuses li {
  animation-delay: 8s;
}

.fulfillment-cases-task-statuses li:nth-child(2) { animation-delay: -0.55s; }
.fulfillment-cases-task-statuses li:nth-child(3) { animation-delay: -1.1s; }
.fulfillment-cases-task-card:nth-child(2) .fulfillment-cases-task-statuses li:nth-child(2) { animation-delay: 4.55s; }
.fulfillment-cases-task-card:nth-child(2) .fulfillment-cases-task-statuses li:nth-child(3) { animation-delay: 5.1s; }
.fulfillment-cases-task-card:nth-child(3) .fulfillment-cases-task-statuses li:nth-child(2) { animation-delay: 8.55s; }
.fulfillment-cases-task-card:nth-child(3) .fulfillment-cases-task-statuses li:nth-child(3) { animation-delay: 9.1s; }

@keyframes fulfillment-cases-task {
  0%, 3%, 100% { opacity: 0; transform: translateY(16px) scale(0.985); }
  8%, 28% { opacity: 1; transform: translateY(0) scale(1); }
  31% { opacity: 0; transform: translateY(-10px) scale(0.99); }
}

@keyframes fulfillment-cases-status {
  0%, 8%, 100% { border-color: var(--color-border); background: var(--color-soft); color: var(--color-muted); }
  12%, 24% { border-color: var(--color-accent); background: var(--color-accent-soft); color: var(--color-text); box-shadow: 0 0 14px rgba(200, 162, 74, 0.16); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-cases-hero .section-title,
  .fulfillment-cases-hero .section-description,
  .fulfillment-cases-hero .fulfillment-actions,
  .fulfillment-cases-scene,
  .fulfillment-cases-task-card,
  .fulfillment-cases-task-statuses li {
    animation: none;
  }

  .fulfillment-cases-task-card:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Blog hero: a restrained editorial stack that previews the material below. */
.fulfillment-blog-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-blog-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-blog-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-blog-hero .section-header {
  max-width: 650px;
}

.fulfillment-blog-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-blog-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-blog-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-blog-scene {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-blog-scene-kicker {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-blog-card-stack {
  position: relative;
  height: 236px;
  margin-top: 18px;
}

.fulfillment-blog-card-stack::before,
.fulfillment-blog-card-stack::after {
  position: absolute;
  right: 8px;
  left: 8px;
  height: 190px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-soft);
  content: "";
}

.fulfillment-blog-card-stack::before {
  top: 15px;
  opacity: 0.7;
  transform: rotate(-2deg);
}

.fulfillment-blog-card-stack::after {
  top: 9px;
  opacity: 0.9;
  transform: rotate(1.2deg);
}

.fulfillment-blog-topic-card {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: grid;
  align-content: start;
  min-height: 190px;
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-card);
  opacity: 0;
  transform: translateX(20px) translateY(10px) rotate(1.5deg);
  animation: fulfillment-blog-card-turn 24s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.fulfillment-blog-topic-card:nth-child(2) { animation-delay: 4s; }
.fulfillment-blog-topic-card:nth-child(3) { animation-delay: 8s; }
.fulfillment-blog-topic-card:nth-child(4) { animation-delay: 12s; }
.fulfillment-blog-topic-card:nth-child(5) { animation-delay: 16s; }
.fulfillment-blog-topic-card:nth-child(6) { animation-delay: 20s; }

.fulfillment-blog-topic-index {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 11px;
  font-weight: 800;
}

.fulfillment-blog-topic-label {
  margin: 16px 0 0;
  color: var(--color-accent-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fulfillment-blog-topic-card h2 {
  margin: 9px 0 0;
  color: var(--color-text);
  font-size: 20px;
  line-height: 1.22;
}

.fulfillment-blog-topic-meta {
  margin-top: 17px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 650;
}

.fulfillment-blog-scene-note {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

@keyframes fulfillment-blog-card-turn {
  0%, 5%, 100% { opacity: 0; transform: translateX(20px) translateY(10px) rotate(1.5deg); }
  8%, 18% { opacity: 1; transform: translateX(0) translateY(0) rotate(0); }
  22% { opacity: 0; transform: translateX(-18px) translateY(-8px) rotate(-1deg); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-blog-hero .section-title,
  .fulfillment-blog-hero .section-description,
  .fulfillment-blog-hero .fulfillment-actions,
  .fulfillment-blog-scene,
  .fulfillment-blog-topic-card {
    animation: none;
  }

  .fulfillment-blog-topic-card:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Marking hero: an abstract label-and-scan sequence, never an actual code. */
.fulfillment-marking-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-marking-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-marking-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-marking-hero .section-header {
  max-width: 650px;
}

.fulfillment-marking-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-scene {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-scene-kicker {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-marking-stage {
  position: relative;
  height: 202px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-soft), var(--color-card));
}

.fulfillment-marking-stage::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  content: "";
  opacity: 0.72;
}

.fulfillment-marking-box {
  position: absolute;
  bottom: 27px;
  left: 36px;
  display: grid;
  width: 105px;
  height: 80px;
  place-items: center;
  border: 2px solid #806f42;
  border-radius: 8px;
  background: #d1b76e;
  box-shadow: 0 8px 16px rgba(45, 35, 12, 0.18);
  color: #463819;
  font-size: 12px;
  font-weight: 800;
  animation: fulfillment-marking-box 8s ease-in-out infinite;
}

.fulfillment-marking-box::before,
.fulfillment-marking-box::after {
  position: absolute;
  background: rgba(70, 56, 25, 0.48);
  content: "";
}

.fulfillment-marking-box::before {
  top: -2px;
  bottom: -2px;
  left: calc(50% - 3px);
  width: 6px;
}

.fulfillment-marking-box::after {
  top: 15px;
  right: 0;
  left: 0;
  height: 2px;
}

.fulfillment-marking-label {
  position: absolute;
  bottom: 50px;
  left: 80px;
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 7px 18px rgba(19, 19, 19, 0.13);
  opacity: 0;
  transform: translateY(-18px) rotate(-4deg) scale(0.9);
  animation: fulfillment-marking-label 8s ease-in-out infinite;
}

.fulfillment-marking-matrix {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 2px;
}

.fulfillment-marking-matrix i {
  background: transparent;
  opacity: 0;
  animation: fulfillment-marking-cell 8s steps(1, end) infinite;
}

.fulfillment-marking-matrix i:nth-child(1),
.fulfillment-marking-matrix i:nth-child(2),
.fulfillment-marking-matrix i:nth-child(4),
.fulfillment-marking-matrix i:nth-child(6),
.fulfillment-marking-matrix i:nth-child(8),
.fulfillment-marking-matrix i:nth-child(9),
.fulfillment-marking-matrix i:nth-child(11),
.fulfillment-marking-matrix i:nth-child(13),
.fulfillment-marking-matrix i:nth-child(15),
.fulfillment-marking-matrix i:nth-child(16),
.fulfillment-marking-matrix i:nth-child(18),
.fulfillment-marking-matrix i:nth-child(20),
.fulfillment-marking-matrix i:nth-child(22),
.fulfillment-marking-matrix i:nth-child(24),
.fulfillment-marking-matrix i:nth-child(25) {
  background: #202020;
}

.fulfillment-marking-matrix i:nth-child(3n) { animation-delay: 0.16s; }
.fulfillment-marking-matrix i:nth-child(4n) { animation-delay: 0.28s; }
.fulfillment-marking-matrix i:nth-child(5n) { animation-delay: 0.4s; }

.fulfillment-marking-scanner {
  position: absolute;
  bottom: 56px;
  left: 76px;
  width: 80px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-accent);
  box-shadow: 0 0 12px rgba(200, 162, 74, 0.65);
  opacity: 0;
  animation: fulfillment-marking-scan 8s ease-in-out infinite;
}

.fulfillment-marking-checked {
  position: absolute;
  right: 30px;
  bottom: 55px;
  display: grid;
  min-width: 86px;
  min-height: 40px;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid var(--color-accent);
  border-radius: 999px;
  background: var(--color-accent-soft);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(8px);
  animation: fulfillment-marking-checked 8s ease-in-out infinite;
}

.fulfillment-marking-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.fulfillment-marking-steps li {
  min-height: 37px;
  padding: 9px 5px;
  border: 1px solid var(--color-border);
  border-radius: 9px;
  background: var(--color-card);
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  animation: fulfillment-marking-step 8s ease-in-out infinite;
}

.fulfillment-marking-steps li:nth-child(2) { animation-delay: 1.3s; }
.fulfillment-marking-steps li:nth-child(3) { animation-delay: 2.6s; }

@keyframes fulfillment-marking-box {
  0%, 14%, 100% { transform: translateX(0); }
  7%, 11% { transform: translateX(8px); }
}

@keyframes fulfillment-marking-label {
  0%, 13%, 100% { opacity: 0; transform: translateY(-18px) rotate(-4deg) scale(0.9); }
  20%, 80% { opacity: 1; transform: translateY(0) rotate(0) scale(1); }
}

@keyframes fulfillment-marking-cell {
  0%, 24%, 100% { opacity: 0; }
  29%, 82% { opacity: 1; }
}

@keyframes fulfillment-marking-scan {
  0%, 37%, 100% { opacity: 0; transform: translateY(0); }
  43% { opacity: 1; transform: translateY(0); }
  61% { opacity: 1; transform: translateY(53px); }
  66% { opacity: 0; transform: translateY(53px); }
}

@keyframes fulfillment-marking-checked {
  0%, 65%, 100% { opacity: 0; transform: translateY(8px); }
  73%, 87% { opacity: 1; transform: translateY(0); }
}

@keyframes fulfillment-marking-step {
  0%, 13%, 100% { border-color: var(--color-border); background: var(--color-card); color: var(--color-muted); box-shadow: none; }
  19%, 29% { border-color: var(--color-accent); background: var(--color-accent-soft); color: var(--color-text); box-shadow: 0 0 14px rgba(200, 162, 74, 0.16); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-marking-hero .section-title,
  .fulfillment-marking-hero .section-description,
  .fulfillment-marking-hero .fulfillment-actions,
  .fulfillment-marking-scene,
  .fulfillment-marking-box,
  .fulfillment-marking-label,
  .fulfillment-marking-matrix i,
  .fulfillment-marking-scanner,
  .fulfillment-marking-checked,
  .fulfillment-marking-steps li {
    animation: none;
  }

  .fulfillment-marking-label,
  .fulfillment-marking-matrix i,
  .fulfillment-marking-checked {
    opacity: 1;
    transform: none;
  }
}

/* Packaging hero: a clear product-to-protected-parcel sequence. */
.fulfillment-packaging-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-packaging-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-packaging-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-packaging-hero .section-header {
  max-width: 650px;
}

.fulfillment-packaging-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-packaging-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-packaging-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-packaging-scene {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-packaging-scene-kicker {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-packaging-stage {
  position: relative;
  height: 202px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-soft), var(--color-card));
}

.fulfillment-packaging-stage::before {
  position: absolute;
  right: 26px;
  bottom: 25px;
  left: 26px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), rgba(200, 162, 74, 0.18));
  content: "";
}

.fulfillment-packaging-product {
  position: absolute;
  bottom: 49px;
  left: calc(50% - 38px);
  display: grid;
  width: 76px;
  height: 60px;
  place-items: center;
  border: 2px solid var(--color-text);
  border-radius: 10px;
  background: var(--color-card);
  color: var(--color-text);
  font-size: 12px;
  font-weight: 800;
  animation: fulfillment-packaging-product 9s ease-in-out infinite;
}

.fulfillment-packaging-protection {
  position: absolute;
  bottom: 38px;
  left: calc(50% - 51px);
  width: 102px;
  height: 82px;
  border: 2px dashed var(--color-accent);
  border-radius: 17px;
  opacity: 0;
  transform: scale(0.72);
  animation: fulfillment-packaging-protection 9s ease-in-out infinite;
}

.fulfillment-packaging-protection::before,
.fulfillment-packaging-protection::after {
  position: absolute;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  content: "";
  opacity: 0.45;
}

.fulfillment-packaging-protection::before {
  inset: -7px 10px;
}

.fulfillment-packaging-protection::after {
  inset: 10px -7px;
}

.fulfillment-packaging-box {
  position: absolute;
  bottom: 39px;
  left: calc(50% - 54px);
  width: 108px;
  height: 82px;
  border: 2px solid #83652e;
  border-radius: 8px;
  background: #d2b36d;
  box-shadow: 0 8px 16px rgba(48, 34, 11, 0.18);
  opacity: 0;
  transform: scale(0.86);
  animation: fulfillment-packaging-box 9s ease-in-out infinite;
}

.fulfillment-packaging-box::before {
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: calc(50% - 3px);
  width: 6px;
  background: rgba(74, 54, 19, 0.45);
  content: "";
}

.fulfillment-packaging-box-lid {
  position: absolute;
  top: -18px;
  left: -2px;
  width: 108px;
  height: 22px;
  border: 2px solid #83652e;
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #e0c582;
  transform-origin: bottom;
  animation: fulfillment-packaging-lid 9s ease-in-out infinite;
}

.fulfillment-packaging-label {
  position: absolute;
  right: calc(50% - 58px);
  bottom: 72px;
  display: grid;
  width: 34px;
  height: 24px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background: #fff;
  color: #222;
  font-size: 8px;
  font-weight: 800;
  opacity: 0;
  transform: translateY(-15px) rotate(-4deg);
  animation: fulfillment-packaging-label 9s ease-in-out infinite;
}

.fulfillment-packaging-statuses {
  position: relative;
  height: 42px;
  margin-top: 14px;
}

.fulfillment-packaging-statuses span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-card);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(8px);
  animation: fulfillment-packaging-status 9s ease-in-out infinite;
}

.fulfillment-packaging-statuses span:nth-child(2) { animation-delay: 3s; }
.fulfillment-packaging-statuses span:nth-child(3) { animation-delay: 6s; }

@keyframes fulfillment-packaging-product {
  0%, 18%, 100% { opacity: 1; transform: scale(1); }
  31%, 82% { opacity: 0; transform: scale(0.78); }
}

@keyframes fulfillment-packaging-protection {
  0%, 16%, 100% { opacity: 0; transform: scale(0.72); }
  25%, 43% { opacity: 1; transform: scale(1); }
  51% { opacity: 0; transform: scale(1.07); }
}

@keyframes fulfillment-packaging-box {
  0%, 42%, 100% { opacity: 0; transform: scale(0.86); }
  53%, 91% { opacity: 1; transform: scale(1); }
}

@keyframes fulfillment-packaging-lid {
  0%, 53%, 100% { transform: rotateX(-70deg); }
  65%, 91% { transform: rotateX(0); }
}

@keyframes fulfillment-packaging-label {
  0%, 67%, 100% { opacity: 0; transform: translateY(-15px) rotate(-4deg); }
  76%, 91% { opacity: 1; transform: translateY(0) rotate(0); }
}

@keyframes fulfillment-packaging-status {
  0%, 5%, 100% { opacity: 0; transform: translateY(8px); }
  10%, 27% { opacity: 1; transform: translateY(0); }
  32% { opacity: 0; transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-packaging-hero .section-title,
  .fulfillment-packaging-hero .section-description,
  .fulfillment-packaging-hero .fulfillment-actions,
  .fulfillment-packaging-scene,
  .fulfillment-packaging-product,
  .fulfillment-packaging-protection,
  .fulfillment-packaging-box,
  .fulfillment-packaging-box-lid,
  .fulfillment-packaging-label,
  .fulfillment-packaging-statuses span {
    animation: none;
  }

  .fulfillment-packaging-box,
  .fulfillment-packaging-label,
  .fulfillment-packaging-statuses span:last-child {
    opacity: 1;
    transform: none;
  }
}

/* Service marking hero: a technical five-station processing line. */
.fulfillment-marking-line-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-marking-line-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-marking-line-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-marking-line-hero .section-header {
  max-width: 650px;
}

.fulfillment-marking-line-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-line-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-line-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-line {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-marking-line-kicker {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-marking-line-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 7px;
  align-items: center;
  height: 174px;
  margin-top: 18px;
  padding: 28px 12px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-soft), var(--color-card));
}

.fulfillment-marking-line-rail {
  position: absolute;
  right: 29px;
  bottom: 46px;
  left: 29px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), rgba(200, 162, 74, 0.18));
}

.fulfillment-marking-line-rail::after {
  position: absolute;
  top: 50%;
  right: -1px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid var(--color-accent);
  content: "";
  transform: translateY(-50%);
}

.fulfillment-marking-line-station {
  position: relative;
  z-index: 1;
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  justify-self: center;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: var(--color-card);
  color: var(--color-text);
  font-size: 9px;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  animation: fulfillment-marking-line-station 10s ease-in-out infinite;
}

.fulfillment-marking-line-product {
  border-color: #83652e;
  background: #d2b36d;
  color: #463819;
}

.fulfillment-marking-line-label {
  background: #fff;
  color: #262626;
  font-size: 8px;
}

.fulfillment-marking-line-code {
  grid-template-columns: repeat(2, 8px);
  grid-template-rows: repeat(2, 8px);
  gap: 3px;
  padding: 8px;
}

.fulfillment-marking-line-code i {
  background: var(--color-text);
}

.fulfillment-marking-line-code i:nth-child(2),
.fulfillment-marking-line-code i:nth-child(3) {
  opacity: 0.35;
}

.fulfillment-marking-line-scan {
  color: var(--color-accent-dark);
  font-size: 28px;
  font-weight: 400;
}

.fulfillment-marking-line-ready {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  font-size: 21px;
}

.fulfillment-marking-line-station:nth-of-type(3) { animation-delay: 2s; }
.fulfillment-marking-line-station:nth-of-type(4) { animation-delay: 4s; }
.fulfillment-marking-line-station:nth-of-type(5) { animation-delay: 6s; }
.fulfillment-marking-line-station:nth-of-type(6) { animation-delay: 8s; }

.fulfillment-marking-line-statuses {
  position: relative;
  height: 42px;
  margin-top: 14px;
}

.fulfillment-marking-line-statuses span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-card);
  color: var(--color-text);
  font-size: 13px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(8px);
  animation: fulfillment-marking-line-status 9s ease-in-out infinite;
}

.fulfillment-marking-line-statuses span:nth-child(2) { animation-delay: 3s; }
.fulfillment-marking-line-statuses span:nth-child(3) { animation-delay: 6s; }

@keyframes fulfillment-marking-line-station {
  0%, 4%, 100% { border-color: var(--color-border); box-shadow: none; transform: translateY(0); }
  9%, 15% { border-color: var(--color-accent); box-shadow: 0 0 16px rgba(200, 162, 74, 0.25); transform: translateY(-6px); }
}

@keyframes fulfillment-marking-line-status {
  0%, 5%, 100% { opacity: 0; transform: translateY(8px); }
  11%, 27% { opacity: 1; transform: translateY(0); }
  32% { opacity: 0; transform: translateY(-5px); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-marking-line-hero .section-title,
  .fulfillment-marking-line-hero .section-description,
  .fulfillment-marking-line-hero .fulfillment-actions,
  .fulfillment-marking-line,
  .fulfillment-marking-line-station,
  .fulfillment-marking-line-statuses span {
    animation: none;
  }

  .fulfillment-marking-line-statuses span:first-child {
    opacity: 1;
    transform: none;
  }
}

/* Acceptance hero: incoming parcels travel through concrete warehouse zones. */
.fulfillment-acceptance-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-acceptance-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-acceptance-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-acceptance-hero .section-header {
  max-width: 650px;
}

.fulfillment-acceptance-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-acceptance-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-acceptance-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-acceptance-scene {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-acceptance-scene-kicker {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-acceptance-stage {
  position: relative;
  height: 214px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-soft), var(--color-card));
}

.fulfillment-acceptance-stage::before {
  position: absolute;
  top: 21px;
  bottom: 21px;
  left: 29%;
  width: 1px;
  background: var(--color-border);
  content: "";
}

.fulfillment-acceptance-incoming {
  position: absolute;
  top: 46px;
  left: 15px;
  display: flex;
  gap: 4px;
  align-items: end;
  height: 97px;
}

.fulfillment-acceptance-incoming span,
.fulfillment-acceptance-moving-box {
  border: 2px solid #83652e;
  border-radius: 5px;
  background: #d2b36d;
  box-shadow: 0 5px 10px rgba(48, 34, 11, 0.16);
}

.fulfillment-acceptance-incoming span {
  display: block;
  width: 21px;
  height: 23px;
  animation: fulfillment-acceptance-incoming 9s ease-in-out infinite;
}

.fulfillment-acceptance-incoming span:nth-child(2) {
  width: 26px;
  height: 31px;
  animation-delay: -0.25s;
}

.fulfillment-acceptance-incoming span:nth-child(3) {
  width: 20px;
  height: 26px;
  animation-delay: -0.5s;
}

.fulfillment-acceptance-zones {
  position: absolute;
  top: 20px;
  right: 14px;
  bottom: 20px;
  left: 35%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.fulfillment-acceptance-zones span {
  display: grid;
  place-items: center;
  padding: 8px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-card);
  color: var(--color-muted);
  font-size: 10px;
  font-weight: 750;
  line-height: 1.15;
  text-align: center;
  animation: fulfillment-acceptance-zone 9s ease-in-out infinite;
}

.fulfillment-acceptance-zones span:nth-child(2) { animation-delay: 2.25s; }
.fulfillment-acceptance-zones span:nth-child(3) { animation-delay: 4.5s; }
.fulfillment-acceptance-zones span:nth-child(4) { animation-delay: 6.75s; }

.fulfillment-acceptance-moving-box {
  position: absolute;
  top: 53px;
  left: 19px;
  display: grid;
  width: 32px;
  height: 29px;
  place-items: center;
  color: #463819;
  font-size: 7px;
  font-weight: 800;
  animation: fulfillment-acceptance-moving-box 9s ease-in-out infinite;
}

.fulfillment-acceptance-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

@keyframes fulfillment-acceptance-incoming {
  0%, 15%, 100% { opacity: 1; transform: translateY(0); }
  28%, 92% { opacity: 0.25; transform: translateY(7px); }
}

@keyframes fulfillment-acceptance-moving-box {
  0%, 6% { opacity: 0; transform: translate(0, 0) scale(0.8); }
  10%, 21% { opacity: 1; transform: translate(93px, -18px) scale(1); }
  25%, 43% { opacity: 1; transform: translate(166px, -18px) scale(1); }
  47%, 65% { opacity: 1; transform: translate(93px, 66px) scale(1); }
  69%, 84% { opacity: 1; transform: translate(166px, 66px) scale(0.95); }
  91%, 100% { opacity: 0; transform: translate(190px, 66px) scale(0.8); }
}

@keyframes fulfillment-acceptance-zone {
  0%, 8%, 100% { border-color: var(--color-border); background: var(--color-card); color: var(--color-muted); box-shadow: none; }
  13%, 22% { border-color: var(--color-accent); background: var(--color-accent-soft); color: var(--color-text); box-shadow: 0 0 15px rgba(200, 162, 74, 0.16); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-acceptance-hero .section-title,
  .fulfillment-acceptance-hero .section-description,
  .fulfillment-acceptance-hero .fulfillment-actions,
  .fulfillment-acceptance-scene,
  .fulfillment-acceptance-incoming span,
  .fulfillment-acceptance-zones span,
  .fulfillment-acceptance-moving-box {
    animation: none;
  }

  .fulfillment-acceptance-moving-box {
    opacity: 1;
    transform: translate(166px, 66px);
  }
}

/* Returns hero: inspection branches into resale or further work. */
.fulfillment-returns-hero {
  min-height: min(70svh, 680px);
}

.fulfillment-returns-hero .fulfillment-section-inner {
  width: min(100%, 1120px);
}

.fulfillment-returns-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.fulfillment-returns-hero .section-header {
  max-width: 650px;
}

.fulfillment-returns-hero .section-title {
  animation: fulfillment-services-hero-enter 0.62s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-returns-hero .section-description {
  animation: fulfillment-services-hero-enter 0.62s 0.1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-returns-hero .fulfillment-actions {
  animation: fulfillment-services-hero-enter 0.6s 0.18s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-returns-scene {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: linear-gradient(145deg, var(--color-card), var(--color-soft));
  box-shadow: var(--shadow-sm);
  animation: fulfillment-services-hero-enter 0.72s 0.26s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.fulfillment-returns-scene-kicker {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-returns-stage {
  position: relative;
  height: 206px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--color-soft), var(--color-card));
}

.fulfillment-returns-box,
.fulfillment-returns-check,
.fulfillment-returns-outcome {
  position: absolute;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-border);
  background: var(--color-card);
  color: var(--color-text);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
}

.fulfillment-returns-box {
  top: 82px;
  left: 20px;
  width: 58px;
  height: 46px;
  border: 2px solid #83652e;
  border-radius: 6px;
  background: #d2b36d;
  color: #463819;
  animation: fulfillment-returns-box 9s ease-in-out infinite;
}

.fulfillment-returns-check {
  top: 73px;
  left: calc(50% - 34px);
  width: 68px;
  height: 62px;
  border-radius: 12px;
  animation: fulfillment-returns-check 9s ease-in-out infinite;
}

.fulfillment-returns-check::before {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid var(--color-accent);
  border-radius: 50%;
  color: var(--color-accent-dark);
  content: "✓";
  font-size: 14px;
}

.fulfillment-returns-route {
  position: absolute;
  left: calc(50% + 28px);
  width: 76px;
  height: 2px;
  transform-origin: left center;
  animation: fulfillment-returns-route 9s ease-in-out infinite;
}

.fulfillment-returns-route-sale {
  top: 88px;
  background: var(--color-accent);
  transform: rotate(-28deg);
}

.fulfillment-returns-route-rework {
  top: 120px;
  background: #b85c55;
  transform: rotate(28deg);
  animation-name: fulfillment-returns-route-rework;
  animation-delay: 0.55s;
}

.fulfillment-returns-outcome {
  right: 16px;
  width: 88px;
  min-height: 42px;
  padding: 7px;
  border-radius: 10px;
  opacity: 0;
  animation: fulfillment-returns-outcome 9s ease-in-out infinite;
}

.fulfillment-returns-outcome b {
  display: block;
  margin-top: 3px;
  color: var(--color-accent-dark);
  font-size: 11px;
}

.fulfillment-returns-sale {
  top: 30px;
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
}

.fulfillment-returns-rework {
  right: 10px;
  bottom: 27px;
  border-color: rgba(184, 92, 85, 0.48);
  color: var(--color-muted);
  animation-delay: 0.7s;
}

.fulfillment-returns-note {
  margin: 14px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.45;
}

@keyframes fulfillment-returns-box {
  0%, 8% { opacity: 1; transform: translateX(0); }
  22%, 45% { opacity: 1; transform: translateX(95px); }
  54%, 100% { opacity: 0; transform: translateX(115px); }
}

@keyframes fulfillment-returns-check {
  0%, 17%, 100% { border-color: var(--color-border); box-shadow: none; }
  24%, 43% { border-color: var(--color-accent); box-shadow: 0 0 16px rgba(200, 162, 74, 0.2); }
}

@keyframes fulfillment-returns-route {
  0%, 39%, 100% { opacity: 0; transform: scaleX(0) rotate(-28deg); }
  47%, 76% { opacity: 1; transform: scaleX(1) rotate(-28deg); }
}

@keyframes fulfillment-returns-route-rework {
  0%, 39%, 100% { opacity: 0; transform: scaleX(0) rotate(28deg); }
  47%, 76% { opacity: 1; transform: scaleX(1) rotate(28deg); }
}

@keyframes fulfillment-returns-outcome {
  0%, 47%, 100% { opacity: 0; transform: translateX(-8px); }
  56%, 81% { opacity: 1; transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
  .fulfillment-returns-hero .section-title,
  .fulfillment-returns-hero .section-description,
  .fulfillment-returns-hero .fulfillment-actions,
  .fulfillment-returns-scene,
  .fulfillment-returns-box,
  .fulfillment-returns-check,
  .fulfillment-returns-route,
  .fulfillment-returns-outcome {
    animation: none;
  }

  .fulfillment-returns-sale {
    opacity: 1;
    transform: none;
  }
}

/* Three-step fulfillment process: real images are used automatically when supplied. */
.fulfillment-process-section {
  min-height: 0;
  padding: 62px 0;
}

.fulfillment-process-inner {
  width: 100%;
  max-width: 1180px;
}

.fulfillment-process-header {
  max-width: 720px;
}

.fulfillment-process-header .section-title {
  font-size: clamp(38px, 4.2vw, 54px);
}

.fulfillment-process-header .section-description {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.55;
}

.fulfillment-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.fulfillment-process-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
}

.fulfillment-process-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fulfillment-process-card-placeholder {
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), transparent 48%), #e2e0da;
}

.fulfillment-process-card-content {
  display: flex;
  min-height: 0;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 22px;
}

.fulfillment-process-stage {
  margin: 0 0 10px;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-process-card h3 {
  margin: 0;
  color: var(--color-dark);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fulfillment-process-card-content > p:last-child {
  margin: 12px 0 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.55;
}

.fulfillment-audience-section {
  min-height: 0;
  padding: 62px 0;
}

.fulfillment-audience-inner {
  width: 100%;
  max-width: 1180px;
}

.fulfillment-audience-header {
  max-width: 720px;
}

.fulfillment-audience-header .section-title {
  font-size: clamp(38px, 4.2vw, 54px);
}

.fulfillment-audience-header .section-description {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.55;
}

.fulfillment-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.fulfillment-audience-card {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
}

.fulfillment-audience-card-media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.fulfillment-audience-card-placeholder {
  border-bottom: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.66), transparent 48%), #e2e0da;
}

.fulfillment-audience-card-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 22px;
}

.fulfillment-audience-card h3 {
  margin: 0 0 18px;
  color: var(--color-dark);
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.fulfillment-audience-label {
  margin: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.fulfillment-audience-copy {
  margin: 8px 0 18px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.58;
}

.fulfillment-audience-copy:last-child {
  margin-bottom: 0;
}

html[data-theme="dark"] .fulfillment-audience-card {
  border-color: var(--color-border);
  background: var(--color-card);
}

html[data-theme="dark"] .fulfillment-audience-card-placeholder {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%), #2b2a26;
}

/* Native FAQ disclosure keeps several answers open without extra JavaScript. */
.fulfillment-faq-item {
  padding: 0;
  overflow: hidden;
}

.fulfillment-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  color: var(--color-dark);
  cursor: pointer;
  font-size: 20px;
  font-weight: 750;
  line-height: 1.35;
  list-style: none;
}

.fulfillment-faq-item summary::-webkit-details-marker {
  display: none;
}

.fulfillment-faq-item summary::after {
  flex: 0 0 auto;
  color: var(--color-accent-dark);
  content: "+";
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
}

.fulfillment-faq-item[open] summary::after {
  content: "−";
}

.fulfillment-faq-answer {
  padding: 0 24px 22px;
}

.fulfillment-faq-answer p {
  margin: 0;
  color: var(--color-muted);
  font-size: 16px;
  line-height: 1.6;
}

.fulfillment-faq-item summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -3px;
}

html[data-theme="dark"] .fulfillment-process-card {
  border-color: var(--color-border);
  background: var(--color-card);
}

html[data-theme="dark"] .fulfillment-process-card-placeholder {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 48%), #2b2a26;
}

.services-showcase-section {
  min-height: 0;
  align-items: flex-start;
  padding: 52px 0;
}

.services-showcase-inner {
  width: 100%;
  max-width: 1180px;
}

.services-showcase-header {
  max-width: 760px;
}

.services-showcase-header .section-title {
  font-size: clamp(38px, 4.2vw, 54px);
}

.services-showcase-header .section-description {
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.55;
}

.service-operations-grid,
.marketplace-cards-grid,
.services-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
}

.service-operations-grid {
  margin-top: 30px;
}

.services-overview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin-top: 30px;
}

.service-operation-card,
.marketplace-service-card {
  display: flex;
  height: 100%;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-card);
  box-shadow: var(--shadow-sm);
}

.service-operation-card {
  padding: 0;
}

.service-card-placeholder,
.marketplace-card-placeholder {
  display: block;
  flex: 0 0 auto;
  overflow: hidden;
  object-fit: cover;
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 46%), #e2e0da;
}

.service-card-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-width: 0 0 1px;
  border-radius: 0;
}

.service-operation-card h3,
.marketplace-service-card h3 {
  margin: 0;
  color: var(--color-dark);
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.service-operation-card h3,
.marketplace-service-card h3 {
  margin: 14px 14px 0;
}

.service-operation-card p,
.marketplace-service-card > p:not(.marketplace-card-kicker) {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 13px;
  line-height: 1.48;
}

.service-operation-card p,
.marketplace-service-card > p:not(.marketplace-card-kicker) {
  margin: 10px 14px 14px;
}

.service-operation-card-actions,
.marketplace-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  padding: 0 14px 14px;
}

.service-showcase-actions,
.marketplace-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-showcase-actions {
  margin-top: 20px;
}

.compact-card-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.compact-card-link:hover,
.compact-card-link:focus-visible {
  border-color: var(--color-accent);
  background: var(--color-soft);
  color: var(--color-text);
  outline: none;
}

.marketplace-cards-grid {
  margin-top: 28px;
}

.marketplace-service-card {
  scroll-margin-top: 132px;
}

.marketplace-card-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-width: 0 0 1px;
  border-radius: 0;
}

.marketplace-service-card h3,
.marketplace-service-card > p,
.marketplace-card-kicker {
  margin-right: 14px;
  margin-left: 14px;
}

.marketplace-card-kicker {
  margin-top: 14px;
  margin-bottom: 0;
  color: var(--color-accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketplace-service-card h3 {
  margin-top: 4px;
}

.marketplace-card-actions {
  margin-right: 0;
  margin-left: 0;
}

html[data-theme="dark"] .service-operation-card,
html[data-theme="dark"] .marketplace-service-card {
  border-color: var(--color-border);
  background: var(--color-card);
}

html[data-theme="dark"] .service-card-placeholder,
html[data-theme="dark"] .marketplace-card-placeholder {
  border-color: rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent 46%), #2b2a26;
}

html[data-theme="dark"] .compact-card-link {
  border-color: var(--button-secondary-border);
  background: var(--button-secondary-bg);
  color: var(--button-secondary-text);
}

html[data-theme="dark"] .compact-card-link:hover,
html[data-theme="dark"] .compact-card-link:focus-visible {
  border-color: var(--color-accent);
  background: var(--button-secondary-hover);
  color: var(--button-secondary-text);
}

@media (max-width: 980px) {
  .fulfillment-returns-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-returns-scene {
    padding: 22px;
  }

  .fulfillment-acceptance-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-acceptance-scene {
    padding: 22px;
  }

  .fulfillment-marking-line-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-marking-line {
    padding: 22px;
  }

  .fulfillment-packaging-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-packaging-scene {
    padding: 22px;
  }

  .fulfillment-marking-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-marking-scene {
    padding: 22px;
  }

  .fulfillment-blog-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-blog-scene {
    padding: 22px;
  }

  .fulfillment-cases-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-cases-scene {
    padding: 22px;
  }

  .fulfillment-prices-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-prices-calculation {
    padding: 22px;
  }

  .fulfillment-yandex-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-yandex-scene {
    padding: 22px;
  }

  .fulfillment-ozon-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-ozon-scene {
    padding: 22px;
  }

  .fulfillment-wildberries-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-wb-scene {
    padding: 22px;
  }

  .fulfillment-services-hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
    gap: 30px;
  }

  .fulfillment-services-cycle {
    padding: 22px;
  }

  .fulfillment-hero-content-layout {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 310px);
    gap: 28px;
  }

  .fulfillment-hero-typing {
    min-height: 230px;
    margin-top: 26px;
    padding: 22px;
  }

  .fulfillment-section-hero .fulfillment-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-operations-grid,
  .marketplace-cards-grid,
  .services-overview-grid,
  .fulfillment-process-grid,
  .fulfillment-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .fulfillment-returns-hero {
    min-height: auto;
  }

  .fulfillment-returns-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-returns-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-acceptance-hero {
    min-height: auto;
  }

  .fulfillment-acceptance-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-acceptance-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-marking-line-hero {
    min-height: auto;
  }

  .fulfillment-marking-line-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-marking-line {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-packaging-hero {
    min-height: auto;
  }

  .fulfillment-packaging-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-packaging-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-marking-hero {
    min-height: auto;
  }

  .fulfillment-marking-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-marking-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-blog-hero {
    min-height: auto;
  }

  .fulfillment-blog-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-blog-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-cases-hero {
    min-height: auto;
  }

  .fulfillment-cases-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-cases-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-prices-hero {
    min-height: auto;
  }

  .fulfillment-prices-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-prices-calculation {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-yandex-hero {
    min-height: auto;
  }

  .fulfillment-yandex-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-yandex-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-ozon-hero {
    min-height: auto;
  }

  .fulfillment-ozon-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-ozon-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-wildberries-hero {
    min-height: auto;
  }

  .fulfillment-wildberries-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-wb-scene {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-services-hero {
    min-height: auto;
  }

  .fulfillment-services-hero-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fulfillment-services-cycle {
    max-width: 560px;
    padding: 22px;
  }

  .fulfillment-wb-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-wb-stage {
    height: 150px;
    margin-top: 16px;
  }

  .fulfillment-wb-statuses {
    gap: 6px;
    margin-top: 10px;
  }

  .fulfillment-wb-status {
    min-height: 34px;
    padding: 8px;
    font-size: 11px;
  }
}

@media (max-width: 720px) {
  .fulfillment-section-hero {
    min-height: auto;
    padding-top: 38px;
    padding-bottom: 44px;
  }

  .fulfillment-section-hero .section-title {
    font-size: clamp(36px, 10vw, 48px);
  }

  .fulfillment-hero-content-layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .fulfillment-hero-typing {
    min-height: 0;
    margin-top: 0;
    padding: 20px;
  }

  .fulfillment-hero-typing-label {
    margin-top: 16px;
  }

  .fulfillment-hero-typing-text {
    min-height: 3.9em;
    font-size: clamp(22px, 7vw, 28px);
  }

  .fulfillment-services-cycle {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-yandex-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-prices-calculation {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-cases-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-blog-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-marking-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-packaging-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-marking-line {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-acceptance-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-returns-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-returns-stage {
    height: 192px;
    margin-top: 16px;
  }

  .fulfillment-acceptance-stage {
    height: 198px;
    margin-top: 16px;
  }

  .fulfillment-acceptance-zones {
    left: 34%;
  }

  .fulfillment-marking-line-track {
    height: 158px;
    margin-top: 16px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .fulfillment-marking-line-station {
    width: 42px;
    height: 42px;
  }

  .fulfillment-packaging-stage {
    height: 184px;
    margin-top: 16px;
  }

  .fulfillment-marking-stage {
    height: 184px;
    margin-top: 16px;
  }

  .fulfillment-marking-box {
    left: 24px;
  }

  .fulfillment-marking-label,
  .fulfillment-marking-scanner {
    left: 68px;
  }

  .fulfillment-marking-checked {
    right: 18px;
  }

  .fulfillment-blog-card-stack {
    height: 224px;
    margin-top: 16px;
  }

  .fulfillment-blog-topic-card {
    min-height: 180px;
    padding: 18px;
  }

  .fulfillment-cases-stack {
    height: 250px;
    margin-top: 16px;
  }

  .fulfillment-cases-task-card {
    padding: 16px;
  }

  .fulfillment-cases-task-card h2 {
    font-size: 19px;
  }

  .fulfillment-prices-calculation-card {
    margin-top: 16px;
    padding: 15px;
  }

  .fulfillment-yandex-stage {
    height: 170px;
    margin-top: 16px;
  }

  .fulfillment-yandex-package-new {
    left: 16px;
  }

  .fulfillment-yandex-package-packed {
    right: 70px;
  }

  .fulfillment-yandex-label {
    right: 82px;
  }

  .fulfillment-yandex-steps {
    gap: 4px;
    margin-top: 10px;
  }

  .fulfillment-yandex-steps li {
    min-height: 34px;
    padding: 7px 3px;
    font-size: 9px;
  }

  .fulfillment-ozon-scene {
    padding: 18px;
    border-radius: 16px;
  }

  .fulfillment-ozon-stage {
    height: 150px;
    margin-top: 16px;
  }

  .fulfillment-ozon-statuses {
    gap: 6px;
    margin-top: 10px;
  }

  .fulfillment-ozon-status {
    min-height: 34px;
    padding: 8px;
    font-size: 11px;
  }

  .fulfillment-services-cycle-list {
    gap: 8px;
    margin-top: 16px;
  }

  .fulfillment-services-cycle-step {
    min-height: 48px;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 10px;
    padding: 9px 12px;
  }

  .fulfillment-services-cycle-step:not(:last-child)::after {
    left: 27px;
    bottom: -9px;
    height: 9px;
  }

  .fulfillment-services-cycle-number {
    width: 28px;
    height: 28px;
    font-size: 11px;
  }

  .fulfillment-services-cycle-title {
    font-size: 16px;
  }

  .fulfillment-section-hero .fulfillment-list {
    grid-template-columns: 1fr;
    margin-top: 22px;
  }

  .fulfillment-hero-flow {
    margin-top: 34px;
  }

  .fulfillment-hero-flow-track {
    height: 112px;
    border-radius: 12px;
  }

  .fulfillment-hero-flow-track::before {
    top: 18px;
  }

  .fulfillment-hero-flow-track::after {
    bottom: 18px;
  }

  .fulfillment-hero-flow-lane {
    top: 24px;
    height: 64px;
    background-position: 0 5px, 9px 52px;
    background-size: 16px 16px;
  }

  .fulfillment-hero-box {
    top: 40px;
    width: 44px;
    height: 31px;
  }

  .fulfillment-hero-box-two {
    width: 38px;
    height: 28px;
  }

  .fulfillment-hero-box-three {
    width: 48px;
    height: 34px;
  }

  .fulfillment-hero-flow-steps {
    gap: 0;
    margin-top: 12px;
  }

  .fulfillment-hero-flow-steps li {
    min-height: 42px;
    padding: 4px;
    font-size: clamp(18px, 5.5vw, 25px);
  }

  .services-showcase-section {
    padding: 44px 0;
  }

  .fulfillment-process-section {
    padding: 44px 0;
  }

  .fulfillment-audience-section {
    padding: 44px 0;
  }

  .service-operations-grid,
  .marketplace-cards-grid,
  .services-overview-grid,
  .fulfillment-process-grid,
  .fulfillment-audience-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fulfillment-process-card-content {
    padding: 18px;
  }

  .fulfillment-audience-card-content {
    padding: 18px;
  }

  .fulfillment-faq-item summary {
    padding: 18px;
    font-size: 18px;
  }

  .fulfillment-faq-answer {
    padding: 0 18px 18px;
  }
}
