/* ──────────────────────────────────────────────────────────────
   Guanxi · Sky-glass premium · v2
   ────────────────────────────────────────────────────────────── */
:root {
  /* Sky */
  --sky-0:#F5F8FD; --sky-50:#EAF1FA; --sky-100:#DDE7F4; --sky-200:#C6D5EB;
  --sky-300:#9DB4D5; --sky-400:#6E8AB7; --sky-500:#4A6594; --sky-700:#1F3A6B; --sky-900:#0E1E3D;

  /* Ink */
  --ink:#0E1E3D; --ink-2:#1F3A6B; --ink-muted:#5C708F; --ink-dim:#8A9CB8;

  /* Accent */
  --accent:#4A78F0; --accent-soft:#7898F4; --accent-deep:#2F5BD1;
  --accent-glow: rgba(74,120,240,0.40);

  /* Gold (premium accent) */
  --gold:#E8B86E; --gold-soft:#F3D6A0; --gold-deep:#B8842F;

  /* Marketplaces */
  --wb:#CB11AB; --ozon:#005BFF;

  /* Glass */
  --glass-bg:rgba(255,255,255,0.62);
  --glass-bg-strong:rgba(255,255,255,0.82);
  --glass-blur:22px; --glass-saturate:160%;
  --glass-border:rgba(255,255,255,1);
  --glass-shadow:
    0 1px 0 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(255,255,255,0.4),
    0 12px 28px -10px rgba(31,58,107,0.18),
    0 28px 60px -28px rgba(31,58,107,0.25);
  --glass-shadow-lift:
    0 1px 0 0 rgba(255,255,255,1) inset,
    0 0 0 1px rgba(255,255,255,0.6),
    0 18px 36px -14px rgba(31,58,107,0.22),
    0 36px 80px -32px rgba(31,58,107,0.35),
    0 0 60px -10px var(--accent-glow);

  /* Radius */
  --r-xs:10px; --r-sm:14px; --r-md:20px; --r-lg:24px; --r-xl:28px; --r-2xl:36px;

  /* Type */
  --font-display:"Inter", system-ui, sans-serif;
  --font-body:"Inter", system-ui, sans-serif;
  --font-mono:"JetBrains Mono", ui-monospace, monospace;

  --container:1280px;
  --gutter:28px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin:0; padding:0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { max-width:100%; display:block; }
button { font:inherit; cursor:pointer; border:0; background:0; color:inherit; }
a { color:inherit; text-decoration:none; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 800px at 12% -10%, rgba(120,152,244,0.18), transparent 60%),
    radial-gradient(900px 700px at 100% 8%, rgba(157,180,213,0.22), transparent 55%),
    linear-gradient(180deg, var(--sky-0) 0%, var(--sky-50) 60%, var(--sky-100) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

/* ── Background atmospherics ───────────────────────────────── */
.blob-field { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%;
  filter: blur(110px);
  will-change: transform;
  opacity: 0.45;
}
.blob.b1 {
  width: 720px; height: 720px; left: -180px; top: -120px;
  background: radial-gradient(circle, rgba(120,152,244,0.65), rgba(120,152,244,0) 65%);
  animation: blob1 56s ease-in-out infinite alternate;
}
.blob.b2 {
  width: 820px; height: 820px; right: -200px; top: 30%;
  background: radial-gradient(circle, rgba(157,180,213,0.7), rgba(157,180,213,0) 60%);
  animation: blob2 48s ease-in-out infinite alternate;
}
.blob.b3 {
  width: 600px; height: 600px; left: 30%; bottom: -180px;
  background: radial-gradient(circle, rgba(74,120,240,0.4), rgba(74,120,240,0) 60%);
  animation: blob1 52s ease-in-out infinite alternate-reverse;
  opacity: 0.35;
}
@keyframes blob1 {
  0%   { transform: translate3d(0,0,0) scale(0.92); }
  50%  { transform: translate3d(120px,80px,0) scale(1.08); }
  100% { transform: translate3d(-60px,160px,0) scale(1.15); }
}
@keyframes blob2 {
  0%   { transform: translate3d(0,0,0) scale(1.0); }
  50%  { transform: translate3d(-140px,-60px,0) scale(1.12); }
  100% { transform: translate3d(80px,-160px,0) scale(0.95); }
}

/* Light beam over hero */
.light-beam {
  position: absolute;
  top: -10%; left: -10%;
  width: 60%; height: 140%;
  background: linear-gradient(115deg,
    transparent 30%,
    rgba(255,255,255,0.45) 45%,
    rgba(255,255,255,0.18) 52%,
    transparent 65%);
  transform: rotate(-12deg);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.6;
  mix-blend-mode: screen;
  z-index: 0;
}
.light-beam.beam-2 {
  top: 20%; left: 30%;
  width: 40%; height: 80%;
  opacity: 0.35;
  filter: blur(40px);
}

/* Layout */
.page { position: relative; z-index: 1; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
section { position: relative; padding: 110px 0; }
section:first-of-type { padding-top: 30px; }

/* ── Glass surface ─────────────────────────────────────────── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(var(--glass-saturate));
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  box-shadow: var(--glass-shadow);
}
.glass-hover {
  transition: transform .55s cubic-bezier(.2,.7,.2,1), box-shadow .55s ease, background .35s ease;
}
.glass-hover:hover {
  transform: translateY(-4px);
  box-shadow: var(--glass-shadow-lift);
  background: var(--glass-bg-strong);
}

/* ── Header (sticky) ──────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 80;
  background: rgba(245,248,253,0.55);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  transition: backdrop-filter .3s, background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(245,248,253,0.78);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom-color: rgba(31,58,107,0.06);
  box-shadow: 0 10px 30px -16px rgba(31,58,107,0.12);
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: flex; align-items: center; gap: 28px;
}
.brand-logo {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 700; letter-spacing: -0.01em;
  text-decoration: none; line-height: 1;
}
.brand-logo .mark {
  flex: 0 0 auto;
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--sky-100);
  color: var(--accent-deep);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 1px rgba(74,120,240,0.18), 0 2px 8px -4px rgba(74,120,240,0.25);
}
.brand-logo .name {
  display: flex; flex-direction: column;
  line-height: 1.1; gap: 2px;
}
.brand-logo .name .ru {
  font-size: 17px; font-weight: 700; color: var(--ink);
}
.brand-logo .name .cn {
  font-family: var(--font-mono); font-size: 10px;
  color: var(--ink-muted); letter-spacing: 0.08em;
}

.header-nav { display: flex; gap: 22px; margin-left: 14px; font-size: 14px; color: var(--ink-2); }
.header-nav a { transition: color .2s; }
.header-nav a:hover { color: var(--accent-deep); }
.header-right { margin-left: auto; display: flex; align-items: center; gap: 18px; }
.header-phone { font-family: var(--font-mono); font-size: 13px; color: var(--ink); }
.header-email { font-family: var(--font-mono); font-size: 13px; color: var(--ink-muted); transition: color .2s; }
.header-email:hover { color: var(--accent-deep); }
@media (max-width: 1100px) { .header-email { display: none; } }
.btn-header {
  padding: 11px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; font-weight: 600; font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 6px 18px -6px var(--accent-glow);
  transition: transform .2s;
  position: relative; overflow: hidden;
}
.btn-header:hover { transform: translateY(-1px); }
.burger { display: none; width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.6); border: 1px solid var(--glass-border); position: relative; }
.burger::before, .burger::after {
  content: ""; position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink-2); border-radius: 2px;
  transition: transform .25s;
}
.burger::before { top: 14px; }
.burger::after { bottom: 14px; }
.burger.open::before { transform: translateY(5px) rotate(45deg); }
.burger.open::after  { transform: translateY(-5px) rotate(-45deg); }

@media (max-width: 1080px) {
  .header-nav { display: none; }
  .burger { display: block; }
  .header-phone { display: none; }
}

.mobile-menu {
  position: fixed; top: 70px; left: 14px; right: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  padding: 20px;
  z-index: 79;
  display: none;
  flex-direction: column; gap: 6px;
  box-shadow: 0 20px 50px -20px rgba(31,58,107,0.25);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 14px; border-radius: 10px; font-weight: 500; font-size: 16px;
  color: var(--ink);
}
.mobile-menu a:hover { background: rgba(74,120,240,0.08); color: var(--accent-deep); }

/* ── Typography ────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-mono); font-size: 12px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-deep);
  display: inline-flex; align-items: center; gap: 8px;
}
.eyebrow::before { content: ""; width: 18px; height: 1px; background: var(--accent); }
.eyebrow.gold { color: var(--gold-deep); }
.eyebrow.gold::before { background: var(--gold); }

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--sky-900); margin: 0; letter-spacing: -0.02em; line-height: 1.07; text-wrap: balance; }
h1 { font-weight: 800; font-size: clamp(40px, 6.2vw, 76px); }
h2 { font-weight: 700; font-size: clamp(30px, 4.2vw, 50px); }
h3 { font-weight: 600; font-size: clamp(19px, 1.6vw, 24px); letter-spacing: -0.01em; line-height: 1.25; }
.lead { font-size: clamp(17px, 1.5vw, 22px); line-height: 1.55; color: var(--ink-muted); max-width: 60ch; text-wrap: pretty; }
.mono { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em; color: var(--ink-muted); }

/* Light-effect on key words */
.lighteffect, .lighteffect-accent {
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: shineText 8s ease-in-out infinite;
  display: inline;
}
.lighteffect {
  background-image: linear-gradient(110deg, var(--sky-900) 20%, var(--accent-deep) 45%, var(--sky-900) 65%);
}
.lighteffect-accent {
  background-image: linear-gradient(110deg, var(--accent-deep) 20%, var(--gold-deep) 45%, var(--accent-deep) 65%);
}
@keyframes shineText {
  0%, 100% { background-position: 200% 0; }
  50%      { background-position: 0 0; }
}

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin-top: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 600; font-size: 15px;
  position: relative; overflow: hidden;
  /* Magnetic / hover transform applied via JS — keep CSS transition gentle */
  transition: box-shadow .35s ease, background .25s ease;
  will-change: transform;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 10px 28px -10px var(--accent-glow),
    0 2px 6px -2px rgba(47,91,209,0.4);
}
.btn-primary::after {
  content: ""; position: absolute;
  top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent, rgba(255,255,255,0.45), transparent);
  transform: skewX(-20deg);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 60% { left: -120%; }
  100%    { left: 220%; }
}
.btn-ghost {
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border);
  color: var(--ink-2);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.78); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 10px 28px -10px rgba(184,132,47,0.45);
}
.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translateX(4px); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero { padding-top: 140px; padding-bottom: 70px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  width: 100%;
  position: relative; z-index: 2;
}
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { padding-top: 150px; }
}
.market-chips { display: flex; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.85);
  font-size: 13px; font-weight: 600;
  box-shadow: 0 4px 14px -8px rgba(31,58,107,0.2);
  backdrop-filter: blur(10px);
}
.chip .dot { width: 10px; height: 10px; border-radius: 999px; }
.chip.wb   .dot { background: var(--wb); }
.chip.ozon .dot { background: var(--ozon); }
.chip.biz  .dot { background: var(--gold); }

