:root {
  --bg: #060606;
  --bg2: #0e0e0e;
  --surface: rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.08);
  --border2: rgba(255,255,255,.14);
  --text: #c8c8c8;
  --muted: #666;
  --white: #f5f5f5;
  --orange: #ff4f1a;
  --orange2: #ff7a47;
  --orange-glow: rgba(255,79,26,.25);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: clip; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--white);
  overflow-x: clip;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: .028;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px;
}

.container {
  width: 100%;
  max-width: 1360px;
  margin-inline: auto;
  padding-inline: clamp(16px, 5vw, 48px);
}

img, video, svg { max-width: 100%; height: auto; }

#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange2), #ffcc00);
  z-index: 10001;
  width: 0;
  box-shadow: 0 0 12px var(--orange-glow);
}

.cursor-dot, .cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
body.cursor-ready .cursor-dot,
body.cursor-ready .cursor-ring { opacity: 1; }

.cursor-dot { width: 8px; height: 8px; background: var(--orange); mix-blend-mode: difference; }
.cursor-ring {
  width: 40px; height: 40px;
  border: 1.5px solid rgba(255,79,26,.5);
  transition: width .25s, height .25s, border-color .25s;
}
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--orange); border-width: 2px; }

.aurora { position: absolute; inset: 0; z-index: 0; overflow: hidden; opacity: .55; }
.aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: aurora-float 12s ease-in-out infinite;
}
.aurora-blob:nth-child(1) { width: 600px; height: 600px; background: rgba(255,79,26,.18); top: -20%; left: -10%; }
.aurora-blob:nth-child(2) { width: 500px; height: 500px; background: rgba(255,120,50,.12); bottom: -15%; right: -5%; animation-delay: -4s; animation-duration: 15s; }
.aurora-blob:nth-child(3) { width: 400px; height: 400px; background: rgba(200,50,255,.08); top: 40%; left: 50%; animation-delay: -8s; animation-duration: 18s; }

@keyframes aurora-float {
  0%, 100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(-30px,50px) scale(.95); }
}

.marquee-section {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg2);
}
.marquee-track { display: flex; animation: marquee-scroll 40s linear infinite; width: max-content; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.12);
  white-space: nowrap;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.marquee-item::after { content: '◆'; color: var(--orange); font-size: 8px; opacity: .5; }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.lang-switcher { position: relative; z-index: 10050; }
.lang-btn {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(12px);
}
.lang-btn:hover { background: var(--surface2); border-color: rgba(255,255,255,.25); }
.lang-btn .arrow { font-size: 10px; transition: transform .25s; }
.lang-switcher.open .lang-btn .arrow { transform: rotate(180deg); }
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(14,14,14,.95);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--border2);
  border-radius: 16px;
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  transform: translateY(-8px) scale(0.98);
  pointer-events: none;
  transition: opacity .25s, transform .25s;
  z-index: 10051;
  box-shadow: 0 16px 48px rgba(0,0,0,.45);
}
.lang-switcher.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: background .15s, color .15s;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
}
.lang-btn .flag-img,
.lang-option .flag-img {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  flex-shrink: 0;
}
.lang-option:hover { background: var(--surface2); color: var(--white); }
.lang-option.active { color: var(--orange); background: rgba(255,79,26,.08); }

.icon-svg {
  width: 28px;
  height: 28px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; overflow: visible; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 20px;
  padding-inline: clamp(16px, 4vw, 48px);
  border-bottom: 1px solid transparent;
  transition: padding .5s, background .5s, backdrop-filter .5s, border-color .5s;
}
nav.scrolled .nav-inner {
  padding-block: 16px;
  padding-inline: clamp(16px, 4vw, 48px);
  background: rgba(6,6,6,.75);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom-color: var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--white);
  text-decoration: none;
}
.logo em { color: var(--orange); font-style: normal; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  transition: width .25s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 14px; overflow: visible; position: relative; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--border2);
  background: var(--surface);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--white);
  transition: transform .25s, opacity .25s;
}
nav.menu-open .nav-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
nav.menu-open .nav-toggle span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(6,6,6,.96);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 499;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 0;
}
nav.menu-open .mobile-menu { transform: translateY(0); opacity: 1; pointer-events: auto; visibility: visible; }

