:root {
  --bg: #f3f6fb;
  --panel: #ffffff;
  --text: #101828;
  --muted: #5b6880;
  --accent: #245dff;
  --accent-dark: #1c4cd1;
  --border: #d9e2f0;
  --card-border: rgba(157, 180, 219, 0.35);
  --card-shadow: 0 8px 24px rgba(17, 40, 87, 0.08);
  --card-shadow-hover: 0 14px 30px rgba(17, 40, 87, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
  min-height: 100vh;
  background-image:
    radial-gradient(900px 480px at 0% -10%, rgba(36, 93, 255, 0.08), transparent 60%),
    radial-gradient(700px 380px at 100% 0%, rgba(0, 177, 255, 0.07), transparent 58%),
    linear-gradient(180deg, #f7f9fd 0%, #f1f5fb 100%);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: relative;
  z-index: 60;
  padding: 12px 0 10px;
  background: transparent;
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 92px;
  padding: 0 18px;
  position: relative;
  overflow: visible;
  border: 1px solid rgba(163, 189, 234, 0.45);
  border-radius: 16px;
  background:
    linear-gradient(150deg, rgba(251, 253, 255, 0.92) 0%, rgba(241, 248, 255, 0.9) 100%),
    radial-gradient(95% 120% at 100% -10%, rgba(56, 145, 255, 0.15) 0%, rgba(56, 145, 255, 0) 62%);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(18, 54, 124, 0.12);
}

.header-inner > .logo {
  justify-self: start;
}

.header-inner > .nav {
  grid-column: 2;
  justify-self: center;
}

.header-inner > .header-cta-dropdown {
  grid-column: 3;
  justify-self: end;
  position: relative;
}

.header-inner > .btn,
.header-cta-dropdown .header-cta-toggle {
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 13px;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, #2a67ff 0%, #1f8fff 100%);
  box-shadow: 0 12px 24px rgba(36, 93, 255, 0.26);
  border: none;
  cursor: pointer;
  font-family: inherit;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.header-inner > .btn:hover,
.header-cta-dropdown .header-cta-toggle:hover {
  background: linear-gradient(135deg, #356fff 0%, #2aa2ff 100%);
  box-shadow: 0 14px 28px rgba(36, 93, 255, 0.32);
}

.header-cta-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 80;
  min-width: 210px;
  padding: 8px;
  border: 1px solid rgba(148, 180, 236, 0.55);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 54, 124, 0.16);
  list-style: none;
}

.header-cta-menu[hidden] {
  display: none !important;
}

.header-cta-menu-link {
  display: block;
  margin: 0;
  padding: 11px 14px;
  border: none;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  color: #1f4fd8 !important;
  background: #f4f8ff;
  text-decoration: none !important;
  box-shadow: none;
  cursor: pointer;
}

.header-cta-menu-link + .header-cta-menu-link {
  margin-top: 6px;
}

.header-cta-menu-link:hover {
  background: rgba(42, 109, 255, 0.14);
  color: #173f9f !important;
}

.header-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 24%, rgba(255, 255, 255, 0.48) 50%, rgba(255, 255, 255, 0) 76%);
  transform: translateX(-130%);
  animation: header-sheen 8.5s ease-in-out infinite;
  pointer-events: none;
  clip-path: inset(0 round 16px);
  pointer-events: none;
}

.header-inner::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 93, 255, 0), rgba(36, 93, 255, 0.5), rgba(72, 180, 255, 0.5), rgba(36, 93, 255, 0));
  pointer-events: none;
}

.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  color: var(--text);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.logo img {
  width: 210px;
  height: auto;
  max-width: 100%;
  display: block;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  position: relative;
  text-decoration: none;
  color: var(--muted);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2d6dff 0%, #43b4ff 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a.active,
.nav a:hover {
  color: var(--text);
}

.nav a.active::after,
.nav a:hover::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(147, 177, 230, 0.62);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #eef6ff 100%);
  box-shadow: 0 10px 18px rgba(20, 59, 138, 0.14);
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 13px 20px rgba(20, 59, 138, 0.18);
  border-color: rgba(106, 152, 231, 0.7);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #2559d8;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
}

.btn {
  display: inline-block;
  background: linear-gradient(135deg, #245dff 0%, #1f8fff 120%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 22px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(36, 93, 255, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: linear-gradient(135deg, #2c66ff 0%, #2a97ff 120%);
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 15px 28px rgba(36, 93, 255, 0.33);
}

.btn::after {
  content: "";
  position: absolute;
  top: -120%;
  left: -35%;
  width: 34%;
  height: 320%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0));
  transform: rotate(16deg);
  transition: left 0.55s ease;
}

.btn:hover::after {
  left: 125%;
}

@keyframes header-sheen {
  0% {
    transform: translateX(-130%);
  }
  52%,
  100% {
    transform: translateX(130%);
  }
}

.section {
  padding: 44px 0;
}

.section-compact {
  padding-top: 10px;
  padding-bottom: 20px;
}

.page-main .section {
  padding: 34px 0;
}

.page-main .section:not(.section-compact) {
  position: relative;
  isolation: isolate;
}

.page-main .section:not(.section-compact) > .container {
  position: relative;
  z-index: 1;
}

.page-main .section:not(.section-compact) > * {
  position: relative;
  z-index: 1;
}

.page-main .section:not(.section-compact)::before {
  content: "";
  position: absolute;
  inset: 6px 0;
  z-index: -1;
  background:
    radial-gradient(95% 120% at 100% 0%, rgba(36, 93, 255, 0.06) 0%, rgba(36, 93, 255, 0) 65%),
    linear-gradient(180deg, rgba(247, 250, 255, 0.58) 0%, rgba(242, 247, 255, 0.4) 100%);
  border-top: 1px solid rgba(168, 192, 235, 0.24);
  border-bottom: 1px solid rgba(168, 192, 235, 0.24);
  pointer-events: none;
}

.ref-hero {
  padding: 28px 0 12px;
}

.ref-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 16px;
  align-items: start;
  position: relative;
}

.ref-hero-grid::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 30px;
  width: 36%;
  height: 80%;
  background: linear-gradient(130deg, rgba(36, 93, 255, 0.1), rgba(36, 93, 255, 0));
  clip-path: polygon(26% 0%, 100% 0%, 72% 100%, 0% 100%);
  pointer-events: none;
}

.ref-hero-left h1 {
  margin: 0 0 14px;
  font-size: 54px;
  line-height: 0.98;
}

.ref-hero-left h1 span {
  color: #f59e0b;
}