.hero h1 { margin-top: 8px; }
.hero .lead { margin-top: 24px; }
.cta-row { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }

.trust-row {
  margin-top: 48px;
  display: flex; gap: 16px 28px; flex-wrap: wrap;
  border-top: 1px solid rgba(31,58,107,0.08);
  padding-top: 22px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.trust-row span { color: var(--ink); font-weight: 500; }
.trust-row .sep { color: var(--ink-dim); }

/* Calculator (right column) */
.calc {
  position: relative;
  padding: 32px;
  border-radius: var(--r-2xl);
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.9) inset,
    0 0 0 1px rgba(31,58,107,0.04),
    0 30px 70px -24px rgba(31,58,107,0.28),
    0 0 60px -10px var(--accent-glow);
}
.calc .calc-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 6px; }
.calc h3 { font-size: 20px; }
.calc .calc-sub { font-family: var(--font-mono); font-size: 11px; color: var(--accent-deep); letter-spacing: 0.1em; text-transform: uppercase; }
.calc .calc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-top: 24px;
}
.calc .field-full { grid-column: 1 / -1; }
.calc label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 6px;
}
.calc select, .calc input {
  width: 100%;
  font: inherit;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(31,58,107,0.12);
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.calc select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235C708F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 34px; }
.calc input:focus, .calc select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 4px rgba(74,120,240,0.15);
}
.calc .calc-cta {
  margin-top: 22px;
  width: 100%;
  justify-content: center;
}
.calc-result {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(74,120,240,0.08), rgba(120,152,244,0.04));
  border: 1px solid rgba(74,120,240,0.18);
  display: flex; flex-wrap: wrap; gap: 18px 28px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s, transform .4s;
}
.calc-result.shown { opacity: 1; transform: translateY(0); }
.calc-result .pair { display: flex; flex-direction: column; gap: 4px; }
.calc-result .k { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); }
.calc-result .v { font-family: var(--font-mono); font-size: 18px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; }
.calc-result .v.accent { color: var(--accent-deep); }
.calc-note { margin-top: 14px; font-size: 12px; color: var(--ink-muted); }

/* ── Section 1.5 · Calculator (own section) ────────────────── */
#calc-section { padding-top: 70px; padding-bottom: 90px; }
#calc-section .section-head {
  margin-left: auto; margin-right: auto;
  text-align: center;
  max-width: 720px;
}
#calc-section .section-head .eyebrow { justify-content: center; }
#calc-section .section-head .lead { margin-left: auto; margin-right: auto; }
#calc-section .calc {
  max-width: 880px;
  margin: 0 auto;
  padding: 40px;
}
#calc-section .calc h3 { font-size: 22px; }
#calc-section .calc .calc-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
#calc-section .calc .field-full { grid-column: auto; }
#calc-section .calc .calc-cta { max-width: 320px; margin-left: auto; margin-right: auto; }
@media (max-width: 760px) {
  #calc-section { padding-top: 50px; padding-bottom: 70px; }
  #calc-section .calc { padding: 28px; }
  #calc-section .calc .calc-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  #calc-section .calc .calc-grid { grid-template-columns: 1fr; }
}

/* ── Section 2 · Transports (5 cards) ─────────────────────── */
.transports-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
@media (max-width: 1200px) { .transports-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .transports-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px)  { .transports-grid { grid-template-columns: 1fr; } }

.transport-card {
  padding: 24px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  position: relative;
  will-change: transform;
}
.transport-card .ico-circle {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(120,152,244,0.18), rgba(74,120,240,0.08));
  border: 1px solid rgba(74,120,240,0.18);
  display: grid; place-items: center;
  color: var(--accent-deep);
}
.transport-card .t-name { font-weight: 700; font-size: 18px; color: var(--ink); }
.transport-card .t-meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); display: flex; gap: 10px; flex-wrap: wrap; }
.transport-card .t-meta b { color: var(--ink); font-weight: 500; }
.transport-card .t-desc { font-size: 14px; color: var(--ink-muted); margin: 0; flex: 1; }
.transport-card .t-price {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gold-deep);
  font-weight: 600;
}

/* ── Section 3 · Services (12) ────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 1200px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 880px)  { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 22px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 12px;
  min-height: 180px;
  cursor: pointer;
  position: relative;
  will-change: transform;
}
.service-card .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
}
.service-card .ico-box {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(232,184,110,0.22), rgba(232,184,110,0.06));
  border: 1px solid rgba(232,184,110,0.3);
  display: grid; place-items: center;
  color: var(--gold-deep);
}
.service-card h4 { font-size: 16px; color: var(--ink); font-weight: 700; line-height: 1.25; }
.service-card p { font-size: 13px; color: var(--ink-muted); margin: 0; line-height: 1.5; }

/* ── Section 4 · USP ──────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .why-grid { grid-template-columns: 1fr; } }
.why-card {
  position: relative;
  padding: 32px;
  border-radius: var(--r-xl);
  min-height: 360px;
  display: flex; flex-direction: column; gap: 20px;
  will-change: transform;
}
.why-card .icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(120,152,244,0.18), rgba(74,120,240,0.08));
  border: 1px solid rgba(74,120,240,0.18);
  display: grid; place-items: center;
  color: var(--accent-deep);
}
.why-card h3 { color: var(--sky-900); font-size: 22px; }
.why-card p { color: var(--ink-muted); margin: 0; }
.why-card .meta {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--accent-deep);
}

/* ── Section 5 · Numbers ──────────────────────────────────── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .numbers-grid { grid-template-columns: repeat(2, 1fr); } }
.num-card {
  padding: 32px 28px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 12px;
}
.num-card .big {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(44px, 5vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--sky-900);
  display: flex; align-items: baseline; gap: 4px;
}
.num-card .big .suffix { font-size: 0.4em; color: var(--accent-deep); font-weight: 700; }
.num-card .big.accent { color: var(--accent-deep); }
.num-card .big.gold { color: var(--gold-deep); }
.num-card .label {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-muted);
}
.num-card .detail { font-size: 14px; color: var(--ink-2); }

/* ── Section 6 · Process (9 steps) ────────────────────────── */
.process-card { padding: 36px; border-radius: var(--r-2xl); }
.process-rail {
  margin-top: 28px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: thin;
}
.process-rail::-webkit-scrollbar { height: 6px; }
.process-rail::-webkit-scrollbar-thumb { background: rgba(31,58,107,0.18); border-radius: 999px; }
.process-track {
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 210px;
  gap: 18px;
  padding: 24px 4px 8px;
}
.process-step {
  position: relative;
  padding: 18px;
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 10px;
  backdrop-filter: blur(12px);
  z-index: 1;
}
.process-step .pnum {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  box-shadow: 0 4px 12px -4px var(--accent-glow);
}
.process-step .pname { font-weight: 600; font-size: 15px; color: var(--ink); line-height: 1.25; }
.process-step .pmeta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); }

