:root {
  --sp-font-main: "Inter", Arial, Helvetica, sans-serif;


  --sp-blue: #0767d8;
  --sp-blue-dark: #045cc3;
  --sp-blue-soft: #9bc9ff;
  --sp-yellow: #ffae22;
  --sp-yellow-dark: #f6a112;

  --sp-text: #111111;
  --sp-muted: #9e9e9e;
  --sp-border: #dedede;
  --sp-white: #ffffff;
  --sp-light: #f3f3f3;
  --sp-card: #f5f5f5;


  --sp-radius-sm: 10px;
  --sp-radius: 18px;
  --sp-radius-lg: 24px;
  --sp-radius-xl: 28px;

  --sp-shadow: 0 12px 24px rgba(0, 72, 160, .18);
  --sp-shadow-card: 0 14px 32px rgba(0, 0, 0, .08);

  --sp-transition: 0.2s ease;

  --sp-section: 72px;
  --sp-section-sm: 48px;

  --sp-fs-xs: 12px;
  --sp-fs-sm: 14px;
  --sp-fs-md: 16px;
  --sp-fs-base: 18px;
  --sp-fs-lg: 22px;
  --sp-fs-xl: 28px;
  --sp-fs-2xl: 32px;
  --sp-fs-hero: 36px;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  color: var(--sp-text);
  background: var(--sp-white);
}
.container-fluid {
	max-width:1440px;
}

.moveup {
  transition: transform var(--sp-transition);
}

.moveup:hover {
  transform: translateY(-2px);
}

.bg-primary { background-color: var(--sp-blue) !important; }
.bg-light-gray { background: var(--sp-light); }
.btn-warning {
  --bs-btn-bg: var(--sp-yellow);
  --bs-btn-border-color: var(--sp-yellow);
  --bs-btn-color: var(--sp-white);
  --bs-btn-hover-bg: var(--sp-yellow-dark);
  --bs-btn-hover-border-color: var(--sp-yellow-dark);
  font-weight: 700;
  text-transform: uppercase;
}

.section { padding: var(--sp-section) 0; }
.section-sm { padding: var(--sp-section-sm) 0; }

.ticker {
  overflow: hidden;
  width: 100%;
  background: var(--sp-blue);
  color: var(--sp-white);
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.ticker-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 32px;
  padding: 10px 16px;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
  font-size:14px;
}

.ticker-content span::after {
  content: "";
  display: inline-block;
  width: 79px;
  height: 18px;
  margin-left: 32px;
  background-image: url("../icons/ticker.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  vertical-align: middle;
}

/* brand */
.logo-placeholder {
  display: inline-flex;
  align-items: center;
  min-width: 145px;
  height: 38px;
  color: var(--sp-blue);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .04em;
}
.brand-caption {
  display: inline-flex;
  max-width: 120px;
  color: var(--sp-blue);
  font-size: 11px;
  line-height: 1.1;
  text-transform: uppercase;
}
.icon-placeholder {
  display: inline-block;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: 50%;
  color: var(--sp-yellow);
  flex: 0 0 auto;
}
.icon-placeholder-sm { width: 18px; height: 18px; border-width: 1.5px; }
.icon-placeholder-xs { width: 14px; height: 14px; border-width: 1.5px; }

/* desktop nav */
.main-nav {
  min-height: 54px;
  z-index: 20;
  padding-top:14px;
  padding-bottom:14px;
}
.main-nav .nav-link {
  color: var(--sp-white);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  padding-inline: 14px !important;
}
.main-nav .nav-link:hover,
.main-nav .nav-link.active { color: var(--sp-white); opacity: .85; }
.btn-login {
  min-width: 116px;
  border-radius: 999px;
  padding-block: .35rem;
}
.search-toggle {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 35;
}
.search-close {
  display: none;
  color: var(--sp-text);
  position:absolute !important;
  font-size: 32px;
  line-height: 1;
  z-index: 40;
  right:5px;
  top:1px;
  cursor:pointer;
}
.menu-search {
  position: absolute;
  inset: 2px 0px 0px 0;
  display: none;
  z-index: 30;
}
.menu-search .form-control {
  height: 36px;
  border: 0;
  border-radius: 8px;
  padding-left: 22px;
}
.main-nav.search-open .main-menu,
.main-nav.search-open .lang-dropdown,
.main-nav.search-open .btn-login {
  visibility: hidden;
}
.main-nav.search-open .menu-search { display: block; }
.main-nav.search-open .search-icon { display: none; }
.main-nav.search-open .search-close { display: inline; }

.submenu-panel {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1040;

  background: var(--sp-white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-6px);
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.submenu-panel.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.submenu-panel .container-fluid {
  padding-left: 24px;
  padding-right: 24px;
}

.submenu-list {
  display: flex;
  align-items: center;
  gap: 32px;

  list-style: none;
  margin: 0;
  padding: 14px 0;

  white-space: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.submenu-list::-webkit-scrollbar {
  display: none;
}

.submenu-list li {
  flex: 0 0 auto;
}

.submenu-list a {
  display: inline-flex;
  align-items: center;

  color: var(--sp-text);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;

  transition: color 0.15s ease;
}

.submenu-list a:hover {
  color: var(--sp-blue);
}

/* offcanvas */
.mobile-menu {
  display: grid;
  gap: 14px;
}
.mobile-menu a {
  color: var(--sp-text);
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}

/* main sections */
.hero-section { padding-top: 104px; }
.hero-image-placeholder,
.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
  background: linear-gradient(135deg, #e7e7e7, #fafafa);
  border: 1px dashed #bbb;
  color: #999;
  border-radius: var(--sp-radius);
  text-transform: uppercase;
  font-size: 12px;
}
.hero-image-placeholder {
  width: min(100%, 420px);
  min-height: 300px;
}



.service-banner {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 32px;
  color: var(--sp-text);
  overflow: hidden;
  border-radius: var(--sp-radius);
  text-decoration: none;
  background: var(--sp-card);
}
.service-banner .image-placeholder {
  position: absolute;
  inset: 0;
  min-height: auto;
  border-radius: 0;
  opacity: .65;
}
.service-title,
.service-arrow {
  position: relative;
  z-index: 2;
}
.service-title {
  display: block;
  font-size: 22px;
  font-weight: 800;
}
.service-arrow {
  position: absolute;
  left: 32px;
  bottom: 26px;
  color: var(--sp-yellow);
  font-size: 76px;
  line-height: .6;
}

.info-card,
.number-card,
.delivery-card {
  background: var(--sp-card);
  border-radius: var(--sp-radius);
}
.info-card {
  padding: 28px;
}
.info-card h3 {
  margin-bottom: 18px;
  color: var(--sp-blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}
.info-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.number-card {
  min-height: 110px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.number-card img {
	width:36px;
	height:36px;
}
.number-card strong {
  color: var(--sp-blue);
  font-size: 30px;
  line-height: 1;
}
.number-card span { font-size: 14px; }
.number-card-large {
  align-items: center;
  text-align: center;
  min-height: 130px;
}
.number-card-large strong { font-size: 42px; }
.numbers-lead .col-md-6:first-child .number-card-large { border-radius: var(--sp-radius) 0 0 var(--sp-radius); }
.numbers-lead .col-md-6:last-child .number-card-large { border-radius: 0 var(--sp-radius) var(--sp-radius) 0;  }
@media (min-width: 768px) {
  .numbers-lead {
    position: relative;
  }

  .numbers-lead::after {
    content: "";
    position: absolute;
    top: 20px;
    bottom: 20px;
    left: 50%;

    width: 1px;
    background: #bdbdbd;

    transform: translateX(-50%);
    pointer-events: none;
  }
}
.calc-box {
  padding: 36px;
  color: var(--sp-white);
  background: linear-gradient(105deg, var(--sp-blue), #5ea9ff);
  border-radius: var(--sp-radius);
  box-shadow: var(--sp-shadow);
}
.calc-box .form-control {
  border: 0;
  border-radius: 14px;
}
.calc-box .form-label { font-size: 15px; }
.delivery-card {
  min-height: 100px;
  padding: 26px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.delivery-card div {
  display: grid;
  gap: 8px;
}
.delivery-card div:last-child { text-align: right; }

.site-footer a,
.footer-bottom a {
  color: var(--sp-text);
  text-decoration: none;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-menu a { font-size: 14px; }

@media (max-width: 991.98px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .hero-section { padding-top: 56px; }

  .numbers-lead .number-card-large {
    border-radius: var(--sp-radius) !important;
    border-left: 0 !important;
    margin-bottom: 12px;
  }
  .calc-box { padding: 24px; }
  .delivery-card { padding: 22px; }
}
@media (max-width: 991.98px) {
  .main-nav {
    background: var(--sp-white) !important;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .main-nav .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .main-nav .navbar-brand {
    margin-right: 0;
    padding: 0;
  }

  .main-nav .navbar-brand img {
    display: block;
    max-height: 42px;
    width: auto;
  }

  .main-nav .navbar-toggler {
    padding: 0;
    width: 42px;
    height: 42px;
    border: 0;
    box-shadow: none;
  }

  .main-nav .navbar-toggler:focus {
    box-shadow: none;
  }

  .main-nav .navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 28px;
    height: 2px;
    background-color: var(--sp-blue);
    display: inline-block;
  }

  .main-nav .navbar-toggler-icon::before,
  .main-nav .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 28px;
    height: 2px;
    background-color: var(--sp-blue);
  }

  .main-nav .navbar-toggler-icon::before {
    top: -8px;
  }

  .main-nav .navbar-toggler-icon::after {
    top: 8px;
  }
}

.hero-slider-section {
  background: var(--sp-light);
}

.hero-slider-section .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.hero-slider-wrapper {
  position: relative;
  overflow: hidden; 
}

.hero-swiper {
  width: 100%;

}

.hero-slide {
  position: relative;

  background-repeat: no-repeat;

  /* картинка начинается от середины слайда */
  background-position: 70% center;

  /* высота картинки = высоте слайда, ширина считается автоматически */
  background-size: auto 100%;

  display: flex;
  align-items: center;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding:130px 80px 130px 0;
  height: 510px;
}

.hero-slide-content .h1 {
  margin: 0 0 24px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--sp-text);
}

.hero-slide-content p {
  margin: 0 0 28px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--sp-text);
}

.hero-btn {
  border: 0;
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--sp-white);
  background: var(--sp-yellow);
}

.hero-btn:hover {
  color: var(--sp-white);
  background: var(--sp-yellow-dark);
}

.hero-pagination {
  bottom: 18px !important;
}

.hero-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  background: #cfcfcf;
  opacity: 1;
}

.hero-pagination .swiper-pagination-bullet-active {
  background: var(--sp-yellow);
}

/* Floating action panel */

.hero-action-panel {
  position: absolute;
  z-index: 10;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);

  width: 244px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  overflow: hidden;
  border-radius: 14px;
  background: var(--sp-blue);
  box-shadow: 0 14px 35px rgba(0, 72, 160, 0.28);
}

.hero-action-item {
  min-height: 132px;
  padding: 12px 10px;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;

  color: var(--sp-white);
  text-decoration: none;
  font-size: 12px;
  line-height: 1.15;
  font-weight: 700;
  text-transform:uppercase;

  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);

  transition: background 0.18s ease, transform 0.18s ease;
}

.hero-action-item:nth-child(2n) {
  border-right: 0;
}

.hero-action-item:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.hero-action-panel {
  background: var(--sp-blue);
}

.hero-action-item {
  color: var(--sp-white);
  text-decoration: none;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.hero-action-item:nth-child(1),
.hero-action-item:nth-child(4),
.hero-action-item:nth-child(5) {
  background-color: var(--sp-blue);
}

.hero-action-item:hover {
  background-color: var(--sp-blue-dark);
}

.hero-action-icon {
  width: 22px;
  height: 22px;
  margin-bottom: 8px;

  display: block;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

/* Mobile */

@media (max-width: 991.98px) {
  .hero-swiper {
    height: auto;
  }

  .hero-slide {
    min-height: 520px;
    align-items: flex-start;
    background-position: center bottom;
    background-size: cover;
  }

  .hero-slide::before {
    background: linear-gradient(
      180deg,
      rgba(244, 244, 244, 0.98) 0%,
      rgba(244, 244, 244, 0.92) 42%,
      rgba(244, 244, 244, 0.2) 100%
    );
  }

  .hero-slide-content {
    max-width: none;
    padding: 44px 24px 0;
  }

  .hero-slide-content h1 {
    font-size: 30px;
  }

  .hero-slide-content p {
    font-size: 16px;
  }

  .hero-action-panel {
    position: relative;
    top: auto;
    right: auto;
    transform: none;

    width: calc(100% - 32px);
    margin: -72px auto 24px;

    grid-template-columns: repeat(3, 1fr);
  }

  .hero-action-item {
    min-height: 86px;
    font-size: 10px;
  }

  .hero-action-item:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-action-item:nth-child(3n) {
    border-right: 0;
  }

  .hero-action-item:nth-last-child(-n + 3) {
    border-bottom: 0;
  }
}

@media (max-width: 575.98px) {
  .hero-slide {
    min-height: 480px;
  }

  .hero-slide-content {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero-slide-content h1 {
    font-size: 25px;
  }

  .hero-action-panel {
    width: calc(100% - 24px);
    grid-template-columns: repeat(2, 1fr);
    margin-top: -56px;
  }

  .hero-action-item:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-action-item:nth-child(2n) {
    border-right: 0;
  }

  .hero-action-item:nth-last-child(-n + 3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  }

  .hero-action-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

.tracking-form {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 98px;
  padding: 10px;

  background: var(--sp-light);
  border-radius: 24px;
}

.tracking-input {
  flex: 1;
  height: 100%;
  min-height: 78px;
  padding: 0 70px;

  border: 0;
  outline: 0;
  background: transparent;

  font-size: 26px;
  font-weight: 400;
  color: var(--sp-text);
}

.tracking-input::placeholder {
  color: #8c8c8c;
  opacity: 1;
}

.tracking-btn {
  flex: 0 0 auto;
  min-width: 294px;
  min-height: 78px;
  padding: 0 44px;

  border: 0;
  border-radius: 20px;
  background: var(--sp-yellow);

  color: var(--sp-white);
  font-size: 28px;
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;

  cursor: pointer;
  transition: background-color var(--sp-transition), transform var(--sp-transition);
}

.tracking-btn:hover {
  background: var(--sp-yellow-dark);
  transform: translateY(-1px);
}

.tracking-btn:active {
  transform: translateY(0);
}
@media (max-width: 767.98px) {
  .tracking-form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    min-height: auto;
    padding: 10px;
    border-radius: 20px;
  }

  .tracking-input {
    min-height: 58px;
    padding: 0 20px;
    font-size: 18px;
  }

  .tracking-btn {
    width: 100%;
    min-width: 0;
    min-height: 58px;
    font-size: 20px;
    border-radius: 16px;
  }
}

.service-card {
  position: relative;
  display: block;
  min-height: 345px;
  overflow: hidden;

  border-radius: 26px;
  background-image: var(--service-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  color: var(--sp-text);
  text-decoration: none;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.76) 22%,
    rgba(255, 255, 255, 0.35) 46%,
    rgba(255, 255, 255, 0) 68%,
    rgba(255, 255, 255, 0) 100%
  );

  z-index: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(255, 255, 255, 0.12);
  z-index: 2;
  pointer-events: none;
}

.service-card-content {
  position: relative;
  z-index: 3;

  min-height: 345px;
  padding: 48px 52px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}

.service-card h3 {
  margin: 0;
  max-width: 520px;

  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 1.15;
  font-weight: 800;
  color: var(--sp-text);
}

.service-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;
}

/* временная заглушка под SVG */
.arrow-placeholder {
  display: block;
  width: 42px;
  height: 42px;

  border-right: 9px solid var(--sp-yellow);
  border-bottom: 9px solid var(--sp-yellow);
  transform: rotate(-45deg);
}

.service-card:hover {
  color: var(--sp-text);
}

.service-card:hover .service-card-arrow {
  transform: translateX(4px);
}

.service-card-arrow {
  transition: transform var(--sp-transition);
}
@media (max-width: 991.98px) {
  .service-card {
    min-height: 300px;
    border-radius: 22px;
  }

  .service-card-content {
    min-height: 300px;
    padding: 36px 34px;
  }

  .service-card h3 {
    font-size: 30px;
  }
}

@media (max-width: 575.98px) {
  .service-card {
    min-height: 250px;
    border-radius: 18px;
  }

  .service-card-content {
    min-height: 250px;
    padding: 28px 24px;
  }

  .service-card h3 {
    font-size: 24px;
  }

  .service-card-arrow {
    width: 48px;
    height: 48px;
  }

  .arrow-placeholder {
    width: 32px;
    height: 32px;
    border-right-width: 7px;
    border-bottom-width: 7px;
  }
}
.why-trust-section {

}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 24px;
}

.why-card {
    background: var(--sp-light);
    border-radius: 22px;
    padding: 34px 28px 28px;
    min-height: 177px;
    color: var(--sp-text);
}

.why-card h3 {
    margin: 0 0 19px;
    color: var(--sp-blue);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.why-card p {
    margin: 0;
    font-size: 17px;
    line-height: 1.45;
    font-weight: 400;
}

.why-card-wide {
    min-height: 230px;
}

/* Нижние две карточки по макету */
.why-card.why-card-wide-1, 
.why-card:nth-child(7),
.why-card:nth-child(8) {
    grid-column: span 3;
}

@media (min-width: 992px) {
    .why-trust-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .why-card {
        grid-column: span 2;
    }
.why-card.why-card-wide-1, 
    .why-card:nth-child(7),
    .why-card:nth-child(8) {
        grid-column: span 3;
    }
}

@media (max-width: 991.98px) {
    .why-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 0 15px;
    }
.why-card.why-card-wide-1, 
    .why-card,
    .why-card:nth-child(7),
    .why-card:nth-child(8) {
        grid-column: span 1;
    }
}

@media (max-width: 575.98px) {
    .why-trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-card {
        min-height: auto;
        padding: 26px 22px;
        border-radius: 18px;
    }

    .why-card h3 {
        font-size: 15px;
        margin-bottom: 14px;
    }

    .why-card p {
        font-size: 16px;
    }
}
.spdex-hero {
    position: relative;
    min-height: 560px;
    background-image:
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.92) 22%,
            rgba(255, 255, 255, 0.68) 38%,
            rgba(255, 255, 255, 0.22) 55%,
            rgba(255, 255, 255, 0) 72%
        ),
        url("../img/spdex-hero.png");
    background-size: auto 100%;
    background-position: center right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.min-vh-hero {
    min-height: 560px;
}