.mobile-lang-row {
  display: none;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
  margin-top: 8px;
}
.mobile-lang-row button {
  padding: 8px 12px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}
.mobile-lang-row button.active {
  color: var(--orange);
  border-color: rgba(255,79,26,.35);
  background: rgba(255,79,26,.08);
}

.info-blocks {
  margin-top: 48px;
  display: grid;
  gap: 20px;
}
.info-block {
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--surface);
}
.info-block h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}
.info-block ol, .info-block ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 14px;
}
.info-block li + li { margin-top: 8px; }

.btn-ghost, .btn-orange, .btn-hero-primary, .btn-hero-secondary, .btn-cta-main, .btn-cta-ghost {
  font-family: var(--font-body);
  text-decoration: none;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-ghost {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: var(--surface2); border-color: rgba(255,255,255,.25); }

.btn-orange {
  padding: 11px 24px;
  border-radius: 100px;
  background: var(--orange);
  color: white;
  font-size: 14px;
  font-weight: 600;
  transition: box-shadow .2s;
}
.btn-orange:hover { box-shadow: 0 8px 32px rgba(255,79,26,.4); }

.magnetic { --mx: 0; --my: 0; transform: translate(var(--mx), var(--my)); transition: transform .15s ease, box-shadow .2s; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: clip;
  width: 100%;
  max-width: 100vw;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 40px) 0 120px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('../images/hero-delivery.jpg') center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-bg-drift 24s ease-in-out infinite alternate;
}
@keyframes hero-bg-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-1%, -1%, 0); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(6,6,6,1) 0%, rgba(6,6,6,.7) 40%, rgba(6,6,6,.25) 100%),
    linear-gradient(to right, rgba(6,6,6,.5) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 2; max-width: 1000px; width: 100%; min-width: 0; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(16px);
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 32px;
  max-width: 100%;
  line-height: 1.4;
}
.hero-tag span:last-child { text-wrap: balance; }
.hero-tag .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34,197,94,.7);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .6; transform: scale(1.3); } }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 10.5vw, 160px);
  font-weight: 800;
  line-height: .88;
  letter-spacing: -4px;
  margin-bottom: 28px;
  max-width: 100%;
  overflow-wrap: anywhere;
}
.hero h1 em { font-style: normal; color: var(--orange); }

.hero-sub {
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.7;
  color: #909090;
  max-width: 560px;
  font-weight: 300;
  width: 100%;
}

.hero-actions {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Progressive enhancement: hide only when JS enables GSAP animations */
html.js-anim .hero-tag,
html.js-anim .hero h1,
html.js-anim .hero-sub,
html.js-anim .hero-actions,
html.js-anim .gsap-fade {
  opacity: 0;
  transform: translateY(24px);
}

.btn-hero-primary {
  padding: 16px 32px;
  border-radius: 100px;
  background: var(--orange);
  color: white;
  font-size: 15px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.btn-hero-primary:hover { box-shadow: 0 12px 40px rgba(255,79,26,.45); }

.btn-hero-secondary {
  padding: 16px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  color: white;
  font-size: 15px;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.3); }

.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scroll-line 1.5s ease-in-out infinite;
}
@keyframes scroll-line {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

.kpi-section {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.kpi-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(255,79,26,.08), transparent 70%);
  pointer-events: none;
}
.kpi-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-width: 0; }
.kpi-item { padding: 20px clamp(16px, 3vw, 40px); border-right: 1px solid var(--border); min-width: 0; }
.kpi-item:last-child { border-right: none; }
.kpi-num {
  font-family: var(--font-display);
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
  color: var(--white);
  margin-bottom: 8px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kpi-num sup { font-size: .45em; color: var(--orange); vertical-align: super; }
.kpi-label { font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); font-weight: 500; }

