:root {
  --orange: #e36a00;
  --orange-2: #ff8a1d;
  --orange-dark: #b94e00;
  --orange-deep: #8f3900;
  --orange-soft: #fff1e4;
  --orange-soft-2: #fff7ef;

  --green: #1e9b61;

  --dark: #121722;
  --dark-2: #1b2230;
  --text: #343c4a;
  --muted: #6c7484;
  --line: #e7ebf0;

  --white: #ffffff;
  --bg: #fbfcfe;
  --soft: #f5f7fb;

  --shadow-soft: 0 14px 34px rgba(15, 23, 42, 0.07);
  --shadow: 0 22px 54px rgba(15, 23, 42, 0.11);
  --shadow-orange: 0 14px 28px rgba(227, 106, 0, 0.22);

  --container: 1480px;
  --container-wide: 1540px;
}

@media (min-width: 2200px) {
  :root {
    --container-wide: 1660px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-container--wide {
  width: min(var(--container-wide), calc(100% - 48px));
}

/* =========================
   HEADER
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.28s ease, border-color 0.28s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(227, 106, 0, 0.14);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.09);
}

.header-top {
  height: 34px;
  background: #fff;
  border-bottom: 1px solid #edf0f4;
  color: var(--muted);
  font-size: 12px;
}

.header-top__inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-top__left,
.header-top__right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.header-top a {
  transition: color 0.2s ease;
}

.header-top a:hover {
  color: var(--orange);
}

.header-top i {
  color: var(--orange);
  margin-right: 5px;
}

.header-main {
  background: #fff;
}

.header-main__inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  line-height: 1;
  flex-shrink: 0;
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
}

.brand__name {
  color: var(--dark);
  font-size: 28px;
  font-weight: 950;
  letter-spacing: -1.3px;
  transition: transform 0.26s ease;
}

.brand:hover .brand__name {
  transform: translateX(3px);
}

.brand__name strong {
  color: var(--orange);
}

.brand__subtitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.brand__flag {
  position: relative;
  width: 18px;
  height: 12px;
  flex: 0 0 18px;
  overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 0 0 1px rgba(18, 23, 34, 0.08);
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 50%,
    #dc143c 50%,
    #dc143c 100%
  );
}

.brand__logo-img {
  width: auto;
  max-width: 230px;
  max-height: 54px;
  object-fit: contain;
}

.brand__group {
  min-height: 40px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
}

.brand__group img {
  width: auto;
  max-width: 86px;
  max-height: 24px;
  object-fit: contain;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.brand:hover .brand__group img {
  transform: translateX(3px);
  opacity: 0.86;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav > a,
.nav-dropdown__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 28px 0;
  border: 0;
  background: transparent;
  color: var(--dark);
  font-family: inherit;
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: color 0.22s ease, transform 0.22s ease;
}

.desktop-nav > a::after,
.nav-dropdown__trigger::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  height: 2px;
  border-radius: 99px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s cubic-bezier(.22,.61,.36,1);
}

.desktop-nav > a:hover,
.nav-dropdown__trigger:hover {
  color: var(--orange);
  transform: translateY(-1px);
}

.desktop-nav > a:hover::after,
.nav-dropdown__trigger:hover::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown::after {
  content: "";
  position: absolute;
  left: -24px;
  right: -24px;
  top: 100%;
  height: 14px;
}

.nav-dropdown__trigger {
  appearance: none;
}

.nav-dropdown__trigger i {
  font-size: 12px;
  transition: transform 0.24s ease;
}

.nav-dropdown:hover .nav-dropdown__trigger i {
  transform: rotate(180deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 2px);
  left: -24px;
  z-index: 20;
  width: 300px;
  padding: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.10);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.24s ease, visibility 0.24s ease, transform 0.24s ease;
}

.nav-dropdown:hover .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.nav-dropdown__menu a:hover {
  color: var(--orange);
  background: var(--orange-soft);
  transform: translateX(4px);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-menu-btn {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  color: var(--dark);
  font-size: 28px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04);
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.mobile-menu-btn:hover {
  color: var(--orange);
  border-color: rgba(227,106,0,0.28);
  transform: translateY(-2px);
}

/* =========================
   BUTTONS
========================= */

.btn-main,
.btn-white,
.btn-orange-outline {
  position: relative;
  overflow: hidden;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 16px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  border: 1px solid transparent;
  white-space: nowrap;
  isolation: isolate;
  transition:
    color 0.28s ease,
    border-color 0.28s ease,
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.btn-main::before,
.btn-white::before,
.btn-orange-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  transform: translateX(-101%);
  transition: transform 0.42s cubic-bezier(.22,.61,.36,1);
}

.btn-main i,
.btn-white i,
.btn-orange-outline i {
  transition: transform 0.28s ease;
}

.btn-main {
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: var(--shadow-orange);
}

.btn-main::before {
  background: linear-gradient(135deg, var(--orange-dark), var(--orange));
}

.btn-main:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(227, 106, 0, 0.25);
}

.btn-main:hover::before {
  transform: translateX(0);
}

.btn-main:hover i {
  transform: translateX(5px);
}

.btn-white {
  background: #fff;
  color: var(--dark);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.btn-white::before {
  background: var(--orange);
}

.btn-white:hover {
  color: #fff;
  transform: translateY(-2px);
}

.btn-white:hover::before {
  transform: translateX(0);
}

.btn-white:hover i {
  transform: translateX(5px);
}

.btn-orange-outline {
  color: #fff;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.26);
  backdrop-filter: blur(14px);
}

.btn-orange-outline::before {
  background: rgba(255,255,255,0.18);
}

.btn-orange-outline:hover {
  color: #fff;
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.42);
}

.btn-orange-outline:hover::before {
  transform: translateX(0);
}

.btn-orange-outline:hover i {
  transform: translateX(5px);
}

/* =========================
   MOBILE MENU
========================= */

.mobile-offcanvas {
  border-left: 0;
  width: min(430px, 92vw) !important;
}

.mobile-brand {
  font-size: 24px;
}

.mobile-nav {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.mobile-nav > a,
.mobile-nav__group-title {
  position: relative;
  overflow: hidden;
  padding: 14px 16px;
  border-radius: 16px;
  color: var(--dark);
  font-weight: 850;
  background: #fff;
  border: 1px solid var(--line);
}

.mobile-nav > a {
  transition: color 0.24s ease, border-color 0.24s ease, transform 0.24s ease;
}

.mobile-nav > a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange-soft);
  transform: translateX(-101%);
  transition: transform 0.34s ease;
  z-index: -1;
}

