/* === Common styles для дизайн-макета businessgamesekb.ru === */
@font-face {
  font-family: 'Foglihten';
  src: url('/fonts/FoglihtenNo06.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #000;
  --bg-deep: #0a0a14;
  --surface: rgba(255,255,255,0.03);
  --surface-2: rgba(255,255,255,0.06);
  --surface-card: #0d0d12;
  --surface-card-2: #11111a;
  --border: rgba(192,192,192,0.18);
  --border-soft: rgba(192,192,192,0.12);
  --border-strong: rgba(255,255,255,0.4);
  --text: #fff;
  --text-bright: #ffffff;
  --text-dim: rgba(255,255,255,0.75);
  --text-mute: rgba(255,255,255,0.55);
  --silver-glow: rgba(200,220,255,0.8);
  --silver-glow-soft: rgba(200,220,255,0.6);
  --silver: #d8d8d8;
  --success: #5ed07a;
  --warn: #ffb84d;
  --danger: #e85858;
  --pko: #e85397;
}

*, *::before, *::after { box-sizing: border-box; }
html, body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Foglihten', 'Inter', sans-serif;
  letter-spacing: 0.3px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Foglihten', serif; font-weight: 400; }
p { color: var(--text-dim); }

/* === Header === */
.header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.78) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
  min-height: 72px;
}
.header-inner {
  max-width: 1400px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; gap: 32px;
  min-height: 72px;
}
/* Бренд в шапке: SVG + текст */
.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: filter 0.2s, transform 0.2s;
}
.brand-link:hover { filter: drop-shadow(0 0 10px rgba(200,220,255,0.45)); transform: translateY(-1px); }
.brand-logo {
  height: 44px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 18px rgba(200,220,255,0.25));
}
.brand-text {
  font-family: 'Foglihten', serif;
  font-size: 18px;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #fff 0%, #d8d8d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(200,220,255,0.3);
}
.logo-mini {
  font-family: 'Foglihten', serif;
  font-size: 18px;
  letter-spacing: 4px;
  background: linear-gradient(180deg, #fff 0%, #d8d8d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 24px rgba(200,220,255,0.3);
}
.nav { flex: 1; display: flex; justify-content: center; gap: 28px; }
.nav a {
  font-family: 'Foglihten', serif;
  font-size: 14px;
  color: var(--text);
  letter-spacing: 1.5px;
  transition: text-shadow 0.2s, opacity 0.2s;
  opacity: 0.85;
}
.nav a:hover, .nav a.is-active { opacity: 1; text-shadow: 0 0 14px rgba(200,220,255,0.55); }
.nav a.is-active { color: var(--text-bright); }
.nav a.has-arrow::after { content: ' ▾'; opacity: 0.5; font-size: 11px; }
.header-cta {
  font-family: 'Foglihten', serif;
  font-size: 13px; color: #0a0a0a;
  letter-spacing: 2px;
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
  border: 1px solid rgba(255,255,255,0.6);
  padding: 9px 20px; border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 0 20px rgba(255,255,255,0.18), 0 4px 12px rgba(0,0,0,0.35);
  transition: all 0.2s;
}
.header-cta:hover { background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%); box-shadow: 0 0 32px rgba(255,255,255,0.35), 0 4px 12px rgba(0,0,0,0.35); transform: translateY(-1px); }
.header-cta .cta-short { display: none; }

/* === Burger (mobile) === */
.burger {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 0;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}
.burger:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.burger-icon { display: flex; flex-direction: column; gap: 4px; }
.burger-icon span { display: block; width: 18px; height: 2px; background: #fff; border-radius: 1px; }

/* === Mobile drawer === */
.mobile-drawer {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s;
}
.mobile-drawer.is-open { pointer-events: auto; opacity: 1; }
.mobile-drawer-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
}
.mobile-drawer-panel {
  position: absolute; top: 0; left: 0; bottom: 0;
  width: min(82vw, 360px);
  background: linear-gradient(180deg, #0a0a14 0%, #050508 100%);
  border-right: 1px solid rgba(192,192,192,0.18);
  padding: 24px 22px;
  display: flex; flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}
.mobile-drawer.is-open .mobile-drawer-panel { transform: translateX(0); }
.mobile-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-drawer-close {
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  color: #fff;
  font-size: 18px; line-height: 1;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-drawer-close:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.4); }