.section { padding: clamp(80px, 12vw, 160px) 0; }
.label-row { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.label-line { width: 32px; height: 2px; background: var(--orange); }
.label-text { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--orange); }
.section-h {
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -3px;
  margin-bottom: 28px;
}
.section-h em { font-style: normal; color: var(--orange); }
.section-p { font-size: clamp(16px, 2vw, 19px); line-height: 1.75; color: #777; font-weight: 300; max-width: 620px; }
.section-p-gap { margin-top: 20px; }

.partner-section { background: var(--bg2); }
.partner-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: center; }
.partner-right { display: flex; flex-direction: column; gap: 20px; }

.wolt-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 28px;
  border-radius: 20px;
  background: rgba(0,180,100,.08);
  border: 1px solid rgba(0,180,100,.2);
  margin-bottom: 40px;
}
.wolt-badge-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.wolt-badge-icon img,
.wolt-badge-icon .wolt-logo {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
}
.wolt-badge-text { font-size: 14px; color: #4ade80; font-weight: 500; }
.wolt-badge-sub { font-size: 12px; color: #555; }

.partner-stat-card {
  padding: 32px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(20px);
  transition: border-color .3s, background .3s, transform .3s;
}
.partner-stat-card:hover { border-color: var(--border2); background: var(--surface2); transform: translateY(-2px); }
.partner-stat-card .num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 6px;
}
.num-sup { font-size: 24px; color: var(--orange); }
.partner-stat-card .cap { font-size: 13px; color: var(--muted); letter-spacing: 1px; text-transform: uppercase; }
.partner-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.map-wrap {
  margin-top: 80px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg2);
  padding: clamp(20px, 4vw, 32px);
}

.markets-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 24px);
}

.market-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
  min-width: 0;
}

.market-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  min-height: 180px;
  background: var(--bg2);
  filter: saturate(.85) brightness(.75);
  transition: transform .5s ease, filter .5s ease;
}

.market-card:hover img {
  transform: scale(1.04);
  filter: saturate(1) brightness(.85);
}

.market-card-body {
  padding: 20px 22px 22px;
}

.market-card-body h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 4px;
}

.market-card-country {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.market-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.market-card-body h3 a {
  color: inherit;
  text-decoration: none;
}

.market-card-body h3 a:hover {
  color: var(--orange);
}

.market-seo-desc {
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .62);
  margin-bottom: 14px;
}

/* SEO content blocks */
.seo-section {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 79, 26, .04) 50%, transparent 100%);
}

.seo-prose {
  max-width: 820px;
  margin-bottom: 40px;
}

.seo-prose p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 16px;
}

.seo-prose p:last-child { margin-bottom: 0; }

.markets-seo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.markets-seo-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
}

.markets-seo-card h3 {
  font-family: var(--font-display);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--text);
}

.markets-seo-card p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, .65);
}

/* FAQ */
.faq-section {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  overflow: hidden;
}

.faq-item summary {
  padding: 18px 22px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
}

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

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform .2s ease;
}

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

.faq-item p {
  padding: 0 22px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .65);
}

.market-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .5px;
  background: rgba(255,79,26,.12);
  color: var(--orange);
  border: 1px solid rgba(255,79,26,.25);
}

.market-status .icon-dot { width: 6px; height: 6px; }

.market-status--opening {
  background: rgba(255, 193, 7, .12);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, .28);
}
.market-status--opening .icon-dot {
  background: #ffc107;
  box-shadow: 0 0 8px rgba(255, 193, 7, .6);
}
.icon-dot--pulse { animation: pulse-dot 2s ease-in-out infinite; }