/* ── Section 7 · Tariff table ─────────────────────────────── */
.tariff-card { padding: 24px; border-radius: var(--r-2xl); }
.tariff-scroll { overflow-x: auto; }
.tariff {
  width: 100%; min-width: 780px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
.tariff thead th {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-align: left;
  padding: 18px 16px;
  background: rgba(255,255,255,0.35);
  border-bottom: 1px solid rgba(31,58,107,0.08);
  font-weight: 500;
}
.tariff thead th:first-child { border-top-left-radius: var(--r-md); }
.tariff thead th:last-child  { border-top-right-radius: var(--r-md); }
.tariff tbody td {
  padding: 16px;
  border-bottom: 1px solid rgba(31,58,107,0.06);
  background: rgba(255,255,255,0.18);
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: 13px;
  white-space: nowrap;
}
.tariff tbody tr:nth-child(even) td { background: rgba(255,255,255,0.32); }
.tariff tbody td:first-child {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--sky-900);
  white-space: normal;
  min-width: 180px;
}
.tariff tbody td.gold { color: var(--gold-deep); font-weight: 600; }
.tariff tbody td .dim { color: var(--ink-dim); font-size: 11px; }
.tariff-note {
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-muted);
  padding: 14px 18px;
  background: rgba(74,120,240,0.06);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--accent);
}

/* ── Section 8 · Geo ──────────────────────────────────────── */
.geo-card { padding: 36px; border-radius: var(--r-2xl); }
.geo-map {
  position: relative;
  width: 100%;
  aspect-ratio: 1100 / 480;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,255,255,0.7);
  overflow: hidden;
}
.geo-map svg { width: 100%; height: 100%; }
.geo-map .country { fill: rgba(31,58,107,0.06); stroke: rgba(31,58,107,0.18); stroke-width: 1; }
.geo-map .country.active { fill: rgba(74,120,240,0.1); stroke: rgba(74,120,240,0.4); }
.geo-map .route { fill: none; stroke: var(--accent); stroke-width: 1.5; stroke-dasharray: 4 6; opacity: 0.65; }
.geo-map .pulse { fill: var(--accent); }
.geo-map .pulse.gold { fill: var(--gold); }

.geo-pin { position: absolute; transform: translate(-50%, -50%); }
.geo-pin .dot {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(74,120,240,0.2), 0 4px 12px var(--accent-glow);
}
.geo-pin .dot.moscow {
  background: var(--gold-deep);
  box-shadow: 0 0 0 6px rgba(232,184,110,0.28), 0 4px 14px rgba(184,132,47,0.45);
  width: 16px; height: 16px;
}
.geo-pin::after {
  content: ""; position: absolute;
  top: 50%; left: 50%; width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%,-50%);
  animation: ping 2.4s ease-out infinite;
  opacity: 0;
}
.geo-pin.moscow::after { background: var(--gold-deep); }
@keyframes ping {
  0%   { transform: translate(-50%,-50%) scale(0.6); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(2.4); opacity: 0; }
}
.geo-pin .label {
  position: absolute; top: 18px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono); font-size: 11px;
  color: var(--ink);
  background: rgba(255,255,255,0.92);
  padding: 3px 8px; border-radius: 6px; white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 12px -4px rgba(31,58,107,0.15);
}

.geo-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 28px;
}
@media (max-width: 1080px) { .geo-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .geo-cards { grid-template-columns: 1fr; } }
.geo-mini {
  padding: 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.85);
  display: flex; flex-direction: column; gap: 6px;
}
.geo-mini .city { font-weight: 700; font-size: 16px; color: var(--sky-900); }
.geo-mini .role { font-family: var(--font-mono); font-size: 10px; color: var(--accent-deep); letter-spacing: 0.08em; text-transform: uppercase; }
.geo-mini p { margin: 0; font-size: 13px; color: var(--ink-muted); }
.geo-mini.moscow {
  background: linear-gradient(135deg, rgba(232,184,110,0.16), rgba(232,184,110,0.04));
  border-color: rgba(232,184,110,0.3);
}
.geo-mini.moscow .role { color: var(--gold-deep); }

/* ── Section 9 · Cases (6) ────────────────────────────────── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .cases-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .cases-grid { grid-template-columns: 1fr; } }

.case-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  will-change: transform;
}
.case-card .photo {
  aspect-ratio: 4/3;
  background:
    repeating-linear-gradient(135deg, rgba(31,58,107,0.05) 0 14px, rgba(31,58,107,0.01) 14px 28px),
    linear-gradient(135deg, var(--sky-100), var(--sky-200));
  position: relative;
  display: flex; align-items: end;
  padding: 16px;
}
.case-card .photo .ph-label {
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-2);
  background: rgba(255,255,255,0.7); padding: 4px 8px; border-radius: 6px;
}
.case-card .photo .marker {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.92); color: var(--ink);
}
.case-card .photo .marker.gold { background: var(--gold); color: #fff; }
.case-card .body { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.case-card .body h3 { font-size: 18px; color: var(--sky-900); }
.case-card .body .meta-row { display: flex; gap: 8px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); }
.case-card .body .meta-row span { padding: 3px 8px; background: rgba(31,58,107,0.05); border-radius: 6px; }
.case-card .body p { margin: 0; color: var(--ink-muted); font-size: 14px; }

/* ── Section 10 · Blog ────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 1080px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .blog-grid { grid-template-columns: 1fr; } }

.blog-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex; flex-direction: column;
  will-change: transform;
}
.blog-card .cover {
  aspect-ratio: 16/9;
  background:
    repeating-linear-gradient(135deg, rgba(31,58,107,0.05) 0 14px, rgba(31,58,107,0.01) 14px 28px),
    linear-gradient(135deg, var(--sky-100), var(--sky-200));
  position: relative;
}
.blog-card .cover .cat {
  position: absolute; top: 14px; left: 14px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(255,255,255,0.92); color: var(--accent-deep);
}
.blog-card .cover .cat.guide  { color: var(--accent-deep); }
.blog-card .cover .cat.case   { color: var(--gold-deep); background: rgba(255,255,255,0.95); }
.blog-card .cover .cat.analytics { color: var(--sky-700); }
.blog-card .cover .cat.tip    { color: #2ea566; }
.blog-card .body { padding: 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card .body h3 { font-size: 17px; line-height: 1.3; color: var(--sky-900); }
.blog-card .body p { font-size: 13px; color: var(--ink-muted); margin: 0; }
.blog-card .body .meta { margin-top: auto; font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim); display: flex; gap: 14px; padding-top: 8px; }

.blog-cta-wrap { display: flex; justify-content: center; margin-top: 36px; }

/* ── Section 11 · Testimonials ────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 1080px) { .testimonials-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial {
  padding: 26px;
  border-radius: var(--r-xl);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testimonial p {
  margin: 0; font-size: 15px; color: var(--ink); line-height: 1.55;
  text-wrap: pretty;
}
.testimonial p::before { content: "«"; color: var(--accent); font-size: 22px; margin-right: 2px; vertical-align: -2px; }
.testimonial p::after  { content: "»"; color: var(--accent); font-size: 22px; margin-left: 2px; vertical-align: -2px; }
.testimonial .who { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.testimonial .avatar {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--sky-200), var(--sky-300));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 700; font-size: 16px;
}
.testimonial .info { display: flex; flex-direction: column; gap: 2px; }
.testimonial .info b { font-size: 14px; color: var(--sky-900); }
.testimonial .info span { font-family: var(--font-mono); font-size: 11px; color: var(--ink-muted); }

/* ── Section 12 · FAQ ─────────────────────────────────────── */
.faq-list {
  display: flex; flex-direction: column; gap: 10px;
}
.faq-item {
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--glass-bg);
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
  border: 1px solid var(--glass-border);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px;
  text-align: left;
  font-weight: 600; font-size: 16px;
  color: var(--sky-900);
  transition: background .2s;
}
.faq-q:hover { background: rgba(255,255,255,0.3); }
.faq-q .chev {
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(74,120,240,0.1);
  color: var(--accent-deep);
  display: grid; place-items: center;
  flex: 0 0 auto;
  transition: transform .3s, background .2s;
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--accent); color: #fff; }
.faq-a {
  overflow: hidden;
  height: 0;
  transition: height .35s cubic-bezier(.4,0,.2,1);
}
.faq-a-inner {
  padding: 4px 26px 24px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
  max-width: 800px;
}