.mobile-drawer-nav {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: auto;
}
.mobile-drawer-nav a {
  font-family: 'Foglihten', serif;
  font-size: 17px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #f0f0f0;
  padding: 14px 4px;
  border-bottom: 1px solid rgba(192,192,192,0.10);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-drawer-nav a:hover { color: #fff; padding-left: 8px; }
.mobile-drawer-cta {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Foglihten', serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px;
  border: 1px solid rgba(200,220,255,0.4);
  border-radius: 999px;
  background: rgba(200,220,255,0.06);
}
.mobile-drawer-cta:hover { background: rgba(200,220,255,0.14); }
.tg-svg { vertical-align: middle; flex-shrink: 0; }

/* === Live bar (стиль 1-в-1 как в ЛК игрока) === */
.livebar {
  position: fixed; top: 72px; left: 0; right: 0;
  z-index: 99;
  pointer-events: none;
  overflow: hidden;
  transition: max-height 0.4s, opacity 0.3s;
  max-height: 60px;
}
.livebar.is-hidden { max-height: 0; opacity: 0; }
.livebar-inner {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 32px;
  background: linear-gradient(90deg, rgba(52,211,153,0.14) 0%, rgba(20,20,22,0.85) 30%, rgba(20,20,22,0.85) 100%);
  border-bottom: 1px solid rgba(52,211,153,0.35);
  color: #f0f0f0;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  transition: background 0.18s;
}
.livebar.upcoming .livebar-inner {
  background: linear-gradient(90deg, rgba(126,179,255,0.12) 0%, rgba(20,20,22,0.85) 30%, rgba(20,20,22,0.85) 100%);
  border-bottom-color: rgba(126,179,255,0.30);
}
.livebar-inner:hover { background: rgba(30,30,32,0.92); }
.livebar-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #34d399; flex-shrink: 0;
  box-shadow: 0 0 10px rgba(52,211,153,0.7);
  animation: lvb-pulse 1.6s infinite;
}
.livebar.upcoming .livebar-dot {
  background: #7eb3ff;
  box-shadow: 0 0 10px rgba(126,179,255,0.7);
}
@keyframes lvb-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.35); opacity: 0.55; }
}
.livebar-eyebrow {
  font-weight: 700; letter-spacing: 1.5px; font-size: 11px;
  color: #34d399;
  text-transform: uppercase;
}
.livebar.upcoming .livebar-eyebrow { color: #7eb3ff; }
.livebar-text { color: #fff; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
.livebar-spacer { flex: 1; }
.livebar-timer { color: #c0c0c0; font-size: 12px; font-variant-numeric: tabular-nums; font-feature-settings: "tnum"; letter-spacing: 1px; flex-shrink: 0; }
.t-unit {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.62em;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin: 0 0.08em 0 0.05em;
  vertical-align: 0.05em;
}

/* === Page wrapper === */
.page {
  min-height: 100vh;
  padding-top: 132px;
  background: radial-gradient(ellipse at 50% 0%, var(--bg-deep) 0%, var(--bg) 60%);
  position: relative;
  overflow: hidden;
}
.page-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 14% 22%, rgba(255,255,255,0.7), transparent 60%),
    radial-gradient(1.5px 1.5px at 32% 68%, rgba(200,220,255,0.6), transparent 60%),
    radial-gradient(1px 1px at 50% 14%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 64% 84%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1.5px 1.5px at 82% 32%, rgba(200,220,255,0.7), transparent 60%),
    radial-gradient(1px 1px at 92% 62%, rgba(255,255,255,0.5), transparent 60%),
    radial-gradient(1px 1px at 18% 92%, rgba(255,255,255,0.5), transparent 60%);
  opacity: 0.6;
  animation: stars-twinkle 8s ease-in-out infinite alternate;
}
@keyframes stars-twinkle { 0% { opacity: 0.3; } 100% { opacity: 0.75; } }

/* === Headline === */
.logo-big {
  font-family: 'Foglihten', serif;
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 30%, #b8b8b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 60px rgba(180,200,255,0.4);
  user-select: none;
}
.logo-big span { display: block; }
.logo-big .l1 { font-size: clamp(48px, 7.5vw, 96px); }
.logo-big .l2 { font-size: clamp(38px, 6vw, 78px); letter-spacing: 18px; margin-top: 4px; }
.logo-big.small .l1 { font-size: clamp(34px, 5.5vw, 68px); letter-spacing: 8px; }
.logo-big.small .l2 { font-size: clamp(28px, 4.5vw, 56px); letter-spacing: 12px; }

/* === Eyebrow / Tagline === */
.eyebrow {
  font-family: 'Foglihten', serif;
  display: inline-block;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  color: var(--silver-glow);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.eyebrow::before { content: '●'; margin-right: 10px; color: var(--silver-glow); font-size: 8px; vertical-align: middle; }

.section-title {
  font-family: 'Foglihten', serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--text);
  text-align: center;
  margin: 0 0 14px;
  line-height: 1.1;
  background: linear-gradient(180deg, #fff 0%, #d8d8d8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 40px rgba(200,220,255,0.25);
}
.section-sub {
  text-align: center;
  font-size: 15px;
  color: var(--text-mute);
  letter-spacing: 0.5px;
  max-width: 600px;
  margin: 0 auto 44px;
  line-height: 1.55;
}

/* ===== Cookie-баннер ===== */
.cookie-banner {
  position: fixed;
  left: 16px; right: 16px; bottom: 16px;
  z-index: 200;
  max-width: 560px;
  margin: 0 auto;
  padding: 18px 22px;
  background: linear-gradient(180deg, rgba(20,20,28,0.96) 0%, rgba(14,14,20,0.96) 100%);
  border: 1px solid rgba(192,192,192,0.22);
  border-radius: 14px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04);
  color: var(--text-dim);
  font-size: 13px;
  line-height: 1.55;
  display: flex; flex-direction: column; gap: 12px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; }
.cookie-banner-text { color: var(--text-dim); }
.cookie-banner-text a { color: var(--silver-glow); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner-text a:hover { color: var(--text); }
.cookie-banner-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-banner-btn {
  font-family: 'Foglihten', serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: all 0.2s;
}
.cookie-banner-btn:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.45); }
.cookie-banner-btn.is-primary {
  background: linear-gradient(180deg, #ffffff, #d8d8d8);
  color: #0a0a0a;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(255,255,255,0.18);
}
.cookie-banner-btn.is-primary:hover { background: linear-gradient(180deg, #ffffff, #f0f0f0); }
@media (max-width: 480px) {
  .cookie-banner { left: 8px; right: 8px; bottom: 8px; padding: 14px 16px; }
  .cookie-banner-actions { flex-direction: column; }
  .cookie-banner-btn { width: 100%; }
}

/* ===== WOW анимации ===== */

/* 1. Cursor Spotlight — мягкое серебряное пятно за курсором (только desktop) */
.cursor-spotlight {
  position: fixed;
  top: 0; left: 0;
  width: 700px; height: 700px;
  margin-left: -350px; margin-top: -350px;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(200,220,255,0.10) 0%, rgba(200,220,255,0.04) 35%, transparent 70%);
  mix-blend-mode: screen;
  opacity: 0;
  transition: opacity 0.4s;
  transform: translate3d(50vw, 50vh, 0);
  will-change: transform;
}
.cursor-spotlight.is-active { opacity: 1; }
@media (hover: none), (pointer: coarse), (max-width: 768px) {
  .cursor-spotlight { display: none; }
}

/* 2. Scroll-Reveal — элементы появляются при scroll-in */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Stagger — задержка для соседних */
.reveal-stagger > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > *:nth-child(2) { transition-delay: 0.13s; }
.reveal-stagger > *:nth-child(3) { transition-delay: 0.21s; }
.reveal-stagger > *:nth-child(4) { transition-delay: 0.29s; }
.reveal-stagger > *:nth-child(5) { transition-delay: 0.37s; }
.reveal-stagger > *:nth-child(6) { transition-delay: 0.45s; }
.reveal-stagger > *:nth-child(7) { transition-delay: 0.53s; }
.reveal-stagger > *:nth-child(8) { transition-delay: 0.61s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
}

/* 4. Animated counter — стилизация цифр которые крутятся */
.counter-up {
  font-variant-numeric: tabular-nums;
  display: inline-block;
}

/* 5. Splat-typing для logo-big в hero — буквы появляются по одной с glow */
.logo-big[data-animated="1"] .l1, .logo-big[data-animated="1"] .l2 { display: block; }
.logo-big[data-animated="1"] .letter {
  display: inline-block;
  /* opacity:1 + transform:none по умолчанию — если анимация не отработает, текст виден всегда */
  animation: letterDrop 0.7s cubic-bezier(0.22, 1.4, 0.36, 1) forwards;
  will-change: transform, opacity, text-shadow;
}
.logo-big[data-animated="1"] .space { display: inline-block; width: 0.35em; }
@keyframes letterDrop {
  0% { opacity: 0; transform: translateY(36px) scale(0.7); text-shadow: 0 0 0 rgba(200,220,255,0); }
  60% { opacity: 1; transform: translateY(-4px) scale(1.06); text-shadow: 0 0 50px rgba(200,220,255,0.9), 0 0 20px rgba(255,255,255,0.7); }
  100% { opacity: 1; transform: translateY(0) scale(1); text-shadow: 0 0 60px rgba(180,200,255,0.4); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-big[data-animated="1"] .letter { animation: none; }
}

/* === Buttons === */
.btn {
  font-family: 'Foglihten', serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(255,255,255,0.32);
  background: rgba(255,255,255,0.08);
  color: #fff;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.16);
  box-shadow: 0 0 28px rgba(200,220,255,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
  transform: translateY(-1px);
}
.btn-primary {
  background: linear-gradient(180deg, #ffffff 0%, #d8d8d8 100%);
  color: #000;
  border-color: transparent;
  box-shadow: 0 0 32px rgba(255,255,255,0.28), 0 4px 16px rgba(0,0,0,0.5);
}
.btn-primary:hover {
  background: linear-gradient(180deg, #ffffff 0%, #f0f0f0 100%);
  box-shadow: 0 0 56px rgba(255,255,255,0.45), 0 4px 16px rgba(0,0,0,0.5);
}
.btn-text {
  background: transparent;
  border-color: transparent;
  color: var(--text);
  padding: 13px 12px;
  box-shadow: none;
}
.btn-text:hover { color: var(--silver-glow); background: transparent; box-shadow: none; transform: none; }
.btn-lg { padding: 16px 30px; font-size: 13px; letter-spacing: 3px; }
.btn-sm { padding: 9px 18px; font-size: 11px; letter-spacing: 2px; }

/* === Cards (turnir, common) === */
.card {
  background: var(--surface-card);
  border: 1px solid var(--border-soft);
  border-radius: 14px;
  padding: 22px 24px;
  font-family: 'Foglihten', 'Inter', sans-serif;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover { border-color: var(--border); transform: translateY(-2px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.card-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--text-mute);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.card-eyebrow.is-live { background: rgba(94,208,122,0.12); border-color: rgba(94,208,122,0.35); color: var(--success); }
.card-eyebrow.is-pko { background: rgba(232,83,151,0.12); border-color: rgba(232,83,151,0.35); color: var(--pko); }
.card-eyebrow.is-cash { background: rgba(232,199,138,0.12); border-color: rgba(232,199,138,0.35); color: #e8c78a; }
.card-eyebrow.is-free { background: rgba(94,208,122,0.12); border-color: rgba(94,208,122,0.35); color: var(--success); }
.card-eyebrow.is-live::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: currentColor; animation: livePulse 1.8s ease-in-out infinite;
}

/* === Section spacing === */
.section { padding: 100px 0; position: relative; z-index: 5; }
.section-inner { max-width: 1400px; margin: 0 auto; padding: 0 32px; }

/* === Footer === */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 56px 0 32px;
  margin-top: 80px;
  position: relative; z-index: 5;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}
.footer-inner {
  max-width: 1400px; margin: 0 auto; padding: 0 32px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 40px;
}
.footer-brand .logo-mini { font-size: 28px; letter-spacing: 6px; }
.footer-brand p { margin-top: 14px; color: var(--text-mute); font-size: 13px; line-height: 1.6; max-width: 280px; }
.footer-col h4 { font-family: 'Foglihten', serif; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--silver-glow-soft); margin: 0 0 16px; }
.footer-col a { display: block; font-family: 'Foglihten', serif; font-size: 14px; color: var(--text); letter-spacing: 1px; margin-bottom: 10px; transition: text-shadow 0.2s; }
.footer-col a:hover { text-shadow: 0 0 12px rgba(200,220,255,0.5); }
.footer-bottom {
  max-width: 1400px; margin: 0 auto; padding: 24px 32px 0;
  border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  font-size: 11px; color: var(--text-mute); letter-spacing: 1px;
}
.footer-bottom a { color: var(--text-mute); }
.footer-bottom a:hover { color: var(--text); }

/* === Mobile === */
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .header { min-height: 64px; }
  .header-inner { padding: 10px 14px; gap: 10px; min-height: 64px; }
  .burger { display: inline-flex; }
  .brand-link { gap: 8px; }
  .brand-logo { height: 32px; }
  .brand-text { font-size: 13px; letter-spacing: 2.5px; }
  .nav { display: none; }
  .header-cta { margin-left: auto; padding: 8px 14px; font-size: 11px; letter-spacing: 1.5px; }
  .header-cta .cta-full { display: none; }
  .header-cta .cta-short { display: inline; }
  .livebar { top: 64px; max-height: 50px; }
  .livebar-inner { padding: 8px 12px; font-size: 12px; gap: 8px; }
  .livebar-text { max-width: 60vw; }
  .page { padding-top: 114px; }
  .section { padding: 64px 0; }
  .section-inner { padding: 0 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 0 18px; }
  .footer-bottom { padding: 24px 18px 0; flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* ===== Реквизиты ИП в подвале (под footer-bottom) ===== */
.footer-legal {
  max-width: 1400px; margin: 0 auto; padding: 12px 32px 18px;
  text-align: center;
  font-size: 11px; color: var(--text-mute);
  letter-spacing: 0.5px; line-height: 1.6;
  opacity: 0.7;
}
@media (max-width: 768px) {
  .footer-legal { padding: 12px 18px 18px; }
}

/* ===== Выпадающее меню «Услуги» в шапке ===== */
.nav-drop { position: relative; display: inline-flex; align-items: center; }
/* невидимый «мостик» — курсор не теряет меню в зазоре под пунктом */
.nav-drop::after { content: ''; position: absolute; top: 100%; left: -10px; right: -10px; height: 14px; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 208px; padding: 8px;
  display: flex; flex-direction: column; gap: 2px;
  background: rgba(8, 8, 14, 0.97);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 300;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(2px);
}
.nav-drop-menu a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: 13px; letter-spacing: 1.2px; white-space: nowrap;
  opacity: 0.75; transition: background 0.15s, opacity 0.15s;
}
.nav-drop-menu a:hover { background: rgba(200, 220, 255, 0.09); opacity: 1; text-shadow: none; }
.nav-drop-all {
  margin-top: 4px; padding-top: 11px !important;
  border-top: 1px solid var(--border-soft);
  opacity: 0.55 !important;
}
.nav-drop-all::after { content: ' →'; }

/* ===== Хлебные крошки ===== */
.crumbs {
  max-width: 1400px; margin: 0 auto;
  padding: 20px 32px 0;
  font-size: 12px; letter-spacing: 1px;
  color: var(--text-mute);
}
.crumbs a { color: var(--text-mute); text-decoration: none; transition: color 0.15s; }
.crumbs a:hover { color: var(--text); }
.crumbs span[aria-current] { color: var(--text-dim); }
.crumbs i { font-style: normal; opacity: 0.45; margin: 0 8px; }
@media (max-width: 768px) {
  .crumbs { padding: 14px 18px 0; font-size: 11px; }
  .crumbs i { margin: 0 5px; }
}