.mobile-nav > a:hover {
  color: var(--orange);
  border-color: rgba(227,106,0,0.22);
  transform: translateX(4px);
}

.mobile-nav > a:hover::before {
  transform: translateX(0);
}

.mobile-nav__group-title {
  display: block;
  color: var(--muted);
  background: var(--soft);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.7px;
}

.mobile-subnav {
  display: grid;
  gap: 6px;
  margin: -2px 0 8px 16px;
}

.mobile-subnav a {
  padding: 11px 14px;
  border-radius: 14px;
  background: var(--soft);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.mobile-subnav a:hover {
  color: var(--orange);
  background: var(--orange-soft);
  transform: translateX(4px);
}

.mobile-b2b {
  width: 100%;
  margin-bottom: 24px;
}

.mobile-contact {
  padding: 18px;
  border-radius: 20px;
  background: var(--soft);
  color: var(--muted);
}

.mobile-contact p {
  display: flex;
  gap: 10px;
  margin: 0 0 10px;
}

.mobile-contact p:last-child {
  margin-bottom: 0;
}

.mobile-contact i {
  color: var(--orange);
}

/* =========================
   LANGUAGE SWITCHER
========================= */

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher a {
  min-width: 28px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: #fff;
  background: var(--orange);
}

.language-switcher a:hover {
  transform: translateY(-1px);
}

.mobile-language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 20px;
}

.mobile-language-switcher a {
  min-width: 42px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 950;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.mobile-language-switcher a:hover,
.mobile-language-switcher a.is-active {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.mobile-language-switcher a:hover {
  transform: translateY(-2px);
}

/* =========================
   COMMON
========================= */

.section {
  padding: 96px 0;
}

.section-white {
  background: #fff;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  transition: transform 0.24s ease, background 0.24s ease;
}

.section-kicker:hover {
  transform: translateY(-2px);
  background: #ffe5cc;
}

.section-kicker--white {
  background: rgba(255,255,255,0.16);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.22);
}

.section-kicker--white:hover {
  background: rgba(255,255,255,0.22);
}

.site-legal-row {
  margin-top: 26px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  border-top: 1px solid rgba(227,106,0,0.14);
}

.site-legal-row a {
  color: var(--orange);
  font-weight: 900;
  transition: color 0.22s ease;
}

.site-legal-row a:hover {
  color: var(--orange-dark);
}

/* =========================
   HOME HERO
========================= */

.hero-static {
  position: relative;
  overflow: hidden;
  padding: 64px 0 78px;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 179, 91, 0.28), transparent 26%),
    radial-gradient(circle at 8% 80%, rgba(94, 36, 0, 0.16), transparent 24%),
    linear-gradient(135deg, #9f3f00 0%, #d95f00 42%, #f47b12 100%);
  color: #fff;
}

.hero-static::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 78px;
  background: linear-gradient(180deg, rgba(255,255,255,0), #ffffff);
  pointer-events: none;
  z-index: 1;
}

.hero-static__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), transparent 78%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), transparent 78%);
  pointer-events: none;
}

.hero-static__shape {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  animation: slowFloat 9s ease-in-out infinite;
}

.hero-static__shape--one {
  width: 360px;
  height: 360px;
  right: -130px;
  top: 80px;
  background: rgba(255, 255, 255, 0.11);
}

.hero-static__shape--two {
  width: 230px;
  height: 230px;
  left: -80px;
  bottom: 110px;
  background: rgba(18, 23, 34, 0.10);
  animation-delay: -4s;
}

.hero-static__shell {
  position: relative;
  z-index: 3;
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 48px;
}

.hero-static__content {
  max-width: 610px;
}

.hero-static__content h1 {
  margin: 0 0 18px;
  color: #fff;
  line-height: 1.04;
  letter-spacing: -2.1px;
  font-weight: 950;
}

.hero-static__content p {
  max-width: 590px;
  margin: 0 0 26px;
  color: rgba(255,255,255,0.88);
  font-size: 15.5px;
  line-height: 1.68;
}

.hero-static__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-static__visual {
  position: relative;
  min-width: 0;
}

