/* ============================================================
   JoyCasino — JoyCasino-Тест1
   Порядок: tokens.css → palette-joy.css → style.css
   Блоки: Шапка 01-nav-only · Hero 04-circle-split · Слайдер 01-focus ·
          Преимущества 01-alt-grid · Бонусы 02-light-timeline (recolored) ·
          Подвал 04-minimal · Модалка 01-bonus-modal
   ============================================================ */

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

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

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

.jc-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(30, 111, 75, 0.30) 0%, transparent 60%),
    radial-gradient(900px 600px at 105% 105%, rgba(245, 211, 135, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, rgba(14, 16, 23, 0.72) 0%, rgba(14, 16, 23, 0.92) 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; }
}

/* ============================================================
   Шапка — 01-nav-only (центрированная навигация + CTA)
   ============================================================ */
.lb-header-nav {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 22px 24px 18px;
}

.lb-header-nav__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 12px 22px;
  border-radius: 999px;
  background: rgba(23, 26, 36, 0.78);
  border: 1px solid rgba(245, 211, 135, 0.22);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.lb-header-nav__link {
  font-family: var(--lb-font-body);
  font-size: 14px;
  color: var(--jc-text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}
.lb-header-nav__link:hover { color: var(--jc-gold-hi); }

.lb-header-nav__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--jc-emerald-hi) 0%, var(--jc-emerald) 55%, var(--jc-emerald-deep) 100%);
  color: var(--jc-gold-hi);
  font-family: var(--lb-font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  border: 1px solid rgba(245, 211, 135, 0.55);
  box-shadow: 0 8px 22px rgba(11, 54, 36, 0.55), inset 0 1px 0 rgba(255, 243, 196, 0.20);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lb-header-nav__btn:hover { transform: translateY(-1px); filter: brightness(1.10); }

@media (max-width: 620px) {
  .lb-header-nav__bar { gap: 18px; padding: 10px 18px; }
}

/* ============================================================
   Hero — 04-circle-split (лого-круг слева, текст справа)
   ============================================================ */
.lb-hero-circle {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 48px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
  position: relative;
}

.lb-hero-circle__logo-wrap {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.lb-hero-circle__logo-wrap::before {
  content: "";
  position: absolute;
  inset: -8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(245, 211, 135, 0.28) 0%, rgba(30, 111, 75, 0.20) 45%, transparent 72%);
  filter: blur(8px);
  z-index: 0;
}

.lb-hero-circle__logo {
  position: relative; z-index: 1;
  width: min(400px, 100%);
  height: auto;
  filter: drop-shadow(0 22px 44px rgba(245, 211, 135, 0.32));
  animation: jcFloat 6s ease-in-out infinite;
}
@keyframes jcFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-8px); }
}

.lb-hero-circle__content { text-align: right; }