.markets-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.markets-connector-line {
  flex: 1;
  min-width: 40px;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.markets-connector-label {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.timeline-wrap {
  margin-top: 80px;
  position: relative;
  padding-left: clamp(20px, 3vw, 32px);
}
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--orange) 15%, var(--orange) 75%, transparent);
  opacity: .3;
}
.tl-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.tl-item:last-child { border-bottom: none; }
.tl-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * clamp(20px, 3vw, 32px) - 4px);
  top: clamp(36px, 5vw, 52px);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 16px var(--orange);
  z-index: 2;
  flex-shrink: 0;
}
.tl-item.future::before {
  background: transparent;
  border: 2px solid var(--orange);
  box-shadow: none;
}
.tl-year {
  flex: 0 0 clamp(80px, 10vw, 120px);
  width: clamp(80px, 10vw, 120px);
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: -1px;
  line-height: 1.15;
  white-space: nowrap;
}
.tl-item.future .tl-year { color: #555; }
.tl-content {
  flex: 1 1 0;
  min-width: 0;
  max-width: 720px;
}
.tl-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.5px;
  margin-bottom: 12px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.tl-item.future .tl-title { color: #666; }
.tl-desc {
  font-size: clamp(15px, 2vw, 16px);
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 640px;
  overflow-wrap: anywhere;
}
.tl-tag {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}
.tl-tag.active { background: rgba(255,79,26,.12); color: var(--orange); border: 1px solid rgba(255,79,26,.25); }
.tl-tag.upcoming { background: rgba(255,255,255,.04); color: var(--muted); border: 1px solid var(--border); }

.courier-section { background: var(--bg2); position: relative; overflow: hidden; }
.courier-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,79,26,.07), transparent 70%);
  pointer-events: none;
}
.courier-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.courier-visual { position: relative; height: clamp(380px, 50vw, 580px); }
.courier-img-main {
  position: absolute; inset: 0;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a, #111);
}
.courier-img-main img { width: 100%; height: 100%; object-fit: cover; opacity: .7; }
.courier-img-main::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,6,6,.8) 0%, transparent 60%);
}
.courier-float-card {
  position: absolute;
  padding: 20px 24px;
  border-radius: 20px;
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(10,10,10,.7);
  z-index: 10;
}
.courier-float-card.card-top { top: 28px; right: 28px; }
.courier-float-card.card-bottom { bottom: 28px; left: 28px; }
.cfc-label { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.cfc-value { font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--orange); letter-spacing: -1px; }
.cfc-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }

.benefits-grid { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; perspective: 800px; }
.benefit-card {
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color .3s, transform .2s ease;
  transform-style: preserve-3d;
}
.benefit-card:hover { border-color: rgba(255,79,26,.3); }
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,79,26,.1);
  border: 1px solid rgba(255,79,26,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit-icon .icon-svg { width: 22px; height: 22px; }
.benefit-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.benefit-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.courier-cta { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.courier-note { font-size: 13px; color: var(--muted); }

.cta-section { padding: clamp(120px, 16vw, 200px) 0; position: relative; overflow: hidden; text-align: center; }
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 90vw); height: 600px;
  background: radial-gradient(ellipse, rgba(255,79,26,.14), transparent 65%);
  pointer-events: none;
}
.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border-radius: 100px;
  border: 1px solid rgba(255,79,26,.25);
  background: rgba(255,79,26,.06);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange2);
  font-weight: 600;
  margin-bottom: 40px;
}
.cta-h {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 130px);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -4px;
  margin-bottom: 32px;
}
.cta-h em { font-style: normal; color: var(--orange); }
.cta-sub { font-size: 19px; color: #666; max-width: 500px; margin: 0 auto 48px; line-height: 1.7; font-weight: 300; }
.cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
.btn-cta-main {
  padding: 18px 40px;
  border-radius: 100px;
  background: var(--orange);
  color: white;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
}
.btn-cta-main:hover { box-shadow: 0 16px 48px rgba(255,79,26,.5); }
.btn-cta-ghost {
  padding: 18px 40px;
  border-radius: 100px;
  border: 1px solid var(--border2);
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  transition: background .2s, border-color .2s;
}
.btn-cta-ghost:hover { background: var(--surface2); border-color: rgba(255,255,255,.25); }

footer { border-top: 1px solid var(--border); padding: 80px 0 48px; background: #040404; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand .logo { font-size: 24px; display: inline-block; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: #555; line-height: 1.7; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { text-decoration: none; color: #555; font-size: 14px; transition: color .2s; }
.footer-col ul a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 13px; color: #444; }
.footer-markets { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-market {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 12px;
  color: #555;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-market img {
  width: 16px;
  height: 12px;
  object-fit: cover;
  border-radius: 1px;
}

[data-i18n-html] { transition: opacity .2s ease, transform .2s ease; }

.particles { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.particle {
  position: absolute;
  width: 2px; height: 2px;
  background: rgba(255,79,26,.3);
  border-radius: 50%;
  animation: particle-drift linear infinite;
}
@keyframes particle-drift {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

@media (max-width: 1024px) {
  .partner-layout, .courier-layout { grid-template-columns: 1fr; gap: 60px; }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .kpi-item { padding: clamp(14px, 3vw, 20px) clamp(12px, 3vw, 20px); }
  .kpi-item:nth-child(2) { border-right: none; }
  .kpi-num { font-size: clamp(32px, 9vw, 56px); letter-spacing: -1.5px; }
  .kpi-label { font-size: 10px; letter-spacing: 1px; line-height: 1.35; }
  .kpi-section { padding: 64px 0; }
  .hero { padding-bottom: 96px; }
  .hero h1 { letter-spacing: -2px; font-size: clamp(40px, 11vw, 72px); }
  .hero-tag { font-size: 11px; margin-bottom: 24px; }
  .hero-actions { margin-top: 32px; gap: 10px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nav-links, .nav-desktop-only { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .mobile-lang-row { display: flex; }
  .nav-inner { padding-inline: clamp(16px, 4vw, 24px); gap: 12px; }
  nav.scrolled .nav-inner { padding-inline: clamp(16px, 4vw, 24px); }
  .markets-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .kpi-item { padding: 14px 12px; border-right: none; border-bottom: 1px solid var(--border); }
  .kpi-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .kpi-item:nth-child(3),
  .kpi-item:nth-child(4) { border-bottom: none; }
  .kpi-num { font-size: clamp(28px, 10vw, 44px); }
  .kpi-label { font-size: 9px; letter-spacing: .8px; }
  .kpi-section { padding: 48px 0; }
  .hero { padding: calc(var(--nav-h) + 24px) 0 72px; }
  .hero h1 { letter-spacing: -1.5px; font-size: clamp(36px, 12vw, 56px); line-height: .92; }
  .hero-sub { font-size: 15px; line-height: 1.65; }
  .hero-actions { flex-direction: column; align-items: stretch; margin-top: 28px; }
  .hero-actions a { text-align: center; width: 100%; box-sizing: border-box; }
  .btn-hero-primary, .btn-hero-secondary { padding: 14px 20px; font-size: 14px; }
  .tl-item {
    flex-direction: column;
    gap: 10px;
    padding: 28px 0 28px 8px;
  }
  .tl-item::before { top: 36px; }
  .tl-year {
    flex: none;
    width: auto;
    font-size: 26px;
  }
  .tl-content { max-width: none; }
  .section { padding: 64px 0; }
  .section-h { letter-spacing: -2px; margin-bottom: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-scroll { display: none; }
  .courier-visual {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .courier-img-main { position: relative; aspect-ratio: 4 / 3; inset: auto; }
  .courier-float-card {
    position: static;
    width: 100%;
  }
  .courier-float-card.card-top,
  .courier-float-card.card-bottom { top: auto; right: auto; bottom: auto; left: auto; }
  .courier-cta { flex-direction: column; align-items: stretch; }
  .courier-cta .btn-orange { text-align: center; width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; padding-inline: 0; }
  .cta-actions a { width: 100%; text-align: center; }
  .lang-dropdown { right: auto; left: 0; }
  .nav-cta { gap: 8px; }
  .logo { font-size: 22px; }
  .partner-stat-row { grid-template-columns: 1fr; }
  .wolt-badge { flex-wrap: wrap; }
  .markets-seo-grid { grid-template-columns: 1fr; }
  .markets-seo-card { padding: 20px; }
  .seo-prose p { font-size: 14px; }
  .faq-item summary { font-size: 14px; padding: 16px 18px; }
  .faq-item p { padding: 0 18px 16px; }
  .market-seo-desc { font-size: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg { animation: none; transform: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html.js-anim .gsap-fade,
  html.js-anim .hero-tag,
  html.js-anim .hero h1,
  html.js-anim .hero-sub,
  html.js-anim .hero-actions { opacity: 1; transform: none; }
  .cursor-dot, .cursor-ring, .particles, .marquee-track { display: none !important; }
}
