/* ============================================================
   BT PULSE · landing.css — лендинг (Aurora)
   Герой с ECG-анимацией через кристалл, секции, формы.
   ============================================================ */

/* ---------- Каркас ---------- */
.ld-wrap { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.ld-head {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg-0) 93%, transparent);
  border-bottom: 1px solid var(--border);
}
.ld-head-inner { max-width: 1200px; margin: 0 auto; padding: 14px 32px; display: flex; align-items: center; gap: 16px; }
.ld-head .logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.ld-head nav { margin-left: auto; display: flex; gap: 4px; align-items: center; }
.ld-head nav a { padding: 8px 13px; border-radius: 10px; color: var(--muted); text-decoration: none; font-size: 13.5px; font-weight: 500; }
.ld-head nav a:hover { color: var(--text); background: var(--surface-2); text-decoration: none; }
/* Primary-кнопки лендинга: мягкий брендовый градиент, без «кислотности» */
.ld-head .btn-primary, .ld-auth-card .btn-primary, .ld-cta .btn-primary {
  background: linear-gradient(135deg, #6279E6, #8B6FE0);
  color: #fff; font-weight: 600; text-shadow: none;
  box-shadow: 0 4px 18px rgba(110, 116, 224, .28);
}
.ld-head .btn-primary:hover, .ld-auth-card .btn-primary:hover, .ld-cta .btn-primary:hover {
  opacity: .94; box-shadow: 0 6px 22px rgba(110, 116, 224, .34);
}

/* ---------- Герой ---------- */
.ld-hero { padding: 40px 0 30px; text-align: center; position: relative; }
.ld-hero-svg { margin: 0 auto; max-width: 1440px; }
.ld-hero-svg svg { width: 100%; height: auto; display: block; }
.ld-hero h1 {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.03em;
  font-size: clamp(34px, 5.2vw, 64px); line-height: 1.05; margin: 10px 0 16px;
  background: linear-gradient(100deg, #EEF1F9 20%, #A9C3FF 55%, #C4B5FD 80%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.ld-tag { color: var(--text-2); font-size: clamp(15px, 1.6vw, 18px); max-width: 640px; margin: 0 auto 26px; line-height: 1.6; }
.ld-lead {
  color: var(--text); font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em;
  font-size: clamp(18px, 2.3vw, 26px); line-height: 1.35; max-width: 720px; margin: 0 auto 14px;
}
.ld-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; align-items: center; }
.ld-note { color: var(--muted); font-size: 12.5px; margin-top: 14px; }

/* ---------- ECG-анимация через кристалл ----------
   Комета скрыта за пределами пути 0–25% и 75–100% цикла (период dash 200),
   движется 25–75% — синхронно с SMIL-головой (keyPoints/keyTimes). */
@keyframes ldComet { from { stroke-dashoffset: 50; } to { stroke-dashoffset: -150; } }
.ld-comet { stroke-dasharray: 10 190; stroke-dashoffset: 50; animation: ldComet 4.6s linear infinite; }

/* Зажигание узлов при проходе пульса (цикл 4.6s, фазы — delay) */
@keyframes ldNodeIgnite {
  0%, 100% { opacity: .55; transform: scale(1); }
  4% { opacity: 1; transform: scale(2); }
  12% { opacity: .55; transform: scale(1); }
}
.ld-ignite { animation: ldNodeIgnite 4.6s ease-out infinite; transform-box: fill-box; transform-origin: center; }

/* Мерцание фоновых узлов */
@keyframes ldTwinkle { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
.ld-twinkle { animation: ldTwinkle 3.2s ease-in-out infinite; }
.ld-twinkle:nth-of-type(2n) { animation-delay: .7s; }
.ld-twinkle:nth-of-type(3n) { animation-delay: 1.3s; }

/* Дыхание ядра */
@keyframes ldCoreBreath { 0%, 100% { opacity: .8; } 50% { opacity: 1; } }
.ld-core-breath { animation: ldCoreBreath 4.6s ease-in-out infinite; }

/* Свечение-ореол кристалла */
@keyframes ldHaloBreath { 0%, 100% { opacity: .25; } 50% { opacity: .5; } }
.ld-halo { animation: ldHaloBreath 4.6s ease-in-out infinite; }

/* Появление героя */
@keyframes ldHeroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.ld-hero-in { animation: ldHeroIn .9s cubic-bezier(.2,.7,.3,1) both; }
.ld-hero-in-1 { animation-delay: .15s; }
.ld-hero-in-2 { animation-delay: .3s; }
.ld-hero-in-3 { animation-delay: .45s; }

/* ---------- Секции ---------- */
.ld-sec { padding: 64px 0 24px; scroll-margin-top: 76px; }
.ld-sec-title { font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px); font-weight: 700; letter-spacing: -.02em; text-align: center; margin-bottom: 10px; }
.ld-sec-sub { color: var(--muted); text-align: center; max-width: 620px; margin: 0 auto 34px; font-size: 15px; line-height: 1.6; }

/* Блок «Найти тренд первым» под таксономией */
.ld-trend { text-align: center; max-width: 720px; margin: 12px auto 10px; }
.ld-trend h3 {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 34px);
  font-weight: 700; letter-spacing: -.02em; margin-bottom: 10px;
}
.ld-trend p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }

/* ---------- Демо-вставка «В фокусе системы» ---------- */
.ld-demo { margin-top: 28px; }
.ld-demo-label {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.ld-demo-label::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); animation: ldNetDot 2.4s ease-in-out infinite;
}
.ld-demo-label-2 { margin-top: 30px; }

/* 5 строк объектов с ротацией */
.ld-live { max-width: 620px; margin: 14px auto 0; display: flex; flex-direction: column; gap: 8px; }
.ld-live-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 12px;
  padding: 10px 16px;
  transition: opacity .27s ease, transform .27s ease, filter .27s ease;
}
.ld-live-name { flex: 1; text-align: left; font-family: var(--font-display); font-size: 14.5px; font-weight: 600; letter-spacing: -.01em; }
.ld-live-cat {
  padding: 4px 11px; border-radius: 999px; white-space: nowrap;
  font-size: 11px; font-weight: 500; line-height: 1.2;
  background: var(--bg-2); border: 1px solid;
}
.ld-lc-product { border-color: rgba(91,140,255,.45); color: #A9C3FF; }
.ld-lc-ingredient { border-color: rgba(139,92,246,.45); color: #C4B5FD; }
.ld-lc-market { border-color: rgba(52,211,153,.42); color: #8FE8C6; }
.ld-lc-procedure { border-color: rgba(251,191,36,.42); color: #FCD34D; }
.ld-lc-delivery { border-color: rgba(56,189,248,.42); color: #7DD3FC; }
.ld-live-arrow { width: 19px; height: 19px; flex-shrink: 0; }
.ld-da-up { color: var(--good); filter: drop-shadow(0 0 5px rgba(52,211,153,.45)); }
.ld-da-down { color: var(--bad); filter: drop-shadow(0 0 5px rgba(248,113,113,.40)); }
.ld-swap-out { opacity: 0; transform: translateY(-9px); filter: blur(4px); }
.ld-swap-in { animation: ldSwapIn .46s cubic-bezier(.2,.7,.3,1); }
@keyframes ldSwapIn { from { opacity: 0; transform: translateY(11px); filter: blur(4px); } to { opacity: 1; transform: none; filter: blur(0); } }

/* Карточки концепций */
.ld-combo { max-width: 720px; margin: 14px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 720px) { .ld-combo { grid-template-columns: 1fr; } }
.ld-combo-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 18px 18px 16px; text-align: left; }
.ld-combo-name { font-size: 13.5px; font-weight: 600; line-height: 1.4; min-height: 38px; margin-bottom: 10px; }
.ld-combo-score { font-size: 13px; color: var(--muted); margin-bottom: 9px; }
.ld-combo-score b { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -.02em; }
.ld-cs-good b { color: var(--good); }
.ld-cs-warn b { color: var(--warn); }
.ld-cs-warm b { color: #FB923C; }
.ld-combo-bar { height: 4px; border-radius: 2px; background: var(--surface-3); overflow: hidden; }
.ld-combo-bar > div { height: 100%; border-radius: 2px; }
.ld-cb-good { background: var(--good); box-shadow: 0 0 8px rgba(52,211,153,.4); }
.ld-cb-warn { background: var(--warn); box-shadow: 0 0 8px rgba(251,191,36,.35); }
.ld-cb-warm { background: #FB923C; box-shadow: 0 0 8px rgba(251,146,60,.35); }

/* Шаги */
.ld-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
@media (max-width: 980px) { .ld-steps { grid-template-columns: 1fr; } }
.ld-step { position: relative; padding: 24px 22px 22px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); }
.ld-step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 30px; font-weight: 700;
  background: var(--scheme-gradient); -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 10px;
}
.ld-step h3 { font-size: 15px; margin-bottom: 8px; font-family: var(--font-display); }
.ld-step p { color: var(--text-2); font-size: 13.5px; line-height: 1.6; }

/* Аудитория */
.ld-aud { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media (max-width: 980px) { .ld-aud { grid-template-columns: 1fr; } }
.ld-aud-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px; }
.ld-aud-card h3 { font-family: var(--font-display); font-size: 15.5px; margin-bottom: 10px; color: var(--accent); }
.ld-aud-card ul { list-style: none; }
.ld-aud-card li { color: var(--text-2); font-size: 13.5px; line-height: 1.55; padding: 5px 0 5px 20px; position: relative; }
.ld-aud-card li::before { content: ''; position: absolute; left: 0; top: 12px; width: 8px; height: 8px; border-radius: 50%; background: var(--scheme-gradient); }

/* Метрики-стрип */
.ld-metrics { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }

/* ---------- Живая сеть таксономии: сигналы → объекты → категории ---------- */
.ld-net {
  position: relative; max-width: 1080px; margin: 0 auto 34px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); height: 520px; overflow: hidden;
}
/* центральное свечение-ядро */
.ld-net-glow {
  position: absolute; left: 50%; top: 50%; width: 660px; height: 660px;
  transform: translate(-50%,-50%); pointer-events: none;
  background: radial-gradient(circle, rgba(139,92,246,.17), transparent 62%);
  animation: ldNetGlow 6s ease-in-out infinite;
}
@keyframes ldNetGlow { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
/* рёбра */
.ld-net-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.ld-net-edge {
  fill: none; stroke: rgba(169,195,255,.20); stroke-width: 1; stroke-linecap: round;
  animation: ldNetEdge 4.5s ease-in-out infinite;
}
.ld-net-edge.ld-ne-s { stroke: rgba(52,211,153,.17); }
.ld-net-edge.ld-ne-c { stroke: rgba(167,139,250,.19); }
.ld-net-edge.ld-ne-o { stroke: rgba(169,195,255,.14); stroke-dasharray: 2 6; }
@keyframes ldNetEdge { 0%,100% { stroke-opacity: .4; } 50% { stroke-opacity: 1; } }
/* бегущие пульсы по рёбрам */
.ld-net-pulse { filter: drop-shadow(0 0 6px currentColor); }
.ld-np-s { fill: #34D399; color: #34D399; }
.ld-np-c { fill: #A78BFA; color: #A78BFA; }
.ld-np-o { fill: #A9C3FF; color: #A9C3FF; }
/* группы чипов: на десктопе «растворяются», чипы позиционируются в сцене */
.ld-net-group { display: contents; }
.ld-net-zone {
  position: absolute; left: calc(var(--x) * 1%); top: calc(var(--y) * 1%); z-index: 2;
  transform: translate(-50%,0);
  display: flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
}
.ld-net-zone::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; animation: ldNetDot 2.4s ease-in-out infinite;
}
@keyframes ldNetDot { 0%,100% { opacity: .35; } 50% { opacity: 1; } }
.ld-nz-s { color: #34D399; }
.ld-nz-o { color: #5B8CFF; }
.ld-nz-c { color: #A78BFA; }
.ld-net-chip {
  position: absolute; left: calc(var(--x) * 1%); top: calc(var(--y) * 1%); z-index: 2;
  padding: 7px 13px; border-radius: 999px; white-space: nowrap;
  font-size: 12.5px; font-weight: 500; line-height: 1.2;
  background: var(--bg-2); border: 1px solid var(--border-strong);
  transform: translate(-50%,-50%);
  animation: ldNetFloat 6.5s ease-in-out infinite;
  animation-delay: var(--fd, 0s);
}
@keyframes ldNetFloat {
  0%,100% { transform: translate(-50%, calc(-50% - 4px)); }
  50% { transform: translate(-50%, calc(-50% + 4px)); }
}
.ld-nc-s { border-color: rgba(52,211,153,.42); color: #8FE8C6; box-shadow: 0 0 16px rgba(52,211,153,.10); }
.ld-nc-o { border-color: rgba(91,140,255,.45); color: #A9C3FF; box-shadow: 0 0 16px rgba(91,140,255,.12); }
.ld-nc-c { border-color: rgba(139,92,246,.45); color: #C4B5FD; box-shadow: 0 0 16px rgba(139,92,246,.12); }
/* мобильный вариант: статичные группы без сцены */
@media (max-width: 900px) {
  .ld-net { height: auto; padding: 20px 22px; overflow: visible; }
  .ld-net-glow, .ld-net-svg { display: none; }
  .ld-net-group { display: block; padding-top: 16px; margin-top: 16px; border-top: 1px solid var(--border); }
  .ld-net-group.ld-ng-s { padding-top: 0; margin-top: 0; border-top: none; }
  .ld-net-zone { position: static; transform: none; margin-bottom: 11px; }
  .ld-net-chip { position: static; transform: none; animation: none; display: inline-flex; margin: 0 6px 6px 0; }
}

/* Формы auth */
.ld-auth { padding-bottom: 70px; }
.ld-auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; max-width: 860px; margin: 0 auto; }
@media (max-width: 860px) { .ld-auth-grid { grid-template-columns: 1fr; } }
.ld-auth-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; }
.ld-auth-card h3 { font-family: var(--font-display); font-size: 18px; margin-bottom: 6px; }
.ld-auth-card .caption { margin-bottom: 16px; }
.ld-auth-card input {
  width: 100%; padding: 12px 14px; border-radius: 12px; margin-bottom: 12px;
  background: var(--surface-2); border: 1px solid var(--border);
  color: var(--text); font-family: var(--font-ui); font-size: 14px; outline: none;
  transition: border-color var(--t-fast);
}
.ld-auth-card input:focus { border-color: var(--accent); }
.ld-auth-guest { text-align: center; margin-top: 22px; }
.ld-error { background: rgba(248,113,113,.12); border: 1px solid rgba(248,113,113,.35); color: var(--bad); border-radius: 10px; padding: 10px 14px; font-size: 13px; margin-bottom: 12px; }

/* Подвал лендинга */
.ld-foot { border-top: 1px solid var(--border); padding: 26px 0 34px; text-align: center; color: var(--muted); font-size: 13px; }
.ld-legal { font-size: 12px; opacity: .6; }
.ld-legal a { color: inherit; text-decoration: none; border-bottom: 1px dotted var(--border); }
.ld-legal a:hover { opacity: 1; }

/* Скролл-появление секций */
.ld-reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.ld-reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .ld-comet, .ld-comet-trail, .ld-ignite, .ld-twinkle, .ld-core-breath, .ld-halo, .ld-hero-in { animation: none !important; }
  .ld-net-glow, .ld-net-edge, .ld-net-zone::before, .ld-net-chip { animation: none !important; }
  .ld-demo-label::before, .ld-swap-in { animation: none !important; }
  .ld-reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- FAQ (SEO-блок) ---------- */
.ld-faq { max-width: 860px; margin: 0 auto; }
.ld-faq details {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 15px 20px; margin-bottom: 10px;
}
.ld-faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between;
  align-items: center; gap: 14px; font-weight: 600; font-size: 14.5px;
  font-family: var(--font-display); color: var(--text);
}
.ld-faq summary::-webkit-details-marker { display: none; }
.ld-faq summary::after {
  content: '+'; flex: none; font-size: 18px; font-weight: 500; color: var(--muted);
  transition: transform var(--t-fast);
}
.ld-faq details[open] summary::after { content: '−'; }
.ld-faq details p { color: var(--text-2); font-size: 13.5px; line-height: 1.65; margin: 10px 0 2px; }

/* ---------- Внутренние страницы лендинга (Контакты, Тарифы) ---------- */
.ld-page { padding: 56px 0 70px; }
.ld-page-title {
  font-family: var(--font-display); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(28px, 3.6vw, 40px); text-align: center; margin-bottom: 10px;
}
.ld-page-sub { color: var(--muted); text-align: center; max-width: 620px; margin: 0 auto 38px; font-size: 15px; line-height: 1.6; }

/* Контакты */
.ld-contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 960px; margin: 0 auto; }
@media (max-width: 900px) { .ld-contact-grid { grid-template-columns: 1fr; } }
.ld-contact-card {
  display: block; text-decoration: none; color: var(--text); text-align: center;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 30px 24px; transition: border-color var(--t-fast), transform var(--t-fast);
}
.ld-contact-card:hover { border-color: var(--border-strong); transform: translateY(-2px); text-decoration: none; }
.ld-contact-ic {
  width: 46px; height: 46px; margin: 0 auto 14px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2); border: 1px solid var(--border); color: var(--accent);
}
.ld-contact-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.ld-contact-card h3 { font-family: var(--font-display); font-size: 15px; margin-bottom: 6px; }
.ld-contact-val { color: var(--accent); font-size: 14.5px; font-weight: 600; word-break: break-word; }
.ld-contact-hint { color: var(--muted); font-size: 12.5px; margin-top: 6px; }
.ld-contact-note { text-align: center; color: var(--muted); font-size: 13px; margin-top: 26px; }

/* Тариф */
.ld-tariff {
  position: relative; max-width: 720px; margin: 0 auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 36px 34px 30px;
}
.ld-tariff-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 5px 15px; border-radius: 999px; white-space: nowrap;
  background: linear-gradient(135deg, #6279E6, #8B6FE0); color: #fff;
  font-size: 11.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(110, 116, 224, .35);
}
.ld-tariff h3 { font-family: var(--font-display); font-size: 22px; text-align: center; margin-bottom: 6px; }
.ld-tariff-sub { color: var(--muted); text-align: center; font-size: 13.5px; margin-bottom: 22px; }
.ld-tariff-feats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 9px 20px; margin-bottom: 26px; }
@media (max-width: 640px) { .ld-tariff-feats { grid-template-columns: 1fr; } }
.ld-tariff-feats li { position: relative; padding-left: 26px; color: var(--text-2); font-size: 13.5px; line-height: 1.55; }
.ld-tariff-feats li svg {
  position: absolute; left: 0; top: 2px; width: 16px; height: 16px;
  fill: none; stroke: var(--good); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
}
.ld-plans { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 640px) { .ld-plans { grid-template-columns: 1fr; } }
.ld-plan {
  position: relative; text-align: center; background: var(--bg-2);
  border: 1px solid var(--border); border-radius: var(--r-lg); padding: 22px 18px;
}
.ld-plan-best { border-color: rgba(139, 111, 224, .55); box-shadow: 0 0 26px rgba(139, 111, 224, .12); }
.ld-plan-save {
  position: absolute; top: -11px; right: 16px; padding: 3px 11px; border-radius: 999px;
  background: rgba(52, 211, 153, .14); border: 1px solid rgba(52, 211, 153, .45); color: var(--good);
  font-size: 11px; font-weight: 600;
}
.ld-plan-name { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.ld-plan-price { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -.02em; }
.ld-plan-price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.ld-plan-per { color: var(--muted); font-size: 12.5px; margin: 4px 0 16px; }
.ld-tariff .btn { width: 100%; justify-content: center; }
.ld-tariff .btn-primary {
  background: linear-gradient(135deg, #6279E6, #8B6FE0); color: #fff; font-weight: 600;
  box-shadow: 0 4px 18px rgba(110, 116, 224, .28);
}
.ld-tariff .btn-primary:hover { opacity: .94; box-shadow: 0 6px 22px rgba(110, 116, 224, .34); }
.ld-tariff-note { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 18px; }

/* Ссылки подвала */
.ld-foot-links { margin-top: 12px; display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; font-size: 12.5px; }
.ld-foot-links a { color: var(--muted); text-decoration: none; }
.ld-foot-links a:hover { color: var(--text); }

/* Мобильное меню шапки */
@media (max-width: 860px) {
  .ld-head-inner { flex-wrap: wrap; padding-bottom: 10px; }
  .ld-head nav { flex-wrap: wrap; }
}