.lb-hero-circle__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(--jc-text);
}
.lb-hero-circle__title-accent {
  background: linear-gradient(180deg, var(--jc-gold-hi) 0%, var(--jc-gold) 55%, var(--jc-gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lb-hero-circle__text {
  margin: 0 0 8px;
  font-family: var(--lb-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--jc-text-soft);
}
.lb-hero-circle__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(--jc-gold-hi);
}

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

.lb-hero-circle__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px;
  padding: 0 26px;
  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-circle__btn:hover { transform: translateY(-1px); }

.lb-hero-circle__btn--fill {
  background: linear-gradient(180deg, var(--jc-copper-hi) 0%, var(--jc-copper) 55%, var(--jc-copper-deep) 100%);
  color: #FFFFFF;
  border: 2px solid var(--jc-gold);
  box-shadow: 0 12px 28px rgba(197, 107, 45, 0.45);
}
.lb-hero-circle__btn--fill:hover { filter: brightness(1.10); }

.lb-hero-circle__btn--outline {
  background: transparent;
  color: var(--jc-gold-hi);
  border: 2px solid rgba(245, 211, 135, 0.55);
}
.lb-hero-circle__btn--outline:hover {
  background: rgba(245, 211, 135, 0.10);
  border-color: var(--jc-gold);
  color: var(--jc-gold);
}

@media (max-width: 860px) {
  .lb-hero-circle { grid-template-columns: 1fr; text-align: center; }
  .lb-hero-circle__content { text-align: center; }
  .lb-hero-circle__buttons { justify-content: center; }
  .lb-hero-circle__logo { width: min(300px, 74%); }
}

/* ============================================================
   Слайдер — 01-focus (центр-фокус с 3D)
   ============================================================ */
.lb-slider-focus {
  --lb-gap: 20px;
  --lb-side: 158px;
  --lb-center: 250px;
  --lb-radius: 26px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.lb-slider-focus__viewport {
  width: calc(var(--lb-side) * 2 + var(--lb-center) + var(--lb-gap) * 2);
  max-width: 100%;
  height: var(--lb-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-focus__track {
  display: flex;
  align-items: center;
  gap: var(--lb-gap);
  height: 100%;
  transition: transform 0.55s ease;
  will-change: transform;
}

.lb-slider-focus__slide {
  width: var(--lb-side);
  height: var(--lb-side);
  flex-shrink: 0;
  border-radius: var(--lb-radius);
  overflow: hidden;
  transition: width 0.55s ease, height 0.55s ease, opacity 0.55s ease, box-shadow 0.4s ease;
  opacity: 0.65;
  border: 1px solid rgba(245, 211, 135, 0.18);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.45);
}
.lb-slider-focus__slide.is-center {
  width: var(--lb-center);
  height: var(--lb-center);
  opacity: 1;
  border-color: rgba(245, 211, 135, 0.65);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.55), 0 0 34px rgba(30, 111, 75, 0.55);
}

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

/* ============================================================
   Преимущества — 01-alt-grid (2×2, чередование tone)
   ============================================================ */
.lb-adv-alt {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
}

.lb-adv-alt__title {
  margin: 0 0 36px;
  text-align: center;
  font-family: var(--lb-font-display);
  font-size: clamp(28px, 4.4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lb-adv-alt__title-dark { color: var(--jc-text); }
.lb-adv-alt__title-blue {
  background: linear-gradient(180deg, var(--jc-gold-hi) 0%, var(--jc-gold) 55%, var(--jc-gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

.lb-adv-alt__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.lb-adv-alt__card {
  border-radius: 32px;
  padding: 28px 30px 30px;
  min-height: 180px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.42);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.lb-adv-alt__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.55), 0 0 26px rgba(245, 211, 135, 0.22);
}

/* muted → тёмная сурф-карточка с золотым бордюром */
.lb-adv-alt__card--muted {
  background: linear-gradient(160deg, var(--jc-panel) 0%, var(--jc-surface) 55%, #0B0D14 100%);
  border: 1px solid rgba(245, 211, 135, 0.22);
}
.lb-adv-alt__card--muted .lb-adv-alt__card-title {
  color: var(--jc-gold-hi);
  text-shadow: none;
}
.lb-adv-alt__card--muted .lb-adv-alt__card-text {
  color: var(--jc-text);
}

/* bright → изумрудная карточка с золотым текстом */
.lb-adv-alt__card--bright {
  background:
    radial-gradient(400px 220px at 100% 0%, rgba(245, 211, 135, 0.16), transparent 65%),
    linear-gradient(160deg, var(--jc-emerald-hi) 0%, var(--jc-emerald) 55%, var(--jc-emerald-deep) 100%);
  border: 1px solid rgba(245, 211, 135, 0.42);
}
.lb-adv-alt__card--bright .lb-adv-alt__card-title {
  color: var(--jc-gold-hi);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}
.lb-adv-alt__card--bright .lb-adv-alt__card-text {
  color: #FFF3E0;
}

.lb-adv-alt__card-title {
  margin: 0 0 14px;
  font-family: var(--lb-font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.lb-adv-alt__card-text {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 15px;
  line-height: 1.5;
}

@media (max-width: 700px) { .lb-adv-alt__grid { grid-template-columns: 1fr; } }

/* ============================================================
   Бонусы — 02-light-timeline (перекрашен под изумруд + золото)
   ============================================================ */
.lb-bonus-light {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.lb-bonus-light__title {
  margin: 0 0 16px;
  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-light__title-dark { color: var(--jc-text); }
.lb-bonus-light__title-blue {
  background: linear-gradient(180deg, var(--jc-gold-hi) 0%, var(--jc-gold) 55%, var(--jc-gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lb-bonus-light__lead {
  margin: 0 auto 28px;
  max-width: 660px;
  font-family: var(--lb-font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--jc-text-soft);
}

.lb-bonus-light__card {
  position: relative;
  border-radius: 40px;
  padding: 40px 40px 32px;
  background:
    radial-gradient(500px 260px at 100% 0%, rgba(245, 211, 135, 0.22), transparent 65%),
    linear-gradient(160deg, var(--jc-emerald-hi) 0%, var(--jc-emerald) 55%, var(--jc-emerald-deep) 100%);
  color: #FFFFFF;
  text-align: right;
  border: 1px solid rgba(245, 211, 135, 0.42);
  box-shadow:
    0 22px 50px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 243, 196, 0.16);
  overflow: hidden;
}
.lb-bonus-light__card::before {
  content: "";
  position: absolute;
  left: -80px; top: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 211, 135, 0.32), transparent 65%);
  pointer-events: none;
}

.lb-bonus-light__card-title {
  margin: 0 0 8px;
  font-family: var(--lb-font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--jc-gold-hi);
  position: relative;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
}
.lb-bonus-light__card-sub {
  margin: 0 0 36px;
  font-family: var(--lb-font-body);
  font-size: 16px;
  color: #FFF3E0;
  position: relative;
}

.lb-bonus-light__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  position: relative;
  margin-bottom: 32px;
}
.lb-bonus-light__steps::before {
  content: ""; position: absolute; left: 12%; right: 12%;
  top: 68px; height: 2px;
  background: rgba(245, 211, 135, 0.45);
  z-index: 0;
}
.lb-bonus-light__steps::after {
  content: ""; position: absolute; left: 12%; width: 12.5%;
  top: 68px; height: 2px;
  background: linear-gradient(90deg, var(--jc-gold-hi) 0%, var(--jc-gold) 100%);
  z-index: 1;
  box-shadow: 0 0 10px rgba(245, 211, 135, 0.55);
}

.lb-bonus-light__step {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
}
.lb-bonus-light__step-top,
.lb-bonus-light__step-bottom {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 14px;
  color: #FFF3E0;
  white-space: nowrap;
}
.lb-bonus-light__step-icon {
  width: 80px; height: 80px;
  object-fit: contain;
  /* сундук LB → золотой */
  filter: brightness(0) saturate(100%) invert(85%) sepia(28%) saturate(720%) hue-rotate(2deg) brightness(102%) contrast(92%);
}
.lb-bonus-light__step--active .lb-bonus-light__step-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}
.lb-bonus-light__step--active .lb-bonus-light__step-top,
.lb-bonus-light__step--active .lb-bonus-light__step-bottom {
  color: var(--jc-gold-hi);
  font-weight: 700;
}

.lb-bonus-light__btn-wrap {
  display: flex; justify-content: flex-end; position: relative;
}
.lb-bonus-light__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--jc-copper-hi) 0%, var(--jc-copper) 55%, var(--jc-copper-deep) 100%);
  color: #FFFFFF;
  font-family: var(--lb-font-body);
  font-size: 15px;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  font-weight: 700;
  border: 1px solid rgba(245, 211, 135, 0.55);
  box-shadow: 0 12px 26px rgba(197, 107, 45, 0.45);
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}
.lb-bonus-light__btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.10);
}

@media (max-width: 720px) {
  .lb-bonus-light__card { padding: 28px 20px 24px; text-align: center; }
  .lb-bonus-light__btn-wrap { justify-content: center; }
  .lb-bonus-light__steps { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .lb-bonus-light__steps::before,
  .lb-bonus-light__steps::after { display: none; }
  .lb-bonus-light__step-top,
  .lb-bonus-light__step-bottom { white-space: normal; }
}

/* ============================================================
   SEO / убедительный текст
   ============================================================ */
.jc-seo { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.jc-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;
}
.jc-seo__title-dark { color: var(--jc-text); }
.jc-seo__title-blue {
  background: linear-gradient(180deg, var(--jc-gold-hi) 0%, var(--jc-gold) 55%, var(--jc-gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.jc-seo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  background: linear-gradient(160deg, var(--jc-panel) 0%, var(--jc-surface) 55%, #0B0D14 100%);
  border: 1px solid rgba(245, 211, 135, 0.22);
  border-radius: 32px;
  padding: 36px 36px 32px;
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5);
}
.jc-seo__col { display: flex; flex-direction: column; gap: 14px; }
.jc-seo__h3 {
  margin: 8px 0 0;
  font-family: var(--lb-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--jc-gold-hi);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.jc-seo__col p {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--jc-text);
}
.jc-seo__col p strong { color: var(--jc-gold-hi); font-weight: 600; }
.jc-seo__list { margin: 0; padding: 0 0 0 4px; list-style: none; display: grid; gap: 8px; }
.jc-seo__list li {
  position: relative;
  padding-left: 22px;
  font-family: var(--lb-font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--jc-text-soft);
}
.jc-seo__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--jc-gold-hi) 0%, var(--jc-gold-deep) 100%);
  box-shadow: 0 0 10px rgba(245, 211, 135, 0.45);
}
.jc-seo__list li strong { color: var(--jc-text); font-weight: 600; }

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

.jc-seo__note {
  padding: 16px 18px;
  border-left: 3px solid var(--jc-gold);
  background: rgba(245, 211, 135, 0.08);
  border-radius: 0 14px 14px 0;
  color: var(--jc-text-soft) !important;
  font-style: italic;
}
.jc-seo__cta { margin-top: 6px; }
.jc-seo__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 50px;
  padding: 0 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--jc-copper-hi) 0%, var(--jc-copper) 55%, var(--jc-copper-deep) 100%);
  color: #FFFFFF;
  font-family: var(--lb-font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  border: 1px solid rgba(245, 211, 135, 0.55);
  box-shadow: 0 12px 30px rgba(197, 107, 45, 0.45);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.jc-seo__btn:hover { transform: translateY(-1px); filter: brightness(1.10); }

/* FAQ */
.jc-seo__faq { margin: 28px auto 0; display: grid; gap: 12px; max-width: 900px; }
.jc-seo__q {
  border: 1px solid rgba(245, 211, 135, 0.26);
  border-radius: 14px;
  background: var(--jc-surface-2, rgba(255, 255, 255, 0.03));
  overflow: hidden;
}
.jc-seo__q[open] { border-color: rgba(245, 211, 135, 0.55); box-shadow: 0 14px 30px rgba(0, 0, 0, 0.42), 0 0 18px rgba(245, 211, 135, 0.16); }
.jc-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(--jc-text);
}
.jc-seo__q > summary::-webkit-details-marker { display: none; }
.jc-seo__q > summary::after {
  content: "";
  position: absolute;
  right: 20px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--jc-gold-hi);
  border-bottom: 2px solid var(--jc-gold-hi);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.jc-seo__q[open] > summary::after { transform: translateY(-30%) rotate(-135deg); }
.jc-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(--jc-text-soft); }
.jc-seo__q p strong { color: var(--jc-gold-hi); font-weight: 600; }

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

/* ============================================================
   Подвал — 04-minimal (лого + одна строка)
   ============================================================ */
.lb-footer-min {
  width: 100%;
  padding: 32px 24px 28px;
  text-align: center;
  border-top: 1px solid rgba(245, 211, 135, 0.14);
}
.lb-footer-min__logo {
  height: 46px;
  width: auto;
  display: block;
  margin: 0 auto 14px;
  object-fit: contain;
  opacity: 0.95;
  filter: drop-shadow(0 6px 14px rgba(245, 211, 135, 0.30));
}
.lb-footer-min__text {
  margin: 0;
  font-family: var(--lb-font-body);
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--jc-text-soft);
}