/* ── Section 13 · Partners ────────────────────────────────── */
.partners-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
@media (max-width: 1080px) { .partners-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px)  { .partners-row { grid-template-columns: repeat(2, 1fr); } }
.partner-card {
  padding: 22px 18px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  min-height: 96px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: 0.02em;
  text-align: center;
  transition: transform .3s, box-shadow .3s, background .25s;
}
.partner-card:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.8);
  box-shadow: 0 10px 28px -14px rgba(31,58,107,0.2);
}

/* ── Section 14 · Final CTA / Form ────────────────────────── */
.final-card { padding: 56px; border-radius: var(--r-2xl); }
@media (max-width: 720px) { .final-card { padding: 36px 24px; } }
.form-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) { .form-grid { grid-template-columns: 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input, .field textarea, .field select {
  font: inherit;
  padding: 14px 16px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(31,58,107,0.12);
  background: rgba(255,255,255,0.7);
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 0 4px rgba(74,120,240,0.15);
}
.form-actions { margin-top: 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.form-actions .agreement { font-size: 12px; color: var(--ink-muted); max-width: 360px; }
.checkbox {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--ink-muted);
  cursor: pointer; user-select: none;
}
.checkbox input { width: 16px; height: 16px; accent-color: var(--accent); }

.tg-cta {
  margin-top: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 22px 28px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border);
}
.tg-cta .left { display: flex; align-items: center; gap: 16px; }
.tg-cta .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, #2AABEE, #229ED9);
  color: #fff;
  display: grid; place-items: center;
}
.tg-cta .txt b { font-size: 16px; color: var(--sky-900); }
.tg-cta .txt div { font-size: 13px; color: var(--ink-muted); }
@media (max-width: 640px) { .tg-cta { flex-direction: column; align-items: flex-start; } }

