/* ============ Piese Auto — global styles v3 ============ */
:root {
  --bg: #08080b;
  --bg-2: #0e0e14;
  --card: #13131b;
  --card-2: #191923;
  --border: #24242f;
  --border-glow: rgba(255, 196, 0, .5);
  --yellow: #ffc400;
  --yellow-2: #f0a500;
  --text: #f5f5f8;
  --muted: #a4a4b4;
  --radius: 20px;
  --maxw: 1160px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --font-display: 'Unbounded', 'Exo 2', sans-serif;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.22; letter-spacing: -.01em; }
h3 { font-size: 16px; }
.logo-text { font-family: 'Exo 2', sans-serif; font-weight: 800; }
a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
img, svg { max-width: 100%; height: auto; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
section[id] { scroll-margin-top: 80px; }
::selection { background: rgba(255, 196, 0, .85); color: #111; }

/* custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: #2c2c38; border-radius: 8px; border: 2px solid var(--bg-2); }
::-webkit-scrollbar-thumb:hover { background: var(--yellow-2); }

/* film grain overlay */
.grain {
  position: fixed; inset: -50%; z-index: 200; pointer-events: none; opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%,100% { transform: translate(0,0); } 20% { transform: translate(-3%,2%); }
  40% { transform: translate(2%,-3%); } 60% { transform: translate(-2%,-2%); } 80% { transform: translate(3%,3%); }
}

/* scroll progress bar */
.progress-bar {
  position: fixed; top: 0; left: 0; height: 3px; width: 100%; z-index: 100;
  background: linear-gradient(90deg, var(--yellow), #ff9d00);
  transform-origin: left; transform: scaleX(0);
  box-shadow: 0 0 12px rgba(255, 196, 0, .6);
}

/* ---------- scroll reveal (hidden state only when JS is on: html.js) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal-l { opacity: 0; transform: translateX(-36px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal-l.in { opacity: 1; transform: none; }
.js .reveal-r { opacity: 0; transform: translateX(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal-r.in { opacity: 1; transform: none; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 8, 11, .45);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.scrolled {
  background: rgba(8, 8, 11, .92);
  border-bottom-color: var(--border);
  box-shadow: 0 10px 34px rgba(0, 0, 0, .5);
}
.header-inner {
  display: flex; align-items: center; gap: 20px;
  padding: 13px 22px; max-width: var(--maxw); margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none !important; }
.brand img.logo-img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px rgba(255,196,0,.55), 0 0 18px rgba(255,196,0,.25); }
.brand .logo-text { font-size: 21px; font-style: italic; color: #fff; white-space: nowrap; }
.brand .logo-text span { color: var(--yellow); }
.main-nav { display: flex; gap: 20px; margin-left: auto; flex-wrap: wrap; }
.main-nav a { color: var(--muted); font-size: 14px; font-weight: 500; position: relative; padding: 4px 0; }
.main-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--yellow); border-radius: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.main-nav a:hover { color: var(--text); text-decoration: none; }
.main-nav a:hover::after { transform: scaleX(1); }
.lang-switch {
  display: flex; border: 1px solid var(--border); border-radius: 10px; overflow: hidden;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.lang-switch a, .lang-switch span { padding: 6px 13px; color: var(--muted); transition: background .25s, color .25s; }
.lang-switch a:hover { color: var(--text); text-decoration: none; background: var(--card-2); }
.lang-switch .active { background: var(--yellow); color: #111; }
.header-cta { flex-shrink: 0; }

/* ---------- buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px; border-radius: 14px; font-weight: 700; font-size: 15px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s, color .25s;
  text-decoration: none !important; cursor: pointer; border: none;
}
.btn:active { transform: scale(.97); }
.btn-primary {
  background: linear-gradient(135deg, #ffd452, var(--yellow) 45%, var(--yellow-2));
  color: #131313; box-shadow: 0 8px 28px rgba(255, 196, 0, .3);
}
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: skewX(-20deg);
  transition: left .6s var(--ease);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(255, 196, 0, .5); }
.btn-primary:hover::before { left: 130%; }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,.16); color: var(--text);
  background: rgba(255,255,255,.04); backdrop-filter: blur(6px);
}
.btn-outline:hover { border-color: var(--yellow); color: var(--yellow); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,.4); }
.btn-sm { padding: 9px 18px; font-size: 14px; border-radius: 10px; }
.btn svg { flex-shrink: 0; }

/* ---------- floating Telegram button ---------- */
.fab-tg {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ffd452, var(--yellow) 45%, var(--yellow-2));
  color: #131313; box-shadow: 0 10px 30px rgba(255, 196, 0, .4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.fab-tg:hover { transform: translateY(-4px) scale(1.06); box-shadow: 0 16px 44px rgba(255, 196, 0, .55); }
.fab-tg::before, .fab-tg::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(255, 196, 0, .55);
  animation: fab-ring 2.6s var(--ease) infinite;
}
.fab-tg::after { animation-delay: 1.3s; }
@keyframes fab-ring {
  0% { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.75); opacity: 0; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  padding: 100px 0 118px;
  min-height: 92vh;
  display: flex; align-items: center;
}
.hero-bg { position: absolute; inset: 0; z-index: -3; }
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 62%;
  animation: kenburns 26s ease-in-out infinite alternate;
  filter: saturate(1.08) contrast(1.04);
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.1) translateX(-1.6%); }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(100deg, rgba(8,8,11,.97) 0%, rgba(8,8,11,.87) 36%, rgba(8,8,11,.5) 70%, rgba(8,8,11,.72) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 30%),
    linear-gradient(to bottom, rgba(8,8,11,.7) 0%, transparent 22%);
}
.hero-lines {
  position: absolute; inset: 0; z-index: -1; pointer-events: none; opacity: .5;
  -webkit-mask-image: linear-gradient(110deg, transparent 30%, #000 75%);
  mask-image: linear-gradient(110deg, transparent 30%, #000 75%);
}
.hero-lines span {
  position: absolute; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,196,0,.85), transparent);
  animation: speed-line 3.4s linear infinite;
  opacity: 0;
}
.hero-lines span:nth-child(1) { top: 24%; width: 200px; animation-delay: 0s; }
.hero-lines span:nth-child(2) { top: 42%; width: 140px; animation-delay: 1.1s; }
.hero-lines span:nth-child(3) { top: 58%; width: 260px; animation-delay: 2s; }
.hero-lines span:nth-child(4) { top: 74%; width: 170px; animation-delay: .6s; }
@keyframes speed-line {
  0% { left: 110%; opacity: 0; }
  8% { opacity: .9; }
  60% { opacity: .6; }
  100% { left: -30%; opacity: 0; }
}
.hero-glow {
  position: absolute; z-index: -1; border-radius: 50%; filter: blur(100px); opacity: .5;
  animation: pulse-glow 7s ease-in-out infinite alternate;
  pointer-events: none;
}
.hero-glow.g1 { width: 480px; height: 480px; right: -100px; top: -120px; background: rgba(255, 196, 0, .16); }
.hero-glow.g2 { width: 380px; height: 380px; left: -130px; bottom: -130px; background: rgba(255, 150, 0, .09); animation-delay: 2.5s; }
@keyframes pulse-glow {
  from { opacity: .3; transform: scale(.92); }
  to   { opacity: .6; transform: scale(1.06); }
}
.hero-inner { max-width: 700px; position: relative; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 22px;
  padding: 8px 16px; border: 1px solid rgba(255,196,0,.35); border-radius: 100px;
  background: rgba(255,196,0,.07); backdrop-filter: blur(6px);
}
.hero .kicker::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: var(--yellow); box-shadow: 0 0 10px var(--yellow);
  animation: blink-dot 2s ease-in-out infinite;
}
@keyframes blink-dot { 50% { opacity: .35; } }
.hero h1 {
  font-size: clamp(30px, 4.6vw, 54px); margin-bottom: 22px;
  text-shadow: 0 6px 40px rgba(0,0,0,.65); line-height: 1.14;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #ffd452, var(--yellow), #ff9d00, var(--yellow), #ffd452);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s linear infinite;
}
@keyframes shimmer { to { background-position: 200% center; } }
.hero .lead { font-size: 18px; color: #d3d3de; margin-bottom: 32px; max-width: 560px; text-shadow: 0 2px 18px rgba(0,0,0,.75); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

/* hero stat tiles */
.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; max-width: 640px; }
.stat {
  background: rgba(16, 16, 23, .6);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.09); border-radius: 15px;
  padding: 14px 15px;
  transition: border-color .3s, transform .3s var(--ease), background .3s;
}
.stat:hover { border-color: rgba(255,196,0,.5); transform: translateY(-3px); background: rgba(20, 20, 28, .75); }
.stat b {
  display: block; font-family: var(--font-display); font-size: 19px; font-weight: 700;
  color: var(--yellow); margin-bottom: 3px; letter-spacing: .01em;
}
.stat small { font-size: 11.5px; color: #b9b9c6; line-height: 1.45; display: block; }
.scroll-hint {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.25); border-radius: 14px;
}
.scroll-hint::after {
  content: ''; position: absolute; left: 50%; top: 8px; width: 4px; height: 8px;
  background: var(--yellow); border-radius: 3px; transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}