.hero-static__image {
  position: relative;
  width: 100%;
  min-width: 0;
  overflow: hidden;
  border-radius: 42px;
  background: #ddd;
  box-shadow: 0 22px 44px rgba(18, 23, 34, 0.20);
  transition: transform 0.6s cubic-bezier(.22,.61,.36,1), box-shadow 0.6s cubic-bezier(.22,.61,.36,1);
}

.hero-static__image:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 56px rgba(18, 23, 34, 0.23);
}

.hero-static__image img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  transition: transform 1s cubic-bezier(.22,.61,.36,1);
}

.hero-static__stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -6px;
}

.hero-stat {
  position: relative;
  overflow: hidden;
  min-height: 132px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.72);
  box-shadow: 0 14px 28px rgba(18, 23, 34, 0.10);
  display: grid;
  grid-template-columns: 54px 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 16px;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.hero-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(227,106,0,0.08), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 38px rgba(18, 23, 34, 0.12);
}

.hero-stat:hover::before {
  transform: translateX(100%);
}

.hero-stat i {
  position: relative;
  z-index: 2;
  grid-row: 1 / span 2;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 23px;
  transition: transform 0.28s ease, background 0.28s ease, color 0.28s ease;
}

.hero-stat:hover i {
  transform: translateY(-2px) rotate(-4deg);
  background: var(--orange);
  color: #fff;
}

.hero-stat strong {
  position: relative;
  z-index: 2;
  display: block;
  color: var(--dark);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 950;
  margin: 0 0 4px;
  align-self: end;
}

.hero-stat span {
  position: relative;
  z-index: 2;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  align-self: start;
}

/* =========================
   CATEGORIES
========================= */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-rows: 220px 1fr;
  height: 420px;
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  transition: transform 0.34s cubic-bezier(.22,.61,.36,1), border-color 0.28s ease, box-shadow 0.34s ease;
}

.category-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s ease;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 106, 0, 0.26);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.09);
}

.category-card:hover::after {
  transform: scaleX(1);
}

.category-card__image {
  height: 220px;
  overflow: hidden;
}

.category-card__image img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.22,.61,.36,1);
}

.category-card:hover .category-card__image img {
  transform: scale(1.06);
}

.category-card__body {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.category-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  box-shadow: 0 12px 22px rgba(227, 106, 0, 0.20);
  font-size: 24px;
  transition: transform 0.28s ease, border-radius 0.28s ease;
}

.category-card:hover .category-icon {
  transform: translateY(-3px) rotate(-5deg);
  border-radius: 16px;
}

.category-card__content {
  min-width: 0;
}

.category-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 22px;
  line-height: 1.14;
  font-weight: 950;
}

.category-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* =========================
   BRANDS
========================= */

.brands-section {
  padding: 0 0 88px;
  background: #fff;
}

.brands-heading {
  margin-bottom: 24px;
  text-align: center;
}

.brands-heading h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(25px, 2.4vw, 36px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 950;
}

.brands-marquee {
  position: relative;
  width: min(1180px, 100%);
  margin-inline: auto;
  overflow: hidden;
  padding: 12px 0;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.brands-track {
  display: flex;
  width: max-content;
  animation: brandsMarquee 22s linear infinite;
}

.brands-marquee:hover .brands-track {
  animation-play-state: paused;
}

.brands-list {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
  padding-right: 18px;
}

.brand-logo {
  width: 156px;
  height: 78px;
  flex: 0 0 156px;
  display: grid;
  place-items: center;
  padding: 14px 20px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(227, 106, 0, 0.12);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.brand-logo img {
  width: auto;
  max-width: 122px;
  max-height: 48px;
  object-fit: contain;
  opacity: 1;
  filter: none;
  transition: transform 0.28s ease;
}

.brand-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 106, 0, 0.24);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
}

.brand-logo:hover img {
  transform: scale(1.05);
}

/* =========================
   LABELING
========================= */

.labeling-section {
  background:
    radial-gradient(circle at 88% 10%, rgba(227,106,0,0.09), transparent 28%),
    linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
}

.labeling-panel {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 38px;
  align-items: stretch;
  padding: 38px;
  border-radius: 42px;
  background: #fff;
  border: 1px solid rgba(227,106,0,0.14);
  box-shadow: var(--shadow-soft);
}

.labeling-photo {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border-radius: 34px;
  background: #ddd;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
  transition: transform 0.5s cubic-bezier(.22,.61,.36,1), box-shadow 0.5s ease;
}

.labeling-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 46px rgba(15, 23, 42, 0.15);
}

.labeling-photo img {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(.22,.61,.36,1);
}

.labeling-photo:hover img {
  transform: scale(1.04);
}

.labeling-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18,23,34,0.02), rgba(18,23,34,0.18)),
    radial-gradient(circle at 80% 10%, rgba(227,106,0,0.16), transparent 30%);
  pointer-events: none;
}

.labeling-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 10px 12px 0;
}

.labeling-content h2 {
  margin: 18px 0 16px;
  color: var(--dark);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.labeling-content > p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.labeling-benefits {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.labeling-benefits div {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 62px;
  padding: 12px 16px;
  border-radius: 20px;
  background: var(--orange-soft-2);
  border: 1px solid rgba(227,106,0,0.14);
  transition: transform 0.26s ease, border-color 0.26s ease;
}

.labeling-benefits div::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange-soft);
  transform: translateX(-101%);
  transition: transform 0.38s ease;
}

.labeling-benefits div:hover {
  transform: translateX(5px);
  border-color: rgba(227,106,0,0.24);
}