/* ── Floating contacts ────────────────────────────────────── */
.fab-cluster {
  position: fixed;
  right: 22px; bottom: 22px;
  z-index: 70;
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.fab-cluster.shown { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 24px -10px rgba(31,58,107,0.25);
  display: grid; place-items: center;
  color: var(--ink-2);
  transition: transform .25s, background .25s, color .25s;
}
.fab:hover { transform: translateY(-2px); }
.fab.tg:hover { background: linear-gradient(135deg, #2AABEE, #229ED9); color: #fff; }
.fab.wa:hover { background: linear-gradient(135deg, #25D366, #128C7E); color: #fff; }
.fab.call:hover { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); color: #fff; }
@media (max-width: 560px) {
  .fab-cluster { right: 14px; bottom: 14px; }
  .fab { width: 46px; height: 46px; border-radius: 14px; }
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  padding: 64px 0 48px;
  border-top: 1px solid rgba(31,58,107,0.08);
  position: relative; z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 1080px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-brand .logo { display: flex; align-items: center; gap: 12px; font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.footer-brand .logo .mark {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  color: #fff; display: grid; place-items: center; font-family: var(--font-mono); font-weight: 700; font-size: 16px;
  box-shadow: 0 4px 14px -4px var(--accent-glow);
}
.footer-brand p { color: var(--ink-muted); font-size: 14px; max-width: 38ch; margin: 0; }
.footer-col h4 { font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-muted); margin: 0 0 14px; font-weight: 500; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col li { font-size: 14px; }
.footer-col a:hover { color: var(--accent-deep); }
.footer-social { display: flex; gap: 8px; margin-top: 6px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,0.55);
  border: 1px solid var(--glass-border);
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(31,58,107,0.06);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; color: var(--ink-dim);
}

/* ── Reveal hooks ─────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); filter: blur(8px); }

/* ── Focus ────────────────────────────────────────────────── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }

/* ── Reduced motion ───────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; filter: none !important; }
  .light-beam, .blob { display: none !important; }
}

/* ── Tweaks panel ─────────────────────────────────────────── */
.tweaks-panel {
  position: fixed; right: 20px; bottom: 90px;
  z-index: 100;
  width: 290px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(14,30,61,0.92);
  backdrop-filter: blur(14px);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 20px 60px -20px rgba(14,30,61,0.6);
  border: 1px solid rgba(255,255,255,0.1);
  display: none;
}
.tweaks-panel.visible { display: block; }
.tweaks-panel h5 {
  margin: 0 0 14px; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-mono); font-weight: 500;
}
.tweaks-panel .tw-row { margin-bottom: 14px; }
.tweaks-panel label { display: block; font-size: 11px; color: rgba(255,255,255,0.65); margin-bottom: 6px; font-family: var(--font-mono); }
.tweaks-panel .swatches { display: flex; gap: 8px; }
.tweaks-panel .swatch {
  width: 28px; height: 28px; border-radius: 8px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .2s;
}
.tweaks-panel .swatch:hover { transform: scale(1.08); }
.tweaks-panel .swatch.active { border-color: #fff; }
.tweaks-panel .close {
  position: absolute; top: 10px; right: 10px;
  width: 24px; height: 24px; border-radius: 6px;
  background: rgba(255,255,255,0.1); color: #fff;
  display: grid; place-items: center;
}
.tweaks-panel .toggle { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.tweaks-panel .switch {
  width: 36px; height: 20px; background: rgba(255,255,255,0.2);
  border-radius: 999px; position: relative; cursor: pointer; transition: background .2s;
}
.tweaks-panel .switch::after {
  content: ""; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; background: #fff; border-radius: 999px;
  transition: transform .2s;
}
.tweaks-panel .switch.on { background: var(--accent); }
.tweaks-panel .switch.on::after { transform: translateX(16px); }

/* ══════════════════════════════════════════════════════════
   V3 ADDITIONS — premium upgrades
   ══════════════════════════════════════════════════════════ */

/* ── Hero stage composition ──────────────────────────────── */
.hero-stage {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1400px;
  transform-style: preserve-3d;
}
@media (max-width: 1080px) {
  .hero-stage { min-height: 480px; padding: 40px 0 20px; }
}
@media (max-width: 640px) {
  .hero-stage { min-height: 380px; }
}

/* Art wrapper — positioning context for medallion + floating cards */
.hs-art {
  position: relative;
  width: 100%;
  max-width: 540px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: visible;
}
@media (max-width: 1080px) {
  .hs-art { max-width: 460px; }
}
@media (max-width: 640px) {
  .hs-art { max-width: 320px; }
}

/* ── 关系 Medallion: gold rotating ring + static glyph ─── */
.hs-medallion {
  position: absolute;
  top: 50%; left: 50%;
  width: 290px; height: 290px;
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}
@media (max-width: 1080px) { .hs-medallion { width: 250px; height: 250px; } }
@media (max-width: 640px)  { .hs-medallion { width: 200px; height: 200px; } }

.hs-medallion-ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 30%, rgba(243,214,160,0.85) 0%, rgba(232,184,110,0.55) 18%, rgba(232,184,110,0.18) 45%, rgba(232,184,110,0.04) 65%, transparent 80%),
    radial-gradient(circle at 70% 70%, rgba(74,120,240,0.18) 0%, transparent 55%);
  filter: drop-shadow(0 0 60px rgba(232,184,110,0.45));
  animation: hsMedSpin 70s linear infinite, hsMedPulse 4s ease-in-out infinite;
}
.hs-medallion-orbit {
  position: absolute; inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(184,132,47,0.32);
  animation: hsMedSpin 110s linear infinite reverse;
}
.hs-medallion-glyph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 130px;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: -0.06em;
  line-height: 1;
  text-shadow: 0 2px 30px rgba(184,132,47,0.35);
  user-select: none;
}
@media (max-width: 1080px) { .hs-medallion-glyph { font-size: 110px; } }
@media (max-width: 640px)  { .hs-medallion-glyph { font-size: 88px; } }

@keyframes hsMedSpin { to { transform: rotate(360deg); } }
@keyframes hsMedPulse {
  0%, 100% { opacity: 0.95; }
  50%      { opacity: 1; }
}

/* Floating satellite cards — placed AROUND medallion, all within hs-art */
.hs-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(170%);
  -webkit-backdrop-filter: blur(18px) saturate(170%);
  border: 1px solid #fff;
  border-radius: 14px;
  padding: 11px 14px;
  box-shadow:
    0 1px 0 rgba(255,255,255,1) inset,
    0 12px 32px -12px rgba(31,58,107,0.3),
    0 24px 50px -22px rgba(31,58,107,0.25);
  z-index: 6;
  font-size: 12px;
  display: flex; align-items: center; gap: 10px;
  will-change: transform, opacity;
  pointer-events: none;
  max-width: 240px;
}
.hs-card .ico-sq {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: #fff;
  flex: 0 0 auto;
}
.hs-card .ico-sq.wb { background: var(--wb); }
.hs-card .ico-sq.oz { background: var(--ozon); }
.hs-card .ico-sq.gold { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); }
.hs-card .ico-sq.green { background: linear-gradient(135deg, #2ea566, #1e7b48); }
.hs-card .ico-sq.accent { background: linear-gradient(135deg, var(--accent), var(--accent-deep)); }
.hs-card .ico-sq.sky { background: linear-gradient(135deg, var(--sky-500), var(--sky-700)); }
.hs-card .lines { display: flex; flex-direction: column; gap: 2px; line-height: 1.2; min-width: 0; }
.hs-card .lines b { font-size: 13px; color: var(--ink); white-space: nowrap; }
.hs-card .lines span { font-family: var(--font-mono); font-size: 10px; color: var(--ink-muted); white-space: nowrap; }
.hs-card .check { color: #2ea566; font-size: 14px; }

/* Positions — all within hs-art bounds (max right/left edges ≈ -5%) */
.hs-card.hs-wb   { top: 6%;    left: -4%;   z-index: 7; }
.hs-card.hs-oz   { top: 24%;   right: -4%;  z-index: 7; }
.hs-card.hs-comm { bottom: 28%; right: 0%;  z-index: 6;
  background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(243,214,160,0.55));
  border: 1px solid rgba(232,184,110,0.55);
}
.hs-card.hs-qc   { bottom: 6%; left: 18%;   z-index: 7; }
.hs-card.hs-upd  { bottom: 2%; left: -4%;   z-index: 8; }

@media (max-width: 1080px) {
  .hs-card.hs-comm { display: none; }
  .hs-card.hs-wb   { top: 0%;    left: 0%;   }
  .hs-card.hs-oz   { top: 12%;   right: 0%;  }
  .hs-card.hs-qc   { bottom: 6%; left: auto; right: 0%; }
  .hs-card.hs-upd  { bottom: 0%; left: 0%;   }
}
@media (max-width: 640px) {
  .hs-card { display: none; }
}

/* ── Hero entry: hide elements pre-animation ─────────────── */
.hero-text.entry, .hero-text.entry * { /* JS will animate */ }
.hs-card { opacity: 0; }
.hs-card.shown { opacity: 1; }


/* ── Process: SVG line under 9 steps ─────────────────────── */
.process-track { position: relative; }
.process-line {
  position: absolute;
  top: 35px; left: 0; right: 0;
  height: 60px;
  pointer-events: none;
  z-index: 0;
}
.process-line svg { width: 100%; height: 100%; overflow: visible; }
.process-line path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: 8 6;
  opacity: 0.4;
  stroke-linecap: round;
}

/* ── Services hierarchy — top-3 bigger ───────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.services-grid .service-card { min-height: 200px; padding: 26px; }
.services-grid .service-card.top {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(243,214,160,0.18));
  border: 1px solid rgba(232,184,110,0.45);
  min-height: 240px;
}
.services-grid .service-card.top .ico-box {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-color: var(--gold-deep);
  color: #fff;
}
.services-grid .service-card.top h4 { font-size: 19px; }
.services-grid .service-card.top p { font-size: 14px; }
.service-card .top-badge {
  position: absolute;
  top: 14px; right: 14px;
  font-family: var(--font-mono); font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 8px; border-radius: 999px;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #fff;
  font-weight: 700;
}
.services-grid.tier2 { grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 18px; }
.services-grid.tier2 .service-card { min-height: 160px; padding: 20px; }
.services-grid.tier2 .service-card h4 { font-size: 15px; }
.services-grid.tier2 .service-card p { font-size: 12.5px; }
@media (max-width: 1080px) {
  .services-grid, .services-grid.tier2 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px)  { .services-grid, .services-grid.tier2 { grid-template-columns: 1fr; } }

/* ── Partners — colored mini-logos ───────────────────────── */
.partner-card {
  display: flex !important;
  align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-mono);
}
.partner-card .pl-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  letter-spacing: 0.02em;
}
.partner-card .pl-mark.wb { background: linear-gradient(135deg, #CB11AB, #8B0773); }
.partner-card .pl-mark.oz { background: linear-gradient(135deg, #005BFF, #003BB3); }
.partner-card .pl-mark.ym { background: linear-gradient(135deg, #FFCC00, #FF5C00); color: #1F1F1F; }
.partner-card .pl-mark.dl { background: linear-gradient(135deg, #5C708F, #2A3F5F); }
.partner-card .pl-mark.cd { background: linear-gradient(135deg, #E63946, #B2202B); }
.partner-card .pl-mark.gt { background: linear-gradient(135deg, #1F8A5B, #0E5C3B); }
.partner-card .pl-text { font-size: 13px; color: var(--ink-2); font-weight: 600; }

/* ── Final CTA: watermark + gold beam ────────────────────── */
.final-card {
  position: relative;
  overflow: hidden;
}
.final-watermark {
  position: absolute;
  right: -40px; bottom: -80px;
  font-family: "Inter", sans-serif;
  font-size: 360px;
  font-weight: 800;
  line-height: 1;
  color: rgba(31,58,107,0.045);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.06em;
  z-index: 0;
}
.final-gold-beam {
  position: absolute;
  top: -10%; right: -20%;
  width: 70%; height: 130%;
  background: linear-gradient(110deg, transparent 30%, rgba(232,184,110,0.16) 50%, transparent 70%);
  transform: rotate(15deg);
  filter: blur(20px);
  pointer-events: none;
  opacity: 0.9;
  z-index: 0;
}
.final-card > .section-head,
.final-card > form,
.final-card > .tg-cta { position: relative; z-index: 1; }
.final-watermark,
.final-gold-beam { z-index: 0; }
.final-card .btn-primary.large {
  padding: 18px 32px;
  font-size: 16px;
  border-radius: 16px;
}

/* ── Tariff: gold highlight rows ─────────────────────────── */
.tariff tbody td.gold {
  position: relative;
  background: linear-gradient(135deg, rgba(232,184,110,0.16), rgba(232,184,110,0.04)) !important;
}

/* ── Geo map (V3) ────────────────────────────────────────── */
.geo-map {
  aspect-ratio: 1200 / 540;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.2));
  overflow: visible;
  padding: 0;
}
.geo-map svg { width: 100%; height: 100%; display: block; overflow: visible; }
.geo-map .country { fill: rgba(31,58,107,0.04); stroke: rgba(31,58,107,0.18); stroke-width: 1; }
.geo-map .country.active { fill: rgba(74,120,240,0.08); stroke: rgba(74,120,240,0.35); }
.geo-map .country.gold-c { fill: rgba(232,184,110,0.07); stroke: rgba(184,132,47,0.3); }
.geo-map .route {
  fill: none;
  stroke: rgba(74,120,240,0.45);
  stroke-width: 1.2;
  stroke-dasharray: 4 6;
  stroke-linecap: round;
}
.geo-map .city-glow { opacity: 0.6; filter: blur(10px); }
.geo-map .city-glow.accent { fill: var(--accent); }
.geo-map .city-glow.gold { fill: var(--gold); opacity: 0.75; filter: blur(12px); }
.geo-map .city-ring {
  fill: none; stroke: var(--accent); stroke-width: 1.5;
  transform-box: fill-box; transform-origin: center;
  animation: cityRing 2.4s ease-out infinite;
}
.geo-map .city.moscow .city-ring { stroke: var(--gold-deep); animation-duration: 2.8s; }
@keyframes cityRing {
  0%   { transform: scale(0.6); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.geo-map .city-dot {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent-glow));
  transform-box: fill-box; transform-origin: center;
  animation: cityPulse 2.4s ease-in-out infinite;
}
.geo-map .city.moscow .city-dot {
  fill: var(--gold-deep);
  filter: drop-shadow(0 0 8px rgba(232,184,110,0.6));
  animation-duration: 2.8s;
}
@keyframes cityPulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.3); }
}
.geo-map .city-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  fill: var(--ink);
  letter-spacing: 0.04em;
}
.geo-map .city-label.moscow { fill: var(--gold-deep); font-weight: 700; }
.geo-map .city-sub {
  font-family: "JetBrains Mono", monospace;
  font-size: 9px;
  fill: var(--ink-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Running pulses use offset-path */
.geo-map .pulse-runner {
  fill: var(--accent);
  filter: drop-shadow(0 0 6px var(--accent-glow));
  offset-rotate: 0deg;
  animation: routeRun 4.5s linear infinite;
}
.geo-map .pulse-runner.gold { fill: var(--gold); filter: drop-shadow(0 0 8px rgba(232,184,110,0.7)); }
.geo-map .pulse-runner.r1 { offset-path: path('M 240 380 Q 480 80 740 200'); }
.geo-map .pulse-runner.r2 { offset-path: path('M 270 400 Q 500 100 745 205'); animation-delay: -1.5s; }
.geo-map .pulse-runner.r3 { offset-path: path('M 320 320 Q 520 130 740 200'); animation-delay: -2.5s; }
.geo-map .pulse-runner.r4 { offset-path: path('M 365 290 Q 540 150 745 200'); animation-delay: -3.5s; animation-duration: 5s; }
@keyframes routeRun {
  0%   { offset-distance: 0%; opacity: 0; transform: scale(0.6); }
  10%  { opacity: 1; transform: scale(1); }
  85%  { opacity: 1; transform: scale(1); }
  100% { offset-distance: 100%; opacity: 0; transform: scale(0.6); }
}

/* trailing dust */
.geo-map .pulse-trail {
  fill: var(--accent);
  opacity: 0.4;
  filter: blur(4px);
  offset-rotate: 0deg;
  animation: routeRunTrail 4.5s linear infinite;
}
.geo-map .pulse-trail.r1 { offset-path: path('M 240 380 Q 480 80 740 200'); animation-delay: -0.15s; }
.geo-map .pulse-trail.r2 { offset-path: path('M 270 400 Q 500 100 745 205'); animation-delay: -1.65s; }
.geo-map .pulse-trail.r3 { offset-path: path('M 320 320 Q 520 130 740 200'); animation-delay: -2.65s; }
.geo-map .pulse-trail.r4 { offset-path: path('M 365 290 Q 540 150 745 200'); animation-delay: -3.65s; animation-duration: 5s; }
@keyframes routeRunTrail {
  0%, 10% { offset-distance: 0%; opacity: 0; }
  20%     { opacity: 0.4; }
  85%     { opacity: 0.4; }
  100%    { offset-distance: 100%; opacity: 0; }
}

/* ── Numbers: more gold ──────────────────────────────────── */
.num-card.gold-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(243,214,160,0.15));
  border-color: rgba(232,184,110,0.4);
}

/* ── Hero light beam — make more visible ─────────────────── */
.hero { isolation: isolate; }
.hero .light-beam { z-index: 1; }
.hero-grid { z-index: 2; }

/* Reduced motion overrides v3 */
@media (prefers-reduced-motion: reduce) {
  .geo-map .pulse-runner, .geo-map .pulse-trail,
  .geo-map .city-dot, .geo-map .city-ring {
    animation: none !important;
  }
  .hs-card { opacity: 1 !important; }
}

/* ═══════════════════════════════════════════════════════════
   V7 · MOBILE PASS (≤767px)
   Comprehensive mobile-first overrides
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 767px) {
  html { -webkit-tap-highlight-color: transparent; }
  body { overflow-x: hidden; }
  *, *::before, *::after { -webkit-tap-highlight-color: transparent; }

  /* Global container & section rhythm */
  .container { padding: 0 16px; }
  section { padding: 60px 0; }

  /* Typography down-scale */
  h1 { font-size: clamp(32px, 8.5vw, 42px); line-height: 1.08; }
  h2 { font-size: clamp(24px, 6vw, 30px); line-height: 1.12; }
  h3 { font-size: clamp(17px, 4.5vw, 20px); }
  .lead { font-size: 15px; line-height: 1.6; }
  .section-head { margin-bottom: 36px; }

  /* Buttons → touch-friendly */
  .btn { padding: 14px 22px; font-size: 14px; min-height: 48px; }
  .btn-primary.large { padding: 16px 24px; font-size: 15px; min-height: 56px; }

  /* ── Header ─────────────────────────────────────────────── */
  .header-inner { height: 60px; padding: 0 16px; }
  .header-email,
  .header-phone,
  .header-nav,
  .btn-header { display: none !important; }
  .brand-logo .mark { width: 32px; height: 32px; font-size: 15px; }
  .brand-logo .name .ru { font-size: 15px; }
  .brand-logo .name .cn { display: none; }
  .burger { display: block; width: 44px; height: 44px; }

  /* Mobile menu — improve touch targets */
  .mobile-menu { padding: 20px 18px; }
  .mobile-menu a { padding: 16px 14px; font-size: 18px; min-height: 56px; display: flex; align-items: center; }

  /* ── Hero ──────────────────────────────────────────────── */
  .hero { padding-top: 100px; padding-bottom: 50px; }
  .hero-grid { gap: 28px; grid-template-columns: 1fr; }
  .hero-text { text-align: left; }
  .market-chips { margin-bottom: 18px; gap: 8px; }
  .market-chips .chip { font-size: 11px; padding: 5px 10px; }
  .hero h1 { margin-top: 4px; }
  .hero .lead { margin-top: 14px; font-size: 15px; }
  .hero .cta-row { flex-direction: column; gap: 10px; margin-top: 22px; }
  .hero .cta-row .btn { width: 100%; justify-content: center; }
  .trust-row { padding-top: 16px; flex-wrap: wrap; row-gap: 4px; font-size: 11px; }
  .trust-row .sep { color: var(--ink-dim); }

  /* Hero medallion — smaller, satellites hidden */
  .hero-stage { min-height: 200px; padding: 16px 0 0; }
  .hs-art { max-width: 180px; aspect-ratio: 1 / 1; margin: 0 auto; }
  .hs-medallion { width: 170px; height: 170px; }
  .hs-medallion-glyph { font-size: 72px; }
  .hs-medallion-ring { animation-duration: 140s, 6s; }
  .hs-card { display: none !important; }

  /* ── Calculator section ────────────────────────────────── */
  #calc-section { padding-top: 40px; padding-bottom: 60px; }
  #calc-section .calc { padding: 22px 18px; }
  #calc-section .calc .calc-grid { grid-template-columns: 1fr; gap: 14px; }
  .calc h3 { font-size: 18px; }
  .calc select, .calc input { padding: 14px 16px; font-size: 16px; min-height: 48px; }
  .calc .calc-cta { min-height: 56px; font-size: 15px; max-width: 100%; }
  .calc-result { padding: 16px; gap: 14px 22px; }
  .calc-result .v { font-size: 16px; }
  .calc-result .v.accent { font-size: 22px; }

  /* ── Transports (5 cards) — 1 column stack ─────────────── */
  .transports-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .transport-card { padding: 22px 18px; }

  /* ── Services (12) — 1 column stack ────────────────────── */
  .services-grid,
  .services-grid.tier2 { grid-template-columns: 1fr !important; gap: 10px; }
  .services-grid .service-card { min-height: auto; padding: 20px; }
  .services-grid .service-card.top { min-height: auto; padding: 22px; }
  .services-grid .service-card h4 { font-size: 16px; }
  .services-grid .service-card p { font-size: 14px; line-height: 1.5; }
  .services-grid .service-card.top h4 { font-size: 18px; }

  /* ── Why us ────────────────────────────────────────────── */
  .why-grid { grid-template-columns: 1fr; gap: 14px; }
  .why-card { padding: 24px 20px; }
  .why-card h3 { font-size: 19px; }

  /* ── Numbers ───────────────────────────────────────────── */
  .numbers-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .num-card { padding: 20px 16px; }
  .num-card .big { font-size: 38px; }
  .num-card .label { font-size: 13px; }
  .num-card .detail { font-size: 12px; }

  /* ── Process — vertical timeline ───────────────────────── */
  .process-card { padding: 22px 18px; }
  .process-rail { overflow: visible; padding-bottom: 0; }
  .process-track {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
    grid-template-columns: none !important;
    padding-left: 28px;
    position: relative;
  }
  .process-track::before {
    content: "";
    position: absolute;
    top: 8px; bottom: 8px; left: 11px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-soft), var(--sky-300) 60%, var(--gold-soft));
  }
  .process-line { display: none; }
  .process-step {
    position: relative;
    padding-left: 18px;
    text-align: left !important;
    width: auto !important;
  }
  .process-step::before {
    content: "";
    position: absolute;
    left: -22px; top: 6px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(74,120,240,0.18);
  }
  .process-step .pnum { font-size: 11px; margin-bottom: 2px; }
  .process-step .pname { font-size: 15px; }
  .process-step .pmeta { font-size: 11px; }

  /* ── Tariff table → card view via CSS ──────────────────── */
  .tariff-card { padding: 22px 16px; }
  .tariff-scroll { overflow: visible; }
  .tariff,
  .tariff thead,
  .tariff tbody,
  .tariff tr,
  .tariff th,
  .tariff td { display: block; width: 100%; min-width: 0; }
  .tariff thead { display: none; }
  .tariff tr {
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(31,58,107,0.08);
    border-radius: 14px;
    padding: 16px 14px;
    margin-bottom: 12px;
  }
  .tariff td {
    padding: 8px 0;
    border: 0;
    text-align: left;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
  }
  .tariff td:first-child {
    font-weight: 700;
    color: var(--sky-900);
    font-size: 15px;
    padding-bottom: 12px;
    margin-bottom: 6px;
    border-bottom: 1px solid rgba(31,58,107,0.08);
    display: block;
    text-align: left;
  }
  .tariff td:nth-child(2)::before { content: "Авиа"; }
  .tariff td:nth-child(3)::before { content: "Ж/Д"; }
  .tariff td:nth-child(4)::before { content: "Авто"; }
  .tariff td:nth-child(5)::before { content: "Море"; }
  .tariff td:nth-child(6)::before { content: "Сборные"; }
  .tariff td:not(:first-child)::before {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-muted);
    flex: 0 0 auto;
  }
  .tariff td .dim { font-size: 11px; }
  .tariff-note { font-size: 12px; margin-top: 12px; }

  /* ── Geo ───────────────────────────────────────────────── */
  .geo-card { padding: 20px 14px; }
  .geo-map { min-height: 240px; }
  .geo-cards { grid-template-columns: 1fr; gap: 10px; margin-top: 18px; }
  .geo-mini { padding: 14px 16px; }
  .city-label { font-size: 11px !important; }
  .city-sub { font-size: 9px !important; }

  /* ── Cases ─────────────────────────────────────────────── */
  .cases-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .case-card .photo { height: 180px; }
  .case-card .body { padding: 18px; }
  .case-card h3 { font-size: 17px; }

  /* ── Blog ──────────────────────────────────────────────── */
  .blog-grid { grid-template-columns: 1fr !important; gap: 14px; }
  .blog-card .cover { height: 160px; }
  .blog-card .body { padding: 18px; }
  .blog-card h3 { font-size: 16px; }
  .blog-cta-wrap .btn { width: 100%; justify-content: center; }

  /* ── Testimonials ──────────────────────────────────────── */
  .testimonials-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .testimonial { padding: 22px 18px; }
  .testimonial p { font-size: 14px; }

  /* ── FAQ ───────────────────────────────────────────────── */
  .faq-q { min-height: 56px; padding: 14px 16px; font-size: 15px; }
  .faq-a-inner { padding: 0 16px 16px; font-size: 14px; line-height: 1.55; }

  /* ── Partners ─────────────────────────────────────────── */
  .partners-row { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .partner-card { padding: 16px 12px; min-height: 64px; }

  /* ── Final CTA ─────────────────────────────────────────── */
  .final-card { padding: 32px 20px; }
  .final-card h2 { font-size: 26px; }
  .form-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .form-grid .field input,
  .form-grid .field select,
  .form-grid .field textarea { font-size: 16px; min-height: 48px; padding: 12px 14px; }
  .final-card .btn-primary.large { width: 100%; justify-content: center; }
  .final-watermark { font-size: 200px !important; }
  .tg-cta { flex-direction: column; align-items: stretch; gap: 16px; padding: 22px 18px; }
  .tg-cta .left { width: 100%; }
  .tg-cta .btn { width: 100%; justify-content: center; }

  /* ── Footer ────────────────────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr !important; gap: 28px; }
  .footer-brand p { font-size: 13px; }
  .footer-col h4 { font-size: 14px; }
  .footer-col ul { gap: 6px; }
  .footer-meta { flex-direction: column; gap: 6px; font-size: 11px; }

  /* ── Floating contact FABs ─────────────────────────────── */
  .fab-cluster { bottom: 14px; right: 14px; gap: 10px; }
  .fab { width: 48px; height: 48px; }
  .fab-cluster #fab-call { display: none; }

  /* ── Tweaks panel — compact ────────────────────────────── */
  .tweaks-panel { right: 12px; left: 12px; bottom: 76px; width: auto; }

  /* ── Atmospherics — fewer blobs, simpler shadows ───────── */
  .blob-field .b2,
  .blob-field .b3 { display: none; }
  .blob-field .b1 { opacity: 0.5; }
  .glass-hover:hover { transform: none !important; }

  /* ── Eyebrow / mono — readable ─────────────────────────── */
  .eyebrow { font-size: 11px; }
  .mono { font-size: 11px; }
}

/* ── Tablet sweet spot (768-1024) ─────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) {
  .container { padding: 0 24px; }
  h1 { font-size: clamp(44px, 6vw, 56px); }
  .services-grid,
  .services-grid.tier2 { grid-template-columns: repeat(2, 1fr) !important; }
  .cases-grid,
  .blog-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ── Leaflet карта в секции «География» ───────────────────── */
#geo-leaflet {
  width: 100%;
  height: 440px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 44px -22px rgba(14,30,61,0.30);
}
#geo-leaflet .leaflet-popup-content { font-family: var(--font-display); font-size: 13px; }
@media (max-width: 767px) { #geo-leaflet { height: 340px; } }

/* ── Reveal safety net ────────────────────────────────────── */
/* Scroll-driven reveal убран (ненадёжен без Lenis). Контент виден всегда —
   независимо от состояния JS. */
.reveal,
[data-reveal-item] {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}
@media (max-width: 767px) {
  .hs-card {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ── Card cover photos ────────────────────────────────────── */
.case-card .photo .card-img,
.blog-card .cover .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.case-card .photo .marker,
.blog-card .cover .cat { z-index: 2; }

/* ── Guard against horizontal page scroll (decor / wide tables) ── */
html, body { overflow-x: clip; max-width: 100%; }

/* ── Blog cards → clickable ───────────────────────────────── */
.blog-card { position: relative; }
.blog-card .card-link-cover {
  position: absolute; inset: 0; z-index: 5;
  border-radius: inherit;
}

/* ── Blog article pages ───────────────────────────────────── */
.article-topbar { border-bottom: 1px solid rgba(31,58,107,0.08); padding: 14px 0; background: #fff; }
.article-topbar-in { display: flex; justify-content: space-between; align-items: center; }
.article-logo { font-weight: 800; font-size: 18px; color: var(--sky-900); text-decoration: none; }
.article-logo span { color: var(--accent); }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 0 20px; }
.article { padding: 38px 0 50px; }
.article-back { font-family: var(--font-mono); font-size: 13px; color: var(--accent-deep); text-decoration: none; display: inline-block; margin-bottom: 18px; }
.article-back:hover { text-decoration: underline; }
.article .cat { display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 999px; background: rgba(74,120,240,0.1); color: var(--accent-deep); margin-bottom: 14px; }
.article-title { font-size: clamp(26px, 4.5vw, 38px); line-height: 1.22; color: var(--sky-900); margin: 0 0 12px; }
.article-meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-muted); margin-bottom: 22px; }
.article-cover { width: 100%; aspect-ratio: 16/9; object-fit: cover; border-radius: 16px; margin-bottom: 30px; }
.article-body { font-size: 17px; line-height: 1.72; color: var(--ink); }
.article-body h2 { font-size: 24px; line-height: 1.3; color: var(--sky-900); margin: 36px 0 14px; }
.article-body h3 { font-size: 19px; color: var(--sky-900); margin: 26px 0 10px; }
.article-body p { margin: 0 0 18px; }
.article-body strong { color: var(--sky-900); font-weight: 700; }
.article-body ul { margin: 0 0 18px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }
.article-table { overflow-x: auto; margin: 0 0 22px; }
.article-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.article-table th, .article-table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(31,58,107,0.1); }
.article-table th { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-muted); }
.article-footer { background: linear-gradient(135deg, var(--sky-100), var(--sky-200)); border-top: 1px solid rgba(31,58,107,0.08); padding: 44px 0; margin-top: 40px; text-align: center; }
.article-footer h3 { font-size: 22px; color: var(--sky-900); margin: 0 0 8px; }
.article-footer p { color: var(--ink-muted); margin: 0 0 20px; }
.article-footer-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 767px) {
  .article-body { font-size: 16px; }
  .article-body h2 { font-size: 21px; }
  .article-title { font-size: 25px; }
}

/* ════ Visual polish (2026-05-21) ════ */
/* Плотность: меньше вертикальной пустоты между секциями */
section { padding: 82px 0; }
@media (max-width: 767px) { section { padding: 52px 0; } }

/* Ритм: лёгкое чередование фоновых оттенков секций */
#geo, #faq { background: var(--sky-50); }
#testimonials { background: var(--sky-0); }
/* «Почему мы» — фоновое фото склада для глубины */
#why {
  background:
    linear-gradient(rgba(245,248,253,0.90), rgba(245,248,253,0.95)),
    url("img/case-1.jpg") center/cover no-repeat;
}

