/* Brand chrome — фиксированная айдентика */
:root {
  --lw-bg: #101710;
  --lw-block: #232d1b;
  --lw-card: #181f15;
  --lw-text: #fff;
  --lw-accent: #ffe14a;
  --lw-reg: #c8232c;
  --lw-reg-hover: #e03a3a;
  --lw-header-h: 72px;
  --lw-header-h-mobile: 56px;
  --animation-duration: 0.3s;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html, body {
  margin: 0;
  background: var(--lw-bg) !important;
  color: var(--lw-text) !important;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.touch-device * {
  -webkit-tap-highlight-color: transparent;
}

.touch-device a,
.touch-device button {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

a { color: inherit; text-decoration: none; }

.lw-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: var(--lw-bg);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.lw-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  min-height: var(--lw-header-h);
}

.lw-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.lw-logo-img {
  display: block;
  height: 48px;
  width: auto;
  object-fit: contain;
}

.lw-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 12px;
  flex: 1;
}

.lw-nav-link {
  padding: 8px 16px;
  border-radius: 8px;
  background: var(--lw-block);
  color: var(--lw-text) !important;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
}

.lw-nav--outline .lw-nav-link {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
}

.lw-nav--underline .lw-nav-link {
  background: transparent;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}

.lw-nav--underline .lw-nav-link:hover {
  border-bottom-color: var(--lw-accent);
}

.lw-nav--soft .lw-nav-link {
  background: rgba(35,45,27,0.6);
}

.lw-nav-link:hover {
  background: #3a4a2b;
  color: var(--lw-accent) !important;
}

.lw-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lw-btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}

.lw-btn-reg {
  background: var(--lw-reg);
  color: var(--lw-text) !important;
}

.lw-btn-reg:hover {
  background: var(--lw-reg-hover);
}

.lw-btn-login {
  background: var(--lw-block);
  color: var(--lw-text) !important;
  border: 1px solid rgba(255,255,255,0.12);
}

.lw-btn-login:hover {
  background: #3a4a2b;
}

.lw-btn--outline {
  border: 1px solid rgba(255,255,255,0.28);
}

.lw-btn--split {
  border-radius: 999px;
}

.lw-btn--solid {
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}

/* отступ под фиксированный header */
main {
  padding-top: calc(var(--lw-header-h) + 18px);
}

.lw-footer {
  background: #101710;
  border-top: 3px solid #232d1b;
  padding: 36px 16px 28px;
  margin-top: 48px;
  text-align: center;
}

.lw-footer-inner {
  max-width: 900px;
  margin: 0 auto;
}

.lw-footer-brand {
  margin-bottom: 14px;
}

.lw-footer-logo {
  display: inline-block;
  max-width: 210px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lw-footer-links {
  margin-bottom: 12px;
  font-size: 1rem;
}

.lw-footer-links a {
  color: var(--lw-accent) !important;
  font-weight: 600;
  margin: 0 4px;
}

.lw-footer-links a:hover {
  text-decoration: underline;
}

.lw-footer-sep {
  color: var(--lw-accent);
  margin: 0 6px;
  opacity: 0.85;
}

.lw-footer-copy {
  color: #aaa;
  font-size: 0.95rem;
  margin: 0;
}

.lw-quick-btns {
  position: fixed;
  z-index: 3000;
  left: 20px;
  bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lw-quick-mail {
  position: fixed !important;
  left: auto !important;
  right: 22px !important;
  bottom: 28px !important;
}

.lw-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: none;
  border-radius: 999px;
  background: var(--lw-block);
  color: var(--lw-accent) !important;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  box-shadow: 0 2px 14px rgba(0,0,0,0.35);
  transition: background 0.2s, color 0.2s;
}

.lw-quick-btn:hover {
  background: var(--lw-accent);
  color: var(--lw-block) !important;
}

.lw-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  :root { --lw-header-h: 64px; }
  .lw-nav { display: none; }
  .lw-header-inner { padding: 0 10px; }
  .lw-logo-img { height: 40px; }
}

@media (max-width: 600px) {
  :root { --lw-header-h: var(--lw-header-h-mobile); --animation-duration: 0.2s; }
  .lw-btn { padding: 8px 12px; font-size: 0.85rem; }
}

.lw-header-inner--v6 .lw-logo-img {
  filter: drop-shadow(0 0 8px rgba(255,225,74,0.16));
}

