/* ═══════════════════════════════════════════════════════════
   ЛИГА ДОБРОСОСЕДСТВА — Design System
   ═══════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────── */
:root {
  --orange:    #E85D26;
  --orange-lt: #FF7A45;
  --blue-dark: #2B5F8E;
  --blue:      #2980B9;
  --gold:      #F5C842;
  --bg-warm:   #FFF8F2;
  --bg-light:  #F7F3EE;
  --text-dark: #1A1A2E;
  --text-mid:  #4A4A6A;
  --text-light:#8888AA;
  --white:     #FFFFFF;
  --success:   #27AE60;
  --wa-green:  #25D366;

  /* Activity colors */
  --eco:       #27AE60;
  --sport:     #5DADE2;
  --kids:      #E67E22;
  --creative:  #F1C40F;
  --culture:   #8E44AD;
  --edu:       #2980B9;
  --mutual:    #E74C3C;

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(26,26,46,0.08);
  --shadow-md: 0 8px 40px rgba(26,26,46,0.14);
  --transition: 0.25s ease;
  --font: 'Inter', sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-warm);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ─── Container ──────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Typography ─────────────────────────────────────────── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }

/* ─── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--lg  { padding: 15px 32px; font-size: 1.05rem; }
.btn--sm  { padding: 8px 16px; font-size: 0.85rem; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 20px rgba(232,93,38,0.35);
}
.btn--primary:hover {
  background: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,38,0.45);
}

.btn--outline {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}
.btn--outline:hover {
  background: var(--orange);
  color: #fff;
}

.btn--outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
}
.btn--outline-light:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  color: white;
}

.btn--whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}

/* ─── Header ─────────────────────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,248,242,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232,93,38,0.12);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

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

.header__logo-img {
  height: 36px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  display: block;
}

.header__logo-img--yourt {
  height: 28px;
}

.header__logo-sep {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-mid);
  opacity: 0.55;
  line-height: 1;
  flex-shrink: 0;
}

.logo-badge {
  width: 40px; height: 40px;
  background: var(--orange);
  color: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem;
  letter-spacing: -0.5px;
}
.logo-badge--sm { width: 32px; height: 32px; font-size: 0.85rem; border-radius: 8px; }

.logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav__link:hover { color: var(--orange); background: rgba(232,93,38,0.06); }

.nav__link--community {
  color: var(--wa-green);
  background: rgba(37,211,102,0.08);
}
.nav__link--community:hover {
  background: rgba(37,211,102,0.18);
  color: #1ebe57;
}

.nav__link--cta {
  background: var(--orange);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
}
.nav__link--cta:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
}

/* ── Language Switcher ──────────────────────────────────── */
.nav__lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1.5px solid rgba(0,0,0,0.12);
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  padding: 3px 5px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  line-height: 1;
}
.lang-btn:hover { color: var(--orange); }
.lang-btn--active {
  color: var(--orange);
  background: rgba(232,93,38,0.08);
}
.lang-sep {
  color: var(--text-muted);
  font-size: 0.7rem;
  opacity: 0.5;
  user-select: none;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  padding-top: 64px;
  background: linear-gradient(160deg, #FFF8F2 0%, #FFF0E0 60%, #FEF6EE 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero__ornament {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.hero__ornament--left  { background: var(--orange); width:500px; height:500px; top:0; left:-250px; }
.hero__ornament--right { background: var(--blue-dark); width:350px; height:350px; bottom:10%; right:-120px; }

/* ── Hero TOP bar ── */
.hero__top {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(232,93,38,0.1);
  padding: 14px 0;
  position: relative;
  z-index: 1;
}
.hero__top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__top-badge { display: none; }
.hero__top-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero__top-badge {
  font-size: 2rem;
  line-height: 1;
}
.hero__top-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 3px;
}
.hero__top-kaz {
  font-size: 0.82rem;
  color: var(--orange);
  font-style: italic;
  font-weight: 500;
}
.hero__top-dates {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__date-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,93,38,0.08);
  border: 1px solid rgba(232,93,38,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--orange);
}

/* ── Hero MAIN grid ── */
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 32px;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 460px;
}