.labeling-benefits div:hover::before {
  transform: translateX(0);
}

.labeling-benefits i,
.labeling-benefits span {
  position: relative;
  z-index: 2;
}

.labeling-benefits i {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #fff;
  color: var(--orange);
  font-size: 20px;
  box-shadow: 0 10px 20px rgba(227,106,0,0.10);
  transition: transform 0.28s ease;
}

.labeling-benefits div:hover i {
  transform: rotate(-5deg);
}

.labeling-benefits span {
  color: var(--dark);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 850;
}

.labeling-actions {
  margin-top: 28px;
}

/* =========================
   SERVICE FLOW
========================= */

.anchor-point {
  position: relative;
  top: -120px;
  display: block;
  height: 0;
  visibility: hidden;
}

.service-flow-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 10% 5%, rgba(255,255,255,0.16), transparent 26%),
    radial-gradient(circle at 92% 12%, rgba(255,255,255,0.14), transparent 24%),
    linear-gradient(135deg, #8f3900 0%, #e36a00 48%, #ff8a1d 100%);
  color: #fff;
}

.service-flow-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.25) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.service-export-head {
  position: relative;
  z-index: 2;
  margin-bottom: 28px;
  padding: 32px;
  border-radius: 36px;
  background: rgba(18, 23, 34, 0.22);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(16px);
}

.service-export-head__copy {
  width: 100%;
}

.service-export-head__copy h2 {
  width: 100%;
  margin: 18px 0 14px;
  color: #fff;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.06;
  letter-spacing: -1.9px;
  font-weight: 950;
}

.service-export-head__copy p {
  width: 100%;
  margin: 0;
  color: rgba(255,255,255,0.84);
  font-size: 16px;
  line-height: 1.75;
}

.service-export-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.service-export-countries span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 17px;
  border-radius: 999px;
  background: #fff;
  color: var(--dark);
  font-size: 14px;
  font-weight: 950;
  box-shadow: 0 10px 20px rgba(18,23,34,0.10);
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease;
}

.service-export-countries span:hover {
  transform: translateY(-4px);
  background: var(--dark);
  color: #fff;
}

.service-export-countries i {
  color: var(--orange);
  transition: color 0.24s ease;
}

.service-export-countries span:hover i {
  color: #fff;
}

.service-flow-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 22px;
  align-items: stretch;
}

.service-process-main {
  padding: 34px;
  border-radius: 42px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.48);
  box-shadow: 0 24px 54px rgba(18, 23, 34, 0.16);
  color: var(--text);
}

.service-process-main__heading {
  margin-bottom: 24px;
}

.service-process-main__heading span {
  display: inline-flex;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.service-process-main__heading h3 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 950;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-process-card {
  position: relative;
  overflow: hidden;
  min-height: 248px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(180deg, #ffffff 0%, #fff7ef 100%);
  border: 1px solid rgba(227,106,0,0.14);
  box-shadow: 0 10px 22px rgba(15,23,42,0.05);
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-process-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s ease;
}

.service-process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 36px rgba(15,23,42,0.10);
  border-color: rgba(227,106,0,0.26);
}

.service-process-card:hover::before {
  transform: scaleX(1);
}

.service-process-card > span {
  position: absolute;
  right: 18px;
  top: 14px;
  color: rgba(227,106,0,0.16);
  font-size: 46px;
  line-height: 1;
  font-weight: 950;
  transition: transform 0.28s ease;
}

.service-process-card:hover > span {
  transform: translateY(-3px);
}

.service-process-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(227,106,0,0.18);
  transition: transform 0.28s ease, border-radius 0.28s ease;
}

.service-process-card:hover i {
  transform: translateY(-3px) rotate(-5deg);
  border-radius: 16px;
}

.service-process-card h4 {
  position: relative;
  z-index: 2;
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 950;
}

.service-process-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.service-process-action {
  margin-top: 24px;
}

.service-audience-side {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 42px;
  background: rgba(18,23,34,0.28);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(16px);
}

.service-audience-side > span {
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-audience-side h3 {
  margin: 10px 0 20px;
  color: #fff;
  font-size: 28px;
  line-height: 1.1;
  font-weight: 950;
  letter-spacing: -1px;
}

.service-audience-side__list {
  display: grid;
  gap: 10px;
}

.service-audience-side__list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.14);
  transition: transform 0.24s ease, background 0.24s ease;
}

.service-audience-side__list div:hover {
  transform: translateX(5px);
  background: rgba(255,255,255,0.18);
}

.service-audience-side__list i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,0.17);
  color: #fff;
  font-size: 18px;
  transition: transform 0.24s ease;
}

.service-audience-side__list div:hover i {
  transform: rotate(-5deg);
}

.service-audience-side__list strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
}

.service-audience-side p {
  margin: auto 0 0;
  padding-top: 22px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   WAREHOUSE
========================= */

.warehouse-section {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f8f3ee 100%);
}

.warehouse-panel {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 36px;
  align-items: center;
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(227, 106, 0, 0.10);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 20px 50px rgba(18, 24, 40, 0.08);
}

.warehouse-panel > * {
  min-width: 0;
}

.warehouse-photo {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 1126 / 671;
  background: #f3f3f3;
}

.warehouse-photo img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 58%;
}

.warehouse-content {
  min-width: 0;
}