.ref-hero-left p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 560px;
}

.hero-inline-accent {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent) 0%, #1f8fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  white-space: nowrap;
  display: inline-block;
  line-height: inherit;
  vertical-align: baseline;
  animation: hero-word-float 2.8s ease-in-out infinite;
}

@keyframes hero-word-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.ref-hero-actions {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.ref-hero-actions .btn {
  min-width: 205px;
  text-align: center;
}

.ref-kpi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 34px;
}

.ref-kpi div {
  border: 1px solid #d9e5fa;
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
  animation: service-step-in 0.55s ease forwards;
}

.ref-kpi div:nth-child(1) {
  animation-delay: 0.12s;
}

.ref-kpi div:nth-child(2) {
  animation-delay: 0.24s;
}

.ref-kpi div:nth-child(3) {
  animation-delay: 0.36s;
}

.ref-kpi div:nth-child(4) {
  animation-delay: 0.48s;
}

.ref-kpi strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.ref-kpi span {
  font-size: 11px;
  line-height: 1.35;
  color: var(--muted);
}

.ref-hero-right {
  display: grid;
  gap: 10px;
  max-width: 420px;
}

.ref-service-chip {
  border: 1px solid #d6e4fb;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.ref-service-chip-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: none;
  color: #2453bb;
}

.ref-service-chip-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.ref-service-chip-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.ref-service-chip-label {
  line-height: 1.25;
}

.ref-service-chip b {
  color: #7f94be;
}

.ref-service-item {
  justify-content: flex-start;
  cursor: default;
  opacity: 0;
  transform: translateY(14px);
  animation: service-step-in 0.55s ease forwards;
}

.ref-hero-right .ref-service-item:nth-child(1) {
  animation-delay: 0.12s;
}

.ref-hero-right .ref-service-item:nth-child(2) {
  animation-delay: 0.24s;
}

.ref-hero-right .ref-service-item:nth-child(3) {
  animation-delay: 0.36s;
}

.ref-hero-right .ref-service-item:nth-child(4) {
  animation-delay: 0.48s;
}

.ref-hero-right .ref-service-item:nth-child(5) {
  animation-delay: 0.6s;
}

.marketplaces-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.99) 0%, rgba(242, 248, 255, 0.98) 100%);
  animation: marketplaces-float 8s ease-in-out infinite;
}

.marketplaces-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.58) 50%, rgba(255, 255, 255, 0) 70%);
  transform: translateX(-130%);
  animation: marketplaces-sheen 5.8s ease-in-out infinite;
  pointer-events: none;
}

.marketplaces-strip .muted {
  text-align: center;
  font-weight: 600;
}

.marketplaces-marquee {
  --marquee-gap: 12px;
  position: relative;
  display: flex;
  gap: var(--marquee-gap);
  width: min(100%, 760px);
  overflow: hidden;
  padding: 2px 0;
}

.marketplaces-marquee::before,
.marketplaces-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 68px;
  z-index: 2;
  pointer-events: none;
}

.marketplaces-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(247, 251, 255, 1) 20%, rgba(247, 251, 255, 0) 100%);
}

.marketplaces-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(247, 251, 255, 1) 20%, rgba(247, 251, 255, 0) 100%);
}

.marketplaces-track {
  display: flex;
  gap: var(--marquee-gap);
  min-width: max-content;
  animation: marketplaces-marquee 15s linear infinite;
}

.marketplaces-marquee:hover .marketplaces-track {
  animation-play-state: paused;
}

.mp-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  height: 44px;
  padding: 8px 14px;
  border: 1px solid #d9e6ff;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(31, 82, 204, 0.08);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  animation: logo-breathe 4.6s ease-in-out infinite;
}

.mp-logo:hover {
  transform: translateY(-3px) scale(1.05);
  border-color: #b5cdfd;
  box-shadow: 0 13px 22px rgba(36, 93, 255, 0.2);
}

.mp-logo img {
  max-width: 100%;
  max-height: 24px;
  width: auto;
  height: auto;
  display: block;
}

.mp-logo-lamoda img {
  max-height: 30px;
}

@keyframes marketplaces-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes marketplaces-sheen {
  0% {
    transform: translateX(-130%);
  }
  55%,
  100% {
    transform: translateX(130%);
  }
}

@keyframes marketplaces-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--marquee-gap)));
  }
}

@keyframes logo-breathe {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.5px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marketplaces-strip,
  .marketplaces-strip::after,
  .marketplaces-track,
  .mp-logo {
    animation: none;
  }
}

@keyframes service-step-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.promo-strip p {
  margin: 6px 0 0;
}

h1 {
  font-size: 42px;
  line-height: 1.12;
  margin: 0 0 14px;
}

h2 {
  margin: 0 0 16px;
  font-size: 30px;
  color: #132f59;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.55);
}

.page-main .section h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.page-main .section h2::after {
  content: "";
  width: 38px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #2560ff 0%, #48b4ff 100%);
  box-shadow: 0 1px 10px rgba(42, 115, 255, 0.35);
}

.lead {
  color: #425777;
  font-size: 18px;
  max-width: 760px;
}

.grid-2,
.grid-3 {
  display: grid;
  gap: 14px;
}

.grid-2 {
  grid-template-columns: 1.15fr 0.85fr;
}

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

.card {
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 251, 255, 0.98) 100%),
    radial-gradient(130% 120% at 100% 0%, rgba(64, 164, 255, 0.08) 0%, rgba(64, 164, 255, 0) 70%);
  border: 1px solid rgba(156, 182, 226, 0.4);
  border-radius: 16px;
  padding: 22px;
  box-shadow: var(--card-shadow);
}

.kpi {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.kpi strong {
  display: block;
  font-size: 24px;
}

.feature-card {
  border-color: rgba(156, 182, 226, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 155, 231, 0.55);
  box-shadow: 0 14px 30px rgba(18, 58, 126, 0.16);
}

.about-page .about-intro {
  margin-bottom: 16px;
}

.about-values-grid {
  margin-bottom: 8px;
}

.about-value-card {
  border-color: rgba(156, 182, 226, 0.45);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(110, 155, 231, 0.55);
  box-shadow: 0 12px 26px rgba(18, 58, 126, 0.13);
}

.about-value-card .feature-title {
  margin-bottom: 10px;
}

.about-page .list {
  margin: 0;
  padding-left: 18px;
}

.feature-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  min-height: 56px;
}

.feature-title-icon {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #eaf1ff;
  color: #245dff;
}

.feature-title-icon svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.feature-card p {
  margin: 0;
}