/* «Цифры» — акцентная тёмная секция */
#numbers { background: linear-gradient(150deg, #0E1E3D 0%, #1F3A6B 100%); }
#numbers .eyebrow { color: var(--accent-soft); }
#numbers .section-head h2 { color: #fff; }
#numbers .num-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.55);
}
#numbers .num-card .big { color: #fff; }
#numbers .num-card .big.gold { color: var(--gold); }
#numbers .num-card .big .suffix { color: var(--accent-soft); }
#numbers .num-card .label { color: #fff; }
#numbers .num-card .detail { color: var(--sky-300); }

/* Hero — мягкие акцентные блики для глубины */
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(680px circle at 82% 10%, rgba(74,120,240,0.16), transparent 62%),
    radial-gradient(520px circle at 8% 92%, rgba(232,184,110,0.13), transparent 58%);
}
.hero > * { position: relative; z-index: 1; }

/* ════ Redesign pass — skill: redesign-skill ════ */

/* Зернистость — убирает «цифровую стерильность» плоского дизайна */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 60; pointer-events: none;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* #services — тёмная секция с фоновым фото: драматичный контраст */
#services {
  background:
    linear-gradient(160deg, rgba(14,30,61,0.94), rgba(20,40,80,0.88)),
    url("img/blog-1.jpg") center/cover no-repeat;
}
#services .section-head h2 { color: #fff; }
#services .section-head .lead { color: var(--sky-300); }
#services .service-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 22px 46px -24px rgba(0,0,0,0.6);
}
#services .service-card h4 { color: #fff; }
#services .service-card p { color: var(--sky-300); }
#services .service-card .num { color: rgba(255,255,255,0.38); }