.warehouse-content h2 {
  margin: 18px 0 16px;
  color: var(--dark);
  font-size: clamp(28px, 2.7vw, 40px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 950;
}

.warehouse-info-box {
  background: #fcfaf8;
  border: 1px solid rgba(227, 106, 0, 0.10);
  border-radius: 20px;
  padding: 18px 20px;
  margin-bottom: 16px;
}

.warehouse-info-box:last-child {
  margin-bottom: 0;
}

.warehouse-info-box h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  color: #1f2937;
}

.warehouse-info-box h3 i {
  color: #e36a00;
  font-size: 1.1rem;
}

.warehouse-info-box p {
  margin: 0;
  color: #5b6472;
  line-height: 1.7;
  font-size: 0.96rem;
}

/* =========================
   CONTACT
========================= */

.contact-section {
  padding: 96px 0 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(227,106,0,0.09), transparent 27%),
    linear-gradient(180deg, #fff7ef 0%, #fff1e4 100%);
}

.contact-heading {
  max-width: 940px;
  margin: 0 auto 42px;
  text-align: center;
}

.contact-heading h2 {
  margin: 18px 0 0;
  color: var(--dark);
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.department-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.department-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  min-height: 235px;
  padding: 24px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(227, 106, 0, 0.14);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.department-card::after {
  content: "";
  position: absolute;
  right: -62px;
  top: -72px;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: rgba(227, 106, 0, 0.07);
  pointer-events: none;
  transition: transform 0.42s ease;
}

.department-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.09);
  border-color: rgba(227, 106, 0, 0.26);
}

.department-card:hover::after {
  transform: translate(-8px, 8px);
}

.department-card__icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 26px;
  box-shadow: 0 12px 22px rgba(227, 106, 0, 0.20);
  transition: transform 0.28s ease, border-radius 0.28s ease;
}

.department-card:hover .department-card__icon {
  transform: translateY(-3px) rotate(-5deg);
  border-radius: 17px;
}

.department-card__content {
  position: relative;
  z-index: 2;
}

.department-card h3 {
  margin: 2px 0 9px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.18;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.department-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.department-card__links {
  display: grid;
  gap: 9px;
}

.department-card__links a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
  transition: color 0.22s ease, transform 0.22s ease;
}

.department-card__links a i {
  color: var(--orange);
}

.department-card__links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 30px;
  align-items: stretch;
  padding: 34px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid rgba(227,106,0,0.14);
  box-shadow: var(--shadow-soft);
}

.address-grid {
  display: grid;
  gap: 14px;
}

.address-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: start;
  padding: 20px;
  border-radius: 24px;
  background: var(--soft);
  border: 1px solid var(--line);
  transition: transform 0.26s ease, border-color 0.26s ease;
}

.address-card:hover {
  transform: translateX(5px);
  border-color: rgba(227,106,0,0.20);
}

.address-card--main {
  background:
    radial-gradient(circle at 100% 0%, rgba(227,106,0,0.10), transparent 28%),
    linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
  border-color: rgba(227,106,0,0.18);
}

.address-card__icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 12px 22px rgba(227,106,0,0.18);
  transition: transform 0.26s ease, border-radius 0.26s ease;
}

.address-card:hover .address-card__icon {
  transform: rotate(-5deg);
  border-radius: 16px;
}

.address-card span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.address-card strong {
  display: block;
  color: var(--dark);
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 4px;
}

.address-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.map-box {
  position: relative;
  min-height: 340px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(227,106,0,0.14);
  box-shadow: var(--shadow-soft);
  transition: transform 0.34s ease, box-shadow 0.34s ease;
}

.map-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.10);
}

.map-box iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-link {
  position: absolute;
  bottom: 22px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 16px;
  background: #fff;
  color: var(--dark);
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
  border: 1px solid var(--line);
  transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease;
}

.map-link i {
  color: var(--orange);
  transition: transform 0.22s ease;
}

.map-link--centered {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.map-link--centered:hover {
  color: #fff;
  background: var(--orange);
  transform: translateX(-50%) translateY(-2px);
}

.map-link--centered:hover i {
  color: #fff;
  transform: translateX(3px);
}

/* =========================
   COOPERATION SUBPAGES
========================= */

.cooperation-page {
  background: var(--bg);
}

.cooperation-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 72px;
  background:
    radial-gradient(circle at 88% 22%, rgba(255, 179, 91, 0.28), transparent 26%),
    radial-gradient(circle at 8% 80%, rgba(94, 36, 0, 0.16), transparent 24%),
    linear-gradient(135deg, #9f3f00 0%, #d95f00 42%, #f47b12 100%);
  color: #fff;
}

.cooperation-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), transparent 78%);
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0.8), transparent 78%);
  pointer-events: none;
}

.cooperation-breadcrumb {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 800;
}

.cooperation-breadcrumb a:hover {
  color: #fff;
}

.cooperation-breadcrumb i {
  font-size: 11px;
}

.cooperation-hero__grid {
  position: relative;
  z-index: 2;
}

.cooperation-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: none;
}

.cooperation-hero__content h1 {
  width: 100%;
  max-width: none;
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 950;
}

.cooperation-hero__content hr {
  margin: 22px 0;
  border: 0;
  border-top: 1px solid rgba(255,255,255,0.24);
  opacity: 1;
}

.cooperation-hero__content p {
  width: 100%;
  max-width: none;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.75;
}

.cooperation-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.cooperation-section--white {
  background: #fff;
}

