@font-face {
  font-family: Arboria;
  src: url("/_nuxt/fonts/Arboria-Book.ccfb297.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Arboria;
  src: url("/_nuxt/fonts/Arboria-Bold.51fcbdb.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}
:root {
  --navy: #242638;
  --navy-deep: #161824;
  --ink: #19244d;
  --cream: #f5e3d6;
  --paper: #f6f1eb;
  --coral: #f05940;
  --white: #ffffff;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in: cubic-bezier(0.7, 0, 0.84, 0);
  --max: 1180px;
  --radius: 24px;
  --radius-sm: 16px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 96px;
  background: var(--navy-deep);
  scrollbar-width: thin;
  scrollbar-color: var(--coral) var(--navy-deep);
}
html::-webkit-scrollbar { width: 11px; }
html::-webkit-scrollbar-track { background: var(--navy-deep); }
html::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #f59a86, var(--coral) 40%, #c94a36);
  border-radius: 999px;
  border: 3px solid var(--navy-deep);
}
html::-webkit-scrollbar-thumb:hover { background: #ff6b52; }
body {
  margin: 0;
  font-family: Arboria, "Helvetica Neue", sans-serif;
  color: var(--navy);
  background: var(--navy-deep);
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; background: var(--paper); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; }

.wrap { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; }

@keyframes pageIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
html.js main {
  animation: pageIn 2s var(--ease) both;
}
html.js body.page-leave { pointer-events: none; }
html.js body.page-leave main {
  animation: none;
  opacity: 0;
  transition: opacity .7s ease;
}

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 100%;
  background: var(--coral); z-index: 70; transform: scaleX(0);
  transform-origin: 0 50%; pointer-events: none;
}
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: grid; grid-template-columns: minmax(140px,1fr) auto minmax(140px,1fr);
  align-items: center;
  gap: 12px;
  padding: 18px 36px 18px 32px;
  max-width: 100%;
  color: var(--cream);
  background: transparent;
  transition: background .9s var(--ease), box-shadow .9s var(--ease), padding .9s var(--ease), border-radius .9s var(--ease);
}
.header.scrolled, .header.solid {
  top: 0; left: 0; right: 0; width: auto;
  padding: 8px 36px;
  border-radius: 0 0 20px 20px;
  background: linear-gradient(180deg, #161824 0%, rgba(22,24,36,.55) 100%);
  backdrop-filter: blur(20px) saturate(1.35);
  -webkit-backdrop-filter: blur(20px) saturate(1.35);
  box-shadow: 0 10px 28px rgba(0,0,0,.18);
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.header.scrolled::before, .header.solid::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: -8px;
  height: 10px;
  background: #161824;
}
.logo { height: 58px; width: auto; justify-self: start; flex: 0 0 auto; overflow: hidden; transition: height .9s var(--ease); }
.header.scrolled .logo, .header.solid .logo { height: 36px; }
.header.scrolled .nav, .header.solid .nav { font-size: 15px; gap: 22px; }
.logo img { height: 100%; width: auto; max-width: none; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; justify-content: center; gap: 28px; font-size: 18px; font-weight: 500; letter-spacing: .02em; padding: 0; transition: font-size .9s var(--ease), gap .9s var(--ease); }
.nav > a {
  position: relative; opacity: .88; white-space: nowrap; padding: 8px 0 10px;
  text-shadow: 0 1px 10px rgba(0,0,0,.35);
  transition: opacity .35s var(--ease), color .35s var(--ease), padding .9s var(--ease);
}
.header.scrolled .nav > a, .header.solid .nav > a { text-shadow: none; }
.nav > a:hover, .nav > a.is-active { opacity: 1; color: #fff; }
.nav > a::after {
  content: ""; position: absolute; left: 50%; bottom: 4px; height: 2px; width: 100%;
  background: var(--coral); transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
}
.nav > a:hover::after, .nav > a.is-active::after { transform: translateX(-50%) scaleX(1); }
.header-end { display: flex; align-items: center; justify-content: flex-end; gap: 16px; justify-self: end; padding-left: 20px; }
.lang { display: flex; gap: 12px; font-size: 15px; letter-spacing: .08em; flex: 0 0 auto; }
.lang-bar { display: flex; margin: 0; }
.lang button { background: none; border: 0; color: inherit; padding: 0; opacity: .55; transition: opacity .2s; }
.lang button.on { opacity: 1; font-weight: 700; border-bottom: 1px solid var(--cream); }
.icon-btn { background: none; border: 0; color: inherit; padding: 4px; display: grid; place-items: center; min-width: 36px; min-height: 40px; flex: 0 0 auto; transition: transform .25s var(--ease); }
.icon-btn:hover { transform: scale(1.08); }
.icon-btn.burger {
  display: none;
  position: relative;
  width: 24px;
  height: 18px;
  min-width: 24px;
  min-height: 18px;
  padding: 0;
  background: none;
}
.burger span, .burger::before, .burger::after {
  content: ""; position: absolute; left: 0; right: 0; height: 2px; background: currentColor;
  border-radius: 1px;
  transition: transform .3s var(--ease), opacity .2s, top .3s var(--ease);
}
.burger::before { top: 0; }
.burger span { top: 8px; }
.burger::after { top: 16px; bottom: auto; }
.burger.open span { opacity: 0; }
.burger.open::before { top: 8px; transform: rotate(45deg); }
.burger.open::after { top: 8px; transform: rotate(-45deg); }

.hero { position: relative; min-height: 100vh; color: var(--cream); display: grid; place-items: end start; overflow: hidden; }
.hero-media { position: absolute; inset: -8% 0 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: kenburns 22s var(--ease) infinite alternate; will-change: transform; }
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(22,24,36,.35) 0%, rgba(22,24,36,.25) 40%, rgba(22,24,36,.78) 100%),
    linear-gradient(90deg, rgba(22,24,36,.45), transparent 55%);
}
.hero-copy { position: relative; z-index: 1; padding: 0 0 12vh 4vw; max-width: 920px; will-change: transform, opacity; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: .28em; text-transform: uppercase; font-size: 12px;
  opacity: 0; animation: rise 2s var(--ease) .35s forwards;
}
.hero-kicker::before {
  content: ""; width: 32px; height: 1px; background: var(--coral);
  transform: scaleX(0); transform-origin: left;
  animation: lineIn 1.8s var(--ease) .55s forwards;
}
.hero h1 { margin: 14px 0 0; font-size: clamp(42px, 6.4vw, 92px); line-height: .95; font-weight: 700; }
.hero h1 span {
  display: block; overflow: hidden;
  opacity: 0; transform: translateY(40px);
  animation: clipRise 2.4s var(--ease) forwards;
}
.hero h1 span:nth-child(1) { animation-delay: .6s; }
.hero h1 span:nth-child(2) {
  animation-delay: 1.15s;
  color: #fff;
  font-weight: 400;
  font-size: .74em;
}
.hero-eu {
  position: absolute; inset: 0; z-index: 2; pointer-events: none;
}
.hero-eu-glass {
  position: absolute; inset: 0;
  background: rgba(28, 48, 62, .42);
  clip-path: polygon(100% 40%, 100% 100%, 46% 100%);
  animation: euGlow 3.6s ease-in-out infinite;
}
.hero-eu-badge {
  position: absolute;
  left: auto;
  right: 2.2vw;
  bottom: 8vh;
  top: auto;
  transform: none;
}
.hero-eu-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  color: #fff;
}
.hero-eu-eu,
.hero-eu-word {
  display: block;
  font-family: Arboria, sans-serif;
  text-transform: uppercase;
}
.hero-eu-eu {
  font-size: clamp(72px, 8vw, 108px);
  line-height: .9;
  letter-spacing: .02em;
  font-weight: 700;
}
.hero-eu-word {
  font-size: clamp(26px, 2.7vw, 38px);
  line-height: 1;
  letter-spacing: .08em;
  margin-top: 8px;
  font-weight: 400;
}