.hero__stats {
  display: flex;
  gap: 24px;
  margin-bottom: 28px;
}
.hero__stat {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 12px 20px;
  box-shadow: var(--shadow);
  border-bottom: 3px solid var(--orange);
}
.hero__stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.hero__stat span {
  font-size: 0.72rem;
  color: var(--text-mid);
  line-height: 1.3;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

/* ── Yurt container (SVG silhouette + radar canvas) ── */
.yurt-container {
  position: relative;
  width: 100%;
  max-width: 380px;
  animation: float 5s ease-in-out infinite;
  filter: drop-shadow(0 16px 40px rgba(232,93,38,0.18));
}

.yurt-silhouette {
  width: 100%;
  height: auto;
  display: block;
}

/* Radar canvas positioned inside dome area */
.yurt-radar-inner {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  pointer-events: none;
}
.yurt-radar-inner canvas {
  width: 100% !important;
  height: auto !important;
}

.hero-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  margin-top: 2px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.8);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Timer bar */
.timer-bar {
  background: var(--orange);
  padding: 16px 0;
}
.timer-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.timer-bar__label {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
}
.timer {
  display: flex;
  align-items: center;
  gap: 8px;
}
.timer__block {
  text-align: center;
  min-width: 52px;
  background: rgba(0,0,0,0.15);
  border-radius: 8px;
  padding: 6px 10px;
}
.timer__block span {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.timer__block small {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.timer__sep {
  font-size: 1.5rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
}

/* ─── Sections ───────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--no-top { padding-top: 20px; }
.section--light   { background: var(--bg-light); }
.section--white   { background: var(--white); }
.section--dark    { background: linear-gradient(135deg, #1A1A2E 0%, #2B2B4A 100%); }
.section--community { background: linear-gradient(135deg, #075E54 0%, #128C7E 100%); }

.section__header { text-align: center; margin-bottom: 52px; }
.section__header--light .section__title { color: #fff; }
.section__header--light .section__subtitle { color: rgba(255,255,255,0.7); }
.section__header--light .section__note {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin-top: 8px;
}

.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.section__subtitle {
  font-size: 1.1rem;
  color: var(--text-mid);
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Cards grid ─────────────────────────────────────────── */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.cards-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

/* ─── Card «Цель» — большая, на всю ширину ──────────────── */
.card--goal {
  background: linear-gradient(135deg, #2B5F8E 0%, #1A3E60 100%) !important;
  border-radius: var(--radius-lg);
  padding: 36px 44px !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  text-align: left !important;
  gap: 32px;
  margin-bottom: 24px;
  box-shadow: 0 8px 40px rgba(43,95,142,0.3);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card--goal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(43,95,142,0.4);
}
.card--goal__icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 8px rgba(255,255,255,0.07);
}
.card--goal__icon i {
  font-size: 2rem;
  color: #fff;
  display: block;
}
.card--goal__body {
  flex: 1;
}
.card--goal__body h3 {
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}
.card--goal__body p {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 640px) {
  .cards-2 { grid-template-columns: 1fr; }
  .card--goal {
    flex-direction: column !important;
    text-align: center !important;
    padding: 28px 20px !important;
    gap: 20px;
  }
}

.card:not(.card--goal) {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:not(.card--goal):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--icon { text-align: center; }
.card__icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}
.card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.card p  { color: var(--text-mid); font-size: 0.95rem; }
.card--goal h3,
.card--goal p,
.card--goal .card--goal__body h3,
.card--goal .card--goal__body p { color: #fff !important; }

/* Freedom block */
.freedom-block {
  background: linear-gradient(135deg, #FFF8F2, #FFE8D6);
  border: 1px solid rgba(232,93,38,0.15);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.freedom-block__icon { font-size: 2.5rem; flex-shrink: 0; }
.freedom-block h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text-dark); }
.freedom-block p  { color: var(--text-mid); line-height: 1.7; }

/* ─── Activities Grid ────────────────────────────────────── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.activity-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--act-color);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--act-color);
}
.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.activity-card__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--act-color);
  margin-bottom: 14px;
  box-shadow: 0 0 0 4px rgba(0,0,0,0.05);
}

.activity-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--act-color);
}

.activity-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.activity-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ─── Steps ──────────────────────────────────────────────── */
.steps {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.step__number {
  width: 52px; height: 52px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 16px;
  box-shadow: 0 4px 16px rgba(232,93,38,0.35);
}

.step__content h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step__content p  { color: var(--text-mid); font-size: 0.9rem; }

.step__arrow {
  font-size: 1.5rem;
  color: var(--text-light);
  flex-shrink: 0;
}

/* ─── Yurts Section ──────────────────────────────────────── */
.yurts-controls {
  margin-bottom: 32px;
}

/* Yard accordion */
.yards-accordion {
  margin-top: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  animation: fadeInUp 0.3s ease;
}
.yards-accordion__hint {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.yards-accordion__hint i { margin-right: 6px; }
.yards-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.yard-pill {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  transition: all var(--transition);
}
.yard-pill:hover, .yard-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--text-dark);
  box-shadow: 0 4px 14px rgba(245,200,66,0.4);
}

.yurts-filter {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.07);
  transition: all var(--transition);
}
.filter-btn:hover, .filter-btn--active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,93,38,0.4);
}