/* #process, #cases — светлые с заметным фоновым фото для глубины */
#process {
  background:
    linear-gradient(rgba(234,241,250,0.87), rgba(234,241,250,0.93)),
    url("img/case-2.jpg") center/cover no-repeat;
}
#cases {
  background:
    linear-gradient(rgba(245,248,253,0.88), rgba(245,248,253,0.94)),
    url("img/blog-2.jpg") center/cover no-repeat;
}

/* Тинтованные (navy) тени — мягче и теплее, чем generic чёрные */
.glass, .case-card, .blog-card, .num-card, .tariff-card {
  box-shadow: 0 20px 44px -22px rgba(14,30,61,0.30), 0 3px 10px -3px rgba(14,30,61,0.14);
}

/* Hover / active — пружинная отдача */
.btn { transition: box-shadow .3s ease, background .25s ease, transform .2s cubic-bezier(.34,1.5,.64,1); }
.btn:active { transform: scale(0.97); }
.case-card, .blog-card { transition: transform .32s cubic-bezier(.34,1.4,.64,1), box-shadow .32s ease; }
.case-card:hover, .blog-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 32px 60px -24px rgba(14,30,61,0.42), 0 4px 12px -3px rgba(14,30,61,0.18);
}

/* Числа — табличные цифры (ровные колонки) */
.num-card .big, .tariff td, [data-counter] { font-variant-numeric: tabular-nums; }