.cooperation-section--soft {
  background:
    radial-gradient(circle at 90% 0%, rgba(227,106,0,0.08), transparent 28%),
    linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
}

.cooperation-heading {
  max-width: 980px;
  margin: 0 auto 42px;
  text-align: center;
}

.cooperation-heading h2 {
  margin: 18px 0 0;
  color: var(--dark);
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: -1.8px;
  font-weight: 950;
}

.cooperation-heading p {
  margin: 16px auto 0;
  max-width: 820px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.cooperation-card-grid {
  display: grid;
  gap: 18px;
}

.cooperation-card-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.cooperation-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 26px;
  border-radius: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(15,23,42,0.05);
  transition: transform 0.3s cubic-bezier(.22,.61,.36,1), border-color 0.28s ease, box-shadow 0.3s ease;
}

.cooperation-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.34s ease;
}

.cooperation-card:hover {
  transform: translateY(-7px);
  border-color: rgba(227,106,0,0.24);
  box-shadow: 0 20px 40px rgba(15,23,42,0.09);
}

.cooperation-card:hover::after {
  transform: scaleX(1);
}

.cooperation-card i {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 25px;
  box-shadow: 0 12px 22px rgba(227,106,0,0.20);
  transition: transform 0.28s ease, border-radius 0.28s ease;
}

.cooperation-card:hover i {
  transform: translateY(-3px) rotate(-5deg);
  border-radius: 16px;
}

.cooperation-card h3 {
  margin: 0 0 10px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1.2;
  font-weight: 950;
  letter-spacing: -0.4px;
}

.cooperation-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.cooperation-card--compact {
  min-height: 220px;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
  padding: 34px;
  border-radius: 42px;
  background: #fff;
  border: 1px solid rgba(227,106,0,0.14);
  box-shadow: var(--shadow-soft);
}

.split-panel__main h2 {
  margin: 18px 0 24px;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 950;
}

.process-line {
  display: grid;
}

.process-line__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.process-line__item:first-child {
  padding-top: 0;
}

.process-line__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-line__item > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  font-size: 15px;
  font-weight: 950;
  box-shadow: 0 12px 22px rgba(227,106,0,0.18);
}

.process-line__item strong {
  display: block;
  margin-bottom: 5px;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.25;
  font-weight: 950;
}

.process-line__item p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.detail-list {
  display: grid;
  gap: 14px;
  width: 100%;
}

.detail-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  width: 100%;
  padding: 16px;
  border-radius: 22px;
  background: var(--orange-soft-2);
  border: 1px solid rgba(227,106,0,0.14);
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.detail-list > div:hover {
  transform: translateX(5px);
  border-color: rgba(227,106,0,0.24);
}

.detail-list i {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--orange);
  background: #fff;
  font-size: 22px;
  box-shadow: 0 10px 20px rgba(227,106,0,0.10);
}

.detail-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.3;
  font-weight: 950;
}

.detail-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.subpage-cta {
  padding: 0 0 34px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.16), transparent 26%),
    linear-gradient(135deg, #8f3900 0%, #e36a00 50%, #ff8a1d 100%);
}

.subpage-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 42px;
  color: #fff;
  background: rgba(18,23,34,0.24);
  border: 1px solid rgba(255,255,255,0.20);
  backdrop-filter: blur(16px);
}

.subpage-cta__inner--bottom-only {
  border-radius: 0 0 38px 38px;
}

.subpage-cta__inner > div:first-child > span {
  display: inline-flex;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.subpage-cta__inner h2,
.subpage-cta__inner h3 {
  margin: 0;
  max-width: 700px;
  color: #fff;
  font-size: clamp(28px, 2.8vw, 40px);
  line-height: 1.08;
  letter-spacing: -1.5px;
  font-weight: 950;
}

.subpage-contact-box {
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
}

.subpage-contact-box small {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.68);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.subpage-contact-box strong {
  display: block;
  margin-bottom: 12px;
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 950;
}

.subpage-contact-box a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: rgba(255,255,255,0.88);
  font-size: 14px;
  font-weight: 900;
  transition: color 0.22s ease, transform 0.22s ease;
}

.subpage-contact-box a:hover {
  color: #fff;
  transform: translateX(4px);
}

.subpage-cta .site-legal-row {
  color: rgba(255,255,255,0.68);
  border-top-color: rgba(255,255,255,0.18);
}

.subpage-cta .site-legal-row a {
  color: #fff;
}

.subpage-cta .site-legal-row a:hover {
  color: #fff;
  opacity: 0.82;
}

/* =========================
   OFFER PAGE
========================= */

.offer-page {
  background: #fff;
}

.offer-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 68px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255,255,255,0.20), transparent 25%),
    radial-gradient(circle at 10% 84%, rgba(18,23,34,0.12), transparent 22%),
    linear-gradient(135deg, #8f3900 0%, #e36a00 48%, #ff8a1d 100%);
  color: #fff;
}

.offer-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.24) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
}

.offer-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 22px;
}

.offer-hero__content h1 {
  width: 100%;
  margin: 18px 0 16px;
  color: #fff;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.04;
  letter-spacing: -2px;
  font-weight: 950;
}

.offer-hero__content p {
  width: 100%;
  margin: 0;
  color: rgba(255,255,255,0.88);
  font-size: 16px;
  line-height: 1.75;
}