.charts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  min-height: 200px;
}

.chart-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: transform var(--transition);
}
.chart-card:hover { transform: translateY(-4px); }

.chart-card__header { margin-bottom: 8px; }
.chart-card__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.chart-card__city {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.chart-card__yard {
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 16px;
}

.chart-card__canvas-wrap {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chart-card__total {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.chart-card__total strong {
  color: var(--gold);
  font-size: 1.1rem;
}

.charts-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,0.5);
  font-size: 1.1rem;
}
.charts-loading i { font-size: 2rem; margin-bottom: 12px; display: block; }

.sheets-config {
  margin-top: 40px;
  text-align: center;
}
.sheets-config__inner {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  flex-wrap: wrap;
  justify-content: center;
}
.sheets-link { color: var(--gold); text-decoration: underline; }

/* ─── Community Block ────────────────────────────────────── */
.community-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}
.wa-icon {
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  color: #fff;
  flex-shrink: 0;
}
.community-block__content h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 12px;
}
.community-block__content > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
  line-height: 1.7;
}
.community-list {
  margin-bottom: 28px;
}
.community-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding: 5px 0;
}
.community-list li i { color: var(--gold); }

/* ─── Registration Form ──────────────────────────────────── */
.form-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.reg-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(232,93,38,0.08);
}

.form-group { margin-bottom: 24px; position: relative; }

.form-label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-label i { color: var(--orange); font-size: 0.85rem; }

.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #E8E0D8;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.97rem;
  color: var(--text-dark);
  background: #FAFAF8;
  transition: all var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(232,93,38,0.1);
}
.form-input:disabled {
  background: #F0EDE8;
  color: var(--text-light);
  cursor: not-allowed;
}
.form-input.is-valid   { border-color: var(--success); }
.form-input.is-invalid { border-color: #E74C3C; }

.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; }

.form-error {
  display: block;
  font-size: 0.8rem;
  color: #E74C3C;
  margin-top: 5px;
  min-height: 16px;
}

/* Autocomplete */
.autocomplete-wrap { position: relative; }

.autocomplete-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0; right: 0;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  max-height: 280px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}
.autocomplete-list.open { display: block; }

.autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  transition: background var(--transition);
  border-bottom: 1px solid #F0EDE8;
}
.autocomplete-item:last-child { border-bottom: none; }
.autocomplete-item:hover, .autocomplete-item.highlighted {
  background: rgba(232,93,38,0.07);
}
.autocomplete-item__name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
}
.autocomplete-item__yard {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 2px;
}
.autocomplete-item__en {
  font-size: 0.78rem;
  color: var(--orange);
  margin-top: 1px;
}
.autocomplete-no-results {
  padding: 16px;
  text-align: center;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* ─── Success Block ──────────────────────────────────────── */
.success-block {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid rgba(39,174,96,0.2);
  animation: fadeInUp 0.5s ease;
}

.success-block__icon { font-size: 3.5rem; margin-bottom: 16px; }

.success-block h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.success-block__welcome {
  color: var(--text-mid);
  margin-bottom: 24px;
  font-size: 1rem;
}

.success-info {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 28px;
  text-align: left;
}
.success-info__row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid #E8E0D8;
}
.success-info__row:last-child { border-bottom: none; }
.success-info__row i {
  color: var(--orange);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.success-info__row small {
  display: block;
  font-size: 0.75rem;
  color: var(--text-light);
  margin-bottom: 2px;
}
.success-info__row strong {
  font-size: 1rem;
  color: var(--text-dark);
}

.success-block__note {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin: 20px 0;
}

/* Error toast */
.error-toast {
  background: #FEECEC;
  border: 1px solid #F5C6C6;
  border-radius: var(--radius);
  padding: 14px 18px;
  color: #C0392B;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  margin-top: 16px;
  animation: fadeInUp 0.3s ease;
}

/* ─── Playbook Section ───────────────────────────────────── */
.playbook-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
  background: linear-gradient(135deg, #FFF8F2 0%, #FFF0E0 100%);
  border-radius: 24px;
  padding: 52px 60px;
  border: 1px solid rgba(232,93,38,0.12);
  box-shadow: var(--shadow-md);
}
.playbook-block__visual {
  position: relative;
  width: 120px;
  flex-shrink: 0;
}
.playbook-icon {
  width: 100px; height: 120px;
  background: var(--orange);
  border-radius: 12px 12px 12px 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem;
  color: #fff;
  box-shadow: 0 8px 32px rgba(232,93,38,0.4);
  position: relative;
  z-index: 1;
}
.playbook-pages {
  position: absolute;
  top: 6px;
  left: 8px;
  z-index: 0;
}
.playbook-page {
  position: absolute;
  width: 100px; height: 120px;
  border-radius: 12px 12px 12px 4px;
  opacity: 0.25;
}
.playbook-page--1 { background: var(--gold);   transform: rotate(4deg) translateY(-4px); }
.playbook-page--2 { background: var(--blue);   transform: rotate(8deg) translateY(-8px); }
.playbook-page--3 { background: var(--success); transform: rotate(12deg) translateY(-12px); }

.playbook-tag {
  display: inline-block;
  background: rgba(232,93,38,0.1);
  color: var(--orange);
  border: 1px solid rgba(232,93,38,0.2);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 14px;
}
.playbook-block__content h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.playbook-block__content > p {
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.playbook-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
  margin-bottom: 28px;
}
.playbook-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  color: var(--text-mid);
}
.playbook-features li i { color: var(--success); }
.playbook-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.playbook-size {
  font-size: 0.82rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 5px;
}
.playbook-size i { color: #E74C3C; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.8);
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  padding-bottom: 40px;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__name {
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
}
.footer__tagline { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.footer__info { text-align: center; font-size: 0.88rem; line-height: 1.8; }

/* Contact block */
.footer__contact {
  text-align: center;
}
.footer__contact-name {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.footer__contact-person {
  font-weight: 700;
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer__wa {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--wa-green);
  color: #fff;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition);
}
.footer__wa:hover { background: #1ebe57; transform: translateY(-2px); }

.footer__social { display: flex; gap: 12px; align-items: center; }
.social-link {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
}
.social-link--instagram:hover {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  transform: translateY(-2px);
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px 20px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ─── Юрта сверху (шанырак в центре) — REDESIGNED ──────── */

/* Контейнер диаграммы + подложка-юрта */
.hero-chart-wrap {
  position: relative;
  width: 480px;
  height: 480px;
  flex-shrink: 0;
  animation: float 6s ease-in-out infinite;
}

/* Юрта — фоновый слой под canvas.
   Точное положение и размер задаются через JS (alignYurtBg)
   после первого рендера Chart.js — кереге совмещается с паутиной радара */
.hero-yurt-bg {
  position: absolute;
  object-fit: contain;
  opacity: 0.20;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  /* Стартовое значение — пересчитается через JS */
  top: 129px;
  left: 103px;
  width: 156px;
  height: 156px;
}

/* Canvas поверх юрты */
.hero-chart-canvas {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  z-index: 1;
}

/* Старые классы юрты — скрываем */
.yurt-topdown, .yurt-top-wrap, .yurt-topview,
.yurt-shanyrak__inner, .yurt-top-ring, .yurt-top-border,
.yurt-spoke, .yurt-spokes,
.yurt-keregе-ring, .yurt-outer-deco,
.yurt-shanyrak-center, .yurt-shanyrak-glow, .yurt-shanyrak-disc,
.yurt-svg-overlay, .yurt-radar-canvas { display: none; }

/* Старый блок-эскиз — убираем */
.yurt-sketch-wrap, .yurt-sketch-label,
.yurt-sketch-img, .yurt-sketch-parts { display: none; }

.hero-radar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 12px;
  justify-content: center;
  font-size: 0.76rem;
  font-weight: 600;
  background: rgba(255,255,255,0.82);
  border-radius: 50px;
  padding: 7px 16px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(232,93,38,0.1);
  box-shadow: var(--shadow);
}

/* ─── Схема юрты под диаграммой ──────────────────────────── */
.yurt-sketch-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 16px 20px 12px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(26,26,26,0.10);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  backdrop-filter: blur(4px);
  width: 100%;
  max-width: 380px;
}

.yurt-sketch-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin: 0;
  opacity: 0.7;
}

.yurt-sketch-img {
  width: 240px;
  height: 240px;
  object-fit: contain;
  display: block;
  opacity: 0.88;
}

.yurt-sketch-parts {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--text-mid);
  font-weight: 500;
}
.yurt-sketch-parts span {
  opacity: 0.75;
}

/* ─── Yurts Section ──────────────────────────────────────── */
.yurts-controls {
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Yard dropdown */
.yards-dropdown-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeInUp 0.25s ease;
}
.yards-dropdown-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
}
.yards-dropdown-select {
  position: relative;
  min-width: 200px;
}
.yards-dropdown-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 10px 16px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.yards-dropdown-btn:hover { background: rgba(255,255,255,0.15); border-color: var(--gold); }
.yards-dropdown-btn i { transition: transform 0.25s ease; font-size: 0.75rem; opacity: 0.7; }
.yards-dropdown-list {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: #2B2B4A;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  z-index: 200;
  max-height: 280px;
  overflow-y: auto;
}
.yards-dropdown-list.open { display: block; }
.yards-dropdown-item {
  padding: 11px 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.yards-dropdown-item:last-child { border-bottom: none; }
.yards-dropdown-item i { font-size: 0.75rem; opacity: 0.6; }
.yards-dropdown-item:hover { background: rgba(255,255,255,0.08); color: #fff; }
.yards-dropdown-item--active { background: rgba(245,200,66,0.15); color: var(--gold); font-weight: 700; }
.yards-dropdown-item--active i { opacity: 1; }

/* ─── Карусель юрт ─────────────────────────────────── */
.yurts-carousel-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.yurts-carousel {
  flex: 1;
  display: flex;
  gap: 20px;
  overflow: hidden;
  align-items: stretch;
}
.carousel-nav {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font);
}
.carousel-nav:not(:disabled):hover { background: var(--orange); border-color: var(--orange); transform: scale(1.08); }
.carousel-nav:disabled { cursor: default; }
.carousel-card {
  flex: 0 0 calc((100% - 40px) / 3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 20px;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(6px);
}
.carousel-card--active {
  background: rgba(255,255,255,0.1);
  border-color: rgba(245,200,66,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transform: scale(1.03);
}
.carousel-card__header { text-align: center; }
.carousel-card__name { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 6px; }
.carousel-card__meta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.carousel-card__city { font-size: 0.75rem; color: rgba(255,255,255,0.5); display: flex; align-items: center; gap: 4px; }
.carousel-card__yard { font-size: 0.75rem; color: var(--gold); display: flex; align-items: center; gap: 4px; }
.carousel-card__chart-wrap { flex: 1; display: flex; align-items: center; justify-content: center; min-height: 180px; }
.carousel-card__chart-wrap canvas { max-width: 200px; }
.carousel-card__footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; }
.carousel-card__bars { display: flex; align-items: flex-end; gap: 3px; height: 32px; }
.mini-bar { display: flex; flex-direction: column; align-items: center; gap: 2px; height: 100%; justify-content: flex-end; }
.mini-bar__fill { width: 6px; border-radius: 3px 3px 0 0; min-height: 3px; }
.mini-bar__dot { width: 5px; height: 5px; border-radius: 50%; }
.carousel-card__total { font-size: 0.78rem; color: rgba(255,255,255,0.5); text-align: right; }
.carousel-card__total strong { display: block; font-size: 1.1rem; color: var(--gold); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none; cursor: pointer;
  transition: all var(--transition); padding: 0;
}
.carousel-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.carousel-empty { width: 100%; text-align: center; padding: 60px 20px; color: rgba(255,255,255,0.4); }
.carousel-empty i { font-size: 2rem; display: block; margin-bottom: 12px; }

/* ─── Prizes ─────────────────────────────────────────────── */
.prizes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.prizes-col__title {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.prize-card {
  display: flex;
  align-items: flex-start;
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 0;
  margin-bottom: 14px;
  box-shadow: var(--shadow);
  border-left: 4px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}
.prize-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.prize-card--gold   { border-left-color: #F5C842; }
.prize-card--silver { border-left-color: #9E9E9E; }
.prize-card--bronze { border-left-color: #CD7F32; }

/* Photo block inside prize card */
.prize-card__photo {
  position: relative;
  flex-shrink: 0;
  width: 120px;
  height: 100px;
  overflow: hidden;
}
.prize-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.prize-card:hover .prize-card__photo img {
  transform: scale(1.06);
}
.prize-card__medal-badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 1.4rem;
  line-height: 1;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.35));
}
.prize-card__body {
  padding: 14px 16px;
  flex: 1;
}
.prize-card__body h4 { font-size: 0.97rem; margin-bottom: 4px; }
.prize-card__body p  { color: var(--text-mid); font-size: 0.85rem; margin-bottom: 8px; }
.prize-card__criteria {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 500;
  background: rgba(232,93,38,0.06);
  border-radius: 6px;
  padding: 5px 10px;
}
.prize-card__criteria i { margin-right: 4px; }

.timeline-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 12px;
  box-shadow: var(--shadow);
}
.timeline-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.timeline-card strong { display: block; font-size: 0.95rem; margin-bottom: 3px; }
.timeline-card p { color: var(--text-mid); font-size: 0.83rem; }

/* ═══════════════════════════════════════════════════════════
   ДВОЙНАЯ МОТИВАЦИЯ
   ═══════════════════════════════════════════════════════════ */
.dual-motivation {
  background: linear-gradient(135deg, #1a1a2e 0%, #2B5F8E 100%);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.dual-motivation::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.dual-motivation__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.dual-mot__header {
  text-align: center;
  color: #fff;
}
.dual-mot__badge {
  display: inline-block;
  background: rgba(232,93,38,0.85);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.dual-mot__header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.dual-mot__header p {
  color: rgba(255,255,255,0.72);
  font-size: 1rem;
}
.dual-mot__cards {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 760px;
}
.dual-mot__card {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 28px 24px;
  color: #fff;
  position: relative;
  transition: transform 0.3s, background 0.3s;
}
.dual-mot__card:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.12);
}
.dual-mot__card--instant { border-color: rgba(245,200,66,0.4); }
.dual-mot__card--lottery  { border-color: rgba(232,93,38,0.4); }
.dual-mot__card-icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.dual-mot__card-num {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255,255,255,0.7);
}
.dual-mot__card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.dual-mot__card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin-bottom: 14px;
}
.dual-mot__card p strong { color: #F5C842; }
.dual-mot__card-tag {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
}
.dual-mot__plus {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
}
.dual-mot__counter {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 20px 32px;
}
.dual-mot__counter-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.dual-mot__counter-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #F5C842;
  line-height: 1;
}
.dual-mot__counter-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.3;
}
.dual-mot__counter-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: rgba(255,255,255,0.3);
}