.process-route {
  padding: 24px 22px;
  border-color: #bfd6ff;
  background:
    radial-gradient(120% 150% at 0% 0%, rgba(36, 93, 255, 0.1) 0%, rgba(36, 93, 255, 0) 62%),
    linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%);
}

.process-route-lead {
  margin: 0 0 16px;
  max-width: 780px;
}

.process-route-track {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.process-route-track li {
  position: relative;
}

.process-route-track li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -7px;
  width: 12px;
  height: 2px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: rgba(42, 115, 255, 0.35);
}

.process-route-chip {
  display: block;
  padding: 8px 10px;
  border: 1px solid rgba(167, 190, 229, 0.5);
  border-radius: 12px;
  background: #fff;
  color: #36589f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-align: center;
}

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

.process-route-card {
  padding: 16px;
  border: 1px solid rgba(162, 188, 233, 0.36);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--card-shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  animation: process-route-step-cycle 12s ease-in-out infinite;
}

.process-route-card:hover {
  animation-play-state: paused;
  transform: translateY(-4px);
  border-color: rgba(129, 166, 236, 0.52);
  box-shadow: var(--card-shadow-hover);
}

.process-route-card:nth-child(2) {
  animation-delay: 2s;
}

.process-route-card:nth-child(3) {
  animation-delay: 4s;
}

.process-route-card:nth-child(4) {
  animation-delay: 6s;
}

.process-route-card:nth-child(5) {
  animation-delay: 8s;
}

.process-route-card:nth-child(6) {
  animation-delay: 10s;
}

.process-route-index {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(42, 115, 255, 0.11);
  color: #34579f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.process-route-card h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.2;
}

.process-route-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

@keyframes process-route-step-cycle {
  0%,
  15% {
    border-color: rgba(93, 145, 237, 0.7);
    box-shadow: 0 0 0 1px rgba(82, 140, 246, 0.18), 0 16px 28px rgba(33, 88, 196, 0.18);
    background: linear-gradient(160deg, #ffffff 0%, #edf6ff 100%);
  }
  24%,
  100% {
    border-color: rgba(162, 188, 233, 0.36);
    box-shadow: var(--card-shadow);
    background: #fff;
  }
}

.services-preview .card h3 {
  margin-bottom: 8px;
}

.service-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0;
}

.service-split-cell {
  padding: 22px;
  min-width: 0;
}

.service-split-cell + .service-split-cell {
  border-top: 1px solid rgba(126, 167, 234, 0.45);
}

.service-split-cell .muted {
  margin: 0;
}

.service-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.service-head h3 {
  margin: 0;
  line-height: 1.25;
  transform: translateY(4px);
}

.service-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(73, 143, 255, 0.18) 0%, rgba(73, 143, 255, 0.08) 100%);
  border: 1px solid rgba(100, 151, 230, 0.4);
  color: #2453bb;
}

.service-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.services-highlight .card {
  position: relative;
  overflow: hidden;
  border-color: rgba(126, 167, 234, 0.5);
}

.price-pack {
  display: flex;
  flex-direction: column;
}

.price-pack h3 {
  margin: 4px 0 10px;
  font-size: 24px;
  line-height: 1.2;
}

.price-pack p {
  margin-top: auto;
  margin-bottom: 0;
}

.price-pack.is-accent {
  border-color: rgba(108, 152, 233, 0.5);
  box-shadow: var(--card-shadow-hover);
}

.calculator-teaser {
  background:
    linear-gradient(145deg, #ffffff 0%, #f4f9ff 100%),
    radial-gradient(90% 120% at 95% -10%, rgba(36, 93, 255, 0.1) 0%, rgba(36, 93, 255, 0) 70%);
}

.calc-form-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 14px 0 0;
}

.calc-form-row--contact {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 10px;
  margin-bottom: 16px;
}

.calc-form-row input,
.calc-form-row select {
  width: 100%;
  border: 1px solid #d4e1f6;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}

.calc-form-row select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7c99 50%),
    linear-gradient(135deg, #6b7c99 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 34px;
  cursor: pointer;
}

.calc-form-row select:has(option[value=""]:checked) {
  color: #8a96ad;
}

.calc-form-row select option {
  color: var(--text);
}

.calc-form-row input:focus,
.calc-form-row select:focus {
  outline: none;
  border-color: rgba(36, 93, 255, 0.55);
  box-shadow: 0 0 0 3px rgba(36, 93, 255, 0.12);
}

.calc-consent-last {
  margin: 4px 0 12px;
}

.calc-form--locked input:disabled,
.calc-form--locked select:disabled,
.calc-form--locked textarea:disabled {
  background: #f0f4fb;
  color: #8a96ad;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}

.calc-form--locked select:disabled {
  background-image: none;
}

.calc-cta-row .btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  box-shadow: none;
}

.calc-cta-row {
  margin: 0;
}

.calc-cta-row .btn {
  border: none;
  cursor: pointer;
  font: inherit;
}

.calc-send-panel {
  margin-top: 4px;
}

.calc-send-panel[hidden] {
  display: none;
}

.calculator-teaser .tz-send-title {
  margin-top: 10px;
}

.calculator-teaser .tz-send-row {
  margin-top: 8px;
}

.calc-form-error {
  margin: 0 0 8px;
  font-size: 13px;
  color: #c73a3a;
}

.calc-form-row input.calc-input-invalid {
  border-color: #e25555;
  box-shadow: 0 0 0 3px rgba(226, 85, 85, 0.12);
}

.reviews-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(320px, 1fr);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding-bottom: 6px;
  scrollbar-width: thin;
}

.review-card {
  min-height: 186px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  border-color: rgba(156, 182, 226, 0.44);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(110, 155, 231, 0.55);
  box-shadow: 0 14px 30px rgba(18, 58, 126, 0.16);
}

.review-card p {
  margin: 0 0 10px;
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 13px;
}

.review-score {
  font-weight: 800;
  color: #1c3765;
}

.review-stars {
  color: #f4b400;
  letter-spacing: 0.05em;
  font-size: 14px;
  line-height: 1;
}

.review-source {
  color: #63789b;
}

.review-text {
  margin: 0 0 14px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e6eefc;
  box-shadow: 0 4px 10px rgba(17, 40, 87, 0.14);
}

.review-avatar-generic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #edf4ff 0%, #dce9ff 100%);
  color: #2e5fcb;
  font-size: 18px;
  line-height: 1;
}