/* Glassmorphism — кромка преломления */
.glass { border: 1px solid rgba(255,255,255,0.66); }

/* ════ Hero redesign — skill: impeccable ════ */
/* Тёмный кинематографичный hero: реальное фото логистики вместо пустого светлого блока */
.hero {
  background:
    linear-gradient(177deg, rgba(8,15,33,0.78) 0%, rgba(8,15,33,0.90) 52%, rgba(8,15,33,0.97) 100%),
    url("img/blog-2.jpg") center 30%/cover no-repeat;
  padding-top: 130px; padding-bottom: 92px;
}
@media (max-width: 767px) { .hero { padding-top: 100px; padding-bottom: 58px; } }

/* Типографика на тёмном — крупная, контрастная */
.hero h1 { font-size: clamp(42px, 6.6vw, 80px); }
.hero h1 .lighteffect { color: #fff; -webkit-text-fill-color: #fff; background: none; }
.hero h1 .lighteffect-accent { color: var(--gold-soft); -webkit-text-fill-color: var(--gold-soft); background: none; }
.hero .lead { color: rgba(255,255,255,0.76); max-width: 33em; }
.hero .trust-row span { color: rgba(255,255,255,0.85); font-weight: 500; }
.hero .trust-row .sep { color: rgba(255,255,255,0.28); }
.hero .market-chips .chip {
  background: rgba(255,255,255,0.07); color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.04); }
.hero .btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* Декор-лучи приглушить — на фото они лишние */
.hero .light-beam { opacity: 0.22; mix-blend-mode: screen; }

/* 关系 — фирменный медальон: круг и иероглиф согласованы по размеру */
.hero .hs-medallion { width: 372px; height: 372px; }
.hero .hs-medallion-glyph {
  font-size: clamp(126px, 25vw, 174px);
  color: rgba(243,214,160,0.96);
  font-weight: 700;
}
.hero .hs-medallion-orbit { border-color: rgba(232,184,110,0.32); }
@media (max-width: 767px) {
  .hero .hs-medallion { width: 270px; height: 270px; }
  .hero .hs-medallion-glyph { font-size: 120px; }
}

/* Статус-карточки — тёмное стекло поверх фото */
.hero .hs-card {
  background: rgba(12,22,44,0.72);
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px -18px rgba(0,0,0,0.7);
}
.hero .hs-card .lines b { color: #fff; }
.hero .hs-card .lines span { color: rgba(255,255,255,0.62); }

/* ════ Иллюстрации в карточках транспорта — skill: impeccable ════ */
.transport-card .t-photo {
  width: 100%; height: 128px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 16px;
  display: block;
}
.transport-card .ico-circle {
  position: absolute; top: 24px; left: 24px;
  margin: 0;
  box-shadow: 0 8px 20px -6px rgba(14,30,61,0.5);
}
.transport-card { position: relative; }
@media (max-width: 767px) {
  .transport-card .t-photo { height: 150px; }
}

/* ════ Fix: hero-карточки + сетка услуг ════ */
/* Услуги tier2 — 3 колонки: 9 карточек = 3 ровных ряда, без «выпадающей» одиночки */
.services-grid.tier2 { grid-template-columns: repeat(3, 1fr) !important; }
@media (max-width: 900px) { .services-grid.tier2 { grid-template-columns: repeat(2, 1fr) !important; } }
@media (max-width: 560px) { .services-grid.tier2 { grid-template-columns: 1fr !important; } }

/* Hero — медальон компактнее, освобождает место карточкам */
.hero .hs-medallion { width: 300px; height: 300px; }
.hero .hs-medallion-glyph { font-size: clamp(112px, 20vw, 144px); }

/* Hero статус-карточки — строго по 4 углам, без наложений; 5-я (комиссия) убрана */
.hero .hs-card.hs-comm { display: none; }
.hero .hs-card.hs-wb  { top: -2%;    left: -3%;   right: auto;  bottom: auto; }
.hero .hs-card.hs-oz  { top: 17%;    right: -3%;  left: auto;   bottom: auto; }
.hero .hs-card.hs-qc  { bottom: 17%; right: -3%;  left: auto;   top: auto; }
.hero .hs-card.hs-upd { bottom: -2%; left: -3%;   right: auto;  top: auto; }
@media (max-width: 767px) {
  .hero .hs-medallion { width: 256px; height: 256px; }
  .hero .hs-medallion-glyph { font-size: 108px; }
}

/* ════ Производительность — плавность скролла ════ */
/* Тяжёлый blur 22px пересчитывается каждый кадр при скролле. 8px — почти то же
   визуально, в разы дешевле для GPU (особенно на телефонах). */
:root { --glass-blur: 8px; }
.hero .hs-card { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
#services .service-card { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
/* Постоянный will-change держит лишние GPU-слои и сам тормозит — снять.
   Браузер сам поднимет слой на время реальной анимации. */
.btn, [data-tilt], [data-magnetic], .hs-card, .blob, .light-beam { will-change: auto; }
body::after { will-change: auto; }
/* Прокрутку привязать к GPU-композитингу */
html { scroll-behavior: smooth; }
@media (max-width: 767px) {
  /* На телефоне декоративные параллакс-лучи и блобы только грузят рендер */
  .light-beam { display: none; }
}

/* GX-59: lead-form thanks state */
.lead-thanks {
  padding: 28px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  text-align: center;
}
.lead-thanks-inner { max-width: 520px; margin: 0 auto; }
.lead-thanks-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent, #4A78F0);
  margin-bottom: 12px;
  font-weight: 600;
}
.lead-thanks h3 {
  font-size: 22px;
  margin: 0 0 10px;
  line-height: 1.25;
}
.lead-thanks p {
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.78;
  margin: 0 0 18px;
}
@media (max-width: 720px) {
  .lead-thanks { padding: 22px 16px; }
  .lead-thanks h3 { font-size: 19px; }
}