.scroll-hint {
  position: absolute; left: 36px; bottom: 36px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  letter-spacing: .22em; font-size: 11px; opacity: .78;
}
.scroll-hint span { writing-mode: vertical-rl; }
.scroll-hint i {
  display: block; width: 1px; height: 52px; background: currentColor;
  transform-origin: top; animation: linePulse 2.2s ease-in-out infinite;
}

.page-hero {
  position: relative; min-height: 46vh; color: var(--cream);
  display: flex; align-items: end; overflow: hidden; padding: 140px 0 48px;
}
.page-hero.tall { min-height: 52vh; }
.page-hero.tall img.bg { object-position: center 30%; }
.page-hero.about-run { min-height: 72vh; }
.page-hero.about-run img.bg { object-position: center 58%; object-fit: cover; animation: none; }
.page-hero img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s var(--ease) infinite alternate; will-change: transform; }
.hero-slides .slides { position: absolute; inset: 0; }
.hero-slides .slides img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 70%;
  opacity: 0; animation: none;
  transition: opacity 1.8s ease;
}
.hero-slides .slides img.is-on { opacity: 1; z-index: 0; }
.page-hero .shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,24,36,.4), rgba(22,24,36,.72)); }
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 0; font-size: clamp(36px, 5vw, 64px);
  opacity: 0; transform: translateY(28px);
  animation: clipRise 2.2s var(--ease) .25s forwards;
}
.page-hero p { margin: 12px 0 0; font-size: 20px; color: var(--cream); max-width: 40ch; opacity: 0; animation: rise 1.9s var(--ease) .55s forwards; }