/* ═══════════════════════════════════════════════════════════
   ЛОТЕРЕЯ — блок в секции призов
   ═══════════════════════════════════════════════════════════ */
/* ═══════════════════════════════════════════════════════════
   LOTTERY NEW — redesigned lottery block
   ═══════════════════════════════════════════════════════════ */
.lottery-new {
  background: linear-gradient(135deg, #f8f9ff 0%, #eef2ff 100%);
  border: 1.5px solid rgba(41,128,185,0.18);
  border-radius: 20px;
  padding: 32px 36px;
  margin-bottom: 24px;
}
.lottery-new__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.lottery-new__emoji {
  font-size: 2.6rem;
  line-height: 1;
  flex-shrink: 0;
}
.lottery-new__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.lottery-new__sub {
  font-size: 0.88rem;
  color: var(--text-mid);
}
.lottery-new__steps {
  display: flex;
  align-items: stretch;
  gap: 8px;
  flex-wrap: wrap;
}
.lottery-new__step {
  flex: 1;
  min-width: 130px;
  background: #fff;
  border-radius: 14px;
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border: 1.5px solid rgba(0,0,0,0.06);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.lottery-new__step:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.lottery-new__step--final {
  background: linear-gradient(135deg, #FFF8E1, #FFF3CD);
  border-color: rgba(245,200,66,0.4);
}
.lottery-new__step-num {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.lottery-new__step--final .lottery-new__step-num {
  background: #F5C842;
  color: #333;
}
.lottery-new__step-icon {
  font-size: 2rem;
  line-height: 1;
  margin-top: 6px;
}
.lottery-new__step-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}
.lottery-new__step-text span {
  font-size: 0.75rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.lottery-new__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1rem;
  opacity: 0.6;
  flex-shrink: 0;
  align-self: center;
}
.lottery-new__note {
  margin-top: 20px;
  padding: 12px 18px;
  background: rgba(41,128,185,0.07);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  font-size: 0.84rem;
  color: var(--text-mid);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.lottery-new__note i {
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   ПАРТНЁРЫ
   ═══════════════════════════════════════════════════════════ */
.partners-section { padding: 56px 0; }
.partners-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 28px 24px;
  width: 220px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  text-align: center;
}
.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}
.partner-card--featured {
  border-color: rgba(232,93,38,0.3);
  background: linear-gradient(135deg, #fffaf7, #fff);
  width: 260px;
}
.partner-card__logo {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-card__logo img {
  max-height: 56px;
  max-width: 180px;
  object-fit: contain;
}
.partner-card__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}
.partner-card__role {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.4;
}
.partner-card__prize {
  background: rgba(232,93,38,0.08);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 50px;
  margin-top: 4px;
}
.partner-card__prize i { margin-right: 4px; }

.individual-prize {
  background: linear-gradient(135deg, #FFF8E1, #FFF3E0);
  border: 2px solid #F5C842;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.individual-prize__icon {
  font-size: 2.5rem;
  color: var(--orange);
  flex-shrink: 0;
}
.individual-prize__text { flex: 1; min-width: 200px; }
.individual-prize__text strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.individual-prize__text span { color: var(--text-mid); font-size: 0.88rem; }
.individual-prize__options {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.ind-option {
  background: var(--white);
  border: 1px solid rgba(232,93,38,0.2);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ind-option i { color: var(--orange); }
.ind-sep { font-weight: 700; color: var(--orange); font-size: 0.9rem; }

/* ─── Nominations ────────────────────────────────────────── */
.nominations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.nomination-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--nom-color);
  transition: transform var(--transition), box-shadow var(--transition);
}
.nomination-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.nomination-card__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--nom-color) 12%, white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.2rem;
  color: var(--nom-color);
}
.nomination-card h4 { font-size: 0.88rem; font-weight: 700; margin-bottom: 6px; }
.nomination-card p  { font-size: 0.78rem; color: var(--text-mid); }

.plaque-banner {
  background: linear-gradient(135deg, #FFF8E1, #FFFDE7);
  border: 2px solid #F5C842;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.plaque-banner__icon {
  font-size: 2.2rem;
  color: var(--gold);
  flex-shrink: 0;
}
.plaque-banner__text { flex: 1; min-width: 200px; }
.plaque-banner__text strong { display: block; font-size: 1.05rem; margin-bottom: 4px; }
.plaque-banner__text p { color: var(--text-mid); font-size: 0.9rem; }
.plaque-badge {
  background: var(--text-mid);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 20px;
  font-size: 0.72rem;
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.5px;
  line-height: 1.4;
  flex-shrink: 0;
}

/* ─── Footer docs ────────────────────────────────── */
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__docs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.footer__doc-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer__doc-link:hover { color: var(--gold); }
.footer__doc-sep { color: rgba(255,255,255,0.2); }

/* Responsive carousel */
@media (max-width: 960px) {
  .carousel-card { flex: 0 0 calc((100% - 20px) / 2); }
}
@media (max-width: 640px) {
  .carousel-card { flex: 0 0 100%; }
  .yurt-top-wrap { max-width: 300px; }
  .footer__bottom-inner { flex-direction: column; text-align: center; }
}
  .prizes-grid { grid-template-columns: 1fr; }
  .nominations-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .nominations-grid { grid-template-columns: 1fr; }
  .individual-prize { flex-direction: column; text-align: center; }
  .plaque-banner { flex-direction: column; text-align: center; }
}

/* ─── Utilities ──────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-3 { margin-top: 48px; }

/* ─── Fade-in animation ──────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── Scrollbar ──────────────────────────────────────────── */
.autocomplete-list::-webkit-scrollbar { width: 6px; }
.autocomplete-list::-webkit-scrollbar-track { background: #f1f1f1; }
.autocomplete-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 3px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 960px) {
  .hero__title-overlay { padding: 24px 0; }
  .hero__top-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero__top-dates { justify-content: center; }

  .cards-3 { grid-template-columns: repeat(2, 1fr); }

  .community-block { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .community-block__content h2 { font-size: 1.6rem; }
  .community-list li { justify-content: center; }

  .steps { flex-direction: column; align-items: center; }
  .step__arrow { transform: rotate(90deg); }

  .playbook-block { grid-template-columns: 1fr; gap: 32px; padding: 36px 32px; text-align: center; }
  .playbook-block__visual { margin: 0 auto; }
  .playbook-features { grid-template-columns: 1fr; }
  .playbook-actions { justify-content: center; }

  .nav { display: none; }
  .nav.mobile-open {
    display: block;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: rgba(255,248,242,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232,93,38,0.12);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
  }
  .nav.mobile-open .nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav.mobile-open .nav__link { padding: 12px 16px; font-size: 1rem; }
  .burger { display: flex; }
}

/* Mobile */
@media (max-width: 640px) {
  .section { padding: 52px 0; }
  .hero__top-title { font-size: 1.4rem; }
  .hero__stats { gap: 12px; }
  .yurt-container { max-width: 260px; }
  .yurt-topdown { width: 280px; height: 280px; }
  .cards-3 { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .charts-grid { grid-template-columns: 1fr; }
  .nominations-grid { grid-template-columns: 1fr; }
  .reg-form { padding: 28px 20px; }
  .success-block { padding: 32px 20px; }
  .freedom-block { flex-direction: column; padding: 24px 20px; }
  .timer-bar .container { flex-direction: column; gap: 12px; }
  .timer__block span { font-size: 1.2rem; }
  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  /* hero actions handled per breakpoint above */
  .playbook-block { padding: 28px 20px; }
  .prizes-grid { grid-template-columns: 1fr; }
  .individual-prize { flex-direction: column; text-align: center; }
  .plaque-banner { flex-direction: column; text-align: center; }

  /* Двойная мотивация — мобильная */
  .dual-mot__cards { flex-direction: column; }
  .dual-mot__plus { transform: rotate(90deg); }
  .dual-mot__counter { flex-wrap: wrap; justify-content: center; padding: 16px; gap: 12px; }

  /* Лотерея новая — мобильная */
  .lottery-new { padding: 20px 18px; }
  .lottery-new__steps { flex-direction: column; gap: 12px; }
  .lottery-new__arrow { transform: rotate(90deg); }
  .lottery-new__step { min-width: unset; width: 100%; flex-direction: row; text-align: left; gap: 12px; }

  /* Партнёры — мобильная */
  .partners-grid { flex-direction: column; align-items: center; }
  .partner-card, .partner-card--featured { width: 100%; max-width: 320px; }
}

@media (max-width: 380px) {
  .hero__title { font-size: 2rem; }
  .container { padding: 0 14px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO — казахский заголовок + наложение на диаграмму
   ═══════════════════════════════════════════════════════════ */
.hero__top-kaz-title {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 4px;
}

/* ═══════════════════════════════════════════════════════════
   HERO MAIN — двухколоночный grid: кнопки слева, диаграмма справа
   ═══════════════════════════════════════════════════════════ */
/* Обёртка hero main — двухколоночный layout */
.hero__main-wrap {
  position: relative;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 0;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 16px;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}
/* Диаграмма — правая колонка, в нормальном потоке */
.hero__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
/* Убираем старые absolute-стили от visual--full */
.hero__visual--full {
  position: static;
  opacity: 1;
  pointer-events: auto;
  padding-right: 0;
}
.hero__visual--full .hero-chart-wrap {
  animation: none;
}
.hero__visual--full .hero-radar-legend {
  display: flex;
}
.hero__title-overlay {
  /* совместимость — не используется */
  display: contents;
}
.hero__title-overlay .hero__actions,
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════════════
   КАК УЧАСТВОВАТЬ — новый блок-подсказка
   ═══════════════════════════════════════════════════════════ */
.how-note {
  margin-top: 28px;
  background: rgba(232,93,38,0.07);
  border: 1.5px solid rgba(232,93,38,0.18);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.how-note i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   ЛОТЕРЕЯ — новая компактная вёрстка
   ═══════════════════════════════════════════════════════════ */
.lottery-block {
  display: flex;
  align-items: center;
  gap: 28px;
  background: linear-gradient(135deg, #1a1a2e, #2B5F8E);
  border-radius: 20px;
  padding: 28px 32px;
  margin-bottom: 20px;
  color: #fff;
  flex-wrap: wrap;
}
.lottery-block__icon-wrap {
  font-size: 3rem;
  flex-shrink: 0;
  line-height: 1;
}
.lottery-block__content {
  flex: 1;
  min-width: 200px;
}
.lottery-block__content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}
.lottery-block__content p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}
.lottery-block__content p strong { color: #F5C842; }
.lottery-block__steps {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.lottery-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 12px 16px;
  min-width: 80px;
  text-align: center;
}
.lottery-step__icon { font-size: 1.6rem; line-height: 1; }
.lottery-step__text {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  line-height: 1.3;
}
.lottery-step__arr {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.3);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════
   ПОДДЕРЖКА ОТ BI SERVICE & YOURT
   ═══════════════════════════════════════════════════════════ */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}
.support-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}
.support-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.10);
}
.support-card__icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
.support-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.support-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.support-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: rgba(232,93,38,0.06);
  border: 1.5px solid rgba(232,93,38,0.15);
  border-radius: 16px;
  padding: 20px 28px;
  flex-wrap: wrap;
  text-align: center;
}
.support-cta p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}
@media (max-width: 960px) {
  /* Hero: переходим в одну колонку, диаграмма снизу */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero__left { padding-right: 0; align-items: center; }
  .hero__actions { justify-content: center; }
  .hero__visual { order: 1; }
}
@media (max-width: 768px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); }
  .lottery-new__steps { flex-wrap: wrap; }
  .lottery-new__step { min-width: 140px; }
}
@media (max-width: 500px) {
  .support-grid { grid-template-columns: 1fr; }
  .lottery-new__steps { flex-direction: column; }
  .lottery-new__arrow { transform: rotate(90deg); align-self: center; }
  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}