.review-meta {
  margin: 0;
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.review-meta strong {
  font-size: 14px;
  color: #173764;
}

.review-meta .muted {
  font-size: 12px;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details.card {
  border-color: rgba(156, 182, 226, 0.44);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-list details.card[open],
.faq-list details.card:hover {
  border-color: rgba(110, 155, 231, 0.58);
  box-shadow: 0 12px 24px rgba(18, 58, 126, 0.12);
  transform: translateY(-2px);
}

.faq-list details summary {
  cursor: pointer;
  font-weight: 600;
}

.faq-list details p {
  margin: 10px 0 0;
}

.cta-panel {
  text-align: center;
  background:
    radial-gradient(90% 120% at 100% -20%, rgba(58, 191, 255, 0.12) 0%, rgba(58, 191, 255, 0) 75%),
    linear-gradient(180deg, #ffffff 0%, #f1f7ff 100%);
  border-color: #cfe1ff;
}

.cta-panel .lead {
  margin-left: auto;
  margin-right: auto;
}

.cta-banner {
  background:
    linear-gradient(140deg, #2d6dff 0%, #1b93ff 100%),
    radial-gradient(120% 160% at 100% 50%, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-color: transparent;
}

.cta-banner h2,
.cta-banner .lead {
  color: #fff;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px) scale(0.99);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes roadmap-flow {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 220%;
  }
}

@keyframes roadmap-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(42, 115, 255, 0.35), 0 0 0 4px #eaf1ff;
  }
  50% {
    box-shadow: 0 0 0 12px rgba(42, 115, 255, 0), 0 0 0 4px #eaf1ff;
  }
}

@keyframes timeline-panel-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

@keyframes timeline-tracker {
  0% {
    top: 10px;
    opacity: 0.9;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: calc(100% - 18px);
    opacity: 0.8;
  }
}

@keyframes timeline-card-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes timeline-card-drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

@keyframes timeline-badge-glow {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0 0;
  }
}

@keyframes panel-sheen {
  0% {
    transform: translateX(-130%);
  }
  52%,
  100% {
    transform: translateX(130%);
  }
}


.muted {
  color: var(--muted);
}

.list {
  margin: 0;
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

th,
td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: middle;
}

th {
  background: #eef4ff;
}

tr:last-child td {
  border-bottom: none;
}

td:nth-child(2),
td:nth-child(3),
td:nth-child(4),
th:nth-child(2),
th:nth-child(3),
th:nth-child(4) {
  text-align: right;
  white-space: nowrap;
}

.logistics-page th:nth-child(2),
.logistics-page th:nth-child(3),
.logistics-page th:nth-child(4),
.logistics-page td:nth-child(2),
.logistics-page td:nth-child(3),
.logistics-page td:nth-child(4) {
  font-variant-numeric: tabular-nums;
}

.logistics-routes-table th:first-child {
  color: #173764;
  font-weight: 800;
}

.logistics-routes-table thead th {
  background:
    linear-gradient(160deg, rgba(232, 241, 255, 0.98) 0%, rgba(221, 235, 255, 0.98) 100%),
    radial-gradient(120% 140% at 100% -10%, rgba(73, 151, 255, 0.14) 0%, rgba(73, 151, 255, 0) 62%);
  color: #102b52;
  font-weight: 800;
  border-bottom: 2px solid rgba(58, 120, 236, 0.45);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.65);
}

.logistics-routes-table th:nth-child(1),
.logistics-routes-table tbody td:nth-child(1) {
  font-weight: 700;
  color: #12408f;
  background: linear-gradient(90deg, rgba(67, 136, 248, 0.16) 0%, rgba(67, 136, 248, 0.05) 100%);
  box-shadow: inset 3px 0 0 rgba(44, 107, 232, 0.88);
}

.logistics-routes-table th:nth-child(2),
.logistics-routes-table tbody td:nth-child(2) {
  background: linear-gradient(90deg, rgba(67, 136, 248, 0.09) 0%, rgba(67, 136, 248, 0.02) 70%, rgba(67, 136, 248, 0) 100%);
}

.logistics-routes-table th:nth-child(3),
.logistics-routes-table tbody td:nth-child(3) {
  background: linear-gradient(90deg, rgba(111, 146, 214, 0.08) 0%, rgba(111, 146, 214, 0.02) 72%, rgba(111, 146, 214, 0) 100%);
}

.logistics-routes-table th:nth-child(4),
.logistics-routes-table tbody td:nth-child(4) {
  background: linear-gradient(90deg, rgba(130, 154, 198, 0.06) 0%, rgba(130, 154, 198, 0.015) 72%, rgba(130, 154, 198, 0) 100%);
}

.logistics-page .logistics-routes-table th:nth-child(2),
.logistics-page .logistics-routes-table th:nth-child(3),
.logistics-page .logistics-routes-table th:nth-child(4),
.logistics-page .logistics-routes-table td:nth-child(2),
.logistics-page .logistics-routes-table td:nth-child(3),
.logistics-page .logistics-routes-table td:nth-child(4) {
  color: #111827;
}

.logistics-page td:nth-child(2),
.logistics-page td:nth-child(3),
.logistics-page td:nth-child(4) {
  font-weight: 700;
  color: #173f8f;
  letter-spacing: 0.01em;
}

.logistics-page th:nth-child(2),
.logistics-page th:nth-child(3),
.logistics-page th:nth-child(4) {
  font-weight: 800;
  color: #1b3769;
}

.footer {
  position: relative;
  margin-top: 48px;
  padding: 30px 0 20px;
  color: #4d5f7f;
  font-size: 14px;
  border-top: 1px solid rgba(160, 188, 236, 0.5);
  background:
    radial-gradient(85% 110% at 0% 0%, rgba(36, 93, 255, 0.11) 0%, rgba(36, 93, 255, 0) 62%),
    radial-gradient(95% 120% at 100% -20%, rgba(72, 180, 255, 0.13) 0%, rgba(72, 180, 255, 0) 60%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(420px, 72vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 93, 255, 0), rgba(36, 93, 255, 0.75), rgba(63, 185, 255, 0.75), rgba(36, 93, 255, 0));
  box-shadow: 0 2px 14px rgba(36, 93, 255, 0.25);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 24px;
  padding: 22px;
  margin-bottom: 12px;
  border: 1px solid rgba(156, 182, 226, 0.42);
  border-radius: 16px;
  background: rgba(247, 251, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(17, 40, 87, 0.09);
}

.footer-logo {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 8px;
}

.footer-brand p {
  margin: 8px 0 0;
  max-width: 300px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-col h3 {
  margin: 4px 0 10px;
  font-size: 14px;
  color: #16345f;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 7px;
}

.footer-col li {
  margin: 0;
}

.footer-col a {
  color: #3f5273;
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent-dark);
}

.footer-contact-address {
  color: #546a8a;
  line-height: 1.45;
}

.footer-contact-label {
  font-weight: 700;
  color: #16345f;
}

.footer-bottom {
  border-top: 1px solid rgba(160, 188, 236, 0.45);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #5f7190;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: inherit;
  text-decoration: none;
}

.footer-bottom-links a:hover {
  color: var(--accent-dark);
}

.tag {
  display: inline-block;
  font-size: 12px;
  color: #345182;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 9px;
  margin-bottom: 8px;
  background: #f4f8ff;
}

.messenger-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
  position: relative;
  z-index: 1;
}

.messenger-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  width: 100%;
  border: 1px solid rgba(148, 180, 236, 0.45);
  border-radius: 11px;
  background: linear-gradient(150deg, #ffffff 0%, #f6fbff 100%);
  padding: 9px 11px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.messenger-link:hover {
  color: var(--accent-dark);
  border-color: rgba(96, 145, 231, 0.6);
  box-shadow: 0 10px 20px rgba(20, 59, 138, 0.12);
  transform: translateY(-1px);
}

.messenger-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.messenger-icon.wa {
  background: #25d366;
}

.messenger-icon.tg {
  background: #229ed9;
}

.messenger-icon.mx {
  background: #6366f1;
}

.messenger-label {
  font-weight: 700;
  font-size: 15px;
}

.messenger-arrow {
  margin-left: auto;
  color: #6d83b5;
  font-size: 13px;
  line-height: 1;
}

.messengers-card .contacts-note {
  margin-top: 12px;
  padding: 9px 11px;
  border: 1px dashed rgba(149, 177, 228, 0.55);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.45;
}

.about-intro,
.contacts-hero {
  margin-bottom: 14px;
}

.about-intro h1,
.contacts-hero h1 {
  margin-bottom: 8px;
}

.about-intro,
.contacts-hero,
.booking-hero,
.logistics-intro {
  position: relative;
  overflow: hidden;
  border-color: rgba(142, 176, 232, 0.52);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.99) 0%, rgba(243, 250, 255, 0.98) 100%),
    radial-gradient(95% 120% at 100% -15%, rgba(64, 164, 255, 0.14) 0%, rgba(64, 164, 255, 0) 64%);
}