.offer-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.offer-overview-section {
  padding: 56px 0 42px;
  background:
    radial-gradient(circle at 88% 12%, rgba(227,106,0,0.08), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
}

.offer-overview-panel {
  padding: 34px;
  border-radius: 40px;
  background: #fff;
  border: 1px solid rgba(227,106,0,0.14);
  box-shadow: var(--shadow-soft);
}

.offer-overview__heading {
  width: 100%;
  margin-bottom: 28px;
}

.offer-overview__heading h2 {
  margin: 18px 0 12px;
  color: var(--dark);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -1.7px;
  font-weight: 950;
}

.offer-overview__heading p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.offer-overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.offer-overview-card {
  position: relative;
  overflow: hidden;
  min-height: 195px;
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(180deg, #ffffff 0%, #fff8f2 100%);
  border: 1px solid rgba(227,106,0,0.14);
  box-shadow: 0 10px 24px rgba(15,23,42,0.045);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.offer-overview-card::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}

.offer-overview-card:hover {
  transform: translateY(-5px);
  border-color: rgba(227,106,0,0.26);
  box-shadow: 0 18px 36px rgba(15,23,42,0.08);
}

.offer-overview-card:hover::after {
  transform: scaleX(1);
}

.offer-overview-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.offer-overview-card__head i {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange), var(--orange-2));
  color: #fff;
  font-size: 22px;
  box-shadow: 0 12px 22px rgba(227,106,0,0.18);
}

.offer-overview-card__head h3 {
  margin: 0;
  color: var(--dark);
  font-size: 19px;
  line-height: 1.2;
  font-weight: 950;
}

.offer-overview-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.offer-groups {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.offer-groups > span {
  display: block;
  margin-bottom: 14px;
  color: var(--dark);
  font-size: 14px;
  font-weight: 950;
}

.offer-groups__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.offer-groups__list em {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: 999px;
  background: var(--orange-soft-2);
  border: 1px solid rgba(227,106,0,0.15);
  color: var(--dark);
  font-size: 14px;
  font-style: normal;
  font-weight: 850;
}

.offer-cta-section {
  padding: 0 0 34px;
  background: linear-gradient(180deg, #fff8f2 0%, #fff1e4 100%);
}

.offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 30px 34px;
  border-radius: 0 0 38px 38px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,255,255,0.14), transparent 22%),
    linear-gradient(135deg, #8f3900 0%, #bd5200 48%, #e36a00 100%);
  color: #fff;
}

.offer-cta span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.offer-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.08;
  letter-spacing: -1.2px;
  font-weight: 950;
}

.offer-cta__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