@keyframes scroll-dot {
  0% { opacity: 0; top: 6px; }
  35% { opacity: 1; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- brands marquee ---------- */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: var(--bg-2); padding: 22px 0; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee { display: flex; align-items: center; width: max-content; animation: marquee 40s linear infinite; }
.marquee-wrap:hover .marquee { animation-play-state: paused; }
.marquee span {
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; padding: 0 30px; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px #4a4a5c;
  transition: color .35s, -webkit-text-stroke-color .35s;
}
.marquee span:hover { color: var(--yellow); -webkit-text-stroke-color: var(--yellow); }
.marquee i { color: #33333f; -webkit-text-stroke: 0; font-style: normal; font-size: 13px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section { padding: 96px 0; position: relative; overflow: hidden; }
section.alt { background: var(--bg-2); }
.section-head { text-align: center; max-width: 680px; margin: 0 auto 54px; position: relative; }
.section-head .kicker {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: var(--yellow); margin-bottom: 12px;
}
.section-head h2 { font-size: clamp(24px, 3.4vw, 36px); margin-bottom: 14px; }
.section-head h2 .accent { color: var(--yellow); }
.section-head p { color: var(--muted); font-size: 16.5px; }
/* giant ghost word behind section head */
.ghost-word {
  position: absolute; left: 50%; top: -34px; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(64px, 11vw, 130px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.055);
  white-space: nowrap; pointer-events: none; user-select: none; z-index: 0;
}
.section-head > *:not(.ghost-word) { position: relative; z-index: 1; }

/* ---------- categories ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; perspective: 1200px; }
.cat-card {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 30px 24px;
  transition: border-color .35s var(--ease), box-shadow .35s var(--ease), transform .2s ease-out;
  transform-style: preserve-3d; will-change: transform;
}
.cat-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(440px 200px at var(--mx, 50%) var(--my, -20%), rgba(255,196,0,.12), transparent 70%);
  opacity: 0; transition: opacity .4s;
}
.cat-card:hover { border-color: var(--border-glow); box-shadow: 0 22px 50px rgba(0,0,0,.5), 0 0 0 1px rgba(255,196,0,.12); }
.cat-card:hover::before { opacity: 1; }
.cat-card .icon {
  width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(255,196,0,.16), rgba(255,196,0,.07));
  border: 1px solid rgba(255,196,0,.22);
  color: var(--yellow); margin-bottom: 18px;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.cat-card:hover .icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 28px rgba(255, 196, 0, .3);
}
.cat-card h3 { margin-bottom: 8px; font-size: 15.5px; }
.cat-card p { font-size: 13.5px; color: var(--muted); }
.cat-card .arrow {
  position: absolute; right: 20px; top: 24px; color: #3d3d4c;
  transition: color .3s, transform .3s var(--ease);
}
.cat-card:hover .arrow { color: var(--yellow); transform: translate(3px, -3px); }

/* ---------- steps timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.steps::before {
  content: ''; position: absolute; top: 51px; left: 6%; right: 6%; height: 2px; z-index: 0;
  background: linear-gradient(90deg, transparent, var(--border) 12%, var(--border) 88%, transparent);
}
.step {
  position: relative; z-index: 1;
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px 24px; overflow: hidden;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.step:hover { border-color: var(--border-glow); transform: translateY(-6px); box-shadow: 0 20px 44px rgba(0,0,0,.45); }
.step .num {
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, #ffd452, var(--yellow) 50%, var(--yellow-2));
  color: #131313; font-weight: 700; font-size: 17px; margin-bottom: 18px;
  font-family: var(--font-display);
  box-shadow: 0 0 0 5px rgba(255,196,0,.08), 0 6px 18px rgba(255,196,0,.3);
  transition: box-shadow .5s;
}
.step:hover .num { box-shadow: 0 0 0 9px rgba(255,196,0,.14), 0 0 30px rgba(255,196,0,.45); }
.step .ghost {
  position: absolute; right: 8px; top: 0;
  font-family: var(--font-display); font-weight: 700; font-size: 88px;
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.05);
  line-height: 1.1; pointer-events: none; user-select: none;
}
.step h3 { font-size: 15.5px; margin-bottom: 9px; }
.step p { font-size: 14px; color: var(--muted); }

/* ---------- routes board ---------- */
.routes-panel {
  margin-top: 18px;
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: 24px;
  padding: 40px 40px 34px; position: relative; overflow: hidden;
}
.routes-panel::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(600px 260px at 85% 20%, rgba(255,196,0,.06), transparent 70%);
}
.routes-title { display: flex; align-items: center; gap: 10px; margin-bottom: 30px; }
.routes-title svg { color: var(--yellow); }
.routes-title h3 { font-size: 17px; }
.routes-svg { width: 100%; height: auto; display: block; }
.routes-svg .lane { stroke: #2b2b38; stroke-width: 2; fill: none; }
.routes-svg .lane-glow {
  stroke: var(--yellow); stroke-width: 2.5; fill: none; stroke-linecap: round;
  stroke-dasharray: 26 240;
  animation: dash-run 3.2s linear infinite;
  filter: drop-shadow(0 0 5px rgba(255,196,0,.7));
}
.routes-svg .l2 { animation-delay: 1.05s; }
.routes-svg .l3 { animation-delay: 2.1s; }
@keyframes dash-run { to { stroke-dashoffset: -266; } }
.routes-svg .node { fill: var(--card-2); stroke: #3a3a48; stroke-width: 2; }
.routes-svg .node-main { fill: var(--yellow); stroke: rgba(255,196,0,.35); stroke-width: 8; }
.routes-svg text {
  font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 600;
  fill: #b9b9c6; letter-spacing: .06em;
}
.routes-svg .t-main { fill: var(--yellow); font-weight: 700; font-size: 14px; }
.routes-svg .t-sub { fill: #6c6c7e; font-weight: 500; font-size: 10.5px; letter-spacing: .12em; }

/* ---------- delivery / guarantees ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.info-card {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 34px 30px;
  transition: border-color .35s, transform .35s var(--ease), box-shadow .35s;
}
.info-card:hover { border-color: var(--border-glow); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,.4); }
.info-card h3 { font-size: 16.5px; margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.info-card h3 svg { color: var(--yellow); filter: drop-shadow(0 0 8px rgba(255,196,0,.4)); flex-shrink: 0; }
.info-card ul { list-style: none; }
.info-card li { padding: 7px 0 7px 27px; position: relative; color: var(--muted); font-size: 14.5px; }
.info-card li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 14px; height: 8px; border-left: 2.5px solid var(--yellow); border-bottom: 2.5px solid var(--yellow);
  transform: rotate(-45deg) translateY(-2px);
}

/* ---------- photo split section ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split-media {
  position: relative; border-radius: 24px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 34px 80px rgba(0,0,0,.55);
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(340px 200px at 70% 30%, rgba(255,196,0,.08), transparent),
    linear-gradient(145deg, #191923, #0e0e14);
}
.split-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .8s var(--ease);
}
.split-media:hover img { transform: scale(1.06); }
.split-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,8,11,.6), transparent 55%);
  pointer-events: none;
}
.split-media .tag {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  background: rgba(8,8,11,.78); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,196,0,.4); color: var(--yellow);
  font-size: 13px; font-weight: 700; padding: 9px 15px; border-radius: 11px;
}
.split-media .corner {
  position: absolute; z-index: 2; width: 34px; height: 34px; pointer-events: none;
  border: 2.5px solid rgba(255,196,0,.7);
}
.split-media .corner.tl { top: 14px; left: 14px; border-right: 0; border-bottom: 0; border-radius: 10px 0 0 0; }
.split-media .corner.br { bottom: 14px; right: 14px; border-left: 0; border-top: 0; border-radius: 0 0 10px 0; }
.split-body .kicker {
  display: inline-block; color: var(--yellow); font-size: 12px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 12px;
}
.split-body h2 { font-size: clamp(22px, 3vw, 32px); margin-bottom: 16px; }
.split-body h2 .accent { color: var(--yellow); }
.split-body p { color: var(--muted); margin-bottom: 14px; }
.split-body ul { list-style: none; margin: 18px 0 28px; }
.split-body li { padding: 8px 0 8px 30px; position: relative; color: #c8c8d6; font-size: 15px; }
.split-body li svg { position: absolute; left: 0; top: 10px; color: var(--yellow); }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: linear-gradient(160deg, var(--card-2), var(--card));
  border: 1px solid var(--border); border-radius: 16px;
  margin-bottom: 12px; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq details[open] { border-color: var(--border-glow); box-shadow: 0 12px 32px rgba(0,0,0,.35); }
.faq summary {
  padding: 20px 24px; font-weight: 600; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: color .25s;
}
.faq summary:hover { color: var(--yellow); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; color: var(--yellow); font-size: 24px; font-weight: 400;
  transition: transform .35s var(--ease); line-height: 1;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .answer { padding: 0 24px 20px; color: var(--muted); font-size: 14.5px; }
.faq details[open] .answer { animation: faq-in .45s var(--ease); }
@keyframes faq-in {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- contact / CTA ---------- */
.cta-section { position: relative; overflow: hidden; padding: 110px 0; }
.cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.cta-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse 70% 90% at 50% 50%, rgba(8,8,11,.55), rgba(8,8,11,.95)),
    linear-gradient(to bottom, var(--bg) 0%, transparent 20%, transparent 80%, var(--bg-2) 100%);
}
.contact-card {
  max-width: 720px; margin: 0 auto; text-align: center;
  background: rgba(15, 15, 22, .74);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 196, 0, .35); border-radius: 26px; padding: 56px 40px;
  box-shadow: 0 36px 90px rgba(0,0,0,.55), inset 0 1px 0 rgba(255,255,255,.07);
  position: relative; overflow: hidden;
}
.contact-card::before {
  content: ''; position: absolute; top: -70px; left: 50%; transform: translateX(-50%);
  width: 300px; height: 140px; border-radius: 50%;
  background: rgba(255,196,0,.14); filter: blur(60px); pointer-events: none;
}
.contact-card h2 { font-size: clamp(22px, 3.2vw, 30px); margin-bottom: 14px; }
.contact-card p { color: #c9c9d6; margin-bottom: 30px; max-width: 480px; margin-left: auto; margin-right: auto; }
.contact-note { font-size: 13px; color: var(--muted); margin-top: 20px; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--border); padding: 46px 0 30px; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 32px; margin-bottom: 30px; }
.site-footer h4 { font-size: 13px; font-family: var(--font-display); font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--text); margin-bottom: 15px; }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--muted); font-size: 14px; transition: color .25s; }
.site-footer a:hover { color: var(--yellow); text-decoration: none; }
.footer-about { color: var(--muted); font-size: 14px; max-width: 330px; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 20px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  color: var(--muted); font-size: 13px;
}

/* ---------- legal pages ---------- */
.legal { max-width: 820px; margin: 0 auto; padding: 64px 22px; }
.legal h1 { font-size: clamp(24px, 3.6vw, 34px); margin-bottom: 10px; }
.legal .updated { color: var(--muted); font-size: 14px; margin-bottom: 36px; }
.legal h2 { font-size: 19px; margin: 34px 0 12px; }
.legal p, .legal li { color: var(--muted); font-size: 15px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal li { margin-bottom: 6px; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .js .reveal, .js .reveal-l, .js .reveal-r { opacity: 1; transform: none; }
  .grain { display: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 960px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .main-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .hero { min-height: 0; padding: 88px 0 92px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .routes-panel { padding: 28px 22px 24px; }
}
@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { padding: 66px 0 76px; }
  .header-cta { display: none; }
  .contact-card { padding: 42px 24px; }
  .ghost-word { display: none; }
  .fab-tg { width: 52px; height: 52px; right: 16px; bottom: 16px; }
}