.spdex-hero__content {
    padding-top: 20px;
    padding-left: 0;
}

.spdex-hero__title {
    margin: 0;
    color: var(--sp-blue);
    font-size: 36px;
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.spdex-hero__mission {
    margin-top: 108px;
}

.spdex-hero__mission h2 {
    margin: 0 0 30px;
    color: var(--sp-text);
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
}

.spdex-hero__mission p {
    margin: 0;
    color: var(--sp-text);
    font-size: 31px;
    line-height: 1.12;
    font-weight: 400;
    letter-spacing: -0.3px;
}
@media (max-width: 991.98px) {
    .spdex-hero {
        min-height: 520px;
        background-image:
            linear-gradient(
                90deg,
                rgba(255, 255, 255, 0.97) 0%,
                rgba(255, 255, 255, 0.88) 45%,
                rgba(255, 255, 255, 0.35) 75%,
                rgba(255, 255, 255, 0.1) 100%
            ),
            url("../img/spdex-hero.png");
        background-position: center right;
    }

    .min-vh-hero {
        min-height: 520px;
    }

    .spdex-hero__content {
        padding-left: 12px;
    }

    .spdex-hero__title {
        font-size: 32px;
    }

    .spdex-hero__mission {
        margin-top: 90px;
    }

    .spdex-hero__mission h2,
    .spdex-hero__mission p {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .spdex-hero {
        min-height: 560px;
        background-image:
            linear-gradient(
                180deg,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.9) 48%,
                rgba(255, 255, 255, 0.35) 100%
            ),
            url("../img/spdex-hero.png");
        background-position: 68% center;
    }

    .min-vh-hero {
        min-height: 560px;
        align-items: flex-start !important;
    }

    .spdex-hero__content {
        padding-top: 70px;
        padding-left: 0;
    }

    .spdex-hero__title {
        font-size: 28px;
        line-height: 1.08;
    }

    .spdex-hero__mission {
        margin-top: 70px;
    }

    .spdex-hero__mission h2 {
        margin-bottom: 22px;
        font-size: 26px;
    }

    .spdex-hero__mission p {
        font-size: 24px;
        line-height: 1.15;
    }
}

.trusted-section {
    position: relative;
    padding: 70px 0 45px;
    overflow: hidden;
}

.trusted-swiper {
    margin: 0 auto;
    overflow: hidden;
}

.trusted-swiper .swiper-wrapper {
    align-items: stretch;
}

.trusted-swiper .swiper-slide {
    height: calc((220px - 38px) / 2) !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logo {
    width: 100%;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trusted-logo img {
    display: block;
    max-width: 250px;
    max-height: 92px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.trusted-swiper-prev,
.trusted-swiper-next {
    position: absolute;
    top: 60%;
    z-index: 10;
    width: 36px;
    height: 70px;
    padding: 0;
    border: 0;
    background: transparent;
    /*color: rgba(255, 255, 255, 0.7);*/
    font-size: 68px;
    line-height: 1;
    font-weight: 200;
    transform: translateY(-50%);
    cursor: pointer;
    transition: color 0.2s ease, opacity 0.2s ease;
}

.trusted-swiper-prev:hover,
.trusted-swiper-next:hover {
    color: var(--sp-white);
}

.trusted-swiper-prev {
    left: -70px;
}

.trusted-swiper-next {
    right: -70px;
}
.client-actions-section {
    background: transparent;
}

.client-action-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 235px;
    padding: 42px 52px 38px;
    border-radius: 22px;
    background: var(--sp-blue);
    color: var(--sp-white);
    text-decoration: none;
    transition: transform var(--sp-transition), box-shadow var(--sp-transition), background-color var(--sp-transition);
}

.client-action-card:hover {
    background: var(--sp-blue-dark);
    color: var(--sp-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(11, 97, 209, 0.25);
}

.client-action-icon {
    display: flex;
    align-items: center;
    width: 104px;
    height: 96px;
    margin-bottom: 22px;
}

.client-action-icon img {
    display: block;
    max-width: 104px;
    max-height: 96px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.client-action-title {
    display: block;
    font-size: 31px;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.3px;
    text-transform: uppercase;
}

@media (max-width: 991.98px) {
    .client-action-card {
        min-height: 210px;
        padding: 36px 42px;
    }

    .client-action-title {
        font-size: 28px;
    }
}

@media (max-width: 575.98px) {
    .client-action-card {
        min-height: 185px;
        padding: 30px 28px;
        border-radius: 18px;
    }

    .client-action-icon {
        width: 86px;
        height: 78px;
        margin-bottom: 18px;
    }

    .client-action-icon img {
        max-width: 86px;
        max-height: 78px;
    }

    .client-action-title {
        font-size: 24px;
    }
}

.courier-hero-section,
.courier-services-section {
    background: var(--sp-white);

    color: var(--sp-text);
}

.courier-container {
    max-width: 1220px;
}

/* Секция: Курьерская доставка */

.courier-hero-section {
    padding: 42px 0 32px 0;
}

.courier-section-title {
    margin: 0 0 46px;
    color: var(--sp-blue);
    font-size: 29px;
    line-height: 1.2;
    font-weight: 800;
}

.courier-hero-card {
    background: var(--sp-light);
    border-radius: 22px;
    padding: 34px 34px 34px 70px;
}

.courier-info h2 {
    margin: 0 0 36px;
    color: var(--sp-text);
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
}

.courier-list {
    display: flex;
    flex-direction: column;
    gap: 26px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.courier-list li {
    position: relative;
    min-height: 24px;
    padding-left: 38px;
    color: var(--sp-text);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 400;
}

.courier-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 15px;
    height: 24px;
    background: var(--sp-blue);
    clip-path: polygon(0 0, 48% 0, 100% 50%, 48% 100%, 0 100%, 52% 50%);
}

.courier-image {
    width: 100%;
    overflow: hidden;
    border-radius: 6px;
}

.courier-image img {
    display: block;
    width: 100%;
    height: 470px;
    object-fit: cover;
}

/* Секция: Наши услуги */

.courier-services-section {
    padding: 70px 0 42px;
}

.courier-block-title {
    margin: 0 0 30px;
    color: var(--sp-text);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
}

.service-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 256px;
    padding: 42px 24px 24px;
    background: var(--sp-light);
    border-radius: 18px;
    color: var(--sp-text);
    text-decoration: none;
    overflow: hidden;
    transition: transform var(--sp-transition), box-shadow var(--sp-transition);
}

.service-box:hover {
    color: var(--sp-text);
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.service-box h3 {
    margin: 0;
    color: var(--sp-text);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
}

.service-box-img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 145px;
    margin-top: 18px;
}

.service-box-img img {
    display: block;
    max-width: 100%;
    max-height: 145px;
    width: auto;
    height: auto;
    object-fit: contain;
}
@media (max-width: 1199.98px) {
    .courier-hero-card {
        padding-left: 48px;
    }

    .service-box h3 {
        font-size: 25px;
    }
}

@media (max-width: 991.98px) {
    .courier-hero-section {
        padding-top: 34px;
    }

    .courier-section-title {
        margin-bottom: 34px;
        font-size: 28px;
    }

    .courier-hero-card {
        padding: 34px;
    }

    .courier-info h2 {
        font-size: 26px;
    }

    .courier-image img {
        height: 380px;
    }

    .courier-services-section {
        padding-top: 52px;
    }
}

@media (max-width: 575.98px) {
    .courier-hero-section {
        padding-top: 30px;
    }

    .courier-section-title {
        margin-bottom: 24px;
        font-size: 25px;
    }

    .courier-hero-card {
        padding: 26px 20px;
        border-radius: 18px;
    }

    .courier-info h2 {
        margin-bottom: 28px;
        font-size: 23px;
    }

    .courier-list {
        gap: 20px;
    }

    .courier-list li {
        padding-left: 32px;
        font-size: 16px;
    }

    .courier-list li::before {
        width: 13px;
        height: 21px;
    }

    .courier-image img {
        height: 280px;
    }

    .courier-services-section {
        padding: 44px 0 46px;
    }

    .courier-block-title {
        font-size: 25px;
    }

    .service-box {
        min-height: 220px;
        padding: 30px 22px 22px;
    }

    .service-box h3 {
        font-size: 23px;
    }

    .service-box-img {
        height: 120px;
    }

    .service-box-img img {
        max-height: 120px;
    }
}
.partner-hero-section,
.partner-intro-section,
.partner-requirements-section,
.partner-steps-section,
.partner-benefits-section {
    background: var(--sp-white);

    color: var(--sp-text);
}

.partner-container {
 
}

/* Hero */

.partner-hero-section {
    padding: 0;
}

.partner-hero-card {
    min-height: 260px;
    background: var(--sp-light);
    overflow: hidden;
}

.partner-hero-content {
    padding: 34px 0 34px;
}

.partner-hero-content h1 {
    margin: 0 0 44px;
    color: var(--sp-blue);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.partner-hero-content p {
    margin: 0 0 24px;
    color: var(--sp-text);
    font-size: 21px;
    line-height: 1.12;
    font-weight: 800;
}

.partner-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 10px 24px;
    border-radius: 15px;
    background: var(--sp-yellow);
    color: var(--sp-white);
    font-size: 14px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition: background-color var(--sp-transition), transform var(--sp-transition);
}

.partner-btn:hover {
    background: var(--sp-yellow-dark);
    color: var(--sp-white);
    transform: translateY(-1px);
}

.partner-hero-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 300px;
}

.partner-hero-image img {
    display: block;
    max-width: 100%;
    max-height: 300px;
    object-fit: contain;
}

/* Intro */

.partner-intro-section {
    padding: 40px 0 36px;
}

.partner-intro-text {
    margin: 0;
    color: var(--sp-text);
    font-size: 22px;
    line-height: 1.16;
    font-weight: 400;
}

/* Requirements */

.partner-requirements-section {
    padding: 0 0 48px;
}

.partner-requirements-card {
    padding: 26px 32px 34px;
    border-radius: 16px;
    background: var(--sp-light);
}

.partner-requirements-card h2 {
    margin: 0 0 26px;
    color: var(--sp-blue);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.partner-requirement-item {
display: flex;
align-items: center;
    gap: 10px;
}

.partner-requirement-item span,
.partner-benefits-list li::before {
    content: "";
    flex: 0 0 auto;
    width: 16px;
    height: 22px;
    margin-top: 2px;
    background-image: url("/templates/assets/icons/strel1.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 16px 22px;

    clip-path: none; 
}

.partner-requirement-item p {
    margin: 0 !important;
    color: var(--sp-text);
    font-size: 17px;
    line-height: 1.18;
    font-weight: 400;
}

/* Steps */

.partner-steps-section {
    padding: 0 0 64px;
}

.partner-section-title {
    margin: 0 0 22px;
    color: var(--sp-text);
    font-size: 21px;
    line-height: 1.2;
    font-weight: 800;
}

.partner-step-card {
    position: relative;
    min-height: 165px;
    padding: 64px 16px 22px;
    border-radius: 14px;
    background: var(--sp-light);
}

.partner-step-number {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--sp-blue-soft);
    color: var(--sp-white);
    font-size: 22px;
    line-height: 30px;
    font-weight: 800;
    text-align: center;
}

.partner-step-card h3 {
    margin: 0 0 12px;
    color: var(--sp-text);
    font-size: 17px;
    line-height: 1.12;
    font-weight: 800;
}

.partner-step-card p {
    margin: 0;
    color: var(--sp-text);
    font-size: 14px;
    line-height: 1.13;
    font-weight: 400;
}

/* Benefits */

.partner-benefits-section {
    padding: 0 0 42px;
}

.partner-benefits-card {
    position: relative;
    min-height: 230px;
    border-radius: 14px;
    background: var(--sp-blue);
    overflow: hidden;
}

.partner-benefits-content {
    padding: 64px;
    color: var(--sp-white);
}

.partner-benefits-content h2 {
    margin: 0 0 30px;
    color: var(--sp-white);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.partner-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.partner-benefits-list li {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--sp-white);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}

.partner-benefits-list li::before {
    content: "";

    margin-top: 0;
}

.partner-benefits-card .col-lg-5, .fulfillment-cta-card .col-lg-4 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
}

.partner-phone-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 100%;
    height: 100%;
}

.partner-phone-image img {
    display: block;
    width: 400px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

@media (max-width: 991.98px) {
    .partner-hero-card {
        padding: 0 20px;
    }

    .partner-hero-content h1 {
        margin-bottom: 28px;
    }

    .partner-hero-content p {
        font-size: 20px;
    }

    .partner-hero-image {
        height: auto;
    }

    .partner-hero-image img {
        max-height: 260px;
    }

    .partner-intro-text {
        font-size: 20px;
    }

    .partner-requirements-card {
        padding: 26px 24px 30px;
    }

    .partner-step-card {
        min-height: 155px;
    }

    .partner-benefits-content {
        padding: 38px 34px 0;
    }

    .partner-phone-image {
        height: auto;
        padding-top: 20px;
    }

    .partner-phone-image img {
        max-width: 260px;
    }
}

@media (max-width: 575.98px) {
    .partner-hero-section {
        padding-top: 0;
    }

    .partner-hero-card {
        border-radius: 0;
    }

    .partner-hero-content {
        padding: 28px 0 18px;
    }

    .partner-hero-content h1 {
        margin-bottom: 24px;
        font-size: 24px;
    }

    .partner-hero-content p {
        font-size: 18px;
    }

    .partner-hero-content p br,
    .partner-intro-text br,
    .partner-requirement-item p br {
        display: none;
    }

    .partner-intro-section {
        padding: 30px 0;
    }

    .partner-intro-text {
        font-size: 18px;
    }

    .partner-requirements-section {
        padding-bottom: 40px;
    }

    .partner-requirements-card {
        border-radius: 14px;
    }

    .partner-requirements-card h2 {
        font-size: 21px;
    }

    .partner-requirement-item p {
        font-size: 16px;
    }

    .partner-steps-section {
        padding-bottom: 44px;
    }

    .partner-section-title {
        font-size: 20px;
    }

    .partner-step-card {
        min-height: auto;
        padding: 58px 16px 22px;
    }

    .partner-benefits-section {
        padding-bottom: 44px;
    }

    .partner-benefits-card {
        border-radius: 14px;
    }

    .partner-benefits-content {
        padding: 32px 24px 0;
    }

    .partner-benefits-content h2 {
        font-size: 21px;
    }

    .partner-benefits-list li {
        font-size: 16px;
    }

    .partner-phone-image img {
        max-width: 235px;
    }
}

.partner-modal .modal-dialog {
    max-width: 1200px;
}

.partner-modal-content {
    position: relative;
    border: 0;
    border-radius: 28px;
    background: var(--sp-white);
    box-shadow: none;
    overflow: hidden;
}

.partner-modal-body {
    padding: 52px 72px 64px;
}

.partner-modal-close {
    position: absolute;
    top: 30px;
    right: 32px;
    z-index: 5;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--sp-border);
    cursor: pointer;
}

.partner-modal-close span::before,
.partner-modal-close span::after {
    content: "";
    position: absolute;
    left: 10px;
    top: 20px;
    width: 22px;
    height: 3px;
    border-radius: 3px;
    background: var(--sp-white);
}

.partner-modal-close span::before {
    transform: rotate(45deg);
}

.partner-modal-close span::after {
    transform: rotate(-45deg);
}

.partner-modal-title {
    margin: 0 0 24px;
    color: var(--sp-text);
    font-size: 36px;
    line-height: 1.15;
    font-weight: 800;
}

.partner-modal-subtitle {
    margin: 0 0 42px;
    color: var(--sp-muted);
    font-size: 25px;
    line-height: 1.25;
    font-weight: 400;
}

/* Steps */

.partner-form-steps {
    display: flex;
    align-items: center;
    margin-bottom: 68px;
}

.partner-form-step {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.partner-form-step span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--sp-border);
    color: var(--sp-white);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
}

.partner-form-step p {
    margin: 0 0 0 16px;
    color: var(--sp-text);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
    white-space: nowrap;
}

.partner-form-step.is-active span,
.partner-form-step.is-complete span {
    background: var(--sp-blue);
}

.partner-form-line {
    flex: 1 1 auto;
    height: 2px;
    max-width: 185px;
    margin: 0 12px;
    background: var(--sp-border);
}

/* Pages */

.partner-form-page {
    display: none;
}

.partner-form-page.is-active {
    display: block;
}

/* Fields */

.partner-form-group {
    margin-bottom: 44px;
}

.partner-form-group label {
    display: block;
    margin-bottom: 14px;
    color: var(--sp-text);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.partner-form-group input,
.partner-form-group select {
    display: block;
    width: 100%;
    height: 44px;
    padding: 0 32px;
    border: 2px solid var(--sp-border);
    border-radius: 17px;
    background-color: var(--sp-white);
    color: #222222;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
    outline: none;
    box-shadow: none;
    transition: border-color 0.2s ease;
}

.partner-form-group input::placeholder {
    color: #aaaaaa;
}

.partner-form-group input:focus,
.partner-form-group select:focus {
    border-color: var(--sp-blue);
}

.partner-select {
    position: relative;
}

.partner-select::after {
    content: "";
    position: absolute;
    right: 34px;
    top: 50%;
    width: 21px;
    height: 21px;
    border-right: 2px solid #9d9d9d;
    border-bottom: 2px solid #9d9d9d;
    transform: translateY(-65%) rotate(45deg);
    pointer-events: none;
}

.partner-select select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 80px;
    color: #aaaaaa;
}

.partner-select select:valid {
    color: #222222;
}

/* Radio */

.partner-radio-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    min-height: 44px;
    border: 2px solid var(--sp-border);
    border-radius: 17px;
    background: var(--sp-card);
    overflow: hidden;
}