/* ============================================================
   Модалка — 01-bonus-modal (эмерильдовая версия)
   ============================================================ */
.lb-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; align-items: center; justify-content: center;
  padding: 24px;
}
.lb-modal.is-open { display: flex; }
.lb-modal__overlay {
  position: absolute; inset: 0;
  background: rgba(6, 8, 14, 0.72);
}
.lb-modal__card {
  position: relative; z-index: 1;
  width: min(420px, 100%);
  border-radius: 28px;
  padding: 34px 28px 28px;
  background:
    radial-gradient(360px 200px at 100% 0%, rgba(245, 211, 135, 0.22), transparent 65%),
    linear-gradient(160deg, var(--jc-emerald-hi) 0%, var(--jc-emerald) 55%, var(--jc-emerald-deep) 100%);
  color: #FFFFFF;
  text-align: center;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.55),
    0 0 40px rgba(30, 111, 75, 0.42);
  border: 1px solid rgba(245, 211, 135, 0.45);
}
.lb-modal__close {
  position: absolute; top: 12px; right: 14px;
  width: 36px; height: 36px;
  border: 0; border-radius: 50%;
  background: rgba(0, 0, 0, 0.30);
  color: #FFFFFF;
  font-size: 22px; line-height: 1;
  cursor: pointer;
}
.lb-modal__eyebrow {
  margin: 0 0 10px;
  font-family: var(--lb-font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--jc-gold-hi);
  opacity: 0.95;
}
.lb-modal__title {
  margin: 0 0 12px;
  font-family: var(--lb-font-display);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  background: linear-gradient(180deg, var(--jc-gold-hi) 0%, var(--jc-gold) 60%, var(--jc-gold-deep) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.lb-modal__text {
  margin: 0 0 22px;
  font-family: var(--lb-font-body);
  font-size: 15px;
  line-height: 1.5;
  color: #FFF3E0;
}
.lb-modal__btn {
  display: inline-flex; align-items: center; justify-content: center;
  height: 46px;
  padding: 0 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--jc-copper-hi) 0%, var(--jc-copper) 55%, var(--jc-copper-deep) 100%);
  color: #FFFFFF;
  font-family: var(--lb-font-body);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(245, 211, 135, 0.55);
  box-shadow: 0 10px 24px rgba(197, 107, 45, 0.42);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.lb-modal__btn:hover { transform: translateY(-1px); filter: brightness(1.15); }