/* =========================
   REVEAL / KEYFRAMES
========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.72s ease, transform 0.72s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--delay, 0ms);
}

.reveal-left {
  transform: translateX(-28px);
}

.reveal-right {
  transform: translateX(28px);
}

.reveal-up {
  transform: translateY(24px);
}

.reveal-scale {
  transform: scale(0.97);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes slowFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes brandsMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% / 3));
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1399px) {
  :root {
    --container: 1280px;
  }

  .hero-static__shell {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
  }

  .hero-static__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1199px) {
  .brand__group {
    display: none;
  }

  .hero-static {
    padding: 58px 0 74px;
  }

  .hero-static__shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-static__content {
    max-width: 920px;
  }

  .hero-static__image {
    border-radius: 38px;
  }

  .labeling-panel {
    grid-template-columns: 1fr;
  }

  .labeling-photo,
  .labeling-photo img {
    min-height: 420px;
  }

  .labeling-content {
    padding: 0;
  }

  .service-flow-layout {
    grid-template-columns: 1fr;
  }

  .service-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-audience-side p {
    margin-top: 20px;
  }

  .warehouse-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .department-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .department-card {
    min-height: 220px;
  }

  .cooperation-card-grid--four {
    grid-template-columns: repeat(2, 1fr);
  }

  .subpage-cta__inner {
    grid-template-columns: 1fr;
  }

  .offer-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offer-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 991px) {
  .header-top {
    display: none;
  }

  .header-main__inner {
    min-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .hero-static {
    padding: 44px 0 68px;
  }

  .hero-static__stats,
  .category-grid,
  .cooperation-card-grid--four {
    grid-template-columns: 1fr;
  }

  .section,
  .contact-section,
  .service-flow-section,
  .cooperation-section {
    padding: 76px 0;
  }

  .warehouse-panel {
    padding: 24px;
  }
}

@media (max-width: 767px) {
  .site-container,
  .site-container--wide {
    width: min(100% - 28px, var(--container));
  }

  .brand__name {
    font-size: 23px;
  }

  .brand__subtitle {
    margin-top: 7px;
    font-size: 9px;
    letter-spacing: 2.1px;
  }

  .hero-static__content h1 {
    font-size: clamp(32px, 10vw, 44px);
    letter-spacing: -1.5px;
  }

  .hero-static__content p {
    font-size: 16px;
  }

  .hero-static__actions,
  .cooperation-hero__actions,
  .offer-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn-main,
  .btn-white,
  .btn-orange-outline {
    width: 100%;
  }

  .hero-static__image {
    border-radius: 28px;
  }

  .hero-static__stats {
    margin-top: 28px;
  }

  .hero-stat {
    min-height: auto;
  }

  .category-card {
    height: auto;
    grid-template-rows: 225px auto;
  }

  .category-card__image {
    height: 225px;
  }

  .category-card__body {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 22px;
  }

  .category-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 21px;
  }

  .category-card h3 {
    font-size: 19px;
  }

  .category-card p {
    font-size: 14px;
  }

  .brands-section {
    padding-bottom: 70px;
  }

  .brands-heading {
    margin-bottom: 18px;
  }

  .brands-marquee {
    width: 100%;
  }

  .brand-logo {
    width: 132px;
    height: 68px;
    flex-basis: 132px;
    padding: 12px 16px;
    border-radius: 18px;
  }

  .brand-logo img {
    max-width: 102px;
    max-height: 38px;
  }

  .labeling-panel {
    gap: 24px;
    padding: 22px;
    border-radius: 30px;
  }

  .labeling-photo,
  .labeling-photo img {
    min-height: 300px;
    border-radius: 24px;
  }

  .labeling-content h2 {
    font-size: 30px;
    letter-spacing: -1.1px;
  }

  .service-export-head {
    padding: 22px;
    border-radius: 28px;
  }

  .service-export-head__copy h2 {
    font-size: 30px;
    letter-spacing: -1.1px;
  }

  .service-export-countries {
    gap: 9px;
  }

  .service-export-countries span {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px;
  }

  .service-process-main,
  .service-audience-side {
    padding: 22px;
    border-radius: 30px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-process-card {
    min-height: auto;
  }

  .service-process-action .btn-main {
    width: 100%;
  }

  .warehouse-panel {
    width: 100%;
    max-width: 100%;
    gap: 22px;
    padding: 18px;
    border-radius: 26px;
  }

  .warehouse-photo {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1126 / 671;
    border-radius: 20px;
  }

  .warehouse-content h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .warehouse-info-box {
    padding: 16px;
    border-radius: 18px;
  }

  .warehouse-info-box p {
    font-size: 14px;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .department-card {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    padding: 20px;
    min-height: auto;
    border-radius: 24px;
  }

  .department-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 23px;
  }

  .department-card h3 {
    font-size: 18px;
  }

  .department-card__links a {
    font-size: 13.5px;
    word-break: break-word;
  }

  .contact-panel {
    padding: 22px;
    border-radius: 30px;
  }

  .address-card {
    grid-template-columns: 48px 1fr;
    padding: 18px;
    border-radius: 22px;
  }

  .address-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    font-size: 22px;
  }

  .address-card strong {
    font-size: 16px;
  }

  .address-card p {
    font-size: 14px;
  }

  .map-box {
    min-height: 320px;
    border-radius: 26px;
  }

  .map-link--centered {
    left: 14px;
    right: 14px;
    width: auto;
    justify-content: center;
    transform: none;
  }

  .map-link--centered:hover {
    transform: translateY(-2px);
  }

  .site-legal-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .cooperation-hero {
    padding: 46px 0 64px;
  }

  .cooperation-hero__content h1 {
    font-size: 32px;
    letter-spacing: -1.3px;
  }

  .cooperation-hero__content p,
  .cooperation-heading p {
    font-size: 15px;
  }

  .cooperation-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .split-panel,
  .subpage-cta__inner {
    gap: 20px;
    padding: 20px;
    border-radius: 28px;
  }

  .subpage-cta__inner--bottom-only {
    border-radius: 0 0 26px 26px;
  }

  .process-line__item {
    grid-template-columns: 46px 1fr;
    gap: 14px;
  }

  .process-line__item > span {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .detail-list > div {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 14px;
  }

  .detail-list i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 20px;
  }

  .subpage-contact-box {
    padding: 18px;
  }

  .offer-hero {
    padding: 42px 0 52px;
  }

  .offer-hero__content h1 {
    font-size: 32px;
    letter-spacing: -1.2px;
  }

  .offer-hero__content p {
    font-size: 15.5px;
  }

  .offer-overview-section {
    padding: 36px 0 28px;
  }

  .offer-overview-panel {
    padding: 22px;
    border-radius: 30px;
  }

  .offer-overview-grid {
    grid-template-columns: 1fr;
  }

  .offer-overview-card {
    min-height: auto;
  }

  .offer-overview__heading h2 {
    font-size: 29px;
    letter-spacing: -1px;
  }

  .offer-groups__list em {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .offer-cta {
    padding: 24px 22px;
    border-radius: 0 0 28px 28px;
  }

  .offer-cta__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .site-container,
  .site-container--wide {
    width: min(100% - 22px, var(--container));
  }

  .brand__name {
    font-size: 21px;
  }

  .brand__subtitle {
    font-size: 8px;
    letter-spacing: 1.7px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    font-size: 25px;
  }

  .hero-static__content h1 {
    font-size: 34px;
  }

  .warehouse-panel {
    padding: 16px;
  }

  .warehouse-content h2 {
    font-size: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-up,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .brands-track {
    animation: none;
  }
}
.nav-dropdown__trigger {
  appearance: none;
  border: 0;
  background: transparent;
  font-family: inherit;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
}

.language-switcher a {
  min-width: 28px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: #fff;
  background: var(--orange);
}

.language-switcher a:hover {
  transform: translateY(-1px);
}

.mobile-nav__group-title {
  display: block;
  padding: 10px 16px 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.mobile-language-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 4px 0 20px;
}

.mobile-language-switcher a {
  min-width: 42px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: var(--dark);
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 950;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.mobile-language-switcher a:hover,
.mobile-language-switcher a.is-active {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.mobile-language-switcher a:hover {
  transform: translateY(-2px);
}