.partner-radio-option {
    position: relative;
    display: flex !important;
    align-items: center;
    height: 44px;
    margin: 0 !important;
    padding: 0 26px;
    cursor: pointer;
}

.partner-radio-option + .partner-radio-option {
    border-left: 2px solid var(--sp-border);
}

.partner-radio-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.partner-radio-option span {
    width: 30px;
    height: 30px;
    margin-right: 26px;
    border: 2px solid var(--sp-border);
    border-radius: 50%;
    background: var(--sp-white);
}

.partner-radio-option b {
    color: var(--sp-muted);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 400;
}

.partner-radio-option input:checked + span {
    border-color: var(--sp-blue);
    box-shadow: inset 0 0 0 7px var(--sp-white);
    background: var(--sp-blue);
}

.partner-radio-option input:checked ~ b {
    color: var(--sp-text);
}

/* Buttons */

.partner-form-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.partner-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 285px;
    min-height: 44px;
    padding: 10px 34px;
    border: 0;
    border-radius: 17px;
    color: var(--sp-white);
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: background-color var(--sp-transition), transform var(--sp-transition);
}

.partner-form-btn:hover {
    transform: translateY(-1px);
}

.partner-form-btn-primary {
    background: var(--sp-blue);
}

.partner-form-btn-primary:hover {
    background: var(--sp-blue-dark);
}

.partner-form-btn-secondary {
    min-width: 215px;
    background: #bdbdbd;
}

.partner-form-btn-secondary:hover {
    background: #adadad;
}

.partner-form-btn-submit {
    min-width: 380px;
}

@media (max-width: 1199.98px) {
    .partner-modal .modal-dialog {
        max-width: 96%;
    }

    .partner-modal-body {
        padding: 44px 52px 56px;
    }

    .partner-form-line {
        max-width: 120px;
    }
}

@media (max-width: 991.98px) {
    .partner-modal-body {
        padding: 38px 32px 44px;
    }

    .partner-modal-title {
        font-size: 32px;
    }

    .partner-modal-subtitle {
        margin-bottom: 34px;
        font-size: 21px;
    }

    .partner-form-steps {
        align-items: flex-start;
        margin-bottom: 48px;
    }

    .partner-form-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1 1 0;
    }

    .partner-form-step p {
        margin: 10px 0 0;
        font-size: 16px;
        white-space: normal;
    }

    .partner-form-line {
        max-width: none;
        margin: 21px 8px 0;
    }

    .partner-form-group {
        margin-bottom: 32px;
    }

    .partner-form-group input,
    .partner-form-group select,
    .partner-radio-row,
    .partner-radio-option {
        height: 68px;
        min-height: 68px;
    }

    .partner-form-group input,
    .partner-form-group select {
        font-size: 21px;
    }

    .partner-radio-option b {
        font-size: 21px;
    }

    .partner-form-btn {
        min-height: 68px;
        font-size: 22px;
    }
}

@media (max-width: 575.98px) {
    .partner-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
        min-height: 100%;
    }

    .partner-modal-content {
        min-height: 100vh;
        border-radius: 0;
    }

    .partner-modal-body {
        padding: 34px 18px 36px;
    }

    .partner-modal-close {
        top: 18px;
        right: 18px;
        width: 36px;
        height: 36px;
    }

    .partner-modal-close span::before,
    .partner-modal-close span::after {
        left: 9px;
        top: 17px;
        width: 18px;
    }

    .partner-modal-title {
        padding-right: 48px;
        font-size: 28px;
    }

    .partner-modal-subtitle {
        font-size: 18px;
    }

    .partner-form-steps {
        margin-bottom: 36px;
    }

    .partner-form-step span {
        width: 36px;
        height: 36px;
        font-size: 20px;
    }

    .partner-form-step p {
        font-size: 13px;
    }

    .partner-form-line {
        margin-top: 17px;
    }

    .partner-form-group label {
        font-size: 17px;
    }

    .partner-form-group input,
    .partner-form-group select {
        height: 58px;
        padding: 0 18px;
        border-radius: 14px;
        font-size: 18px;
    }

    .partner-select::after {
        right: 22px;
        width: 16px;
        height: 16px;
    }

    .partner-radio-row {
        grid-template-columns: 1fr;
        height: auto;
        min-height: 0;
    }

    .partner-radio-option {
        height: 58px;
        min-height: 58px;
        padding: 0 18px;
    }

    .partner-radio-option + .partner-radio-option {
        border-left: 0;
        border-top: 2px solid var(--sp-border);
    }

    .partner-radio-option span {
        width: 24px;
        height: 24px;
        margin-right: 18px;
    }

    .partner-radio-option b {
        font-size: 18px;
    }

    .partner-form-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .partner-form-btn,
    .partner-form-btn-secondary,
    .partner-form-btn-submit {
        width: 100%;
        min-width: 0;
        min-height: 60px;
        border-radius: 14px;
        font-size: 20px;
    }
}
@media (min-width: 992px) {
.partner-benefits-section {
    
}

.partner-benefits-card {
    overflow: visible;
}

.partner-phone-image {
    position: absolute;
    top: 0px;
}
}

.fulfillment-hero-section,
.fulfillment-cycle-section,
.fulfillment-integrations-section,
.fulfillment-benefits-section,
.fulfillment-work-section,
.fulfillment-suitable-section,
.fulfillment-why-section,
.fulfillment-cta-section {
    background: var(--sp-white);

    color: var(--sp-text);
}


/* Hero */

.fulfillment-hero-section {
    padding: 0 0 52px;
}

.fulfillment-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.fulfillment-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 62%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.96) 48%,
        rgba(255, 255, 255, 0.55) 74%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.fulfillment-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 70px;
}

.fulfillment-hero-content h1 {
    margin: 0 0 38px;
    color: var(--sp-blue);
    font-size: 30px;
    line-height: 1.05;
    font-weight: 800;
}

.fulfillment-hero-content p {
    margin: 0 0 32px;
    color: var(--sp-text);
    font-size: 22px;
    line-height: 1.08;
    font-weight: 800;
}

.fulfillment-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 350px;
    max-width: 100%;
}

.fulfillment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 45px;
    border-radius: 12px;
    color: var(--sp-white);
    font-size: 18px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.fulfillment-btn:hover {
    color: var(--sp-white);
    transform: translateY(-1px);
    opacity: 0.92;
}

.fulfillment-btn-warning {
    background: var(--sp-yellow);
}

.fulfillment-btn-primary {
    background: var(--sp-blue);
}

.fulfillment-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    height: 430px;
    background: var(--sp-light);
}

.fulfillment-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Common */

.fulfillment-blue-title {
    margin: 0 0 22px;
    color: var(--sp-blue);
    font-size: 20px;
    line-height: 1.2;
    font-weight: 800;
}

.fulfillment-section-title {
    margin: 0 0 26px;
    color: var(--sp-text);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.fulfillment-card-title {
    margin: 0 0 26px;
    color: var(--sp-text);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.fulfillment-section-text {
    margin: 28px 0 0;
    color: var(--sp-text);
    font-size: 17px;
    line-height: 1.3;
}

/* Cycle */

.fulfillment-cycle-section {
    padding: 0 0 48px;
}

.fulfillment-cycle-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.fulfillment-cycle-card {
    min-height: 164px;
    padding: 24px 10px 20px;
    border-radius: 8px;
    background: var(--sp-light);
    text-align: center;
}

.fulfillment-cycle-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    margin-bottom: 24px;
    border-radius: 50%;
    background: var(--sp-blue-soft);
    color: var(--sp-white);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
}

.fulfillment-cycle-card p {
    margin: 0;
    color: var(--sp-text);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 400;
}

/* Integrations */

.fulfillment-integrations-section {
    padding: 0 0 56px;
}

.fulfillment-integrations {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 46px;
    align-items: center;
    padding: 18px 0 0;
}

.fulfillment-integration-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
}

.fulfillment-integration-logo img {
    display: block;
    width: 160px;
    max-width: 100%;
    height: 76px;
    object-fit: contain;
}

/* Small Cards */

.fulfillment-benefits-section,
.fulfillment-work-section {
    padding: 0 0 56px;
}

.fulfillment-small-card {
    min-height: 162px;
    padding: 20px 14px 16px;
    border-radius: 7px;
    background: var(--sp-light);
}

.fulfillment-small-card img {
    display: block;
    width: 32px;
    height: 32px;
    margin-bottom: 25px;
    object-fit: contain;
}

.fulfillment-small-card h3 {
    margin: 0 0 9px;
    color: var(--sp-text);
    font-size: 13px;
    line-height: 1.15;
    font-weight: 800;
}

.fulfillment-small-card p {
    margin: 0;
    color: var(--sp-text);
    font-size: 10px;
    line-height: 1.2;
}

.fulfillment-work-card img {

}

.fulfillment-work-note {
    margin: 24px 0 0;
    color: var(--sp-text);
    font-size: 13px;
    line-height: 1.35;
}

/* Gray Blocks */

.fulfillment-suitable-section,
.fulfillment-why-section {
    padding: 0 0 62px;
}

.fulfillment-gray-card {
    padding: 42px 46px;
    border-radius: 13px;
    background: var(--sp-light);
}

.fulfillment-arrow-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.fulfillment-arrow-list li {
    position: relative;
    padding-left: 24px;
    color: var(--sp-text);
    font-size: 17px;
    line-height: 1.18;
    font-weight: 400;
}

.fulfillment-arrow-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 11px;
    height: 20px;
    background: var(--sp-blue);
    clip-path: polygon(0 0, 48% 0, 100% 50%, 48% 100%, 0 100%, 52% 50%);
}

.fulfillment-why-item {
    padding-right: 25px;
}

.fulfillment-why-item img {
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 19px;
    border-radius: 50%;
    background: var(--sp-blue-soft);
    object-fit: contain;
}

.fulfillment-why-item h3 {
    margin: 0 0 9px;
    color: var(--sp-text);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}

.fulfillment-why-item p {
    margin: 0;
    color: var(--sp-text);
    font-size: 13px;
    line-height: 1.25;
}

/* CTA */

.fulfillment-cta-section {
    padding: 48px 0 78px;
}

.fulfillment-cta-card {
    position: relative;
    min-height: 452px;
    padding: 34px 430px 32px 72px;
    border-radius: 14px;
    background: linear-gradient(90deg, var(--sp-blue) 0%, var(--sp-blue) 48%, #4c9cff 100%);
    box-shadow: 0 4px 16px rgba(0, 91, 216, 0.28);
    overflow: visible;
}

.fulfillment-cta-content {
    position: relative;
    z-index: 2;
    color: var(--sp-white);
}

.fulfillment-cta-content h2 {
    margin: 0 0 22px;
    color: var(--sp-white);
    font-size: 26px;
    line-height: 1.05;
    font-weight: 800;
}

.fulfillment-cta-content p {
    margin: 0 0 12px;
    color: var(--sp-white);
    font-size: 13px;
    line-height: 1.2;
}

.fulfillment-form {
    max-width: 430px;
}

.fulfillment-form-group {
    margin-bottom: 8px;
}

.fulfillment-form-group label {
    display: block;
    margin-bottom: 3px;
    color: var(--sp-white);
    font-size: 9px;
    line-height: 1.2;
}

.fulfillment-form-group input,
.fulfillment-form-group textarea {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 10px;
    background: var(--sp-white);
    color: var(--sp-text);
    font-size: 12px;
    outline: none;
    box-shadow: none;
}

.fulfillment-form-group input {
    height: 37px;
    padding: 0 17px;
}

.fulfillment-form-group textarea {
    height: 103px;
    padding: 13px 17px;
    resize: none;
}

.fulfillment-form-group input::placeholder,
.fulfillment-form-group textarea::placeholder {
    color: #999999;
}

.fulfillment-checkbox {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0 12px;
    cursor: pointer;
}

.fulfillment-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.fulfillment-checkbox span {
    width: 11px;
    height: 11px;
    border-radius: 2px;
    background: var(--sp-white);
}

.fulfillment-checkbox input:checked + span {
    background: var(--sp-yellow);
}

.fulfillment-checkbox b {
    color: var(--sp-white);
    font-size: 9px;
    line-height: 1.2;
    font-weight: 400;
}

.fulfillment-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 430px;
    max-width: 100%;
    min-height: 43px;
    border: 0;
    border-radius: 11px;
    background: var(--sp-yellow);
    color: var(--sp-white);
    font-size: 17px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
}

.fulfillment-cta-image {
    position: absolute;
    right: 78px;
    bottom: 0;
    top: -48px;
    z-index: 3;
    width: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.fulfillment-cta-image img {
    display: block;
    width: 100%;
    height: 500px;
    object-fit: contain;
}
@media (max-width: 1199.98px) {
    .fulfillment-hero-image {
        width: 68%;
    }

    .fulfillment-cycle-grid {
        gap: 12px;
    }

    .fulfillment-cta-card {
        padding-right: 360px;
        padding-left: 50px;
    }

    .fulfillment-cta-image {
        right: 35px;
        width: 320px;
    }
}

@media (max-width: 991.98px) {
    .fulfillment-hero-section {
        padding-bottom: 42px;
    }

    .fulfillment-hero {
        min-height: auto;
    }

    .fulfillment-hero::before {
        width: 100%;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.88) 55%,
            rgba(255, 255, 255, 0.4) 100%
        );
    }

    .fulfillment-hero-content {
        padding: 48px 0 36px;
    }

    .fulfillment-hero-image {
        position: relative;
        width: 100%;
        height: 320px;
        margin-top: -20px;
    }

    .fulfillment-cycle-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .fulfillment-integrations {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .fulfillment-gray-card {
        padding: 34px 28px;
    }

    .fulfillment-cta-card {
        padding: 34px 34px 0;
        overflow: hidden;
    }

    .fulfillment-form {
        max-width: 100%;
    }

    .fulfillment-cta-image {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 280px;
        margin: 26px auto 0;
    }

    .fulfillment-cta-image img {
        height: 390px;
    }
}

@media (max-width: 767.98px) {
    .fulfillment-hero-content h1 {
        font-size: 26px;
    }

    .fulfillment-hero-content p {
        font-size: 18px;
    }

    .fulfillment-cycle-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fulfillment-small-card {
        min-height: 150px;
    }

    .fulfillment-cta-content h2 {
        font-size: 23px;
    }
}