.reveal { transition: opacity 1.15s ease, transform 1.15s ease; transition-delay: var(--d, 0s); }
html.js .reveal { opacity: 0; transform: translateY(18px); }
html.js .reveal.in { opacity: 1; transform: none; }
.delay-1 { --d: .12s; }
.delay-2 { --d: .24s; }
.delay-3 { --d: .36s; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--coral); margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 1px; background: currentColor;
  transform-origin: left; transition: transform 1.8s var(--ease);
}
html.js .eyebrow::before { transform: scaleX(0); }
html.js .eyebrow.in::before, html.js section.in .eyebrow::before { transform: scaleX(1); }
h2 { font-size: clamp(28px, 3.4vw, 46px); line-height: 1.1; margin: 0 0 24px; }

.partner { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 640px; background: #2d3048; color: var(--cream); }
.partner-copy { padding: 88px 64px; }
.partner p { margin: 0 0 16px; font-size: 17px; line-height: 1.65; color: #efe6dc; }
.caps { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 18px; margin: 28px 0 24px; padding: 0; list-style: none; }
.caps li {
  display: flex; align-items: center; gap: 10px; font-size: 15px;
  border-bottom: 1px solid rgba(245,227,214,.15); padding: 8px 0;
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .caps li { opacity: 0; transform: translateX(-12px); }
html.js .partner.in .caps li, html.js .caps.in li { opacity: 1; transform: none; }
.caps li::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--coral); flex: 0 0 auto; }
html.js .caps li::before { transform: scale(0); transition: transform 1.3s var(--ease) var(--d, 0s); }
html.js .partner.in .caps li::before, html.js .caps.in li::before { transform: scale(1); }
.partner-photo {
  position: relative; overflow: hidden;
  margin: 32px 32px 32px 0; border-radius: var(--radius);
}
html.js .partner-photo {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: clip-path 3.6s cubic-bezier(0.45, 0.02, 0.2, 1), -webkit-clip-path 3.6s cubic-bezier(0.45, 0.02, 0.2, 1);
}
html.js .partner.in .partner-photo, html.js .partner-photo.in {
  -webkit-clip-path: inset(0);
  clip-path: inset(0);
}
.partner-photo img { width: 100%; height: 100%; object-fit: cover; }
html.js .partner-photo img { transform: scale(1.16); transition: transform 3.8s cubic-bezier(0.45, 0.02, 0.2, 1); will-change: transform; }
html.js .partner.in .partner-photo img, html.js .partner-photo.in img { transform: scale(1); }

.products { padding: 96px 0; background: var(--paper); }
.products .wrap { max-width: 980px; }
.section-head { display: flex; justify-content: space-between; align-items: end; margin-bottom: 28px; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.card {
  position: relative; min-height: 200px; overflow: hidden; color: #fff; display: flex; align-items: end; isolation: isolate;
  border-radius: var(--radius);
  transition: box-shadow .35s var(--ease), opacity 2.2s var(--ease), transform 2.2s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .card.in, html.js .products.in .card {
  transition: transform .35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .35s var(--ease), opacity .35s;
}
.card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transform: scale(1.02); }
html.js .card img {
  opacity: 0;
  transform: scale(1.1);
  transition: opacity 2.6s var(--ease), transform 3.2s cubic-bezier(0.45, 0.02, 0.2, 1);
  transition-delay: var(--d, 0s);
}
html.js .card.in img, html.js .products.in .card img { opacity: 1; transform: scale(1.02); }
.card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 20%, rgba(22,24,36,.78)); transition: background .4s; }
@media (hover: hover) and (pointer: fine) {
  .card.in:hover, .products.in .card:hover {
    transform: scale(0.96);
    box-shadow: 0 10px 28px rgba(22,24,36,.22);
  }
  .card.in:hover img, .products.in .card:hover img { transform: scale(1.02); }
}
.card-body { padding: 20px; width: 100%; display: flex; justify-content: space-between; align-items: end; gap: 16px; }
.card h3 { margin: 0 0 6px; font-size: 20px; }
.card p { margin: 0; max-width: 34ch; font-size: 15px; line-height: 1.45; opacity: .92; }
.go { width: 42px; height: 42px; border-radius: 50%; background: var(--coral); color: #fff; display: grid; place-items: center; flex: 0 0 auto; transition: transform .35s var(--ease); }
.card:hover .go { transform: translateX(6px); }

.service { position: relative; color: var(--cream); padding: 110px 0; background: #1b1d2c center / cover no-repeat; }
.service::before { content: ""; position: absolute; inset: 0; background: rgba(22,24,36,.62); }
.service .wrap { position: relative; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 48px; }
.svc { padding: 28px 8px 8px; border-top: 1px solid rgba(245,227,214,.28); position: relative; }
.svc::after {
  content: ""; position: absolute; left: 0; top: 0; height: 1px; width: 100%; background: var(--coral);
}
html.js .svc::after { width: 0; transition: width 2.2s var(--ease) var(--d, 0s); }
html.js .service.in .svc::after, html.js .svc.in::after { width: 100%; }
.svc h3 { margin: 0 0 14px; font-size: 28px; }
.svc p { margin: 0; line-height: 1.6; color: #efe6dc; }

.logistics { display: grid; grid-template-columns: 1.3fr .7fr; background: #fff; }
.logistics-copy { padding: 80px 56px; display: flex; flex-direction: column; justify-content: center; }
.vv-map { position: relative; padding: 24px 8px 24px 16px; }
.vv-map-art { position: relative; overflow: visible; width: 100%; }
.vv-map img { width: 100%; height: auto; display: block; }
.vv-routes {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 1; overflow: visible;
}
.vv-route.is-live {
  fill: none; stroke: #f05940; stroke-width: 0.5;
  stroke-linecap: round; opacity: .85;
}
.vv-ping-halo { fill: rgba(240,89,64,.28); }
.vv-ping-dot { fill: #fff; }
.pin-set {
  position: absolute; left: 16px; top: 16px; z-index: 5;
  background: rgba(22,24,36,.92); color: #fff; padding: 12px 14px;
  border-radius: 12px; font-size: 13px; line-height: 1.4;
  max-width: 260px;
}
.pin-set pre { margin: 8px 0 0; font-size: 12px; }
.vv-pin {
  position: absolute; width: 22px; height: 22px; padding: 0; border: 3px solid #fff;
  background: var(--coral); border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 12px rgba(240,89,64,.4);
  cursor: pointer; z-index: 2;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow .5s var(--ease);
}
.vv-pin::after {
  content: ""; position: absolute; inset: -10px; border-radius: 50%;
  border: 2px solid rgba(240,89,64,.55);
  opacity: 0; transform: scale(.55);
  transition: opacity .5s var(--ease), transform .5s cubic-bezier(0.22, 1, 0.36, 1);
}
.vv-pin::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  animation: pinPulse 2.6s ease-out infinite;
}
@keyframes pinPulse {
  0% { box-shadow: 0 0 0 0 rgba(240,89,64,.5); }
  70% { box-shadow: 0 0 0 14px rgba(240,89,64,0); }
  100% { box-shadow: 0 0 0 0 rgba(240,89,64,0); }
}
.vv-pin.is-placing {
  box-shadow: 0 0 0 4px #fff, 0 0 0 8px var(--coral);
  z-index: 4;
}
.vv-pin:hover, .vv-pin:focus-visible, .vv-pin.is-on {
  transform: translate(-50%, -50%) scale(1.28);
  box-shadow: 0 8px 22px rgba(240,89,64,.45);
  outline: none;
  z-index: 4;
}
.vv-pin:hover::after, .vv-pin:focus-visible::after, .vv-pin.is-on::after {
  opacity: 1; transform: scale(1);
}
.vv-tip {
  position: absolute; z-index: 5; min-width: 200px; max-width: 260px;
  background: var(--navy-deep); color: var(--cream);
  padding: 12px 14px; border-radius: 12px;
  box-shadow: 0 16px 36px rgba(22,24,36,.28);
  opacity: 0; pointer-events: none;
  transform: translate(-50%, 12px) scale(.96);
  transition: opacity .45s var(--ease), transform .45s cubic-bezier(0.22, 1, 0.36, 1);
}
.vv-tip.show { opacity: 1; pointer-events: auto; }
.vv-tip.show.tip-above { transform: translate(-50%, calc(-100% - 10px)) scale(1); }
.vv-tip.show.tip-below { transform: translate(-50%, 14px) scale(1); }
.vv-tip strong { display: block; font-size: 14px; margin-bottom: 4px; }
.vv-tip span { font-size: 13px; line-height: 1.45; color: #d9d3cc; }
.logistics-copy { display: flex; flex-direction: column; justify-content: center; }
.ship { list-style: none; padding: 0; margin: 8px 0 0; }
.ship li {
  padding: 14px 0; border-bottom: 1px solid rgba(36,38,56,.12); font-size: 17px;
  transition: opacity 1.8s var(--ease), transform 1.8s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .ship li { opacity: 0; transform: translateY(10px); }
html.js .logistics.in .ship li, html.js .ship.in li { opacity: 1; transform: none; }

.why { display: grid; grid-template-columns: 1.15fr .85fr; background: #fff; }
.why-list { padding: 88px 56px 88px 8vw; }
.why-item { display: grid; grid-template-columns: 56px 1fr; gap: 18px; align-items: start; padding: 16px 0; }
.why-item img { width: 56px; height: 56px; }
html.js .why-item img { transform: scale(.82); opacity: 0; transition: transform 2s var(--ease) var(--d, 0s), opacity 2s var(--ease) var(--d, 0s); }
html.js .why.in .why-item img, html.js .why-item.in img { transform: none; opacity: 1; }
.why-item p { margin: 6px 0 0; font-size: 16px; line-height: 1.5; }
.why-cta { background: linear-gradient(180deg, rgba(240,89,64,.12), rgba(240,89,64,.04)); padding: 88px 56px; display: flex; flex-direction: column; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 28px; border: 1.5px solid var(--coral); border-radius: 999px;
  background: var(--coral); color: #fff; font-size: 16px; width: fit-content;
  transition: transform .4s cubic-bezier(0.22, 1, 0.36, 1), background .4s ease, color .4s ease, border-color .4s ease, box-shadow .4s ease;
  will-change: transform;
}
.btn:hover {
  transform: scale(0.95);
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  box-shadow: none;
}
.btn:active { transform: scale(0.9); }
.btn-wa {
  background: #25D366; border-color: #25D366; font-weight: 700; letter-spacing: .02em;
  box-shadow: 0 8px 22px rgba(37, 211, 102, .38);
}
.btn-mail svg, .btn-wa svg { flex: 0 0 auto; display: block; }
.btn-wa:hover {
  transform: scale(0.95);
  background: #128C7E;
  border-color: #128C7E;
  color: #fff;
  box-shadow: none;
}

.sus {
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px;
  padding: 90px 8vw; color: var(--cream);
  background: #243018 center / cover no-repeat; position: relative;
}
.sus::before { content: ""; position: absolute; inset: 0; background: rgba(22,24,36,.55); }
.sus > * { position: relative; }
.sus-board { width: min(480px, 100%); margin-left: auto; }
.sus-points { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.sus-points li {
  display: grid; grid-template-columns: 56px 1fr; gap: 16px; align-items: center;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 16px 18px;
  backdrop-filter: blur(10px);
}
.sus-ico {
  width: 52px; height: 52px; margin: 0;
  border-radius: 50%; background: rgba(240,89,64,.22); color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 0 0 5px rgba(240,89,64,.1);
}
.sus-ico svg { width: 24px; height: 24px; display: block; }
.sus-points h3 {
  margin: 0 0 4px; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; font-weight: 700;
}
.sus-points p { margin: 0; font-size: 15px; line-height: 1.4; color: #efe6dc; }

.inner { padding: 72px 0 48px; }
.prose { max-width: 74ch; font-size: 18px; line-height: 1.7; }
.prose p { margin: 0 0 16px; }
.prose .lead { font-size: 22px; font-weight: 700; color: var(--ink); }

.split-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.svc-band {
  display: grid; grid-template-columns: .85fr 1.35fr; gap: 36px; align-items: start;
  background: #fff; border-radius: var(--radius); padding: 36px 40px;
  margin: 0 0 48px; box-shadow: 0 10px 30px rgba(22,24,36,.06);
}
.svc-band-copy h2 { margin: 0 0 12px; }
.svc-band-copy p { margin: 0; color: #3d4058; line-height: 1.6; }
.svc-band .icon-grid { grid-template-columns: repeat(4, 1fr); gap: 18px 16px; margin-top: 0; }
.svc-band .icon-feat h3 { font-size: 16px; margin: 0 0 6px; }
.svc-band .icon-feat p { font-size: 14px; line-height: 1.45; margin: 0; color: #4a4d63; }
.svc-commit-head { margin: 56px 0 20px; padding-top: 36px; border-top: 1px solid rgba(36,38,56,.12); }
.svc-commit { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; margin-top: 0; }
.svc-commit article {
  background: var(--paper); border-radius: var(--radius-sm); padding: 24px 22px;
  border-top: 3px solid var(--coral);
}
.svc-commit h3 { margin: 0 0 10px; font-size: 16px; }
.svc-commit p { margin: 0; font-size: 15px; line-height: 1.55; color: #3d4058; }
.icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 24px; margin-top: 28px; }
.icon-feat img {
  width: 56px; height: 56px; margin-bottom: 12px;
  filter: brightness(0) saturate(100%) invert(18%) sepia(18%) saturate(1400%) hue-rotate(198deg) brightness(0.7);
  transition: transform .45s var(--ease);
}
.icon-feat:hover img { transform: translateY(-4px) scale(1.06); }
.pack-title {
  font-size: 28px; font-weight: 800; letter-spacing: .06em;
  color: var(--navy); margin: 16px 0 22px;
}
.pack-title-hdpe {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(36,38,56,.14);
}
.img-cards { margin: 8px 0 12px; }
.icon-feat h3 { margin: 0 0 8px; font-size: 20px; }
.icon-feat p { margin: 0; line-height: 1.5; color: #3d4058; }

.quality-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.qcard {
  background: linear-gradient(180deg, #fff 0%, #fbf7f3 100%);
  padding: 28px 28px 30px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(36,38,56,.06);
  border: 1px solid rgba(36,38,56,.06);
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.qcard::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--coral), #f5a090);
}
.qico {
  width: 52px; height: 52px; margin-bottom: 18px;
  border-radius: 16px; background: #fde8e3; color: var(--coral);
  display: grid; place-items: center;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.qico svg { width: 24px; height: 24px; display: block; }
.qcard:hover, html.js .qcard.reveal.in:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(36,38,56,.12); }
.qcard:hover .qico { background: var(--coral); color: #fff; }
.qcard h3 { margin: 0 0 12px; font-size: 24px; }
.qcard p { margin: 0; line-height: 1.65; color: #3d4058; }

.solutions-main { min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.catalog { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: #fff; border: 1px solid rgba(36,38,56,.08); border-radius: var(--radius); overflow: hidden; }
.tile {
  min-height: 180px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; border-right: 1px solid rgba(36,38,56,.08); border-bottom: 1px solid rgba(36,38,56,.08);
  color: var(--navy); transition: background .3s var(--ease), transform .35s var(--ease), opacity 2s var(--ease);
  transition-delay: var(--d, 0s);
}
html.js .tile { opacity: 0; transform: translateY(16px); }
html.js .catalog.in .tile, html.js .inner.in .tile { opacity: 1; transform: none; }
.tile:hover, .catalog.in .tile:hover, .inner.in .tile:hover, .tile.is-active { background: #fff8f4; }
.tile:hover, .catalog.in .tile:hover, .inner.in .tile:hover { transform: translateY(-4px); }
.tile.is-active { box-shadow: inset 0 0 0 2px var(--coral); }
.tile img { width: 44px; height: 44px; object-fit: contain; }
.tile .dot { width: 64px; height: 64px; border-radius: 50%; background: #eef0f8; display: grid; place-items: center; transition: transform .4s var(--ease), background .3s; }
.tile:hover .dot { transform: scale(1.1); background: #fde8e3; }
.tile span { font-size: 16px; text-align: center; line-height: 1.25; padding: 0 10px; max-width: 100%; }

.raw-layout { display: grid; grid-template-columns: 240px 1fr; gap: 32px; scroll-margin-top: 96px; }
.side-nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 96px; align-self: start; z-index: 1; }
.side-nav a, .side-nav button {
  text-align: left; background: none; border: 0; padding: 12px 14px; color: var(--navy);
  border-left: 2px solid transparent; font-size: 16px;
  overflow-wrap: anywhere; line-height: 1.3;
}
.side-nav a.is-active, .side-nav button.is-active { border-left-color: var(--coral); font-weight: 700; background: #fff; }

.detail {
  background: #fff; padding: 36px; border-radius: var(--radius); scroll-margin-top: 110px;
  transition: opacity .45s ease, transform .45s ease;
}
.detail.is-swap { opacity: 0; transform: translateY(16px); }
.detail.is-in { opacity: 1; transform: none; }
.detail img { border-radius: var(--radius-sm); }
.detail h2 { margin-top: 0; overflow: visible; line-height: 1.2; overflow-wrap: anywhere; word-break: break-word; }
.detail-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.block { margin: 0 0 28px; }
.block h3 { margin: 0 0 12px; font-size: 20px; }
.block ul { margin: 0; padding-left: 18px; line-height: 1.6; }
.block li { margin: 0 0 6px; }
.nested { margin: 8px 0 0; padding-left: 16px; list-style: disc; }
.img-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.img-card { background: var(--paper); padding: 10px; border-radius: var(--radius-sm); }
.img-card img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; }
.img-card p { margin: 8px 0 0; font-size: 13px; line-height: 1.4; }
table.vv { width: 100%; border-collapse: collapse; font-size: 15px; background: #fff; }
table.vv th, table.vv td { border-bottom: 1px solid rgba(36,38,56,.12); text-align: left; padding: 10px 8px; }
table.vv tbody tr:hover { background: rgba(240,89,64,.1); }
.detail-bg {
  position: relative;
  overflow: visible;
  border-radius: var(--radius);
  padding: 28px 28px 32px;
  background: #fff;
  min-height: 280px;
}
.detail-bg-art {
  position: absolute;
  right: 8px;
  top: 0;
  width: min(38%, 280px);
  max-height: 260px;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}
.detail-bg.is-lipo .detail-bg-art {
  top: 0;
  width: min(28%, 200px);
  max-height: 200px;
}
.detail-bg > *:not(.detail-bg-art) { position: relative; z-index: 1; }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
.contact-aside .reply { color: var(--coral); font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 10px; }
.contact-aside h2 { margin: 0 0 12px; }
.contact-aside > p { margin: 0 0 16px; line-height: 1.55; color: #3d4058; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 24px; }
.btn-ghost { background: #fff; color: var(--navy); box-shadow: none; border: 1px solid rgba(36,38,56,.16); }
.btn-ghost:hover { background: var(--navy); color: #fff; }
.office-card { background: #fff; border-radius: var(--radius-sm); padding: 20px 22px; margin: 0 0 12px; }
.office-card h3 { margin: 0 0 10px; font-size: 18px; }
.office-card p { margin: 0 0 4px; font-size: 15px; line-height: 1.5; color: #3d4058; }
.office-card a { text-decoration: underline; }
.privacy { font-size: 14px; color: #4a4d63; margin: 12px 0 0; line-height: 1.5; }
form.vv { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
form.vv .hp {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
form.vv .turnstile-slot:empty { display: none; }
form.vv .full { grid-column: 1 / -1; }
form.vv label { display: block; font-weight: 700; margin-bottom: 8px; font-size: 14px; }
form.vv input, form.vv select, form.vv textarea {
  width: 100%; border: 1px solid #cfc9c3; border-radius: 999px; height: 52px; padding: 0 18px; background: #fff;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
form.vv input:focus, form.vv select:focus, form.vv textarea:focus {
  outline: none; border-color: var(--coral); box-shadow: 0 0 0 4px rgba(240,89,64,.16);
}
form.vv textarea { border-radius: 18px; height: 140px; padding: 14px 18px; resize: vertical; }
.note { font-size: 14px; color: #4a4d63; margin-top: 12px; min-height: 1.4em; }
.note.is-sending { color: var(--navy); font-weight: 700; }
.note.is-ok {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #e8f6ee;
  color: #14532d;
  border: 1px solid #86efac;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  animation: noteIn .55s var(--ease) both;
}
.note.is-err {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 16px;
  background: #fde8e3;
  color: #9f1239;
  border: 1px solid #f05940;
  font-size: 16px;
  font-weight: 700;
  animation: noteIn .55s var(--ease) both;
}
.form-toast {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(22,24,36,.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.form-toast.is-on { opacity: 1; pointer-events: auto; }
.form-toast-card {
  width: min(440px, 100%);
  background: #fff;
  color: var(--navy);
  border-radius: 24px;
  padding: 28px 28px 24px;
  text-align: center;
  box-shadow: 0 24px 60px rgba(22,24,36,.28);
  transform: translateY(18px) scale(.96);
  transition: transform .45s var(--ease);
}
.form-toast.is-on .form-toast-card { transform: none; }
.form-toast-check {
  width: 64px; height: 64px; margin: 0 auto 14px;
  border-radius: 50%;
  background: #16a34a;
  color: #fff;
  display: grid; place-items: center;
  animation: checkPop .6s var(--ease) both;
}
.form-toast-check svg { width: 32px; height: 32px; }
.form-toast strong { display: block; font-size: 26px; margin: 0 0 8px; }
.form-toast p { margin: 0; font-size: 16px; line-height: 1.5; color: #3d4058; }
@keyframes noteIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes checkPop {
  0% { transform: scale(.4); }
  70% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

footer {
  background: var(--navy-deep); color: #d9d3cc;
  padding: 64px 0 calc(48px + env(safe-area-inset-bottom, 0px));
  overflow: visible; flex-shrink: 0; margin-top: auto;
}
.foot { display: grid; grid-template-columns: .8fr 1fr 1fr 1fr; gap: 28px; align-items: start; min-width: 0; }
.foot img.flogo { height: 72px; width: auto; }
.foot h4 { margin: 0 0 10px; color: #fff; font-weight: 400; }
.foot p { margin: 0 0 4px; font-size: 14px; line-height: 1.5; }
.social { display: flex; gap: 14px; margin-top: 16px; }
.social a, .social span { display: inline-block; transition: transform .3s var(--ease); }
.social a:hover { transform: translateY(-3px); }
span.tile { cursor: default; }
.social img { width: 36px; height: 36px; opacity: .9; }

.search-layer {
  position: fixed; inset: 0; z-index: 50; display: grid; place-items: start center;
  background: rgba(22,24,36,.45); backdrop-filter: blur(10px); padding-top: 12vh;
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease);
}
.search-layer.open { opacity: 1; pointer-events: auto; }
.search-box { width: min(720px, calc(100% - 40px)); transform: translateY(-18px) scale(.98); transition: transform .45s var(--ease); }
.search-layer.open .search-box { transform: none; }
.search-box input {
  width: 100%; height: 72px; border: 0; border-radius: 16px; padding: 0 24px; font-size: 22px; outline: none;
}
.search-results { background: #fff; margin-top: 8px; border-radius: 12px; overflow: hidden; max-height: 50vh; overflow-y: auto; }
.search-results a { display: block; padding: 12px 18px; border-bottom: 1px solid #eee; }
.search-results a:hover { background: #fff8f4; }

.mobile-nav {
  display: none; position: fixed; inset: 0; background: var(--navy-deep); color: var(--cream);
  z-index: 48; padding: 90px 32px; flex-direction: column; gap: 22px; font-size: 28px;
  transform: translateX(100%); transition: transform .45s var(--ease); pointer-events: none;
}
.mobile-nav.open { transform: none; pointer-events: auto; }

@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes clipRise { to { opacity: 1; transform: none; } }
@keyframes lineIn { to { transform: scaleX(1); } }
@keyframes kenburns { from { transform: scale(1.08) translateY(0); } to { transform: scale(1.16) translateY(-2%); } }
@keyframes linePulse { 0%, 100% { transform: scaleY(0.35); opacity: .35; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes float { 50% { transform: translateY(-12px); } }
@keyframes euGlow {
  0%, 100% { background: rgba(28, 48, 62, .38); }
  50% { background: rgba(28, 48, 62, .5); }
}

:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }

@media (max-width: 1200px) {
  .nav { gap: 16px; font-size: 16px; }
  .header { grid-template-columns: minmax(100px,1fr) auto minmax(100px,1fr); }
}
@media (max-width: 980px) {
  .nav { display: none; }
  .header {
    display: flex;
    grid-template-columns: none;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px 10px 12px;
    gap: 8px;
  }
  .logo { height: 40px; width: auto; flex: 0 0 auto; max-width: 42%; }
  .header.scrolled .logo, .header.solid .logo { height: 34px; }
  .header-end { margin-left: auto; padding-left: 12px; gap: 12px; flex: 0 0 auto; }
  .icon-btn.burger { display: block; order: 3; margin-left: 6px; }
  .grid-4 a:nth-child(2) img,
  .grid-4 a:nth-child(3) img {
    object-fit: contain;
    object-position: center;
    background: #1c1e2a;
    transform: none;
  }
  html.js .grid-4 a:nth-child(2).in img,
  html.js .grid-4 a:nth-child(3).in img,
  html.js .products.in .grid-4 a:nth-child(2) img,
  html.js .products.in .grid-4 a:nth-child(3) img { transform: none; }
  .mobile-nav { display: flex; }
  .partner, .logistics, .why, .sus, .foot, .split-2, .quality-grid, .contact-grid, .raw-layout, .detail-cols, .svc-band, .svc-commit { grid-template-columns: 1fr; }
  .svc-band { padding: 22px 18px; overflow: visible; }
  .svc-band .icon-grid { grid-template-columns: 1fr; }
  .svc-band .icon-feat p { font-size: 15px; overflow-wrap: anywhere; }
  .svc-commit article { overflow: visible; }
  .svc-commit p { overflow-wrap: anywhere; }
  .partner-photo { min-height: 280px; margin: 0 24px 28px; }
  .vv-map { padding: 16px; }
  .partner-copy, .logistics-copy, .why-list, .why-cta { padding: 48px 24px; }
  .service-grid, .icon-grid, .catalog { grid-template-columns: 1fr 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .svc p { overflow-wrap: anywhere; }
  .grid-4 { grid-template-columns: 1fr; gap: 14px; }
  .card { min-height: 240px; }
  .card-body { padding: 22px; flex-wrap: wrap; }
  .card h3 { font-size: 24px; }
  .card p { font-size: 16px; max-width: none; }
  .hero-copy { padding: 0 24px 34vh; max-width: none; }
  .hero-eu-glass { clip-path: polygon(100% 80%, 100% 100%, 18% 100%); }
  .hero-eu-badge { left: auto; right: 16px; bottom: 5vh; }
  .hero-eu-eu { font-size: 50px; }
  .hero-eu-word { font-size: 18px; letter-spacing: .08em; }
  .scroll-hint { display: none; }
  .sus-board { margin: 28px auto 0; }
  form.vv { grid-template-columns: 1fr; }
  .side-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--paper);
    padding: 8px 0 16px;
  }
  .side-nav a, .side-nav button {
    border-left: 0;
    border-radius: 999px;
    background: #fff;
    padding: 8px 14px;
    font-size: 14px;
  }
  .raw-layout { gap: 16px; }
  .detail-bg { padding: 22px 16px 28px; }
  .detail-bg-art { width: min(48%, 180px); max-height: 180px; }
  .detail-bg.is-lipo .detail-bg-art { width: min(36%, 140px); max-height: 140px; top: 0; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-media img, .page-hero img.bg, .partner-photo, .partner-photo img,
  .reveal, .caps li, .ship li, .tile, .hero h1 span, .page-hero h1, .page-hero p, .hero-kicker {
    opacity: 1 !important; transform: none !important; clip-path: none !important;
  }
  .eyebrow::before, .hero-kicker::before, .svc::after { transform: none; width: 100%; }
  .hero-eu { opacity: 1 !important; }
}