.about-intro::after,
.contacts-hero::after,
.booking-hero::after,
.logistics-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0) 32%, rgba(255, 255, 255, 0.54) 50%, rgba(255, 255, 255, 0) 68%);
  transform: translateX(-130%);
  animation: panel-sheen 8.8s ease-in-out infinite;
  pointer-events: none;
}

.contacts-cta-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
  position: relative;
  z-index: 1;
}

.tz-download-row {
  margin-top: 12px;
  margin-bottom: 4px;
}

.tz-send-title {
  margin: 14px 0 0;
  font-size: 15px;
}

.tz-send-row {
  margin-top: 8px;
}

.tz-send-hint {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.45;
  max-width: 52ch;
}

.secondary-link {
  background: linear-gradient(150deg, #ffffff 0%, #f3f9ff 100%);
  color: #1f4fd8;
  border: 1px solid rgba(148, 180, 236, 0.56);
  box-shadow: 0 8px 18px rgba(24, 65, 153, 0.1);
}

.secondary-link:hover {
  background: linear-gradient(150deg, #ffffff 0%, #eef6ff 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(24, 65, 153, 0.14);
}

.contacts-cta-row .contacts-chat-btn,
.contacts-cta-row .contacts-chat-btn:visited {
  background: linear-gradient(150deg, #ffffff 0%, #f3f9ff 100%);
  color: #1f4fd8;
  border: 1px solid rgba(148, 180, 236, 0.56);
  box-shadow: 0 8px 18px rgba(24, 65, 153, 0.1);
}

.contacts-cta-row .contacts-chat-btn:hover {
  background: linear-gradient(135deg, #245dff 0%, #1f8fff 120%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 22px rgba(24, 65, 153, 0.14);
}

.contacts-cta-row .contacts-chat-btn.is-active,
.contacts-cta-row .contacts-chat-btn.is-active:visited {
  background: linear-gradient(135deg, #245dff 0%, #1f8fff 120%);
  color: #fff;
  border: 1px solid transparent;
}

.contacts-cta-row .contacts-chat-btn.is-active:hover {
  background: linear-gradient(135deg, #2c66ff 0%, #2a97ff 120%);
  color: #fff;
}

.section-cta-row {
  margin: 14px 0 0;
}

.contacts-grid {
  margin-top: 8px;
}

.contacts-combined-card {
  padding: 16px;
  border-color: rgba(132, 168, 230, 0.46);
  background:
    radial-gradient(120% 120% at 100% -15%, rgba(76, 166, 255, 0.12) 0%, rgba(76, 166, 255, 0) 58%),
    linear-gradient(155deg, #ffffff 0%, #f4f9ff 100%);
  box-shadow: 0 12px 24px rgba(20, 59, 138, 0.08);
}

.contacts-combined-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.88fr;
  gap: 14px;
}

.contacts-combined-col {
  border: 1px solid rgba(148, 180, 236, 0.35);
  border-radius: 14px;
  background: linear-gradient(155deg, #ffffff 0%, #f8fbff 100%);
  padding: 13px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.contacts-combined-col h3 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: #15264d;
}

.contacts-list p {
  margin: 0 0 12px;
}

.contacts-list p:last-child {
  margin-bottom: 0;
}

.contacts-primary-card .contacts-list {
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.contacts-hours-line {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(148, 180, 236, 0.35);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.contact-action-card {
  border: 1px solid rgba(148, 180, 236, 0.45);
  border-radius: 12px;
  background: linear-gradient(150deg, #ffffff 0%, #f6fbff 100%);
  padding: 10px 12px 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-action-card strong {
  display: block;
  margin-bottom: 9px;
  color: #203562;
  font-size: 15px;
  font-weight: 800;
}

.contact-action-card:hover {
  border-color: rgba(96, 145, 231, 0.6);
  box-shadow: 0 10px 20px rgba(20, 59, 138, 0.12);
  transform: translateY(-1px);
}

.contacts-main-actions {
  margin-top: -4px;
}

.contacts-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
  text-align: center;
  border-radius: 10px;
}

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

.contacts-note {
  margin-top: 12px;
  font-size: 13px;
}

.warehouse-map-card {
  margin-top: 14px;
}

.warehouse-address-text {
  margin: 0 0 12px;
  color: #2a3e70;
}

.warehouse-address-text > span.muted span {
  color: #1f4fd8;
  font-weight: 700;
}

.warehouse-navi-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 6px;
  padding: 8px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(135deg, #245dff 0%, #1f8fff 120%);
  box-shadow: 0 8px 18px rgba(24, 65, 153, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.warehouse-navi-link:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(24, 65, 153, 0.18);
}

.warehouse-navi-link::after {
  content: "↗";
  font-size: 13px;
  opacity: 0.9;
}

.warehouse-map-wrap {
  border: 1px solid rgba(148, 180, 236, 0.56);
  border-radius: 14px;
  overflow: hidden;
  background: #f3f8ff;
  box-shadow: 0 10px 22px rgba(24, 65, 153, 0.1);
}

.warehouse-map-wrap iframe {
  display: block;
}

.requisites-card {
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.requisites-toggle {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.requisites-head h3 {
  margin: 0 0 4px;
}

.requisites-head .muted {
  margin: 0;
  font-size: 13px;
}

.requisites-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.requisites-card:hover,
.requisites-card:focus-within,
.requisites-card:focus {
  border-color: rgba(110, 155, 231, 0.58);
  box-shadow: 0 12px 24px rgba(18, 58, 126, 0.12);
  transform: translateY(-2px);
}

.requisites-card:hover .requisites-content,
.requisites-card:focus-within .requisites-content,
.requisites-card:focus .requisites-content,
.requisites-card.is-open .requisites-content {
  max-height: 260px;
  opacity: 1;
  margin-top: 10px;
}

.consent-note {
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #5b6880;
}

.consent-note label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.consent-note input[type="checkbox"] {
  margin-top: 2px;
}

.consent-note a {
  color: #1f4fd8;
  text-decoration: none;
}

.consent-note a:hover {
  text-decoration: underline;
}

.consent-action-btn.is-disabled,
.consent-action-btn.is-disabled:hover {
  opacity: 0.55;
  pointer-events: none;
  transform: none;
  box-shadow: none;
}

.booking-hero {
  margin-bottom: 14px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
}

.booking-col h3 {
  margin-top: 0;
  margin-bottom: 6px;
}

.booking-input {
  width: 100%;
  border: 1px solid #d4e1f6;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
}

.booking-input:focus {
  outline: none;
  border-color: #8db1ff;
  box-shadow: 0 0 0 3px rgba(79, 136, 255, 0.18);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 10px 0 12px;
}

.slot-btn {
  border: 1px solid #d4e1f6;
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  padding: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.slot-btn:hover {
  transform: translateY(-1px);
  border-color: #aac6ff;
  box-shadow: 0 8px 14px rgba(30, 73, 161, 0.12);
}

.slot-btn.is-active {
  border-color: #2a66ff;
  background: #2a66ff;
  color: #fff;
}

.booking-selected {
  margin: 0;
  border: 1px solid #d7e6ff;
  background: #f3f8ff;
  border-radius: 10px;
  padding: 10px 12px;
  color: #234581;
}

.booking-submit {
  width: 100%;
}

.booking-note {
  margin-top: 14px;
  border-color: #cde0ff;
  background: #f3f8ff;
  color: #1f417e;
}

.logistics-page {
  padding-top: 28px;
}

.logistics-intro {
  margin-bottom: 8px;
}

.logistics-intro h1 {
  margin-bottom: 10px;
}

.logistics-title-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logistics-title-row h1 {
  margin: 0;
  flex-shrink: 0;
}

.logistics-title-track {
  position: relative;
  height: 3px;
  flex: 1;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 93, 255, 0.28) 0%, rgba(36, 93, 255, 0.55) 45%, rgba(36, 93, 255, 0.2) 100%);
  overflow: visible;
}

.logistics-title-truck {
  position: absolute;
  top: 50%;
  left: 0;
  width: 42px;
  height: 26px;
  color: #245dff;
  transform: translate(-10px, -50%);
  animation: logistics-truck-drive 18s linear infinite;
}

.logistics-title-truck svg {
  width: 100%;
  height: 100%;
  stroke: none;
  fill: currentColor;
  filter: drop-shadow(0 2px 6px rgba(36, 93, 255, 0.22));
}

@keyframes logistics-truck-drive {
  0% {
    left: 0%;
    transform: translate(-10px, -50%);
  }
  50% {
    left: 100%;
    transform: translate(-26px, -50%);
  }
  50.01% {
    left: 100%;
    transform: translate(-26px, -50%) scaleX(-1);
  }
  100% {
    left: 0%;
    transform: translate(-10px, -50%) scaleX(-1);
  }
}

.logistics-section {
  padding-top: 28px;
  padding-bottom: 28px;
}

.logistics-subtitle {
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.55;
  color: #3f5677;
  max-width: 900px;
}

.logistics-table-title {
  margin: 8px 0 14px;
  font-size: 22px;
  line-height: 1.3;
}

.table-wrap {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 250, 255, 0.98) 100%),
    radial-gradient(120% 140% at 100% -20%, rgba(64, 164, 255, 0.08) 0%, rgba(64, 164, 255, 0) 64%);
  border: 1px solid rgba(156, 182, 226, 0.5);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 9px 20px rgba(17, 40, 87, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.table-wrap:hover {
  transform: translateY(-2px);
  border-color: rgba(112, 154, 228, 0.6);
  box-shadow: 0 14px 26px rgba(17, 40, 87, 0.12);
}

.table-wrap table {
  border: 0;
  border-radius: 0;
}

.services-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.schedule-section {
  padding-top: 20px;
  position: relative;
  z-index: 12;
}

.schedule-section.is-overlay-active {
  z-index: 60;
}

.schedule-card {
  padding: 14px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 250, 255, 0.98) 100%),
    radial-gradient(90% 110% at 100% -20%, rgba(64, 164, 255, 0.1) 0%, rgba(64, 164, 255, 0) 65%);
}

.schedule-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid var(--border);
  display: block;
}

.thermo-inline-item {
  position: relative;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  z-index: 1;
}

.thermo-inline-item:last-child {
  border-bottom: none;
}

.thermo-inline-item.is-open {
  z-index: 40;
}

.thermo-inline-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
  padding: 0;
}

.thermo-picker-head {
  justify-self: start;
}

.thermo-accordion-trigger {
  width: auto;
  min-width: 260px;
  border: 1px solid rgba(156, 182, 226, 0.45);
  border-radius: 10px;
  background: linear-gradient(150deg, #ffffff 0%, #f3f9ff 100%);
  color: var(--text);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  justify-self: center;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.thermo-accordion-trigger.is-open .thermo-accordion-arrow {
  transform: rotate(180deg);
}

.thermo-accordion-trigger:hover {
  border-color: rgba(112, 154, 228, 0.58);
  box-shadow: 0 10px 16px rgba(17, 40, 87, 0.12);
  transform: translateY(-1px);
}

.thermo-burger {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
}

.thermo-burger span {
  width: 10px;
  height: 1.5px;
  border-radius: 999px;
  background: #2d5fd5;
  display: block;
}

.thermo-accordion-label {
  font-weight: 400;
  font-size: 14px;
}

.thermo-accordion-arrow {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(137, 169, 227, 0.58);
  background: linear-gradient(150deg, #ffffff 0%, #eaf3ff 100%);
  box-shadow: 0 4px 10px rgba(28, 73, 165, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.thermo-accordion-arrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.8px solid #3562c8;
  border-bottom: 1.8px solid #3562c8;
  transform: translateY(-1px) rotate(45deg);
}

.thermo-picker-head {
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 0;
}

.thermo-option {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px;
  border: 1px solid rgba(173, 196, 236, 0.42);
  background: linear-gradient(150deg, #f6faff 0%, #eef5ff 100%);
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  text-align: left;
  border-radius: 8px;
  margin-bottom: 6px;
}

.thermo-option:last-child {
  margin-bottom: 0;
}

.thermo-option:hover {
  background: linear-gradient(150deg, #eff6ff 0%, #e5f0ff 100%);
  border-color: rgba(132, 168, 232, 0.6);
}

.thermo-option.is-selected span {
  color: var(--text);
  font-weight: 400;
}

.thermo-option-price {
  color: #1c469f;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

.thermo-inline-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 6px);
  z-index: 50;
  border: 1px solid rgba(114, 154, 226, 0.58);
  border-radius: 10px;
  background:
    linear-gradient(160deg, rgba(232, 242, 255, 0.98) 0%, rgba(222, 236, 255, 0.98) 100%),
    radial-gradient(120% 120% at 100% -10%, rgba(61, 150, 255, 0.18) 0%, rgba(61, 150, 255, 0) 62%);
  padding: 8px;
  box-shadow: 0 16px 28px rgba(16, 49, 114, 0.24);
  backdrop-filter: blur(6px);
  max-height: 250px;
  overflow-y: auto;
}

.thermo-inline-price {
  justify-self: end;
  min-width: 72px;
  text-align: right;
  font-size: 16px;
  font-weight: 800;
  color: #173f8f;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 900px) {
  html,
  body {
    overflow-x: hidden;
  }

  body {
    background-attachment: scroll;
    overscroll-behavior-y: none;
  }

  .header-inner::before,
  .marketplaces-strip,
  .marketplaces-strip::after,
  .mp-logo,
  .about-intro::after,
  .contacts-hero::after,
  .booking-hero::after,
  .logistics-intro::after {
    animation: none !important;
  }

  h1 {
    font-size: 32px;
  }

  .ref-hero-grid,
  .calc-form-row,
  .calc-form-row--contact,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .ref-hero-grid::after {
    display: none;
  }

  .ref-hero-left h1 {
    font-size: 40px;
  }

  .ref-hero-left p {
    max-width: none;
  }

  .ref-hero-actions {
    flex-direction: column;
  }

  .ref-hero-actions .btn {
    min-width: 0;
    width: 100%;
    min-height: 44px;
  }

  .ref-hero-right {
    max-width: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .logistics-title-track {
    display: none;
  }

  .ref-kpi {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 14px;
  }

  .marketplaces-strip {
    align-items: center;
  }

  .marketplaces-marquee::before,
  .marketplaces-marquee::after {
    width: 28px;
  }

  .mp-logo {
    min-width: 126px;
    height: 40px;
    padding: 7px 12px;
  }

  .reviews-row {
    grid-auto-columns: minmax(280px, 85vw);
    padding-inline: 2px;
  }

  .promo-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px;
  }

  .footer-brand p {
    max-width: none;
  }

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

  .process-route {
    padding: 18px 14px;
  }

  .process-route-lead {
    margin-bottom: 12px;
  }

  .process-route-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
  }

  .process-route-track li::after {
    display: none;
  }

  .process-route-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .header-inner > .nav {
    display: none;
  }

  .header-inner > .header-cta-dropdown {
    display: none;
  }

  .header-inner > .menu-toggle {
    display: inline-flex;
    grid-column: 2;
    justify-self: end;
  }

  .header-inner > .logo {
    grid-column: 1;
    min-width: 0;
  }

  .header-inner > .logo img {
    max-width: 100%;
    height: auto;
  }

  .mobile-menu {
    display: block;
    margin-top: 10px;
    max-height: calc(100dvh - 96px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 0);
  }

  .mobile-menu[hidden] {
    display: none;
  }

  .mobile-menu .nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    padding: 10px;
    border: 1px solid rgba(150, 178, 229, 0.5);
    border-radius: 14px;
    background: rgba(247, 251, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 22px rgba(17, 40, 87, 0.12);
  }

  .mobile-menu .nav a {
    padding: 10px 8px;
    border-radius: 9px;
    font-size: 15px;
  }

  .mobile-menu .nav a::after {
    display: none;
  }

  .mobile-menu .nav a.active,
  .mobile-menu .nav a:hover {
    background: rgba(42, 109, 255, 0.11);
    color: #1e4ec2;
  }

  .mobile-menu .header-cta-dropdown {
    display: block;
    margin-top: 10px;
    width: 100%;
  }

  .mobile-menu .header-cta-toggle {
    width: 100%;
  }

  .mobile-menu .header-cta-menu {
    position: static;
    margin-top: 8px;
    width: 100%;
    box-shadow: none;
  }

  .mobile-menu .header-cta-menu-link {
    font-size: 15px;
    padding: 12px 14px;
  }

  .hero-inline-accent {
    white-space: normal;
  }

  .consent-note {
    font-size: 12px;
    line-height: 1.55;
  }

  .consent-note label {
    align-items: flex-start;
  }

  .consent-note input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
  }

  .consent-note a {
    word-break: break-word;
  }

  .calc-form-row input,
  .calc-form-row input::placeholder,
  .calc-form-row select {
    font-size: 16px;
  }

  .calc-cta-row .btn,
  .calculator-teaser .tz-send-row .btn {
    width: 100%;
    min-height: 44px;
  }

  .calculator-teaser .tz-send-row {
    flex-direction: column;
  }

  .calculator-teaser .tz-send-hint {
    max-width: none;
  }

  .calc-consent-last {
    margin-top: 8px;
    margin-bottom: 14px;
  }

  .grid-2,
  .grid-3,
  .kpi {
    grid-template-columns: 1fr;
  }

  .logistics-table-title {
    font-size: 20px;
  }

  .thermo-accordion-trigger {
    min-width: 220px;
  }

  .thermo-inline-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .thermo-accordion-trigger {
    justify-self: start;
  }

  .thermo-inline-price {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .header {
    padding: 8px 0 8px;
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }

  .header-inner {
    min-height: 74px;
    padding: 10px 12px;
    gap: 10px;
    border-radius: 14px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .logo img {
    width: 150px;
  }

  .header .btn,
  .header-cta-toggle {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 10px;
    white-space: nowrap;
  }

  h1,
  .ref-hero-left h1 {
    font-size: 30px;
    line-height: 1.05;
  }

  h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .lead {
    font-size: 16px;
  }

  .section,
  .ref-main .section,
  .page-main .section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .card {
    padding: 16px;
    border-radius: 14px;
  }

  .contacts-cta-row .btn {
    width: 100%;
    text-align: center;
  }

  .contacts-cta-row {
    gap: 8px;
  }

  .table-wrap {
    overflow: visible;
    border-radius: 12px;
  }

  /* Wide route matrix: horizontal scroll only here */
  .logistics-page .table-wrap:has(.logistics-routes-table) {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .logistics-page .table-wrap:has(.logistics-routes-table) table {
    min-width: 720px;
  }

  /* Price tables (2–3 columns): service + price always on screen */
  .logistics-page .table-wrap table:not(.logistics-routes-table) {
    min-width: 0;
    width: 100%;
    display: block;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) thead,
  .logistics-page .table-wrap table:not(.logistics-routes-table) tbody {
    display: block;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) thead tr,
  .logistics-page .table-wrap table:not(.logistics-routes-table) tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 6px 14px;
    align-items: center;
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) thead tr {
    background: #eef4ff;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) tbody tr:last-child {
    border-bottom: none;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) th,
  .logistics-page .table-wrap table:not(.logistics-routes-table) td {
    display: block;
    padding: 0;
    border: none;
    background: transparent !important;
    box-shadow: none !important;
    white-space: normal;
    word-break: break-word;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) th:first-child,
  .logistics-page .table-wrap table:not(.logistics-routes-table) td:first-child {
    text-align: left;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) th:nth-child(2),
  .logistics-page .table-wrap table:not(.logistics-routes-table) td:nth-child(2) {
    text-align: right;
    font-weight: 800;
    font-size: 14px;
    color: #173f8f;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table):has(thead th:nth-child(3)) thead tr {
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table):has(thead th:nth-child(3)) tbody tr {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "service price"
      "details details";
    align-items: start;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table):has(thead th:nth-child(3)) tbody td:nth-child(1) {
    grid-area: service;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table):has(thead th:nth-child(3)) tbody td:nth-child(2) {
    grid-area: price;
    align-self: start;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table):has(thead th:nth-child(3)) tbody td:nth-child(3) {
    grid-area: details;
    text-align: left;
    font-size: 12px;
    line-height: 1.4;
    color: var(--muted);
    font-weight: 500;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table):has(thead th:nth-child(3)) thead th:nth-child(3) {
    display: none;
  }

  .logistics-page .table-wrap:has(.logistics-routes-table) th,
  .logistics-page .table-wrap:has(.logistics-routes-table) td {
    padding: 10px 10px;
    font-size: 13px;
    line-height: 1.35;
  }

  .logistics-page .table-wrap:has(.logistics-routes-table) td:nth-child(2),
  .logistics-page .table-wrap:has(.logistics-routes-table) td:nth-child(3),
  .logistics-page .table-wrap:has(.logistics-routes-table) td:nth-child(4) {
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .requisites-head .muted {
    display: none;
  }

  .requisites-content {
    max-height: none;
    opacity: 1;
    margin-top: 10px;
    overflow: visible;
  }

  .messenger-links {
    gap: 8px;
  }

  .messenger-link {
    min-height: 44px;
  }

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

  .calc-form-row--contact {
    margin-bottom: 12px;
  }

  .booking-layout {
    gap: 12px;
  }

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

}

@media (max-width: 520px) {
  .container {
    width: min(1120px, calc(100% - 18px));
  }

  .header-inner {
    min-height: 68px;
    padding: 8px 10px;
  }

  .logo img {
    width: 118px;
  }

  .ref-hero {
    padding-top: 18px;
  }

  .ref-hero-left h1 {
    font-size: 27px;
    line-height: 1.02;
  }

  .ref-hero-right {
    grid-template-columns: 1fr;
  }

  .ref-kpi strong {
    font-size: 15px;
  }

  .reviews-row {
    grid-auto-columns: minmax(260px, 92vw);
  }

  .consent-note {
    font-size: 11px;
  }

  .card.calculator-teaser {
    padding: 14px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .header .btn,
  .header-cta-toggle {
    padding: 9px 11px;
    font-size: 12px;
  }

  h1,
  .ref-hero-left h1 {
    font-size: 27px;
  }

  h2 {
    font-size: 21px;
  }

  .ref-kpi {
    grid-template-columns: 1fr;
  }

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

  .booking-selected {
    font-size: 13px;
  }

  .footer-bottom-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .logistics-page .table-wrap:has(.logistics-routes-table) th,
  .logistics-page .table-wrap:has(.logistics-routes-table) td {
    padding: 9px 8px;
    font-size: 12px;
  }

  .logistics-page .table-wrap:has(.logistics-routes-table) td:nth-child(2),
  .logistics-page .table-wrap:has(.logistics-routes-table) td:nth-child(3),
  .logistics-page .table-wrap:has(.logistics-routes-table) td:nth-child(4) {
    font-size: 12px;
  }

  .logistics-page .table-wrap:has(.logistics-routes-table) table {
    min-width: 640px;
  }

  .logistics-page .table-wrap table:not(.logistics-routes-table) th:nth-child(2),
  .logistics-page .table-wrap table:not(.logistics-routes-table) td:nth-child(2) {
    font-size: 13px;
  }

  .contacts-main-btn {
    min-height: 42px;
    padding: 10px 12px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }

  .process-route-card {
    animation: process-route-step-cycle 12s ease-in-out infinite !important;
  }

  .process-route-card:hover {
    animation-play-state: paused !important;
  }

}

