﻿/* ============================================================
   Dragon Money — DragonMoney-Тест1
   Порядок: tokens.css → palette-dragon.css → style.css
   Блоки: Шапка 03-logo-center-nav · Hero 01-split-right ·
          Слайдер 06-coverflow · Преимущества 05-cta-plus ·
          Бонусы 01-gradient-timeline · Подвал 02-line-stack ·
          Модалка 02-bonus-toast
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  min-height: 100vh;
  font-family: var(--lb-font-body);
  color: var(--dm-text);
  background: var(--dm-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; height: auto; display: block; }

.dm-sr-only {
  position: absolute !important;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* Фон — тёмный красно-золотой vignette (без background-attachment: fixed) */
.page-bg {
  position: fixed; inset: 0; z-index: -1;
  background:
    radial-gradient(1100px 700px at 15% -10%, rgba(238, 161, 36, 0.28) 0%, transparent 60%),
    radial-gradient(900px 600px at 105% 110%, rgba(255, 212, 82, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, rgba(14, 7, 8, 0.72) 0%, rgba(14, 7, 8, 0.90) 100%),
    url("../assets/bg/bg.png") center / cover no-repeat;
  pointer-events: none;
  transform: translateZ(0);
}

.page { min-height: 100vh; display: flex; flex-direction: column; }
.page__main { flex: 1; }

.section { padding: 48px 0; }
.section--tight { padding: 32px 0; }
.section--games { padding: 24px 0 40px; }

@media (max-width: 720px) {
  .section { padding: 32px 0; }
  .section--games { padding: 16px 0 24px; }
}

/* ============================================================
   Шапка — 03-logo-center-nav (лого слева, nav в центре, CTA справа)
   ============================================================ */
.lb-header-center {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}

.lb-header-center__brand { justify-self: start; display: flex; text-decoration: none; }
.lb-header-center__img {
  height: 58px; width: auto;
  object-fit: contain;
  /* brush-lettering svg тёмный по умолчанию — инвертируем в белый на тёмном фоне */
  filter: invert(1) brightness(1.08) drop-shadow(0 10px 22px rgba(238, 161, 36, 0.42));
}

.lb-header-center__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.lb-header-center__link {
  font-family: var(--lb-font-body);
  font-size: 14px;
  color: var(--dm-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
  position: relative;
}
.lb-header-center__link::after {
  content: "";
  position: absolute;
  left: 50%; bottom: -6px;
  width: 0; height: 2px;
  background: linear-gradient(90deg, var(--dm-amber-hi) 0%, var(--dm-amber) 100%);
  transition: width 0.25s ease, left 0.25s ease;
}
.lb-header-center__link:hover { color: var(--dm-amber); }
.lb-header-center__link:hover::after { width: 100%; left: 0; }

.lb-header-center__actions { justify-self: end; }
.lb-header-center__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--dm-amber-hi) 0%, var(--dm-amber-deep) 100%);
  color: #fff;
  font-family: var(--lb-font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(255, 212, 82, 0.55);
  box-shadow: 0 10px 26px rgba(238, 161, 36, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lb-header-center__btn:hover { transform: translateY(-1px); filter: brightness(1.10); }

@media (max-width: 860px) {
  .lb-header-center { grid-template-columns: 1fr; justify-items: center; row-gap: 14px; }
  .lb-header-center__brand, .lb-header-center__actions { justify-self: center; }
}

/* ============================================================
   Hero — 01-split-right (визуал слева, текст справа)
   ============================================================ */
.lb-hero-split {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
}
.lb-hero-split::before {
  content: "";
  position: absolute;
  left: 8%; top: 10%;
  width: 46%; height: 80%;
  background: radial-gradient(ellipse at center, rgba(238, 161, 36, 0.32) 0%, rgba(255, 212, 82, 0.16) 40%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.lb-hero-split__logo {
  position: relative; z-index: 1;
  width: min(440px, 92%);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 22px 42px rgba(238, 161, 36, 0.45));
  animation: dmFloat 6s ease-in-out infinite;
}
@keyframes dmFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

.lb-hero-split__content {
  position: relative; z-index: 1;
  text-align: right;
}

.lb-hero-split__title {
  margin: 0 0 16px;
  font-family: var(--lb-font-display);
  font-size: clamp(28px, 3.8vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dm-text);
}
.lb-hero-split__title-accent {
  background: linear-gradient(180deg, var(--dm-amber) 0%, var(--dm-amber) 55%, var(--dm-amber-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lb-hero-split__text {
  margin: 0 0 8px;
  font-family: var(--lb-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--dm-text-soft);
}
.lb-hero-split__bonus {
  margin: 0 0 26px;
  font-family: var(--lb-font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--dm-amber);
}

.lb-hero-split__buttons {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: flex-end;
}

.lb-hero-split__btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--lb-font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.lb-hero-split__btn:hover { transform: translateY(-1px); }

.lb-hero-split__btn--fill {
  background: linear-gradient(180deg, var(--dm-amber-hi) 0%, var(--dm-amber-deep) 100%);
  color: #fff;
  border: 2px solid var(--dm-amber);
  box-shadow: 0 12px 28px rgba(238, 161, 36, 0.42);
}
.lb-hero-split__btn--fill:hover { filter: brightness(1.10); }

.lb-hero-split__btn--outline {
  background: transparent;
  color: var(--dm-amber);
  border: 2px solid rgba(255, 212, 82, 0.6);
}
.lb-hero-split__btn--outline:hover { background: rgba(255, 212, 82, 0.10); border-color: var(--dm-amber); color: var(--dm-amber); }

.lb-hero-split__btn-icon { width: 22px; height: 22px; }

@media (max-width: 860px) {
  .lb-hero-split { grid-template-columns: 1fr; text-align: center; }
  .lb-hero-split__content { text-align: center; }
  .lb-hero-split__buttons { justify-content: center; }
  .lb-hero-split__logo { width: min(300px, 74%); }
}

/* ============================================================
   Слайдер — 06-coverflow (3D фокус)
   ============================================================ */
.lb-slider-coverflow {
  --lb-cf-gap: 18px;
  --lb-cf-far: 130px;
  --lb-cf-near: 180px;
  --lb-cf-center: 250px;
  --lb-cf-radius: 26px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lb-slider-coverflow__title {
  margin: 0 0 28px;
  font-family: var(--lb-font-display);
  font-size: clamp(24px, 4.2vw, 42px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--dm-text);
  line-height: 1.15;
}
.lb-slider-coverflow__title-accent {
  background: linear-gradient(180deg, var(--dm-amber) 0%, var(--dm-amber-hi) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lb-slider-coverflow__viewport {
  width: 100%;
  height: var(--lb-cf-center);
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.lb-slider-coverflow__track {
  display: flex;
  align-items: center;
  gap: var(--lb-cf-gap);
  height: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.lb-slider-coverflow__slide {
  width: var(--lb-cf-far);
  height: var(--lb-cf-far);
  flex-shrink: 0;
  border-radius: var(--lb-cf-radius);
  overflow: hidden;
  transition: width 0.55s ease, height 0.55s ease, opacity 0.55s ease, box-shadow 0.4s ease;
  opacity: 0.55;
  border: 1px solid rgba(255, 212, 82, 0.20);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.lb-slider-coverflow__slide.is-near {
  width: var(--lb-cf-near);
  height: var(--lb-cf-near);
  opacity: 0.85;
  border-color: rgba(255, 212, 82, 0.35);
}
.lb-slider-coverflow__slide.is-center {
  width: var(--lb-cf-center);
  height: var(--lb-cf-center);
  opacity: 1;
  border-color: rgba(255, 212, 82, 0.65);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55), 0 0 34px rgba(238, 161, 36, 0.45);
}

.lb-slider-coverflow__slide a { display: block; width: 100%; height: 100%; text-decoration: none; }
.lb-slider-coverflow__media {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ============================================================
   Преимущества — 05-cta-plus (1 hero-карта + CTA-aside + 3 карты)
   ============================================================ */
.lb-adv-cta {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.lb-adv-cta__top {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: stretch;
  margin-bottom: 20px;
}

.lb-adv-cta__card {
  background:
    radial-gradient(400px 220px at 100% 0%, rgba(255, 255, 255, 0.18), transparent 65%),
    linear-gradient(160deg, var(--dm-amber-hi) 0%, var(--dm-amber) 55%, var(--dm-amber-deep) 100%);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 28px;
  padding: 24px 22px 26px;
  min-height: 200px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.lb-adv-cta__head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.lb-adv-cta__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(29, 32, 43, 0.85);
  display: grid; place-items: center;
  color: var(--dm-amber-hi);
  box-shadow: inset 0 0 0 1px rgba(29, 32, 43, 0.55);
}
.lb-adv-cta__icon svg { width: 26px; height: 26px; }

.lb-adv-cta__card-title {
  margin: 0;
  font-family: var(--lb-font-display);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--dm-ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}

.lb-adv-cta__card-text {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 14px;
  line-height: 1.55;
  color: #1D202B;
  font-weight: 500;
}

.lb-adv-cta__aside {
  display: flex; flex-direction: column;
  justify-content: center; align-items: flex-end;
  text-align: right;
  gap: 14px;
  padding: 8px 12px 8px 0;
}
.lb-adv-cta__title {
  margin: 0;
  font-family: var(--lb-font-display);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 700;
  background: linear-gradient(180deg, var(--dm-amber) 0%, var(--dm-amber) 60%, var(--dm-amber-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1;
}
.lb-adv-cta__subtitle {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 16px;
  color: var(--dm-text-soft);
}

.lb-adv-cta__buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; justify-content: flex-end; }
.lb-adv-cta__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: var(--lb-font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lb-adv-cta__btn:hover { transform: translateY(-1px); }
.lb-adv-cta__btn--fill {
  background: linear-gradient(180deg, var(--dm-amber-hi) 0%, var(--dm-amber-deep) 100%);
  color: #fff;
  border: 2px solid var(--dm-amber);
  box-shadow: 0 10px 24px rgba(238, 161, 36, 0.42);
}
.lb-adv-cta__btn--fill:hover { filter: brightness(1.10); }
.lb-adv-cta__btn--outline {
  background: transparent;
  color: var(--dm-amber);
  border: 2px solid rgba(255, 212, 82, 0.55);
}
.lb-adv-cta__btn--outline:hover { background: rgba(255, 212, 82, 0.10); border-color: var(--dm-amber); }

.lb-adv-cta__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.lb-adv-cta__row .lb-adv-cta__card {
  background: linear-gradient(160deg, var(--dm-panel) 0%, var(--dm-surface) 55%, #0B0D14 100%);
  border-color: rgba(238, 161, 36, 0.24);
  min-height: 180px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45);
}
.lb-adv-cta__row .lb-adv-cta__card-title {
  color: var(--dm-amber-hi);
  text-shadow: none;
}
.lb-adv-cta__row .lb-adv-cta__card-text {
  color: var(--dm-text);
  font-weight: 400;
}
.lb-adv-cta__row .lb-adv-cta__icon {
  color: var(--dm-amber-hi);
  background: linear-gradient(140deg, rgba(238, 161, 36, 0.28) 0%, rgba(255, 212, 82, 0.10) 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 212, 82, 0.38);
}

@media (max-width: 900px) {
  .lb-adv-cta__top { grid-template-columns: 1fr; }
  .lb-adv-cta__aside { align-items: center; text-align: center; padding: 8px 0 0; }
  .lb-adv-cta__buttons { justify-content: center; }
  .lb-adv-cta__row { grid-template-columns: 1fr; }
}

/* ============================================================
   Бонусы — 01-gradient-timeline (адаптирован под красный/золото)
   ============================================================ */
.lb-bonus-grad {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.lb-bonus-grad__title {
  margin: 0 0 12px;
  font-family: var(--lb-font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.lb-bonus-grad__title-dark { color: var(--dm-text); }
.lb-bonus-grad__title-blue {
  background: linear-gradient(180deg, var(--dm-amber) 0%, var(--dm-amber-hi) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lb-bonus-grad__subtitle {
  margin: 0 auto 28px;
  max-width: 640px;
  font-family: var(--lb-font-body);
  font-size: 15px;
  line-height: 1.55;
  color: var(--dm-text-soft);
}

.lb-bonus-grad__card {
  position: relative;
  border-radius: 40px;
  padding: 36px 40px 32px;
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(255, 255, 255, 0.22), transparent 65%),
    linear-gradient(120deg, #FFC93A 0%, #EEA124 45%, #B77816 80%, #7A4E0E 100%);
  color: var(--dm-ink);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.32);
  overflow: hidden;
}
.lb-bonus-grad__card::before {
  content: "";
  position: absolute;
  left: -80px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 65%);
  pointer-events: none;
}

.lb-bonus-grad__card-title {
  margin: 0 0 8px;
  font-family: var(--lb-font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dm-ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.28);
  position: relative;
}
.lb-bonus-grad__card-sub {
  margin: 0 0 36px;
  font-family: var(--lb-font-body);
  font-size: 16px;
  color: #1D202B;
  font-weight: 500;
  position: relative;
}

.lb-bonus-grad__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  margin-bottom: 32px;
}
.lb-bonus-grad__steps::before {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  top: 58px; height: 2px;
  background: rgba(29, 32, 43, 0.55);
  z-index: 0;
}

.lb-bonus-grad__step {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 8px;
}
.lb-bonus-grad__step-top,
.lb-bonus-grad__step-bottom {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 14px;
  color: var(--dm-ink);
  font-weight: 600;
  white-space: nowrap;
}
.lb-bonus-grad__step-icon {
  width: 78px; height: 78px;
  object-fit: contain;
  /* сундук LB → тёмный на жёлтой плашке */
  filter: brightness(0) opacity(0.85) drop-shadow(0 6px 14px rgba(0, 0, 0, 0.20));
}

.lb-bonus-grad__btn-wrap { display: flex; justify-content: center; position: relative; }
.lb-bonus-grad__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px;
  padding: 0 34px;
  border-radius: 999px;
  background: var(--dm-ink);
  color: #FFFFFF;
  font-family: var(--lb-font-display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.32);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lb-bonus-grad__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.15);
}

@media (max-width: 720px) {
  .lb-bonus-grad__card { padding: 28px 20px 24px; }
  .lb-bonus-grad__steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lb-bonus-grad__steps::before { display: none; }
  .lb-bonus-grad__step-top, .lb-bonus-grad__step-bottom { white-space: normal; }
}

/* ============================================================
   SEO / убедительный текст
   ============================================================ */
.dm-seo { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.dm-seo__title {
  margin: 0 0 24px;
  text-align: center;
  font-family: var(--lb-font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.dm-seo__title-dark { color: var(--dm-text); }
.dm-seo__title-blue {
  background: linear-gradient(180deg, var(--dm-amber) 0%, var(--dm-amber-hi) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.dm-seo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: linear-gradient(160deg, var(--dm-panel) 0%, var(--dm-surface) 55%, #0B0405 100%);
  border: 1px solid rgba(255, 212, 82, 0.20);
  border-radius: 32px;
  padding: 36px 36px 32px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}
.dm-seo__col { display: flex; flex-direction: column; gap: 14px; }
.dm-seo__h3 {
  margin: 8px 0 0;
  font-family: var(--lb-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dm-amber);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.dm-seo__col p {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--dm-text);
}
.dm-seo__col p strong { color: var(--dm-amber); font-weight: 600; }
.dm-seo__list { margin: 0; padding: 0 0 0 4px; list-style: none; display: grid; gap: 8px; }
.dm-seo__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--lb-font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--dm-text-soft);
}
.dm-seo__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--dm-amber) 0%, var(--dm-amber-hi) 100%);
  box-shadow: 0 0 10px rgba(238, 161, 36, 0.55);
}
.dm-seo__list li strong { color: var(--dm-text); font-weight: 600; }

.dm-seo__list--num { counter-reset: dmstep; }
.dm-seo__list--num li::before {
  counter-increment: dmstep;
  content: counter(dmstep);
  width: 22px; height: 22px;
  top: 2px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--dm-amber-hi) 0%, var(--dm-amber-deep) 100%);
  color: #fff;
  font-family: var(--lb-font-body);
  font-size: 12px;
  font-weight: 700;
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(238, 161, 36, 0.42);
}
.dm-seo__list--num li { padding-left: 34px; }

.dm-seo__note {
  padding: 16px 18px;
  border-left: 3px solid var(--dm-amber);
  background: rgba(255, 212, 82, 0.08);
  border-radius: 0 14px 14px 0;
  color: var(--dm-text-soft) !important;
  font-style: italic;
}
.dm-seo__cta { margin-top: 6px; }
.dm-seo__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--dm-amber-hi) 0%, var(--dm-amber-deep) 100%);
  color: #fff;
  font-family: var(--lb-font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(255, 212, 82, 0.55);
  box-shadow: 0 12px 30px rgba(238, 161, 36, 0.42);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.dm-seo__btn:hover { transform: translateY(-1px); filter: brightness(1.10); }

/* FAQ */
.dm-seo__faq { margin: 28px auto 0; display: grid; gap: 12px; max-width: 900px; }
.dm-seo__q {
  border: 1px solid rgba(238, 161, 36, 0.26);
  border-radius: 14px;
  background: var(--dm-surface-2, rgba(255, 255, 255, 0.03));
  overflow: hidden;
}
.dm-seo__q[open] { border-color: rgba(238, 161, 36, 0.55); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 18px rgba(238, 161, 36, 0.18); }
.dm-seo__q > summary {
  position: relative;
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 18px;
  font-family: var(--lb-font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--dm-text);
}
.dm-seo__q > summary::-webkit-details-marker { display: none; }
.dm-seo__q > summary::after {
  content: "";
  position: absolute;
  right: 20px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--dm-amber);
  border-bottom: 2px solid var(--dm-amber);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.dm-seo__q[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }
.dm-seo__q p { margin: 0; padding: 0 18px 18px; font-family: var(--lb-font-body); font-size: 14.5px; line-height: 1.6; color: var(--dm-text-soft); }
.dm-seo__q p strong { color: var(--dm-amber); font-weight: 600; }

@media (max-width: 860px) { .dm-seo__grid { grid-template-columns: 1fr; padding: 26px 22px; } }

/* ============================================================
   Подвал — 02-line-stack
   ============================================================ */
.lb-footer-line {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 24px 28px;
  text-align: center;
}
.lb-footer-line__disclaimer,
.lb-footer-line__copy {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 13px;
  color: var(--dm-text-soft);
}
.lb-footer-line__copy { font-size: 12px; opacity: 0.75; }
.lb-footer-line__rule {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 212, 82, 0.35) 50%, transparent 100%);
  margin: 16px auto;
  max-width: 320px;
}

/* ============================================================
   Модалка — 02-bonus-toast (плашка снизу-справа)
   ============================================================ */
.lb-toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: min(360px, calc(100% - 32px));
  border-radius: 20px;
  padding: 16px 44px 16px 18px;
  background:
    radial-gradient(320px 180px at 100% 0%, rgba(255, 255, 255, 0.18), transparent 65%),
    linear-gradient(160deg, var(--dm-amber-hi) 0%, var(--dm-amber) 55%, var(--dm-amber-deep) 100%);
  color: var(--dm-ink);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 30px rgba(238, 161, 36, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: none;
  align-items: flex-start;
  gap: 12px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
.lb-toast.is-open { display: flex; transform: translateY(0); opacity: 1; }

.lb-toast__body { flex: 1; min-width: 0; }
.lb-toast__title {
  margin: 0 0 4px;
  font-family: var(--lb-font-display);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dm-ink);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.22);
}
.lb-toast__text {
  margin: 0 0 12px;
  font-family: var(--lb-font-body);
  font-size: 13px;
  line-height: 1.45;
  color: #1D202B;
  font-weight: 500;
}
.lb-toast__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 36px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--dm-ink);
  color: var(--dm-amber-hi);
  font-family: var(--lb-font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(255, 212, 82, 0.35);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.lb-toast__btn:hover { transform: translateY(-1px); filter: brightness(1.15); }

.lb-toast__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 28px; height: 28px;
  border: 0;
  border-radius: 50%;
  background: rgba(29, 32, 43, 0.55);
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.lb-toast__close:hover { background: var(--dm-ink); }