@media (max-width: 575.98px) {
    .fulfillment-container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .fulfillment-hero-section {
        padding-bottom: 36px;
    }

    .fulfillment-hero-content {
        padding-top: 34px;
    }

    .fulfillment-hero-content h1 {
        margin-bottom: 26px;
        font-size: 24px;
    }

    .fulfillment-hero-content p {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .fulfillment-hero-actions {
        width: 100%;
    }

    .fulfillment-btn {
        min-height: 42px;
        font-size: 16px;
    }

    .fulfillment-hero-image {
        height: 230px;
    }

    .fulfillment-blue-title,
    .fulfillment-section-title,
    .fulfillment-card-title {
        font-size: 20px;
    }

    .fulfillment-cycle-grid {
        grid-template-columns: 1fr;
    }

    .fulfillment-cycle-card {
        min-height: auto;
        padding: 22px 15px;
    }

    .fulfillment-integrations {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fulfillment-benefits-section,
    .fulfillment-work-section,
    .fulfillment-suitable-section,
    .fulfillment-why-section {
        padding-bottom: 42px;
    }

    .fulfillment-small-card {
        min-height: 145px;
    }

    .fulfillment-section-text,
    .fulfillment-work-note {
        font-size: 14px;
    }

    .fulfillment-gray-card {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .fulfillment-arrow-list li {
        font-size: 15px;
    }

    .fulfillment-cta-section {
        padding: 36px 0 54px;
    }

    .fulfillment-cta-card {
        padding: 30px 20px 0;
        border-radius: 14px;
    }

    .fulfillment-cta-content h2 {
        font-size: 21px;
    }

    .fulfillment-cta-content p br {
        display: none;
    }

    .fulfillment-form-group input {
        height: 40px;
    }

    .fulfillment-form-group textarea {
        height: 96px;
    }

    .fulfillment-submit-btn {
        min-height: 42px;
        font-size: 15px;
    }

    .fulfillment-cta-image {
        width: 230px;
        margin-top: 20px;
    }

    .fulfillment-cta-image img {
        height: 320px;
    }
}

/* ==========================================================================
   Final consistency fixes
   ========================================================================== */

/* Bootstrap container already handles width. Do not shrink page sections manually. */
.fulfillment-container,
.courier-container,
.partner-container {

}

/* Shared section typography */
.fulfillment-blue-title,
.courier-section-title,
.partner-hero-content h1,
.partner-requirements-card h2 {
  color: var(--sp-blue);
}

.fulfillment-section-title,
.fulfillment-card-title,
.courier-block-title,
.partner-section-title {
  color: var(--sp-text);
  font-weight: 800;
}

/* Fulfillment page: align late blocks with the rest of the site */
.fulfillment-blue-title {
  font-size: 24px;
}

.fulfillment-section-title,
.fulfillment-card-title {
  font-size: 26px;
}

.fulfillment-small-card {
  min-height: 190px;
  padding: 24px 18px 20px;
  border-radius: var(--sp-radius-sm);
  background: var(--sp-light);
}

.fulfillment-small-card img {
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
}

.fulfillment-small-card h3 {
  font-size: 16px;
}

.fulfillment-small-card p {
  font-size: 13px;
  line-height: 1.3;
}

.fulfillment-cycle-card {
  min-height: 175px;
  padding: 28px 16px 22px;
  border-radius: var(--sp-radius-sm);
  background: var(--sp-light);
}

.fulfillment-cycle-card p {
  font-size: 15px;
}

.fulfillment-section-text,
.fulfillment-work-note {
  font-size: 16px;
}

.fulfillment-gray-card {
  padding: 48px 52px;
  border-radius: var(--sp-radius);
  background: var(--sp-light);
}

.fulfillment-arrow-list li {
  font-size: 18px;
}

.fulfillment-why-item h3 {
  font-size: 18px;
}

.fulfillment-why-item p {
  font-size: 15px;
}

/* CTA should stay visually large and not look like a compressed widget. */
.fulfillment-cta-card {
  border-radius: var(--sp-radius);
  box-shadow: var(--sp-shadow);
}

.fulfillment-form-group label,
.fulfillment-checkbox b {
  font-size: 12px;
}

.fulfillment-form-group input,
.fulfillment-form-group textarea {
  font-size: 14px;
}

@media (max-width: 575.98px) {
  .fulfillment-blue-title,
  .fulfillment-section-title,
  .fulfillment-card-title {
    font-size: 22px;
  }

  .fulfillment-small-card {
    min-height: 150px;
  }

  .fulfillment-gray-card {
    padding: 28px 20px;
  }
}
/* Common for this page */

.ecom-hero-section,
.ecom-solutions-section,
.ecom-advantages-section,
.ecom-steps-section,
.ecom-cta-section {
    background: var(--sp-white, #fff);
    color: var(--sp-text, #111);
}

.sp-section-title {
    margin: 0 0 32px;
    color: var(--sp-text, #111);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 38px;
    border-radius: 14px;
    border: 0;
    color: var(--sp-white, #fff);
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sp-btn:hover {
    color: var(--sp-white, #fff);
    transform: translateY(-1px);
    opacity: 0.92;
}

.sp-btn-warning {
    background: var(--sp-yellow, #ffae22);
}

/* Hero */

.ecom-hero-section {
    padding: 0 0 64px;
}

.ecom-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.ecom-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 62%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.97) 42%,
        rgba(255, 255, 255, 0.62) 72%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.ecom-hero-content {
    position: relative;
    z-index: 3;
    padding-top: 58px;
    padding-bottom: 52px;
}

.ecom-hero-content h1 {
    margin: 0 0 62px;
    color: var(--sp-blue, #0767d8);
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
}

.ecom-hero-content h2 {
    margin: 0 0 38px;
    color: var(--sp-text, #111);
    font-size: 24px;
    line-height: 1.08;
    font-weight: 800;
}

.ecom-hero-content p {
    max-width: 510px;
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 20px;
    line-height: 1.15;
    font-weight: 400;
}

.ecom-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    height: 430px;
    background: var(--sp-light, #f3f3f3);
}

.ecom-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Feature cards */

.sp-feature-card {
    min-height: 245px;
    padding: 20px 16px 18px;
    border-radius: 8px;
    background: var(--sp-light, #f3f3f3);
}

.sp-feature-card img {
    display: block;
    width: 34px;
    height: 34px;
    margin-bottom: 24px;
    object-fit: contain;
}

.sp-feature-card h3 {
    margin: 0 0 10px;
    color: var(--sp-text, #111);
    font-size: 16px;
    line-height: 1.12;
    font-weight: 800;
}

.sp-feature-card p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 13px;
    line-height: 1.18;
}

/* Advantages */

.sp-info-card {
    min-height: 170px;
    padding: 42px 24px 28px;
    border-radius: 18px;
    background: var(--sp-light, #f3f3f3);
}

.sp-info-card h3 {
    margin: 0 0 24px;
    color: var(--sp-blue, #0767d8);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}

.sp-info-card p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 16px;
    line-height: 1.25;
}

/* Steps */

.sp-step-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    min-height: 110px;
    padding: 20px 24px;
    border-radius: 16px;
    background: var(--sp-light, #f3f3f3);
}

.sp-step-card span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sp-blue-soft, #9bc9ff);
    color: var(--sp-white, #fff);
    font-size: 21px;
    line-height: 1;
    font-weight: 800;
}

.sp-step-card h3 {
    margin: 0 0 7px;
    color: var(--sp-text, #111);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}

.sp-step-card p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 16px;
    line-height: 1.25;
}

/* CTA */

.ecom-cta-section {
    padding: 42px 0 72px;
}

.ecom-cta-card {
    position: relative;
    min-height: 210px;
    padding: 48px 430px 42px 74px;
    border-radius: 18px;
    background: var(--sp-blue, #0767d8);
    overflow: hidden;
}

.ecom-cta-content {
    position: relative;
    z-index: 2;
}

.ecom-cta-content h2 {
    margin: 0 0 30px;
    color: var(--sp-white, #fff);
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
}

.ecom-cta-image {
    position: absolute;
    right: 48px;
    bottom: 0;
    width: 360px;
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ecom-cta-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */

@media (max-width: 1199.98px) {
    .ecom-cta-card {
        padding-right: 340px;
        padding-left: 52px;
    }

    .ecom-cta-image {
        right: 30px;
        width: 300px;
    }
}

@media (max-width: 991.98px) {
    .ecom-hero-section {
        padding-bottom: 48px;
    }

    .ecom-hero {
        min-height: auto;
    }

    .ecom-hero::before {
        width: 100%;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.9) 56%,
            rgba(255, 255, 255, 0.35) 100%
        );
    }

    .ecom-hero-content {
        padding-top: 42px;
        padding-bottom: 32px;
    }

    .ecom-hero-content h1 {
        margin-bottom: 38px;
        font-size: 28px;
    }

    .ecom-hero-content h2 {
        margin-bottom: 26px;
        font-size: 22px;
    }

    .ecom-hero-content p {
        font-size: 18px;
    }

    .ecom-hero-image {
        position: relative;
        width: 100%;
        height: 320px;
    }

    .sp-section-title {
        font-size: 24px;
    }

    .sp-feature-card {
        min-height: 220px;
    }

    .ecom-cta-card {
        padding: 38px 32px 0;
    }

    .ecom-cta-image {
        position: relative;
        right: auto;
        bottom: auto;
        width: 320px;
        height: 160px;
        margin: 24px auto 0;
    }
}

@media (max-width: 767.98px) {
    .sp-feature-card {
        min-height: 210px;
    }

    .sp-info-card {
        min-height: auto;
    }

    .ecom-cta-content h2 {
        font-size: 23px;
    }
}

@media (max-width: 575.98px) {
    .ecom-hero-section {
        padding-bottom: 38px;
    }

    .ecom-hero-content h1 {
        margin-bottom: 30px;
        font-size: 25px;
    }

    .ecom-hero-content h2 {
        font-size: 19px;
    }

    .ecom-hero-content p {
        font-size: 16px;
    }

    .ecom-hero-image {
        height: 240px;
    }

    .sp-section-title {
        margin-bottom: 24px;
        font-size: 21px;
    }

    .sp-feature-card {
        min-height: 190px;
        padding: 18px 14px;
    }

    .sp-feature-card h3 {
        font-size: 15px;
    }

    .sp-feature-card p {
        font-size: 12px;
    }

    .sp-info-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .sp-info-card h3 {
        margin-bottom: 14px;
        font-size: 16px;
    }

    .sp-info-card p {
        font-size: 15px;
    }

    .sp-step-card {
        min-height: auto;
        padding: 18px;
        border-radius: 14px;
    }

    .sp-step-card h3 {
        font-size: 16px;
    }

    .sp-step-card p {
        font-size: 14px;
    }

    .ecom-cta-section {
        padding: 28px 0 52px;
    }

    .ecom-cta-card {
        padding: 30px 22px 0;
        border-radius: 16px;
    }

    .ecom-cta-content h2 {
        font-size: 20px;
    }

    .ecom-cta-content h2 br {
        display: none;
    }

    .sp-btn {
        width: 100%;
        min-height: 44px;
        font-size: 14px;
    }

    .ecom-cta-image {
        width: 260px;
        height: 130px;
    }
}

/* Green Logistics Page */

.green-hero-section,
.green-important-section,
.green-principles-section,
.green-implement-section,
.green-approach-section {
    background: var(--sp-white, #fff);
    color: var(--sp-text, #111);
}

/* Hero */

.green-hero-section {
    padding: 0 0 72px;
}

.green-hero {
    position: relative;
    min-height: 430px;
    overflow: hidden;
}

.green-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 62%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.97) 42%,
        rgba(255, 255, 255, 0.62) 72%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.green-hero-content {
    position: relative;
    z-index: 3;
    max-width: 440px;
    padding-top: 66px;
    padding-bottom: 60px;
}

.green-hero-content h1 {
    margin: 0 0 58px;
    color: var(--sp-blue, #0767d8);
    font-size: 31px;
    line-height: 1.1;
    font-weight: 800;
}

.green-hero-content p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 19px;
    line-height: 1.17;
    font-weight: 400;
}

.green-hero-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    height: 430px;
    background: var(--sp-light, #f3f3f3);
}

.green-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Important */

.green-important-section {
    padding: 0 0 72px;
}

.green-split-block {
    position: relative;
    min-height: 290px;
    overflow: hidden;
}

.green-split-block::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 58%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.97) 45%,
        rgba(255, 255, 255, 0.62) 74%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.green-split-content {
    position: relative;
    z-index: 3;
    max-width: 430px;
    padding: 40px 0;
}

.green-split-content h2 {
    margin: 0 0 52px;
    color: var(--sp-text, #111);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.green-split-content p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 18px;
    line-height: 1.18;
}

.green-split-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    height: 290px;
    background: var(--sp-light, #f3f3f3);
}

.green-split-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Principles */

.green-principles-section {
    padding-top: 0;
}

.green-trees-card {
    padding: 38px 48px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.green-trees-text p {
    margin: 0 0 28px;
    color: var(--sp-text, #111);
    font-size: 19px;
    line-height: 1.16;
}

.green-trees-text p:last-child {
    margin-bottom: 0;
}

.green-trees-text strong {
    color: var(--sp-blue, #0767d8);
    font-size: 25px;
    line-height: 1;
    font-weight: 800;
}

.green-trees-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 205px;
}

.green-trees-image img {
    display: block;
    width: 100%;
    height: 205px;
    object-fit: contain;
}

.green-principle-card {
    min-height: 220px;
    padding: 34px 24px 28px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.green-principle-card img {
    display: block;
    width: 86px;
    height: 86px;
    margin-bottom: 38px;
    object-fit: contain;
    background: transparent;
}

.green-principle-card p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 15px;
    line-height: 1.18;
}

/* Implement */

.green-implement-section {
    padding-top: 20px;
}

.green-step-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    min-height: 96px;
    padding: 20px 26px;
    border-radius: 13px;
    background: var(--sp-light, #f3f3f3);
}

.green-step-card span {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--sp-blue-soft, #9bc9ff);
    color: var(--sp-white, #fff);
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
}

.green-step-card p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 15px;
    line-height: 1.16;
}

/* Approach */

.green-approach-section {
    padding: 10px 0 72px;
}

.green-approach-card {
    padding: 62px 48px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.green-approach-content h2 {
    margin: 0 0 42px;
    color: var(--sp-text, #111);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.green-approach-content p {
    margin: 0 0 36px;
    color: var(--sp-text, #111);
    font-size: 19px;
    line-height: 1.2;
}

.green-approach-content p:last-child {
    margin-bottom: 0;
}

.green-approach-image {
    overflow: hidden;
    border-radius: 7px;
    background: var(--sp-white, #fff);
}

.green-approach-image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* Responsive */

@media (max-width: 991.98px) {
    .green-hero-section {
        padding-bottom: 52px;
    }

    .green-hero {
        min-height: auto;
    }

    .green-hero::before {
        width: 100%;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.88) 58%,
            rgba(255, 255, 255, 0.35) 100%
        );
    }

    .green-hero-content {
        max-width: none;
        padding-top: 42px;
        padding-bottom: 34px;
    }

    .green-hero-content h1 {
        margin-bottom: 34px;
        font-size: 28px;
    }

    .green-hero-content p {
        max-width: 560px;
        font-size: 18px;
    }

    .green-hero-image {
        position: relative;
        width: 100%;
        height: 320px;
    }

    .green-important-section {
        padding-bottom: 52px;
    }

    .green-split-block {
        min-height: auto;
    }

    .green-split-block::before {
        width: 100%;
        background: linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.98) 0%,
            rgba(255, 255, 255, 0.9) 55%,
            rgba(255, 255, 255, 0.35) 100%
        );
    }

    .green-split-content {
        max-width: none;
        padding: 34px 0 28px;
    }

    .green-split-content h2 {
        margin-bottom: 28px;
    }

    .green-split-image {
        position: relative;
        width: 100%;
        height: 260px;
    }

    .green-trees-card {
        padding: 34px 30px;
    }

    .green-trees-image img {
        height: 180px;
    }

    .green-principle-card {
        min-height: 200px;
    }

    .green-approach-card {
        padding: 42px 32px;
    }

    .green-approach-image img {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .green-hero-section {
        padding-bottom: 40px;
    }

    .green-hero-content h1 {
        font-size: 25px;
    }

    .green-hero-content p {
        font-size: 16px;
    }

    .green-hero-image {
        height: 230px;
    }

    .green-important-section {
        padding-bottom: 40px;
    }

    .green-split-content h2,
    .green-approach-content h2 {
        font-size: 22px;
    }

    .green-split-content p {
        font-size: 16px;
    }

    .green-split-image {
        height: 220px;
    }

    .green-trees-card {
        padding: 28px 20px;
        border-radius: 12px;
    }

    .green-trees-text p {
        font-size: 16px;
    }

    .green-trees-text strong {
        font-size: 21px;
    }

    .green-trees-image {
        min-height: 150px;
    }

    .green-trees-image img {
        height: 150px;
    }

    .green-principle-card {
        min-height: auto;
        padding: 28px 20px;
        border-radius: 12px;
    }

    .green-principle-card img {
        width: 66px;
        height: 66px;
        margin-bottom: 28px;
    }

    .green-principle-card p {
        font-size: 14px;
    }

    .green-step-card {
        min-height: auto;
        padding: 18px;
        border-radius: 12px;
    }

    .green-step-card p {
        font-size: 14px;
    }

    .green-approach-section {
        padding-bottom: 50px;
    }

    .green-approach-card {
        padding: 32px 22px;
        border-radius: 12px;
    }

    .green-approach-content p {
        margin-bottom: 26px;
        font-size: 16px;
    }

    .green-approach-image img {
        height: 230px;
    }
}

/* Forwarding Page */

.forwarding-hero-section,
.forwarding-calc-section,
.forwarding-benefits-section,
.forwarding-trusted-section,
.forwarding-fleet-section {
    background: var(--sp-white, #fff);
    color: var(--sp-text, #111);
}

/* Common */

.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 14px 42px;
    border: 0;
    border-radius: 12px;
    color: var(--sp-white, #fff);
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.sp-btn:hover {
    color: var(--sp-white, #fff);
    transform: translateY(-1px);
    opacity: 0.92;
}

.sp-btn-primary {
    background: var(--sp-blue, #0767d8);
}

.sp-btn-warning {
    background: var(--sp-yellow, #ffae22);
}

.sp-section-title {
    margin: 0 0 32px;
    color: var(--sp-text, #111);
    font-size: 26px;
    line-height: 1.2;
    font-weight: 800;
}

.sp-arrow-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sp-arrow-list li {
    position: relative;
    padding-left: 22px;
    color: var(--sp-text, #111);
    font-size: 18px;
    line-height: 1.25;
}

.sp-arrow-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 9px;
    height: 15px;
    background: var(--sp-blue, #0767d8);
    clip-path: polygon(0 0, 48% 0, 100% 50%, 48% 100%, 0 100%, 52% 50%);
}

/* Hero */

.forwarding-hero-section {
    padding: 48px 0 72px;
}

.forwarding-hero {
    position: relative;
    min-height: 335px;
}

.forwarding-hero-content h1 {
    margin: 0 0 48px;
    color: var(--sp-blue, #0767d8);
    font-size: 28px;
    line-height: 1.1;
    font-weight: 800;
}

.forwarding-hero-content h2 {
    margin: 0 0 28px;
    color: var(--sp-text, #111);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.forwarding-hero-list {
    margin-bottom: 30px;
}

.forwarding-hero-btn {
    min-width: 290px;
}

.forwarding-hero-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 315px;
}

.forwarding-hero-image img {
    display: block;
    width: 100%;
    max-width: 570px;
    height: 315px;
    object-fit: contain;
}

/* Calc */

.forwarding-calc-section {
    padding: 42px 0 56px;
    background: var(--sp-light, #f3f3f3);
}

.forwarding-calc-box {

    margin: 0 auto;
}

.forwarding-calc-box h2 {
    margin: 0 0 42px;
    color: var(--sp-text, #111);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.forwarding-form input {
    display: block;
    width: 100%;
    height: 64px;
    padding: 0 24px;
    border: 0;
    border-radius: 13px;
    background: var(--sp-white, #fff);
    color: var(--sp-text, #111);
    font-size: 16px;
    line-height: 1.2;
    outline: none;
    box-shadow: none;
}

.forwarding-form input::placeholder {
    color: #92a0b8;
}

.forwarding-form-bottom {
    display: flex;
    align-items: center;
    gap: 90px;
    margin-top: 44px;
}

.forwarding-submit {
    min-width: 455px;
    min-height: 66px;
    font-size: 17px;
}

.forwarding-form-bottom p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 14px;
    line-height: 1.2;
}

/* Benefits */

.forwarding-benefits-section {
    padding-top: 72px;
    padding-bottom: 64px;
}

.forwarding-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.forwarding-benefit-card {
    min-height: 210px;
    padding: 22px 18px 20px;
    border-radius: 12px;
    background: var(--sp-light, #f3f3f3);
}

.forwarding-benefit-card img {
    display: block;
    width: 36px;
    height: 36px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--sp-blue-soft, #9bc9ff);
    object-fit: contain;
}

.forwarding-benefit-card h3 {
    margin: 0 0 10px;
    color: var(--sp-text, #111);
    font-size: 15px;
    line-height: 1.12;
    font-weight: 800;
}

.forwarding-benefit-card p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 12px;
    line-height: 1.18;
}

.forwarding-benefit-card-wide {
    grid-column: span 2;
    min-height: 165px;
}

/* Trusted */

.forwarding-trusted-section {
    padding: 28px 0 56px;
    overflow: hidden;
}

.forwarding-trusted-section .sp-section-title {
    margin-bottom: 34px;
}

.trusted-swiper {
    max-width: 880px;
    margin: 0 auto;
    overflow: hidden;
}

.trusted-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 85px;
}

.trusted-logo img {
    display: block;
    width: 210px;
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    background: transparent;
}

.forwarding-swiper-arrow {
    position: absolute;
    top: 55%;
    z-index: 10;
    width: 36px;
    height: 60px;
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(17, 17, 17, 0.35);
    font-size: 62px;
    line-height: 1;
    font-weight: 200;
    transform: translateY(-50%);
    cursor: pointer;
}

.trusted-swiper-prev {
    left: 0;
}

.trusted-swiper-next {
    right: 0;
}

/* Fleet */

.forwarding-fleet-section {
    padding: 0 0 0;
}

.forwarding-fleet-head {
    margin-bottom: 28px;
}

.forwarding-fleet-head h2 {
    margin: 0 0 12px;
    color: var(--sp-text, #111);
    font-size: 25px;
    line-height: 1.2;
    font-weight: 800;
}

.forwarding-fleet-head p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 18px;
    line-height: 1.3;
}

.forwarding-fleet-tabs {
    display: grid;
    grid-template-columns: 84px repeat(4, 1fr);
    gap: 26px;
    margin-bottom: 88px;
}

.forwarding-fleet-tabs .nav-item {
    width: 100%;
}

.forwarding-fleet-tabs button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 46px;
    padding: 10px 18px;
    border: 0;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111);
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.forwarding-fleet-tabs button.active {
    border: 2px solid var(--sp-blue, #0767d8);
    background: var(--sp-white, #fff);
    color: var(--sp-blue, #0767d8);
}

.forwarding-fleet-preview {
    position: relative;
    min-height: 300px;
    overflow: hidden;
}

.forwarding-fleet-image {
    
}

.forwarding-fleet-image img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: left bottom;
}

.forwarding-fleet-text {
    display: flex;
    align-items: center;
    min-height: 300px;
}

.forwarding-fleet-text p {
    margin: 0;
    color: var(--sp-text, #111);
    font-size: 22px;
    line-height: 1.15;
    font-weight: 400;
}

/* Responsive */

@media (max-width: 1199.98px) {
    .forwarding-benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .forwarding-benefit-card-wide {
        grid-column: span 3;
    }

    .forwarding-fleet-tabs {
        gap: 14px;
    }
}

@media (max-width: 991.98px) {
    .forwarding-hero-section {
        padding: 38px 0 52px;
    }

    .forwarding-hero-content h1 {
        margin-bottom: 32px;
        font-size: 26px;
    }

    .forwarding-hero-content h2 {
        font-size: 22px;
    }

    .forwarding-hero-image {
        justify-content: center;
        min-height: auto;
    }

    .forwarding-hero-image img {
        height: 260px;
    }

    .forwarding-form-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .forwarding-submit {
        width: 100%;
        min-width: 0;
    }

    .forwarding-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .forwarding-benefit-card-wide {
        grid-column: span 2;
    }

    .trusted-swiper {
        max-width: calc(100% - 80px);
    }

    .forwarding-fleet-tabs {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 50px;
    }

    .forwarding-fleet-tabs .nav-item {
        width: auto;
    }

    .forwarding-fleet-tabs button {
        width: auto;
        min-width: 120px;
    }

    .forwarding-fleet-image {
        margin-left: 0;
    }

    .forwarding-fleet-text {
        min-height: auto;
        padding-bottom: 36px;
    }
}

@media (max-width: 575.98px) {
    .sp-btn {
        width: 100%;
        min-height: 50px;
        font-size: 16px;
    }

    .forwarding-hero-content h1 {
        font-size: 24px;
    }

    .forwarding-hero-content h2 {
        font-size: 20px;
    }

    .sp-arrow-list li {
        font-size: 15px;
    }

    .forwarding-hero-image img {
        height: 210px;
    }

    .forwarding-calc-section {
        padding: 34px 0 42px;
    }

    .forwarding-calc-box h2 {
        margin-bottom: 28px;
        font-size: 21px;
    }

    .forwarding-form input {
        height: 56px;
        padding: 0 18px;
        font-size: 15px;
    }

    .forwarding-benefits-section {
        padding-top: 46px;
    }

    .forwarding-benefits-grid {
        grid-template-columns: 1fr;
    }

    .forwarding-benefit-card,
    .forwarding-benefit-card-wide {
        grid-column: span 1;
        min-height: auto;
    }

    .trusted-swiper {
        max-width: calc(100% - 60px);
    }

    .trusted-logo img {
        width: 180px;
    }

    .forwarding-swiper-arrow {
        font-size: 48px;
    }

    .forwarding-fleet-head h2 {
        font-size: 22px;
    }

    .forwarding-fleet-head p {
        font-size: 16px;
    }

    .forwarding-fleet-tabs button {
        min-height: 42px;
        font-size: 12px;
    }

    .forwarding-fleet-image img {
        height: 220px;
    }

    .forwarding-fleet-text p {
        font-size: 18px;
    }
}


/* Private Tariffs Page */

.private-tariffs-section,
.private-tracking-section,
.private-free-section,
.private-notes-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.sp-page-title {
    margin: 0 0 22px;
    color: var(--sp-blue, #0767d8);
    font-size: 30px;
    line-height: 1.2;
    font-weight: 800;
}

/* Tabs */

.private-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 70px;
}

.private-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.private-tab:hover {
    color: var(--sp-blue, #0767d8);
}

.private-tab.active {
    border-color: var(--sp-blue, #0767d8);
    background: var(--sp-white, #ffffff);
    color: var(--sp-blue, #0767d8);
}

/* Intro */

.private-intro-card {
    padding: 48px 34px;
    border-radius: var(--sp-radius, 18px);
    background: var(--sp-light, #f3f3f3);
}

.private-intro-content h2 {
    margin: 0 0 34px;
    color: var(--sp-text, #111111);
    font-size: 23px;
    line-height: 1.15;
    font-weight: 800;
}

.private-intro-content p {
    max-width: 430px;
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 16px;
    line-height: 1.45;
}

.private-intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.private-intro-image img {
    display: block;
    width: 100%;
    max-width: 620px;
    height: 320px;
    object-fit: contain;
    background: transparent;
}

/* Calculator small consistency */

.calculator-section .calc-box {
    border-radius: 18px;
}

.calculator-section .btn-secondary {
    --bs-btn-bg: #bdbdbd;
    --bs-btn-border-color: #bdbdbd;
    --bs-btn-hover-bg: #adadad;
    --bs-btn-hover-border-color: #adadad;
    --bs-btn-color: #ffffff;
    --bs-btn-hover-color: #ffffff;
    min-width: 280px;
    border-radius: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.calculator-section .btn-warning {
    min-width: 280px;
    border-radius: 14px;
}

/* Tracking */

.private-tracking-section {
    padding-top: 18px;
}

.private-tracking-section .sp-section-title {
    margin-bottom: 22px;
    font-size: 24px;
}

.private-tracking-form {
    display: flex;
    align-items: center;
    min-height: 76px;
    padding: 0 6px 0 42px;
    border-radius: 16px;
    background: var(--sp-light, #f3f3f3);
}

.private-tracking-form input {
    flex: 1 1 auto;
    min-width: 0;
    height: 64px;
    border: 0;
    background: transparent;
    color: var(--sp-text, #111111);
    font-size: 18px;
    outline: none;
    box-shadow: none;
}

.private-tracking-form input::placeholder {
    color: #9e9e9e;
}

.private-tracking-form button {
    flex: 0 0 auto;
    min-width: 245px;
    min-height: 64px;
    border: 0;
    border-radius: 14px;
    background: var(--sp-yellow, #ffae22);
    color: var(--sp-white, #ffffff);
    font-size: 20px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

/* Free Services */

.private-free-card {
    padding: 48px 48px;
    border-radius: var(--sp-radius, 18px);
    background: var(--sp-light, #f3f3f3);
}

.private-free-content h2 {
    margin: 0 0 38px;
    color: var(--sp-text, #111111);
    font-size: 24px;
    line-height: 1.15;
    font-weight: 800;
}

.private-free-list {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.private-free-list li {
    display: flex;
    align-items: center;
    gap: 42px;
}

.private-free-list img {
    flex: 0 0 auto;
    display: block;
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.private-free-list span {
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.2;
}

.private-free-image img {
    display: block;
    width: 100%;
    height: 420px;
    object-fit: cover;
    background: var(--sp-white, #ffffff);
}

/* Notes */

.private-notes-section {
    padding-top: 12px;
}

.private-tariff-notes {
    gap: 18px;
    margin-bottom: 54px;
}

.private-tariff-notes li {
    font-size: 16px;
    font-weight: 800;
}

.private-note-card {
    padding: 34px 38px;
    border-radius: var(--sp-radius, 18px);
    background: var(--sp-light, #f3f3f3);
}

.private-note-card p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.45;
}
/* Private local tariff cards */

.private-rate-tabs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
    margin: 62px 0 56px;
}

.private-rate-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    padding: 22px 16px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111111);
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.private-rate-card:hover {
    color: var(--sp-blue, #0767d8);
}

.private-rate-card.active {
    border-color: var(--sp-blue, #0767d8);
    background: var(--sp-white, #ffffff);
    color: var(--sp-blue, #0767d8);
}

.private-rate-card strong {
    display: block;
    margin-bottom: 16px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
}

.private-rate-card span {
    display: block;
    font-size: 19px;
    line-height: 1.15;
    font-weight: 400;
}

.private-rate-description {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 16px;
    line-height: 1.35;
}

.private-rate-description strong {
    color: var(--sp-blue, #0767d8);
    font-weight: 800;
}

/* Courier button */

.private-courier-section {
    padding: 0 0 42px;
    background: var(--sp-white, #ffffff);
}

.private-courier-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 390px;
    min-height: 62px;
    padding: 14px 36px;
    border-radius: 14px;
    background: var(--sp-blue, #0767d8);
    color: var(--sp-white, #ffffff);
    font-size: 21px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.private-courier-btn:hover {
    background: var(--sp-blue-dark, #045cc3);
    color: var(--sp-white, #ffffff);
    transform: translateY(-1px);
}
/* Responsive */

@media (max-width: 991.98px) {
    .private-tabs {
        margin-bottom: 42px;
        gap: 16px;
    }

    .private-intro-card {
        padding: 34px 28px;
    }

    .private-intro-content p {
        max-width: none;
    }

    .private-intro-image {
        min-height: 220px;
    }

    .private-intro-image img {
        height: 220px;
    }

    .private-free-card {
        padding: 34px 28px;
    }

    .private-free-image img {
        height: 320px;
    }
}

@media (max-width: 767.98px) {
    .private-tabs {
        grid-template-columns: 1fr 1fr;
    }

    .private-tracking-form {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 10px;
    }

    .private-tracking-form input {
        height: 56px;
        padding: 0 14px;
        font-size: 16px;
    }

    .private-tracking-form button {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        font-size: 18px;
    }

    .private-free-list li {
        gap: 22px;
    }
}

@media (max-width: 575.98px) {
    .sp-page-title {
        font-size: 25px;
    }

    .private-tab {
        min-height: 52px;
        font-size: 16px;
    }

    .private-intro-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .private-intro-content h2 {
        margin-bottom: 24px;
        font-size: 20px;
    }

    .private-intro-content p {
        font-size: 15px;
    }

    .private-intro-image img {
        height: 180px;
    }

    .private-free-card {
        padding: 28px 20px;
        border-radius: 16px;
    }

    .private-free-content h2 {
        font-size: 21px;
    }

    .private-free-list {
        gap: 26px;
    }

    .private-free-list img {
        width: 38px;
        height: 38px;
    }

    .private-free-list span {
        font-size: 16px;
    }

    .private-free-image img {
        height: 240px;
    }

    .private-tariff-notes li {
        font-size: 14px;
    }

    .private-note-card {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .private-note-card p {
        font-size: 14px;
    }
}

@media (max-width: 991.98px) {
    .private-rate-tabs {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
        margin: 42px 0 36px;
    }

    .private-rate-card {
        min-height: 130px;
    }

    .private-rate-card span {
        font-size: 17px;
    }

    .private-courier-btn {
        min-width: 320px;
    }
}

@media (max-width: 575.98px) {
    .private-rate-tabs {
        grid-template-columns: 1fr;
        gap: 12px;
        margin: 34px 0 28px;
    }

    .private-rate-card {
        min-height: 96px;
        padding: 18px;
    }

    .private-rate-card strong {
        margin-bottom: 8px;
        font-size: 17px;
    }

    .private-rate-card span {
        font-size: 16px;
    }

    .private-courier-section {
        padding-bottom: 32px;
    }

    .private-courier-btn {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        font-size: 18px;
    }
}

/* Universal private tariff tables */

.private-rate-table-wrap {
    width: 100%;
    margin: 0 0 64px;
    overflow: hidden;
    border-radius: 16px;
    background: var(--sp-light, #f3f3f3);
}

/* На случай широких таблиц */
.private-rate-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    color: var(--sp-text, #111111);
}

/* Все ячейки */
.private-rate-table th,
.private-rate-table td {
    padding: 22px 24px;
    border-right: 1px solid #c7d1df;
    vertical-align: top;
    color: var(--sp-text, #111111);
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

/* Убираем правую границу у последней ячейки */
.private-rate-table th:last-child,
.private-rate-table td:last-child {
    border-right: 0;
}

/* Первая колонка: "Срок доставки" / "Зона покрытия" */
.private-rate-table th {
    width: 260px;
    text-align: left;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 400;
}

/* Верхняя строка */
.private-rate-table tr:first-child th,
.private-rate-table tr:first-child td {
    padding-top: 18px;
    padding-bottom: 18px;
    background: #d8eaff;
    text-align: center;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
}

/* Левая ячейка в верхней строке */
.private-rate-table tr:first-child th {
    text-align: center;
}

/* Вторая строка */
.private-rate-table tr:nth-child(2) th,
.private-rate-table tr:nth-child(2) td {
    padding-top: 26px;
    padding-bottom: 26px;
    background: var(--sp-light, #f3f3f3);
}

/* "Зона покрытия" */
.private-rate-table tr:nth-child(2) th {
    text-align: left;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 400;
}

/* Города */
.private-rate-table tr:nth-child(2) td {
    text-align: left;
    font-size: 16px;
    line-height: 1.55;
}

/* Скругления */
.private-rate-table tr:first-child th:first-child {
    border-top-left-radius: 16px;
}

.private-rate-table tr:first-child td:last-child {
    border-top-right-radius: 16px;
}

.private-rate-table tr:last-child th:first-child {
    border-bottom-left-radius: 16px;
}

.private-rate-table tr:last-child td:last-child {
    border-bottom-right-radius: 16px;
}
@media (max-width: 991.98px) {
    .private-rate-table-wrap {
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 16px;
        -webkit-overflow-scrolling: touch;
    }

    .private-rate-table {
        min-width: 900px;
    }

    .private-rate-table th {
        width: 220px;
    }
}

@media (max-width: 575.98px) {
    .private-rate-table-wrap {
        margin-bottom: 42px;
        border-radius: 14px;
    }

    .private-rate-table {
        min-width: 860px;
    }

    .private-rate-table th,
    .private-rate-table td {
        display: table-cell !important;
        width: auto !important;
        padding: 14px 18px;
        border-right: 1px solid #c7d1df;
        font-size: 14px;
        line-height: 1.45;
    }

    .private-rate-table th {
        width: 190px !important;
    }

    .private-rate-table tr {
        display: table-row !important;
        border-bottom: 0 !important;
    }

    .private-rate-table tbody {
        display: table-row-group !important;
    }

    .private-rate-table tr:first-child th,
    .private-rate-table tr:first-child td {
        padding-top: 14px;
        padding-bottom: 14px;
        font-size: 18px;
    }

    .private-rate-table tr:nth-child(2) th {
        font-size: 18px;
    }

    .private-rate-table tr:nth-child(2) td {
        font-size: 14px;
        line-height: 1.5;
    }
}












/* Additional services page 11111111111111111111111111111 */

/* Top services grid */

.additional-services-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 22px;
}

.additional-service-card {
    display: flex;
    align-items: center;
    gap: 26px;
    min-height: 128px;
    padding: 24px 26px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111111);
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.additional-service-card:hover {
    color: var(--sp-blue, #0767d8);
}

.additional-service-card.active {
    border-color: var(--sp-blue, #0767d8);
    background: var(--sp-white, #ffffff);
    color: var(--sp-blue, #0767d8);
}

.additional-service-card img {
    flex: 0 0 auto;
    display: block;
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.additional-service-card span {
    display: block;
    color: inherit;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
}

/* Requirements */

.cargo-requirements-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.cargo-requirements-section .sp-section-title {
    margin-bottom: 38px;
}

.cargo-requirements-list {
    gap: 20px;
}

.cargo-requirements-list li {
    max-width: 1110px;
    font-size: 15px;
    line-height: 1.35;
}

/* Attention */

.cargo-attention-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.cargo-attention-card {
    position: relative;
    padding: 54px 76px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    overflow: visible;
}

.cargo-attention-content {
    max-width: 420px;
}

.cargo-attention-content h2 {
    margin: 0 0 34px;
    color: var(--sp-text, #111111);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.cargo-attention-content p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.25;
}

.cargo-attention-image {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: 230px;
}

.cargo-attention-image img {
    display: block;
    width: 100%;
    max-width: 360px;
    height: 260px;
    object-fit: contain;
}

/* Tips */

.cargo-tips-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.cargo-tip-card {
    min-height: 240px;
    padding: 28px 24px 26px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.cargo-tip-card h3 {
    margin: 0 0 22px;
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.cargo-tip-card p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.25;
}

/* CTA form */

.cargo-request-section {
    padding: 78px 0 84px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.cargo-request-card {
    position: relative;
    min-height: 390px;
    padding: 48px 520px 44px 74px;
    border-radius: 14px;
    background: linear-gradient(
        90deg,
        var(--sp-blue, #0767d8) 0%,
        var(--sp-blue, #0767d8) 48%,
        #4c9cff 100%
    );
    box-shadow: 0 4px 16px rgba(0, 91, 216, 0.28);

    /* Голова должна торчать наружу */
    overflow: visible;
}

.cargo-request-image {
    position: absolute;
    right: 120px;
    bottom: 0;
    z-index: 3;
    width: 330px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.cargo-request-image img {
    display: block;
    width: auto;
    height: 470px;
    max-width: none;
    object-fit: contain;
}

.cargo-request-content {
    position: relative;
    z-index: 2;
    max-width: 470px;
    color: var(--sp-white, #ffffff);
}

.cargo-request-content h2 {
    margin: 0 0 28px;
    color: var(--sp-white, #ffffff);
    font-size: 26px;
    line-height: 1.1;
    font-weight: 800;
}

.cargo-request-content p {
    margin: 0 0 30px;
    color: var(--sp-white, #ffffff);
    font-size: 15px;
    line-height: 1.2;
}

.cargo-form-group {
    margin-bottom: 12px;
}

.cargo-form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--sp-white, #ffffff);
    font-size: 10px;
    line-height: 1.2;
}

.cargo-form-group input {
    display: block;
    width: 100%;
    height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
    font-size: 13px;
    outline: none;
    box-shadow: none;
}

.cargo-form-group input::placeholder {
    color: #9e9e9e;
}

.cargo-request-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    border: 0;
    border-radius: 12px;
    background: var(--sp-yellow, #ffae22);
    color: var(--sp-white, #ffffff);
    font-size: 17px;
    line-height: 1;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cargo-request-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}




@media (max-width: 1199.98px) {
    .cargo-request-card {
        padding-right: 420px;
        padding-left: 52px;
    }

    .cargo-request-image {
        right: 60px;
        width: 300px;
    }
}

@media (max-width: 991.98px) {
    .additional-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .additional-service-card {
        min-height: 112px;
        padding: 22px;
    }

    .cargo-attention-card {
        padding: 42px 36px;
    }

    .cargo-attention-content {
        max-width: none;
    }

    .cargo-tip-card {
        min-height: 220px;
    }

    .cargo-request-card {
        padding: 38px 34px 0;
        overflow: hidden;
    }

    .cargo-request-content {
        max-width: 100%;
    }

    .cargo-request-image {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 280px;
        margin: 30px auto 0;
    }

    .cargo-request-image img {
        height: 380px;
    }
}

@media (max-width: 575.98px) {
    .additional-services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .additional-service-card {
        min-height: 92px;
        gap: 18px;
        padding: 18px;
        border-radius: 12px;
    }

    .additional-service-card img {
        width: 44px;
        height: 44px;
    }

    .additional-service-card span {
        font-size: 14px;
    }

    .cargo-requirements-section .sp-section-title,
    .cargo-tips-section .sp-section-title {
        margin-bottom: 26px;
    }

    .cargo-requirements-list li {
        font-size: 14px;
    }

    .cargo-attention-card {
        padding: 30px 22px;
        border-radius: 12px;
    }

    .cargo-attention-content h2 {
        margin-bottom: 22px;
        font-size: 20px;
    }

    .cargo-attention-content p {
        font-size: 14px;
    }

    .cargo-attention-image img {
        height: 210px;
    }

    .cargo-tip-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 12px;
    }

    .cargo-tip-card h3 {
        margin-bottom: 16px;
        font-size: 14px;
    }

    .cargo-tip-card p {
        font-size: 14px;
    }

    .cargo-request-section {
        padding: 52px 0 60px;
    }

    .cargo-request-card {
        padding: 30px 22px 0;
        border-radius: 14px;
    }

    .cargo-request-content h2 {
        font-size: 22px;
    }

    .cargo-request-content p {
        margin-bottom: 22px;
    }

    .cargo-form-group input {
        height: 42px;
    }

    .cargo-request-btn {
        min-height: 46px;
        font-size: 15px;
    }

    .cargo-request-image {
        width: 230px;
        margin-top: 24px;
    }

    .cargo-request-image img {
        height: 320px;
    }
}

/* Additional service info block */

.additional-info-section {
    padding-top: 54px;
    padding-bottom: 58px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.additional-info-row {
    display: grid;
    grid-template-columns: 420px 1fr;
    align-items: center;
    gap: 72px;
}

.additional-info-content h2 {
    margin: 0 0 28px;
    color: var(--sp-text, #111111);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
}

.additional-info-content p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.additional-info-image {
    position: relative;
    min-height: 250px;
    overflow: hidden;
}

.additional-info-image::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;
    width: 46%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0.86) 45%,
        rgba(255, 255, 255, 0) 100%
    );
    pointer-events: none;
}

.additional-info-image img {
    display: block;
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: var(--sp-light, #f3f3f3);
}

@media (max-width: 991.98px) {
    .additional-info-row {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .additional-info-content p {
        max-width: 640px;
    }

    .additional-info-image {
        min-height: 230px;
    }

    .additional-info-image img {
        height: 230px;
    }
}

@media (max-width: 575.98px) {
    .additional-info-section {
        padding-top: 36px;
        padding-bottom: 42px;
    }

    .additional-info-content h2 {
        margin-bottom: 20px;
        font-size: 21px;
    }

    .additional-info-content p {
        font-size: 16px;
    }

    .additional-info-image {
        min-height: 190px;
    }

    .additional-info-image img {
        height: 190px;
    }
}

/* Industrial delivery page */

.industrial-info-section {
    padding-top: 54px;
    padding-bottom: 48px;
}

/* Problems */

.industrial-problems-section {
    padding-top: 0;
    padding-bottom: 42px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.industrial-problems-section .sp-section-title {
    margin-bottom: 28px;
}

.industrial-problem-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 125px;
    padding: 26px 24px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111111);
    font-size: 16px;
    line-height: 1.25;
    font-weight: 800;
    text-align: center;
}

/* Text blocks */

.industrial-text-section {
    padding: 0 0 34px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.industrial-text {
    margin: 0 0 42px;
    color: var(--sp-text, #111111);
    font-size: 17px;
    line-height: 1.35;
}

.industrial-note-card {
    margin: 0 0 42px;
    padding: 34px 110px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.industrial-note-card p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 17px;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .industrial-problem-card {
        min-height: 110px;
    }

    .industrial-note-card {
        padding: 30px 36px;
    }
}

@media (max-width: 575.98px) {
    .industrial-info-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .industrial-problems-section .sp-section-title {
        margin-bottom: 22px;
    }

    .industrial-problem-card {
        min-height: auto;
        padding: 24px 20px;
        border-radius: 12px;
        font-size: 15px;
    }

    .industrial-text {
        margin-bottom: 30px;
        font-size: 15px;
    }

    .industrial-note-card {
        margin-bottom: 30px;
        padding: 26px 20px;
        border-radius: 12px;
    }

    .industrial-note-card p {
        font-size: 15px;
    }
}

/* Moving page */

.moving-info-section {
    padding-top: 54px;
    padding-bottom: 48px;
}

.moving-info-section .additional-info-content p {
    margin-bottom: 24px;
}

.moving-info-section .additional-info-content p:last-child {
    margin-bottom: 0;
}

/* Moving services card */

.moving-services-section {
    padding-top: 0;
    padding-bottom: 70px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.moving-services-card {
    padding: 42px 48px 50px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.moving-services-card h2 {
    margin: 0 0 38px;
    color: var(--sp-text, #111111);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.moving-service-item {
    display: flex;
    align-items: center;
    gap: 38px;
    min-height: 56px;
}

.moving-service-item img {
    flex: 0 0 auto;
    display: block;
    width: 46px;
    height: 46px;
    object-fit: contain;
    background: var(--sp-blue, #0767d8);
    border-radius: 8px;
}

.moving-service-item span {
    color: var(--sp-text, #111111);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .moving-services-card {
        padding: 36px 32px 42px;
    }

    .moving-service-item {
        gap: 26px;
    }
}

@media (max-width: 575.98px) {
    .moving-info-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .moving-services-section {
        padding-bottom: 48px;
    }

    .moving-services-card {
        padding: 28px 22px 34px;
        border-radius: 12px;
    }

    .moving-services-card h2 {
        margin-bottom: 28px;
        font-size: 20px;
    }

    .moving-service-item {
        gap: 18px;
        min-height: auto;
    }

    .moving-service-item img {
        width: 40px;
        height: 40px;
    }

    .moving-service-item span {
        font-size: 15px;
    }
}

/* Insurance page */

.insurance-info-section {
    padding-top: 54px;
    padding-bottom: 38px;
}

.insurance-info-section .additional-info-content p {
    margin-bottom: 24px;
}

.insurance-info-section .additional-info-content p:last-child {
    margin-bottom: 0;
}

/* Details */

.insurance-details-section {
    padding: 0 0 72px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.insurance-details-text {
    margin: 0 0 64px;
    color: var(--sp-text, #111111);
    font-size: 17px;
    line-height: 1.35;
}

.insurance-warning-card {
    padding: 34px 64px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.insurance-warning-card h2 {
    margin: 0 0 18px;
    color: var(--sp-text, #111111);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.insurance-warning-card p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 17px;
    line-height: 1.35;
}

@media (max-width: 991.98px) {
    .insurance-warning-card {
        padding: 30px 36px;
    }

    .insurance-details-text {
        margin-bottom: 42px;
    }
}

@media (max-width: 575.98px) {
    .insurance-info-section {
        padding-top: 36px;
        padding-bottom: 32px;
    }

    .insurance-details-section {
        padding-bottom: 48px;
    }

    .insurance-details-text {
        margin-bottom: 32px;
        font-size: 15px;
    }

    .insurance-warning-card {
        padding: 26px 20px;
        border-radius: 12px;
    }

    .insurance-warning-card h2 {
        margin-bottom: 14px;
        font-size: 20px;
    }

    .insurance-warning-card p {
        font-size: 15px;
    }
}

/* Loading works page */

.loading-info-section {
    padding-top: 54px;
    padding-bottom: 76px;
}

.loading-info-section .additional-info-content h2 {
    margin-bottom: 24px;
}

.loading-info-section .additional-info-content p {
    margin: 0;
}

.loading-info-section .additional-info-content strong {
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

@media (max-width: 575.98px) {
    .loading-info-section {
        padding-top: 36px;
        padding-bottom: 48px;
    }

    .loading-info-section .additional-info-content strong {
        font-size: 18px;
    }
}

/* Storage page */

.storage-info-section {
    padding-top: 54px;
    padding-bottom: 52px;
}

.storage-advantages-section {
    padding-top: 0;
    padding-bottom: 76px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.storage-advantages-section .sp-section-title {
    margin-bottom: 34px;
}

.storage-advantage-card {
    min-height: 270px;
    padding: 32px 28px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.storage-advantage-card h3 {
    margin: 0 0 24px;
    color: var(--sp-text, #111111);
    font-size: 17px;
    line-height: 1.2;
    font-weight: 800;
}

.storage-advantage-card p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 16px;
    line-height: 1.25;
}

@media (max-width: 991.98px) {
    .storage-advantage-card {
        min-height: auto;
    }
}

@media (max-width: 575.98px) {
    .storage-info-section {
        padding-top: 36px;
        padding-bottom: 38px;
    }

    .storage-advantages-section {
        padding-bottom: 52px;
    }

    .storage-advantages-section .sp-section-title {
        margin-bottom: 24px;
    }

    .storage-advantage-card {
        padding: 26px 20px;
        border-radius: 12px;
    }

    .storage-advantage-card h3 {
        margin-bottom: 16px;
        font-size: 16px;
    }

    .storage-advantage-card p {
        font-size: 15px;
    }
}

/* Rent transport page */

.rent-transport-section {
    padding-top: 54px;
    padding-bottom: 86px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.rent-transport-card {
    position: relative;
    min-height: 280px;
    padding: 62px 520px 54px 72px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    overflow: visible;
}

.rent-transport-content {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.rent-transport-content h2 {
    margin: 0 0 34px;
    color: var(--sp-text, #111111);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.rent-transport-content p {
    margin: 0;
    color: var(--sp-text, #111111);
    font-size: 17px;
    line-height: 1.25;
}

.rent-transport-image {
    position: absolute;
    right: 170px;
    bottom: 0;
    top: -70px;
    z-index: 3;
    width: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    pointer-events: none;
}

.rent-transport-image img {
    display: block;
    width: 100%;
    height: 360px;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .rent-transport-card {
        padding-right: 430px;
        padding-left: 52px;
    }

    .rent-transport-image {
        right: 90px;
        width: 300px;
    }
}

@media (max-width: 991.98px) {
    .rent-transport-section {
        padding-top: 42px;
        padding-bottom: 64px;
    }

    .rent-transport-card {
        padding: 42px 34px 0;
        overflow: hidden;
    }

    .rent-transport-content {
        max-width: none;
    }

    .rent-transport-image {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 280px;
        margin: 26px auto 0;
    }

    .rent-transport-image img {
        height: 300px;
    }
}

@media (max-width: 575.98px) {
    .rent-transport-section {
        padding-top: 36px;
        padding-bottom: 48px;
    }

    .rent-transport-card {
        padding: 30px 22px 0;
        border-radius: 12px;
    }

    .rent-transport-content h2 {
        margin-bottom: 22px;
        font-size: 20px;
    }

    .rent-transport-content p {
        font-size: 15px;
    }

    .rent-transport-image {
        width: 230px;
        margin-top: 20px;
    }

    .rent-transport-image img {
        height: 250px;
    }
}

/* Written notifications page */

.written-info-section {
    padding-top: 54px;
    padding-bottom: 48px;
}

.written-info-section .additional-info-content h2 {
    margin-bottom: 0;
}

/* Problems cards */

.written-problems-section {
    padding-top: 0;
    padding-bottom: 76px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.written-problems-section .sp-section-title {
    margin-bottom: 28px;
}

.written-problem-card {
    display: flex;
    align-items: center;
    gap: 42px;
    min-height: 145px;
    padding: 30px 36px;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
}

.written-problem-card img {
    flex: 0 0 auto;
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.written-problem-card span {
    color: var(--sp-text, #111111);
    font-size: 16px;
    line-height: 1.2;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .written-problem-card {
        min-height: 130px;
        gap: 28px;
        padding: 26px 28px;
    }
}

@media (max-width: 575.98px) {
    .written-info-section {
        padding-top: 36px;
        padding-bottom: 36px;
    }

    .written-problems-section {
        padding-bottom: 52px;
    }

    .written-problems-section .sp-section-title {
        margin-bottom: 22px;
    }

    .written-problem-card {
        min-height: auto;
        gap: 20px;
        padding: 24px 20px;
        border-radius: 12px;
    }

    .written-problem-card img {
        width: 48px;
        height: 48px;
    }

    .written-problem-card span {
        font-size: 15px;
    }
}

/* Support pages */

.support-page-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.support-main-tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-bottom: 26px;
}

.support-main-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 24px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.2;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.support-main-tab:hover,
.support-main-tab.active {
    border-color: var(--sp-blue, #0767d8);
    background: var(--sp-white, #ffffff);
    color: var(--sp-blue, #0767d8);
}

.support-sub-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 58px;
}

.support-sub-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 76px;
    padding: 14px 18px;
    border: 2px solid transparent;
    border-radius: 14px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.15;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.support-sub-tab:hover,
.support-sub-tab.active {
    border-color: var(--sp-blue, #0767d8);
    background: var(--sp-white, #ffffff);
    color: var(--sp-blue, #0767d8);
}

/* Article */

.support-article {
    max-width: 1160px;
    color: var(--sp-text, #111111);
}

.support-article h1 {
    margin: 0 0 34px;
    color: var(--sp-text, #111111);
    font-size: 21px;
    line-height: 1.25;
    font-weight: 800;
}

.support-article h2 {
    margin: 34px 0 18px;
    color: var(--sp-blue, #0767d8);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 800;
}

.support-article h2:first-of-type {
    margin-top: 0;
}

.support-article ol {
    margin: 0 0 22px;
    padding-left: 0;
    list-style-position: inside;
}

.support-article li {
    margin-bottom: 6px;
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.45;
}

.support-article p {
    margin: 0 0 16px;
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .support-sub-tabs {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 42px;
    }

    .support-article h1 {
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .support-main-tabs {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
		text-align:center;
    }

    .support-sub-tabs {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .support-main-tab,
    .support-sub-tab {
        min-height: 52px;
        border-radius: 12px;
        font-size: 15px;
    }

    .support-sub-tab {
        min-height: 62px;
    }

    .support-article h1 {
        margin-bottom: 26px;
        font-size: 18px;
    }

    .support-article h2 {
        margin-top: 28px;
        font-size: 17px;
    }

    .support-article li,
    .support-article p {
        font-size: 14px;
    }
}


/* Support rules page */

.support-rules-block {
    padding-top: 6px;
}

.support-page-title {
    margin: 0 0 28px;
    color: var(--sp-text, #111111);
    font-size: 24px;
    line-height: 1.25;
    font-weight: 800;
}

.support-rules-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support-rule-card {
    display: grid;
    grid-template-columns: 96px 1fr;
    align-items: center;
    min-height: 120px;
    padding: 28px 56px;
    border-radius: 16px;
    background: var(--sp-light, #f3f3f3);
}

.support-rule-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--sp-blue-soft, #9bc9ff);
    color: var(--sp-white, #ffffff);
    font-size: 34px;
    line-height: 1;
    font-weight: 800;
}

.support-rule-text {
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.35;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .support-rule-card {
        grid-template-columns: 78px 1fr;
        min-height: 105px;
        padding: 24px 32px;
    }

    .support-rule-number {
        width: 48px;
        height: 48px;
        font-size: 30px;
    }

    .support-rule-text {
        font-size: 16px;
    }
}

@media (max-width: 575.98px) {
    .support-page-title {
        margin-bottom: 22px;
        font-size: 21px;
    }

    .support-rules-list {
        gap: 14px;
    }

    .support-rule-card {
        grid-template-columns: 1fr;
        gap: 16px;
        min-height: auto;
        padding: 24px 20px;
        border-radius: 14px;
    }

    .support-rule-number {
        width: 44px;
        height: 44px;
        font-size: 26px;
    }

    .support-rule-text {
        font-size: 15px;
    }
}

/* Waybill instruction images */

.support-waybill-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.support-waybill-legend {
    display: flex;
    align-items: center;
    gap: 90px;
    margin: 46px 0 70px;
}

.support-waybill-legend-item {
    display: flex;
    align-items: center;
    gap: 22px;
}

.support-waybill-dot {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 8px;
}

.support-waybill-dot-sender {
    background: var(--sp-yellow, #ffae22);
}

.support-waybill-dot-courier {
    background: var(--sp-blue, #0767d8);
}

.support-waybill-legend-item strong {
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
}

.support-waybill-img-wrap {
    width: 100%;
    margin-bottom: 58px;
}

.support-waybill-img-wrap:last-child {
    margin-bottom: 0;
}

.support-waybill-img-wrap img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 767.98px) {
    .support-waybill-legend {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        margin: 32px 0 34px;
    }

    .support-waybill-legend-item {
        gap: 14px;
    }

    .support-waybill-dot {
        width: 24px;
        height: 24px;
        border-radius: 6px;
    }

    .support-waybill-img-wrap {
        max-height: 75vh;
        margin-bottom: 34px;
        overflow: auto;
        border: 1px solid #dedede;
        border-radius: 12px;
        background: #ffffff;
        -webkit-overflow-scrolling: touch;
    }

    .support-waybill-img-wrap img {
        width: auto;
        min-width: 900px;
        max-width: none;
        height: auto;
    }
}

/* Volume weight page */

.volume-weight-content {
    padding-top: 6px;
}

.volume-weight-lead {
    max-width: 1120px;
    margin: 0 0 58px;
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
}

.volume-weight-card {
    padding: 46px 72px;
    border-radius: 16px;
    background: var(--sp-light, #f3f3f3);
}

.volume-weight-text {
    max-width: 430px;
}

.volume-weight-text p {
    margin: 0 0 28px;
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.volume-weight-text p:last-child {
    margin-bottom: 0;
}

.volume-weight-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.volume-weight-image img {
    display: block;
    width: 100%;
    max-width: 520px;
    height: 310px;
    object-fit: contain;
}

@media (max-width: 991.98px) {
    .volume-weight-lead {
        margin-bottom: 38px;
        font-size: 17px;
    }

    .volume-weight-card {
        padding: 36px 32px;
    }

    .volume-weight-text {
        max-width: none;
    }

    .volume-weight-image img {
        max-width: 460px;
        height: 270px;
    }
}

@media (max-width: 575.98px) {
    .volume-weight-lead {
        margin-bottom: 30px;
        font-size: 15px;
    }

    .volume-weight-card {
        padding: 28px 20px;
        border-radius: 14px;
    }

    .volume-weight-text p {
        margin-bottom: 22px;
        font-size: 15px;
    }

    .volume-weight-image img {
        height: 220px;
    }
}

/* Support documents tabs */

.support-doc-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 72px;
}

.support-doc-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    padding: 18px 24px;
    border: 2px solid transparent;
    border-radius: 16px;
    background: var(--sp-light, #f3f3f3);
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.support-doc-tab:hover,
.support-doc-tab.active {
    border-color: var(--sp-blue, #0767d8);
    background: var(--sp-white, #ffffff);
    color: var(--sp-blue, #0767d8);
}

/* PDF block */

.support-pdf-block {
    margin-bottom: 80px;
}

.support-pdf-head {
    margin-bottom: 28px;
}

.support-pdf-download {
    display: inline-block;
    color: var(--sp-blue, #0767d8);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    text-decoration: none;
}

.support-pdf-download:hover {
    color: var(--sp-blue-dark, #045cc3);
}

.support-pdf-note {
    color: var(--sp-text, #111111);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.support-pdf-toolbar {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.support-pdf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 16px;
    border: 0;
    border-radius: 10px;
    background: var(--sp-blue, #0767d8);
    color: var(--sp-white, #ffffff);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
}

.support-pdf-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.support-pdf-pages {
    color: var(--sp-text, #111111);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 600;
}

.support-pdf-viewer {
    width: 100%;
    min-height: 640px;
    padding: 24px;
    overflow: auto;
    background: #202020;
    text-align: center;
}

.support-pdf-viewer canvas {
    display: inline-block;
    max-width: none;
    background: #ffffff;
}

@media (max-width: 991.98px) {
    .support-doc-tabs {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 48px;
    }

    .support-doc-tab {
        min-height: 78px;
        font-size: 17px;
    }

    .support-pdf-download {
        font-size: 21px;
    }

    .support-pdf-note {
        display: block;
        margin-top: 8px;
        font-size: 18px;
    }

    .support-pdf-viewer {
        min-height: 560px;
    }
}

@media (max-width: 575.98px) {
    .support-doc-tab {
        min-height: 68px;
        border-radius: 14px;
        font-size: 15px;
    }

    .support-pdf-block {
        margin-bottom: 52px;
    }

    .support-pdf-download {
        font-size: 19px;
    }

    .support-pdf-note {
        font-size: 15px;
    }

    .support-pdf-toolbar {
        gap: 8px;
    }

    .support-pdf-btn {
        min-height: 36px;
        padding: 8px 12px;
        font-size: 13px;
    }

    .support-pdf-pages {
        width: 100%;
        order: -1;
        margin-bottom: 4px;
    }

    .support-pdf-viewer {
        max-height: 75vh;
        min-height: 420px;
        padding: 14px;
        border-radius: 12px;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.header-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.header-icon-link img {
    display: block;
    transition: transform 0.25s ease;
}

.header-icon-link:hover,
.header-icon-link:focus-visible {
    transform: translateY(-2px);
    opacity: 0.85;
}

.header-icon-link:hover img,
.header-icon-link:focus-visible img {
    transform: scale(1.08);
}

.header-icon-link:active {
    transform: translateY(0) scale(0.96);
} 
.tracking-result-card {
   
    margin-top: 18px;
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.tracking-result-title {
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.tracking-result-status {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #eef5ff;
    color: #1456a0;
    font-size: 14px;
    font-weight: 700;
}

.tracking-result-list {
    display: grid;
    gap: 10px;
}

.tracking-result-row {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.tracking-result-row:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.tracking-result-row span {
    color: #6c757d;
}

.tracking-result-row strong {
    text-align: right;
    font-weight: 600;
}

.tracking-result-error,
.tracking-result-empty {
    max-width: 720px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #fff3f3;
    color: #b42318;
    font-weight: 600;
}

.tracking-result-empty {
    background: #f6f7f9;
    color: #555;
}

@media (max-width: 575.98px) {
    .tracking-result-row {
        display: block;
    }

    .tracking-result-row strong {
        display: block;
        margin-top: 3px;
        text-align: left;
    }
}

.cargo-place + .cargo-place {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.city-suggestions {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 4px);
    z-index: 30;
    display: none;
    overflow: hidden;
    max-height: 260px;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.city-suggestions.is-active {
    display: block;
}

.city-suggestion-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: transparent;
    text-align: left;
    font-size: 15px;
    cursor: pointer;
}

.city-suggestion-item:hover {
    background: #f6f7f9;
}

.city-suggestion-item:last-child {
    border-bottom: 0;
}

.calculator-message {
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 600;
}

.calculator-message.is-error {
    background: #fff3f3;
    color: #b42318;
}

.calculator-message.is-success {
    background: #effaf3;
    color: #1f7a3f;
}

.delivery-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    height: 100%;
    padding: 22px;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.delivery-card strong,
.delivery-card b,
.delivery-card span {
    display: block;
}

.delivery-card strong {
    margin-bottom: 4px;
    font-size: 18px;
}

.delivery-card b {
    margin-bottom: 4px;
    font-size: 22px;
}

.delivery-card span {
    color: #6c757d;
    font-size: 14px;
}

@media (max-width: 575.98px) {
    .delivery-card {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* Search page */
.search-page-section {
  background: #f6f8fb;
}

.search-page-head {
  max-width: 920px;
  margin: 0 auto 36px;
  text-align: center;
}

.search-page-title {
  margin: 0 0 24px;
  color: var(--sp-text);
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 800;
}

.search-page-form {
  display: flex;
  align-items: stretch;
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
  padding: 10px;
  background: var(--sp-white);
  border: 1px solid rgba(20, 40, 80, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(20, 40, 80, 0.08);
}

.search-page-form .form-control {
  min-height: 54px;
  border: 0;
  border-radius: 14px;
  background: #f3f6fa;
  color: var(--sp-text);
  font-size: 16px;
  box-shadow: none;
}

.search-page-form .form-control:focus {
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 103, 255, 0.12);
}

.search-page-form .btn {
  min-width: 132px;
  border-radius: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.search-page-results {
  max-width: 920px;
  margin: 0 auto;
}

.search-page-message {
  padding: 28px;
  background: var(--sp-white);
  border: 1px solid rgba(20, 40, 80, 0.08);
  border-radius: 20px;
  color: var(--sp-muted, #667085);
  font-size: 17px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(20, 40, 80, 0.06);
}

.search-page-count {
  margin-bottom: 18px;
  color: var(--sp-muted, #667085);
  font-size: 16px;
}

.search-page-count strong {
  color: var(--sp-text);
}

.search-results-list {
  display: grid;
  gap: 16px;
}

.search-result-card {
  padding: 24px;
  background: var(--sp-white);
  border: 1px solid rgba(20, 40, 80, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(20, 40, 80, 0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.search-result-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 103, 255, 0.18);
  box-shadow: 0 18px 44px rgba(20, 40, 80, 0.1);
}

.search-result-title {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
}

.search-result-title a {
  color: var(--sp-text);
  text-decoration: none;
}

.search-result-title a:hover {
  color: var(--sp-blue);
}

.search-result-excerpt {
  margin: 0 0 16px;
  color: var(--sp-muted, #667085);
  font-size: 16px;
  line-height: 1.65;
}

.search-result-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sp-blue);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.search-result-link::after {
  content: "→";
  line-height: 1;
  transition: transform 0.15s ease;
}

.search-result-link:hover::after {
  transform: translateX(3px);
}

.search-result-link:hover {
  color: var(--sp-blue);
}

@media (max-width: 767.98px) {
  .search-page-section {
    padding-top: 32px;
  }

  .search-page-head {
    margin-bottom: 24px;
    text-align: left;
  }

  .search-page-title {
    margin-bottom: 18px;
    font-size: 30px;
  }

  .search-page-form {
    flex-direction: column;
    gap: 10px;
    padding: 8px;
    border-radius: 16px;
  }

  .search-page-form .form-control {
    min-height: 50px;
    font-size: 15px;
  }

  .search-page-form .btn {
    width: 100%;
    min-height: 50px;
  }

  .search-result-card {
    padding: 20px;
    border-radius: 18px;
  }

  .search-result-title {
    font-size: 20px;
  }

  .search-result-excerpt {
    font-size: 15px;
  }
}
/* 404 page */
.error-page-section {
  min-height: 560px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(0, 103, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.error-page-card {
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 48px;
  align-items: center;
  padding: 56px;
  background: var(--sp-white, #ffffff);
  border: 1px solid rgba(20, 40, 80, 0.08);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(20, 40, 80, 0.1);
}

.error-page-code {
  color: var(--sp-blue, #0067ff);
  font-size: clamp(96px, 14vw, 180px);
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: -0.08em;
}

.error-page-kicker {
  margin-bottom: 12px;
  color: var(--sp-blue, #0067ff);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.error-page-title {
  margin: 0 0 18px;
  color: var(--sp-text, #101828);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  font-weight: 900;
}

.error-page-text {
  max-width: 640px;
  margin: 0 0 28px;
  color: var(--sp-muted, #667085);
  font-size: 18px;
  line-height: 1.65;
}

.error-page-search {
  display: flex;
  gap: 12px;
  max-width: 640px;
  margin-bottom: 24px;
  padding: 10px;
  background: #f3f6fa;
  border-radius: 18px;
}

.error-page-search .form-control {
  min-height: 52px;
  border: 0;
  border-radius: 14px;
  background: #ffffff;
  color: var(--sp-text, #101828);
  font-size: 16px;
  box-shadow: none;
}

.error-page-search .form-control:focus {
  box-shadow: 0 0 0 3px rgba(0, 103, 255, 0.12);
}

.error-page-search .btn {
  min-width: 150px;
  border-radius: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.error-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.error-page-actions .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  padding-right: 24px;
  padding-left: 24px;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .error-page-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px;
  }

  .error-page-code {
    font-size: 112px;
  }
}

@media (max-width: 767.98px) {
  .error-page-section {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 36px;
  }

  .error-page-card {
    padding: 28px 20px;
    border-radius: 22px;
  }

  .error-page-code {
    font-size: 88px;
  }

  .error-page-title {
    font-size: 32px;
  }

  .error-page-text {
    font-size: 16px;
  }

  .error-page-search {
    flex-direction: column;
  }

  .error-page-search .btn,
  .error-page-actions .btn {
    width: 100%;
  }
}
/* Feedback page */

.feedback-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.feedback-title {
    margin: 0;
    padding: 86px 0 48px;
    color: var(--sp-blue, #0767d8);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
}

.feedback-form-wrap {
    padding: 62px 0 74px;
    background: var(--sp-light, #f3f3f3);
}

.feedback-label {
    display: block;
    margin: 0 0 14px;
    color: var(--sp-text, #111111);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 400;
}

.feedback-control {
    display: block;
    width: 100%;
    height: 70px;
    padding: 0 28px;
    border: 0;
    border-radius: 22px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    outline: none;
    box-shadow: none;
}

.feedback-control::placeholder {
    color: #8b95aa;
}

.feedback-control:focus {
    box-shadow: 0 0 0 2px rgba(7, 103, 216, 0.12);
}

.feedback-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 58px;
    color: #8b95aa;
    background-image:
        linear-gradient(45deg, transparent 50%, #999999 50%),
        linear-gradient(135deg, #999999 50%, transparent 50%);
    background-position:
        calc(100% - 36px) 50%,
        calc(100% - 26px) 50%;
    background-size:
        11px 11px,
        11px 11px;
    background-repeat: no-repeat;
}

.feedback-textarea {
    min-height: 194px;
    height: 194px;
    padding-top: 22px;
    padding-bottom: 22px;
    resize: vertical;
}

.feedback-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 48px;
}

.feedback-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 395px;
    min-height: 70px;
    padding: 16px 42px;
    border: 0;
    border-radius: 18px;
    background: var(--sp-yellow, #ffae22);
    color: var(--sp-white, #ffffff);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.feedback-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}
/* Courier request page */

.courier-request-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.courier-request-title {
    margin: 0;
    padding: 86px 0 48px;
    color: var(--sp-blue, #0767d8);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
}

.courier-request-form-wrap {
    padding: 62px 0 74px;
    background: var(--sp-light, #f3f3f3);
}

.courier-label {
    display: block;
    margin: 0 0 14px;
    color: var(--sp-text, #111111);
    font-size: 19px;
    line-height: 1.2;
    font-weight: 400;
}

.courier-control {
    display: block;
    width: 100%;
    height: 70px;
    padding: 0 28px;
    border: 0;
    border-radius: 22px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    outline: none;
    box-shadow: none;
}

.courier-control::placeholder {
    color: #8b95aa;
}

.courier-control:focus {
    box-shadow: 0 0 0 2px rgba(7, 103, 216, 0.12);
}

.courier-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 58px;
    color: #8b95aa;
    background-image:
        linear-gradient(45deg, transparent 50%, #999999 50%),
        linear-gradient(135deg, #999999 50%, transparent 50%);
    background-position:
        calc(100% - 36px) 50%,
        calc(100% - 26px) 50%;
    background-size:
        11px 11px,
        11px 11px;
    background-repeat: no-repeat;
}

/* Чтобы стрелки number не портили вид в Chrome, да здравствует очередной костыль */
.courier-control[type="number"]::-webkit-inner-spin-button,
.courier-control[type="number"]::-webkit-outer-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.courier-control[type="number"] {
    appearance: textfield;
    -moz-appearance: textfield;
}

.courier-places {
    display: flex;
    flex-direction: column;
    gap: 38px;
}

.courier-place-title {
    margin: 0 0 30px;
    color: var(--sp-text, #111111);
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
}

.courier-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-top: 56px;
}

.courier-add-place-btn,
.courier-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 16px 42px;
    border: 0;
    border-radius: 18px;
    color: var(--sp-white, #ffffff);
    font-size: 24px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.courier-add-place-btn {
    min-width: 320px;
    background: #bdbdbd;
}

.courier-submit-btn {
    min-width: 395px;
    background: var(--sp-yellow, #ffae22);
}

.courier-add-place-btn:hover,
.courier-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}
@media (max-width: 991.98px) {
    .courier-request-title {
        padding: 62px 0 38px;
        font-size: 34px;
    }

    .courier-request-form-wrap {
        padding: 44px 0 58px;
    }

    .courier-control {
        height: 62px;
        border-radius: 18px;
        font-size: 20px;
    }

    .courier-place-title {
        font-size: 25px;
    }

    .courier-form-actions {
        margin-top: 44px;
    }

    .courier-add-place-btn,
    .courier-submit-btn {
        min-height: 62px;
        font-size: 20px;
    }

    .courier-add-place-btn {
        min-width: 280px;
    }

    .courier-submit-btn {
        min-width: 340px;
    }
}

@media (max-width: 767.98px) {
    .courier-form-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .courier-add-place-btn,
    .courier-submit-btn {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 575.98px) {
    .courier-request-title {
        padding: 42px 0 28px;
        font-size: 28px;
    }

    .courier-request-form-wrap {
        padding: 34px 0 46px;
    }

    .courier-label {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .courier-control {
        height: 56px;
        padding: 0 20px;
        border-radius: 15px;
        font-size: 17px;
    }

    .courier-select {
        padding-right: 48px;
        background-position:
            calc(100% - 30px) 50%,
            calc(100% - 22px) 50%;
        background-size:
            9px 9px,
            9px 9px;
    }

    .courier-places {
        gap: 28px;
    }

    .courier-place-title {
        margin-bottom: 22px;
        font-size: 22px;
    }

    .courier-form-actions {
        gap: 16px;
        margin-top: 34px;
    }

    .courier-add-place-btn,
    .courier-submit-btn {
        min-height: 56px;
        border-radius: 15px;
        font-size: 17px;
    }
}
.courier-place-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 30px;
}

.courier-place-head .courier-place-title {
    margin-bottom: 0;
}

.courier-remove-place-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 18px;
    border: 0;
    border-radius: 12px;
    background: #d9d9d9;
    color: var(--sp-text, #111111);
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.courier-remove-place-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.courier-place:first-child .courier-remove-place-btn {
    display: none;
}

@media (max-width: 575.98px) {
    .courier-place-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 22px;
    }

    .courier-remove-place-btn {
        width: 100%;
        min-height: 40px;
    }
}
/* Contract request page */

.contract-request-section {
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
}

.contract-request-title {
    margin: 0;
    padding: 86px 0 36px;
    color: var(--sp-blue, #0767d8);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 800;
}

.contract-request-form-wrap {
    padding: 58px 0 74px;
    background: var(--sp-light, #f3f3f3);
}

.contract-label {
    display: block;
    margin: 0 0 14px;
    color: var(--sp-text, #111111);
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}

.contract-control {
    display: block;
    width: 100%;
    height: 64px;
    padding: 0 26px;
    border: 0;
    border-radius: 18px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    outline: none;
    box-shadow: none;
}

.contract-control::placeholder {
    color: #8b95aa;
}

.contract-control:focus {
    box-shadow: 0 0 0 2px rgba(7, 103, 216, 0.12);
}

.contract-select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 58px;
    color: #8b95aa;
    background-image:
        linear-gradient(45deg, transparent 50%, #999999 50%),
        linear-gradient(135deg, #999999 50%, transparent 50%);
    background-position:
        calc(100% - 36px) 50%,
        calc(100% - 26px) 50%;
    background-size:
        11px 11px,
        11px 11px;
    background-repeat: no-repeat;
}

.contract-submit-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 56px;
}

.contract-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 395px;
    min-height: 64px;
    padding: 16px 42px;
    border: 0;
    border-radius: 18px;
    background: var(--sp-yellow, #ffae22);
    color: var(--sp-white, #ffffff);
    font-size: 22px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.contract-submit-btn:hover {
    transform: translateY(-1px);
    opacity: 0.92;
}
@media (max-width: 991.98px) {
    .contract-request-title {
        padding: 62px 0 34px;
        font-size: 34px;
    }

    .contract-request-form-wrap {
        padding: 44px 0 58px;
    }

    .contract-control {
        height: 60px;
        border-radius: 17px;
        font-size: 20px;
    }

    .contract-submit-row {
        margin-top: 42px;
    }

    .contract-submit-btn {
        min-width: 340px;
        min-height: 60px;
        font-size: 20px;
    }
}

@media (max-width: 575.98px) {
    .contract-request-title {
        padding: 42px 0 28px;
        font-size: 28px;
    }

    .contract-request-form-wrap {
        padding: 34px 0 46px;
    }

    .contract-label {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .contract-control {
        height: 56px;
        padding: 0 20px;
        border-radius: 15px;
        font-size: 17px;
    }

    .contract-select {
        padding-right: 48px;
        background-position:
            calc(100% - 30px) 50%,
            calc(100% - 22px) 50%;
        background-size:
            9px 9px,
            9px 9px;
    }

    .contract-submit-row {
        justify-content: stretch;
        margin-top: 34px;
    }

    .contract-submit-btn {
        width: 100%;
        min-width: 0;
        min-height: 56px;
        border-radius: 15px;
        font-size: 17px;
    }
}
.partner-field-error {
    display: none;
    margin-top: 8px;
    color: #dc3545;
    font-size: 14px;
    line-height: 1.35;
}

.partner-form-group.has-error .partner-field-error {
    display: block;
}

.partner-form-group.has-error input,
.partner-form-group.has-error select {
    border-color: #dc3545;
}

.partner-form-group.has-error input:focus,
.partner-form-group.has-error select:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.12);
}

.partner-form-group[hidden] {
    display: none !important;
}
.mobile-menu-logo {
    display: block;
    width: auto;
    max-width: 150px;
    height: 38px;
}

.mobile-menu-search .input-group-text {
    padding-right: 5px;
    background: transparent;
    border-right: 0;
}

.mobile-menu-search .form-control {
    min-height: 48px;
    border-left: 0;
    box-shadow: none;
}

.mobile-menu-search .form-control:focus {
    border-color: var(--bs-border-color);
    box-shadow: none;
}

.mobile-search-icon {
    display: block;
    width: 20px;
    height: 20px;
}

.mobile-menu-tree {
    width: 100%;
}

.mobile-menu-tree ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-root {
    width: 100%;
}

.mobile-menu-item {
    width: 100%;
}

.mobile-menu-link {
    display: block;
    width: 100%;
    color: #212529;
    text-decoration: none;
    white-space: normal;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.mobile-menu-level-1 > .mobile-menu-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.mobile-menu-children {
    margin: 0 0 6px !important;
    padding: 4px 0 6px 18px !important;
    border-left: 2px solid rgba(var(--bs-primary-rgb), 0.18);
}

.mobile-menu-level-2 > .mobile-menu-link {
    padding: 9px 12px;
    color: #495057;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.mobile-menu-level-3 > .mobile-menu-link {
    padding: 7px 12px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.mobile-menu-level-4 > .mobile-menu-link,
.mobile-menu-level-5 > .mobile-menu-link {
    padding: 6px 12px;
    color: #7a8288;
    font-size: 13px;
}

.mobile-menu-children .mobile-menu-children {
    margin-left: 8px !important;
    padding-left: 14px !important;
    border-left-color: rgba(var(--bs-primary-rgb), 0.1);
}

.mobile-menu-link:hover,
.mobile-menu-link:focus,
.mobile-menu-item.is-active > .mobile-menu-link {
    color: var(--bs-primary);
    background: transparent;
}

.mobile-header-icons .header-icon-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-header-icons .header-icon-link img {
    display: block;
}

.mobile-lang-dropdown .dropdown-toggle {
    min-height: 48px;
}

.mobile-lang-dropdown .dropdown-toggle img,
.mobile-lang-dropdown .dropdown-item img {
    width: 24px;
    height: 18px;
    object-fit: cover;
}

.mobile-login-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    font-weight: 600;
}
.mobile-menu-tree,
.mobile-menu-root,
.mobile-menu-children {
    width: 100%;
}

.mobile-menu-root,
.mobile-menu-children {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-menu-item {
    display: block;
    width: 100%;
}

.mobile-menu-link {
    display: block;
    width: 100%;
    color: #212529;
    line-height: 1.4;
    text-decoration: none;
    white-space: normal;
    transition: color 0.2s ease;
}

/* Первый уровень */
.mobile-menu-level-1 > .mobile-menu-link {
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    font-size: 16px;
    font-weight: 600;
}

/* Контейнер подпунктов */
.mobile-menu-children {
    margin: 0 0 7px !important;
    padding: 5px 0 7px 18px !important;
    border-left: 2px solid rgba(var(--bs-primary-rgb), 0.2);
}

/* Второй уровень */
.mobile-menu-level-2 > .mobile-menu-link {
    padding: 9px 12px;
    color: #495057;
    font-size: 15px;
    font-weight: 400;
}

/* Третий уровень */
.mobile-menu-level-3 > .mobile-menu-link {
    padding: 7px 12px;
    color: #6c757d;
    font-size: 14px;
    font-weight: 400;
}

/* Вложенность глубже третьего уровня */
.mobile-menu-children .mobile-menu-children {
    margin-left: 8px !important;
    padding-left: 14px !important;
    border-left-color: rgba(var(--bs-primary-rgb), 0.1);
}

.mobile-menu-level-4 > .mobile-menu-link,
.mobile-menu-level-5 > .mobile-menu-link {
    padding: 6px 12px;
    color: #7a8288;
    font-size: 13px;
}

.mobile-menu-link:hover,
.mobile-menu-link:focus,
.mobile-menu-item.is-active > .mobile-menu-link {
    color: var(--bs-primary);
}

.cargo-form-group textarea {
    display: block;
    width: 100%;
    min-height: 90px;
    padding: 14px 18px;
    border: 0;
    border-radius: 12px;
    background: var(--sp-white, #ffffff);
    color: var(--sp-text, #111111);
    font-size: 13px;
    line-height: 1.4;
    outline: none;
    box-shadow: none;
    resize: vertical;
}

.cargo-form-group textarea::placeholder {
    color: #9e9e9e;
}
.cargo-request-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin: 4px 0 12px;
    color: var(--sp-white, #ffffff);
    cursor: pointer;
}

.cargo-request-checkbox input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cargo-request-checkbox span {
    position: relative;
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 4px;
    background: #ffffff;
}

.cargo-request-checkbox input:checked + span::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 2px;
    width: 6px;
    height: 10px;
    border-right: 2px solid var(--sp-blue, #0767d8);
    border-bottom: 2px solid var(--sp-blue, #0767d8);
    transform: rotate(45deg);
}

.cargo-request-checkbox b {
    font-size: 11px;
    line-height: 1.4;
    font-weight: 400;
}

.partner-modal-body,
.partner-modal-body * {
    font-size: .97rem !important;
}
.tracking-history {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tracking-history-title {
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

.tracking-history-list {
    position: relative;
    display: grid;
    gap: 0;
}

.tracking-history-item {
    position: relative;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 14px;
    padding-bottom: 22px;
}

.tracking-history-item:last-child {
    padding-bottom: 0;
}

.tracking-history-item::before {
    content: "";
    position: absolute;
    left: 8px;
    top: 18px;
    bottom: -2px;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
}

.tracking-history-item:last-child::before {
    display: none;
}

.tracking-history-dot {
    position: relative;
    z-index: 1;
    width: 18px;
    height: 18px;
    margin-top: 3px;
    border: 4px solid #ffc107;
    border-radius: 50%;
    background: #ffffff;
}

.tracking-history-content {
    min-width: 0;
}

.tracking-history-status {
    margin-bottom: 3px;
    font-weight: 700;
}

.tracking-history-time {
    margin-bottom: 4px;
    color: #6c757d;
    font-size: 14px;
}

.tracking-history-place {
    color: #333333;
    font-size: 15px;
}

.tracking-history-message {
    margin-top: 4px;
    color: #555555;
    font-size: 14px;
}

.tracking-history-code {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 8px;
    border-radius: 999px;
    background: #f4f5f7;
    color: #6c757d;
    font-size: 12px;
    font-weight: 600;
}


.contact-info{
    overflow:hidden;
    border-radius:18px;
    background:#fff;
    box-shadow:0 15px 45px rgba(0,0,0,.08);
}

.contact-map{
    height:100%;
    min-height:500px;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}

.contact-panel{
    padding:45px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.contact-panel h3{
    margin-bottom:35px;
    font-size:32px;
    font-weight:700;
}

.contact-row{
    display:flex;
    gap:18px;
    margin-bottom:28px;
}

.contact-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#f4f7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.contact-icon i{
    color:#0d6efd;
    font-size:22px;
}

.contact-row strong{
    display:block;
    margin-bottom:6px;
    font-size:15px;
}

.contact-row span,
.contact-row a{
    display:block;
    color:#555;
    text-decoration:none;
    transition:.2s;
}

.contact-row a:hover{
    color:#0d6efd;
}

.contact-social{
    display:flex;
    gap:12px;
    margin-top:10px;
}

.contact-social a{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#f4f7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    color:#0d6efd;
}

.contact-social a:hover{
    background:#0d6efd;
    color:#fff;
}