

/* ── 1. VARIABLES ─────────────────────────────────────────── */
:root {
  --bg:          #080b0e;
  --bg-2:        #0d1115;
  --bg-card:     rgba(255,255,255,.04);
  --bg-card-h:   rgba(255,255,255,.07);
  --border:      rgba(255,255,255,.08);
  --border-h:    rgba(233,86,37,.35);

  --accent:      #E95625;
  --accent-dark: #c4451d;
  --accent-glow: rgba(233,86,37,.22);
  --teal:        #506B73;
  --teal-light:  #6d8f9a;
  --purple:      #8B5CF6;

  --text:        #ffffff;
  --text-2:      rgba(255,255,255,.62);
  --text-3:      rgba(255,255,255,.36);

  --ff-head:   'Syne', sans-serif;
  --ff-body:   'Inter', sans-serif;
  --ff-number: 'Zalando Sans SemiExpanded', sans-serif;

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --ease: cubic-bezier(.4,0,.2,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --ease-spring: cubic-bezier(.16,1,.3,1);

  --container: 1280px;
  --section-py: 7rem;

  --z-base:   10;
  --z-sticky: 100;
  --z-menu:   190;
  --z-nav:    200;
  --z-modal:  300;
}

/* ── 2. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
textarea { resize: vertical; }

/* ── 3. UTILITY ───────────────────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}

.section { padding-block: var(--section-py); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

.section-header { margin-bottom: 3.5rem; max-width: 640px; }

.section-header--split {
  max-width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
}
@media (max-width: 768px) {
  .section-header--split {
    max-width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    flex-direction: column;
  }
}
.section-header--split .section-desc {
  max-width: 380px;
  flex-shrink: 0;
  margin-top: 0;
  padding-bottom: .15rem;
}
.section-header.centered {
  text-align: center;
  margin-inline: auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-desc {
  max-width: 560px;
}

.section-title {
  font-family: var(--ff-head);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
}
.section-title em { font-style: normal; color: var(--accent); }

.section-desc {
  margin-top: 1rem;
  color: var(--text-2);
  font-size: .95rem;
  max-width: 560px;
}

.text-accent { color: var(--accent); }

.gs-fade-up { opacity: 0; transform: translateY(32px); }
.gs-reveal  { opacity: 0; transform: translateY(40px); }

/* ── PRELOADER ──────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
}
#pl-svg {
  width: clamp(260px, 56vw, 400px);
  height: auto;
  overflow: visible;
}
.pl-letter { fill: var(--accent); }

/* ── 4. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.75rem;
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: all .3s var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn svg { flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 0 36px var(--accent-glow);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-h);
  color: var(--accent);
}
.btn-outline:hover {
  background: rgba(233,86,37,.08);
  border-color: var(--accent);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,.25);
  color: var(--text);
}

.btn-lg { padding: 1rem 2.25rem; font-size: .95rem; }
.btn-sm { padding: .6rem 1.25rem; font-size: .82rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary.btn-lg,
.nav-cta {
  transition: background .3s var(--ease), box-shadow .3s var(--ease), color .3s var(--ease);
  will-change: transform;
}

/* ── 5. HEADER ────────────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  padding-block: 1.1rem;
  transition: background .4s var(--ease), backdrop-filter .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8,11,14,.9);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo { flex-shrink: 0; display: inline-flex; align-items: center; }
.logo img { height: 32px; width: auto; display: block; }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-inline: auto;
  /* центр меню строго между логотипом и переключателем языка — не «плывёт» при смене языка */
  flex: 1 1 auto;
  justify-content: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color .25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width .25s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  margin-left: .75rem;
  padding-block: 1rem;
  /* ширина не зависит от языка (RU «Оставить заявку» — самый длинный), иначе при смене языка
     переключатель RU/UZ/EN и меню сдвигаются по горизонтали */
  min-width: 11.25rem;
  justify-content: center;
  box-shadow: 0 0 28px rgba(233, 86, 37, .45), 0 0 60px rgba(233, 86, 37, .15);
}
.nav-cta:hover {
  box-shadow: 0 0 40px rgba(233, 86, 37, .7), 0 0 80px rgba(233, 86, 37, .25);
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(255, 255, 255, .04);
}
.lang-knob {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100px;
  background: var(--accent);
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
}
.lang-btn {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: var(--text-2);
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
  padding: .3rem .5rem;
  border-radius: 100px;
  cursor: pointer;
  transition: color .2s var(--ease);
}
.lang-btn:hover { color: var(--text); }
.lang-btn.active { color: #fff; }
.lang-switch.no-knob .lang-btn.active { background: var(--accent); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HEADER: узкие экраны (добавлено 2026-09-17). Раньше при 769–1200px меню переносилось
   на две строки и шапка вылезала за экран; ужимаем отступы/шрифт, а с 900px включаем бургер. */
@media (max-width: 1200px) {
  .nav { gap: 1rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { white-space: nowrap; }
  .nav-cta { margin-left: .25rem; padding-inline: 1.1rem; min-width: 9.5rem; font-size: .82rem; }
}
@media (max-width: 1024px) {
  .nav { gap: .75rem; }
  .nav-links { gap: .8rem; }
  .nav-links a { font-size: .78rem; }
  .nav-cta { padding-inline: .9rem; min-width: 8.75rem; font-size: .78rem; }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: .25rem; }
  .lang-switch { margin-left: auto; }
}

/* ── Мобильное панельное меню (GSAP-оверлей) ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: var(--z-menu);
  padding: 76px .75rem .75rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  pointer-events: none;
  visibility: hidden;
}
.mobile-menu.open { pointer-events: auto; visibility: visible; }

.mm-bg {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 10, .6);
  backdrop-filter: blur(8px);
  opacity: 0;
}

.mm-panel {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  will-change: transform;
}

.mm-top {
  flex: 1;
  background: rgba(13, 17, 21, .98);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.25rem;
  overflow-y: auto;
}
.mm-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
}
.mm-item { overflow: hidden; }
.mm-item a {
  display: block;
  padding: .65rem 0;
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--text);
  text-decoration: none;
}
.mm-item a:active { color: var(--accent); }
.mm-cta { margin-top: 1.25rem; }

.mm-mid {
  background: linear-gradient(120deg, var(--accent) 0%, #ff7d4d 100%);
  color: #fff;
  border-color: transparent;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.mm-mid-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .85;
}
.mm-mid-phone {
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}
.mm-mid-mail {
  font-size: .9rem;
  color: rgba(255, 255, 255, .85);
  text-decoration: none;
}

.mm-bot {
  background: rgba(13, 17, 21, .98);
  color: var(--text-3);
  padding: 1rem 1.25rem;
  font-size: .78rem;
}

/* ── 6. HERO ──────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: 100px;
}

.hero > .container {
  flex: 1;
  display: flex;
  align-items: center;
  padding-block: 6rem 3rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 10, .4);
  z-index: 1;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  animation: orbFloat 9s ease-in-out infinite alternate;
}
.hero-orb--1 {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(233,86,37,.35) 0%, transparent 65%);
  top: -200px; right: -150px;
}
.hero-orb--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(80,107,115,.3) 0%, transparent 65%);
  bottom: -100px; left: -80px;
  animation-delay: -4.5s;
}
.hero-orb--3 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,.18) 0%, transparent 65%);
  top: 35%; left: 40%;
  animation-delay: -2.5s;
}

@keyframes orbFloat {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(40px, -50px) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
  animation: gridDrift 28s linear infinite;
}

@keyframes gridDrift {
  from { background-position: 0 0; }
  to   { background-position: 60px 60px; }
}

.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .4;
}

.hero-logo-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-bg svg {
  width: min(90vw, 900px);
  height: auto;
  opacity: .04;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.hero-eyebrow {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--ff-head);
  font-size: clamp(2rem, 3.4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -.04em;
  overflow: hidden;
  margin-bottom: 2rem;
  hyphens: none;
}

.title-line {
  display: block;
  overflow: hidden;
  padding-bottom: .06em;
  white-space: nowrap;
}
.title-inner {
  display: block;
  transform: translateY(110%);
  transition: transform .9s var(--ease-spring);
}
.hero-title.animated .title-inner { transform: translateY(0); }
.hero-title .title-inner:nth-child(1) { transition-delay: 0s; }
.title-line:nth-child(2) .title-inner { transition-delay: .05s; }
.title-line:nth-child(3) .title-inner { transition-delay: .10s; }
.title-line:nth-child(4) .title-inner { transition-delay: .15s; }

.invis {
  visibility: hidden;
  display: inline;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: .75rem;
  justify-content: center;
}

.hero-note {
  font-size: .78rem;
  color: var(--text-3);
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.hero-stat {
  background: var(--bg-card);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  transition: background .25s;
}
.hero-stat:hover { background: var(--bg-card-h); }

.hero-stat-num {
  font-family: var(--ff-number);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

.stat-unit {
  font-size: .55em;
  color: var(--text-2);
}

.hero-stat-label {
  font-size: .8rem;
  color: var(--text-3);
  font-weight: 500;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero-scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, transparent, var(--accent));
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
  50% { opacity: 1; transform: scaleY(1); }
}

.hero-stats-strip {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.022);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-strip-inner {
  display: flex;
  align-items: stretch;
}

.hero-strip-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .3rem;
  padding: 1.5rem 1rem;
  text-align: center;
}

.hero-strip-num {
  font-family: var(--ff-number);
  font-size: clamp(1.7rem, 2.4vw, 2.4rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

.strip-unit {
  font-size: .6em;
  color: var(--text-2);
  font-weight: 500;
  vertical-align: baseline;
}

.hero-strip-label {
  font-size: .74rem;
  color: var(--text-3);
  font-weight: 500;
  letter-spacing: .02em;
}

.hero-strip-div {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin-block: 1rem;
}

/* ── 7. FOUNDER / ABOUT ───────────────────────────────────── */
.founder { background: var(--bg-2); }

.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}

.founder-photo-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.founder-photo-badge {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  background: rgba(8,11,14,.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: .5rem;
}

.founder-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-block: 1.75rem;
}
.founder-quote p {
  font-size: 1.05rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.7;
}

.founder-facts {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.founder-facts li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .92rem;
  color: var(--text-2);
}
.founder-facts svg { flex-shrink: 0; }

.founder-social {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal-light);
  border: 1px solid rgba(80,107,115,.4);
  border-radius: 100px;
  padding: .5rem 1.1rem;
  transition: all .25s;
}
.founder-social:hover {
  background: rgba(233,86,37,.1);
  border-color: var(--accent);
  color: var(--accent);
}

/* ── 8. STATS SECTION ─────────────────────────────────────── */
.stats-section { background: var(--bg); }

.stats-main-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: center;
}

.stats-numbers {
  display: flex;
  flex-direction: column;
}

.stat-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 2rem;
  padding: 1.75rem 0;
}

.stat-divider {
  height: 1px;
  background: var(--border);
}

.stat-row-num {
  font-family: var(--ff-number);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
}

.stat-row-info strong {
  display: block;
  font-family: var(--ff-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: .4rem;
}

.stat-row-info p {
  font-size: .85rem;
  color: var(--text-3);
  line-height: 1.5;
}

.chart-label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
  text-align: center;
}

.chart-wrap {
  width: 240px;
  height: 240px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
}

.chart-legend {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.chart-legend li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .84rem;
  color: var(--text-2);
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── 9. PAIN / WHY YARD ───────────────────────────────────── */
.pain { background: var(--bg-2); }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  transition: border-color .3s, background .3s, transform .3s var(--ease-spring);
}
.pain-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
}

.pain-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  transition: transform .35s var(--ease-spring);
}
.pain-icon svg {
  width: 100%;
  height: 100%;
  transition: filter .3s var(--ease);
}
.pain-card:hover .pain-icon {
  transform: translateY(-5px) scale(1.08);
}
.pain-card:hover .pain-icon svg {
  filter: drop-shadow(0 0 14px rgba(233,86,37,.55));
}

@keyframes iconPop {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.18) rotate(-6deg); }
  70%  { transform: scale(0.95) rotate(3deg); }
  100% { transform: scale(1); }
}

.pain-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .6rem;
  line-height: 1.3;
}

.pain-card p {
  font-size: .88rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── 10. ECOSYSTEM ────────────────────────────────────────── */
.ecosystem { background: var(--bg); }

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.eco-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: border-color .3s, background .3s, transform .3s var(--ease-spring);
}
.eco-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
}

.eco-card-num {
  font-family: var(--ff-number);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.eco-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  transition: transform .35s var(--ease-spring);
}
.eco-card-icon svg {
  transition: filter .3s var(--ease);
}
.eco-card:hover .eco-card-icon {
  transform: scale(1.2) rotate(8deg);
}
.eco-card:hover .eco-card-icon svg {
  filter: drop-shadow(0 0 12px rgba(233,86,37,.6));
}

.eco-card h3 {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.eco-card p {
  font-size: .86rem;
  color: var(--text-2);
  line-height: 1.65;
}

.eco-card-arrow {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .25s, transform .25s;
}
.eco-card:hover .eco-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── 11. FORUMS ───────────────────────────────────────────── */
.forums { background: var(--bg-2); }

.forums-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.forums-features {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin-top: 1.75rem;
}
.forums-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .92rem;
  color: var(--text-2);
}
.forums-features svg { flex-shrink: 0; margin-top: 2px; }

.forums-quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.forums-quote-card blockquote {
  font-size: .97rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.forums-quote-card figcaption strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .15rem;
}
.forums-quote-card figcaption span {
  font-size: .8rem;
  color: var(--text-3);
}

.forums-stat-row {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 1.75rem;
}

.forums-stat {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.forums-stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

.forums-stat-num {
  display: block;
  font-family: var(--ff-number);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .03em;
  margin-bottom: .3rem;
  font-variant-numeric: tabular-nums;
}

.forums-stat-label {
  font-size: .78rem;
  color: var(--text-3);
}

.forums-stat--bar { width: 100%; }
.stat-bar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .6rem;
}
.stat-bar-pct {
  font-family: var(--ff-number);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.stat-bar-track {
  width: 100%;
  height: 5px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.stat-bar-fill {
  height: 100%;
  width: 0;
  background: var(--accent);
  border-radius: 3px;
  animation: bar-grow 1.4s var(--ease-spring) forwards;
  animation-delay: .3s;
}
@keyframes bar-grow {
  to { width: var(--pct); }
}

.bm-cta { text-align: center; }
.bm-cta.gs-fade-up { margin-top: 25px; }

/* ── 13. ALLIANCE ─────────────────────────────────────────── */

.privileges { background: var(--bg-2); }

.alliance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.alliance-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem 2rem;
  transition: all .35s var(--ease);
}
.alliance-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
}
.alliance-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
}
.alliance-icon svg { width: 100%; height: 100%; }
.alliance-card h3 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.alliance-card p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.7;
}

.partners { background: var(--bg); }

.logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.logo-pill {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .625rem;
  text-align: center;
  transition: all .3s var(--ease);
}
.logo-pill:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}
.logo-pill-img {
  width: 80px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-pill-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(.6);
  transition: filter .3s var(--ease);
}
.logo-pill:hover .logo-pill-img img {
  filter: grayscale(0) opacity(1);
}
.logo-pill-name {
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.logo-pill-perk {
  font-size: .75rem;
  color: var(--text-2);
  line-height: 1.4;
}

/* ── Логотипы участников: 3 авто-прокручиваемых ряда ──────── */
.participants-marquee {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.participants-row {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: pbm-scroll 60s linear infinite;
}

.participants-row--right { animation-direction: reverse; }
.participants-row--left  { animation-direction: normal; }
.participants-marquee:hover .participants-row { animation-play-state: paused; }

.participant-logo {
  flex-shrink: 0;
  width: 150px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(255 255 255 / 12%);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.participant-logo:hover {
  border-color: var(--border-h);
  background: rgb(233 86 37 / 68%);
}
.participant-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(1) opacity(1);
  transition: filter .3s var(--ease);
}
.participant-logo:hover img {
  filter: grayscale(0) opacity(1);
}

@media (max-width: 768px) {
  .participant-logo { width: 120px; height: 88px; }
}

.alliance { background: var(--bg-2); }

.map-container {
  margin-bottom: 2rem;
  border-radius: var(--r-md);
  overflow: hidden;
}
.map-container svg {
  width: 100%;
  height: auto;
  display: block;
}
.map-container svg path {
  fill: #1a1f24;
  stroke: rgba(255,255,255,0.06);
  stroke-width: 0.3px;
  transition: fill 200ms var(--ease), stroke 200ms var(--ease);
  cursor: default;
}
.map-container svg path.alliance-path {
  fill: var(--accent-glow);
  stroke: var(--accent);
  stroke-width: 1.5px;
  cursor: pointer;
  animation: alliancePulse 800ms var(--ease-out) 1;
}
.map-container svg path.alliance-path:hover {
  fill: var(--accent-dark);
  stroke: var(--accent);
  stroke-width: 2px;
}
@keyframes alliancePulse {
  0%   { opacity: 1; }
  50%  { opacity: 0.5; }
  100% { opacity: 1; }
}

.map-tooltip {
  position: fixed;
  pointer-events: none;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-h);
  border-radius: var(--r-sm);
  padding: 6px 12px;
  font-family: var(--ff-body);
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  opacity: 0;
  transition: opacity 150ms var(--ease-out);
  z-index: var(--z-base);
  white-space: nowrap;
}
.map-tooltip.visible { opacity: 1; }

.alliance-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 1rem;
  margin-bottom: 3rem;
  justify-content: center;
}
.alliance-flag-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: default;
  transition: border-color 200ms var(--ease);
}
.alliance-flag-icon:hover { border-color: var(--border-h); }
.alliance-flag-icon img { border-radius: 3px; display: block; }

.alliance-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.alliance-feat {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.alliance-feat svg {
  margin-inline: auto;
  margin-bottom: 1rem;
}

.alliance-feat h4 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}

.alliance-feat p {
  font-size: .84rem;
  color: var(--text-2);
  line-height: 1.65;
}

/* ── 14. SPEAKERS ─────────────────────────────────────────── */
.speakers { background: var(--bg); }

.speakers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem;
  gap: 2rem;
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.speaker-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .3s, transform .3s var(--ease-spring);
}
.speaker-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
}

.speaker-photo {
  aspect-ratio: 1;
  overflow: hidden;
}
.speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.speaker-card:hover .speaker-photo img { transform: scale(1.05); }

.speaker-info {
  padding: 1.25rem;
}
.speaker-info h3 {
  font-family: var(--ff-head);
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: .25rem;
}
.speaker-role {
  font-size: .78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .6rem;
}
.speaker-topic {
  font-size: .8rem;
  color: var(--text-3);
  line-height: 1.55;
}

/* ── 15. EVENTS ───────────────────────────────────────────── */
.events { background: var(--bg-2); }

.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.event-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .3s, transform .3s var(--ease-spring);
}
.event-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
}

.event-card-date {
  background: var(--accent);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

.event-day {
  font-family: var(--ff-head);
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.event-month {
  font-size: .9rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
}
.event-year {
  font-size: .78rem;
  color: rgba(255,255,255,.65);
  margin-left: auto;
}

.event-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.event-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(233,86,37,.1);
  border-radius: 4px;
  padding: .2rem .6rem;
  margin-bottom: .75rem;
}

.event-card-body h3 {
  font-family: var(--ff-head);
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: .6rem;
  line-height: 1.3;
}

.event-card-body p {
  font-size: .84rem;
  color: var(--text-2);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.event-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.event-meta span {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .78rem;
  color: var(--text-3);
}

.event-register-btn { align-self: flex-start; }

/* ── 16. GALLERY ──────────────────────────────────────────── */
.gallery { background: var(--bg); }

.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.gallery-item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}
.gallery-item--wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.04); }

/* ── 17. FORM SECTIONS (SPEAKER + PARTNER) ────────────────── */
.speaker-form-section { background: var(--bg-2); }
.partner-form-section { background: var(--bg); }

.form-section-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 5rem;
  align-items: start;
}
.form-section-inner--rev {
  grid-template-columns: 520px 1fr;
}

.form-section-text .section-desc { max-width: 420px; }

.form-contact-note {
  margin-top: 1.5rem;
  font-size: .88rem;
  color: var(--text-3);
}
.form-contact-note a {
  color: var(--accent);
  transition: opacity .25s;
}
.form-contact-note a:hover { opacity: .8; }

/* ── 18. MEMBERSHIP ───────────────────────────────────────── */
.membership { background: var(--bg-2); }

.membership-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .6rem;
  padding: 2.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
}

.plan-card--accent {
  background: linear-gradient(135deg, rgba(233,86,37,.12) 0%, rgba(233,86,37,.03) 100%);
  border-color: rgba(233,86,37,.35);
}

.plan-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .6rem;
}

.plan-name {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}

.plan-badge {
  padding: .2rem .55rem;
  border: 1px solid rgba(233,86,37,.4);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #E95625;
}

.plan-desc {
  margin-top: .35rem;
  font-size: .88rem;
  line-height: 1.55;
  color: var(--text-2);
}

.plan-list {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  margin: 1rem 0 1.75rem;
}
.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-2);
}
.plan-list svg { flex-shrink: 0; margin-top: 2px; }
.plan-list .plan-list-extra { color: var(--text-3); }

.plan-note {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--text-3);
  margin: -.5rem 0 1.5rem;
}

.plan-card .btn { margin-top: auto; }

.plan-common {
  margin-top: 1.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}
.plan-common-title {
  margin-bottom: .9rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
}
.plan-common-list {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.plan-common-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .88rem;
  color: var(--text-2);
}
.plan-common-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .5em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #E95625;
}

.membership-price {
  font-family: var(--ff-number);
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
}

.membership-currency {
  font-size: .55em;
  color: var(--text-2);
}

.membership-vat {
  font-size: .82rem;
  color: var(--text-3);
  margin-top: -.25rem;
}

.membership-note {
  margin-top: 1rem;
  font-size: .78rem;
  color: var(--text-3);
  text-align: center;
}

/* ── 19. RESIDENTS / SWIPER ───────────────────────────────── */
.residents { background: var(--bg); }

.residents-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 2rem;
}

.residents-nav {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

.res-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all .25s;
}
.res-nav-btn:hover {
  border-color: var(--border-h);
  color: var(--accent);
  background: rgba(233,86,37,.06);
}

.residents-swiper { overflow: visible !important; }

.residents-swiper .swiper-slide {
  width: 300px;
  transition: transform .4s ease;
}

.resident-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s var(--ease-spring);
  display: block;
}
.resident-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
}

.resident-img-wrap {
  aspect-ratio: 7/8;
  overflow: hidden;
}
.resident-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.resident-card:hover .resident-img-wrap img { transform: scale(1.04); }

.resident-info {
  padding: 1.25rem;
  background: var(--bg-2);
}

.resident-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .5rem;
}

.resident-info h3 {
  font-family: var(--ff-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .2rem;
}

.resident-role {
  font-size: .78rem;
  color: var(--text-3);
  margin-bottom: .6rem;
}

.resident-quote {
  font-size: .82rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.55;
}

/* ── 20. APPLY FORM ───────────────────────────────────────── */
.apply { background: var(--bg-2); }

.apply-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 5rem;
  align-items: start;
}

.apply-process {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-block: 2rem;
}
.apply-process li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.apply-step {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(233,86,37,.12);
  border: 1px solid var(--border-h);
  color: var(--accent);
  font-family: var(--ff-number);
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.apply-process strong {
  display: block;
  font-size: .92rem;
  margin-bottom: .15rem;
}
.apply-process p {
  font-size: .82rem;
  color: var(--text-3);
}

.apply-contacts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.apply-contact-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .88rem;
  color: var(--text-2);
  transition: color .25s;
}
.apply-contact-link:hover { color: var(--accent); }

.event-modal-contacts {
  margin-top: .25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-contacts {
  margin-top: 1rem;
}

/* ── 21. FORM COMPONENTS ──────────────────────────────────── */
.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-card--dark {
  background: rgba(255,255,255,.03);
  border-color: rgba(255,255,255,.06);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-2);
  letter-spacing: .02em;
}
.form-label span { color: var(--accent); }

.form-input {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font: inherit;
  font-size: .9rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .25s, background .25s;
  width: 100%;
}
.form-input::placeholder { color: var(--text-3); }
.form-input:focus {
  border-color: var(--accent);
  background: rgba(233,86,37,.04);
}
.form-input:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.form-input option { background: #1a1a1a; }

.form-textarea { min-height: 90px; }

.form-radios {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-radio {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: .88rem;
  color: var(--text-2);
}
.form-radio input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  cursor: pointer;
  font-size: .82rem;
  color: var(--text-3);
  line-height: 1.5;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  cursor: pointer;
  margin-top: 1px;
  flex-shrink: 0;
}
.form-check a { color: var(--accent); }

.form-note {
  font-size: .75rem;
  color: var(--text-3);
  text-align: center;
}

.has-error .form-input { border-color: var(--accent) !important; }
.form-error { font-size: .75rem; color: var(--accent); }

/* ── 22. MODALS ───────────────────────────────────────────── */
.modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.modal.open {
  pointer-events: all;
  opacity: 1;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
  backdrop-filter: blur(6px);
  cursor: pointer;
}

.modal-box {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 500px;
  max-height: 90svh;
  overflow-y: auto;
  transform: translateY(20px) scale(.97);
  transition: transform .3s var(--ease-spring);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-box h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 700;
}

.modal-box p {
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.65;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: all .25s;
}
.modal-close:hover { background: var(--bg-card-h); color: var(--text); }

.modal-icon {
  width: 56px;
  height: 56px;
  background: rgba(233,86,37,.08);
  border: 1px solid var(--border-h);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-modal-name {
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(233,86,37,.08);
  border-radius: var(--r-sm);
  padding: .5rem .75rem;
  margin-top: -.25rem;
}

.modal-box--resident { max-width: 580px; }

.rmx-header {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.rmx-photo {
  width: 80px;
  height: 80px;
  border-radius: var(--r-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.rmx-quote {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  font-size: .9rem;
  color: var(--text-2);
  font-style: italic;
  line-height: 1.6;
}

.rmx-section-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .5rem;
}

.rmx-results {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  list-style: disc;
  padding-left: 1.25rem;
  color: var(--text-2);
  font-size: .88rem;
}

.rmx-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.rmx-tag {
  background: rgba(233,86,37,.1);
  border: 1px solid var(--border-h);
  border-radius: 100px;
  padding: .25rem .75rem;
  font-size: .78rem;
  font-weight: 600;
  color: var(--accent);
}

.modal-box--gallery {
  position: fixed;
  inset: 0;
  max-width: none;
  max-height: none;
  border-radius: 0;
  border: none;
  padding: 0;
  transform: translateY(24px);
  background: var(--bg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.modal.open .modal-box--gallery {
  transform: translateY(0) scale(1);
}
.modal-box--gallery .modal-gallery-header {
  padding: 2.5rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.modal-box--gallery .modal-gallery-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: .4rem;
}
.modal-box--gallery .modal-close {
  position: fixed;
  top: 1.25rem;
  right: 1.5rem;
  z-index: 10;
}

.gm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: .75rem;
  padding: 1.5rem 2.5rem 3rem;
}
.gm-item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--r-sm);
  overflow: hidden;
  cursor: zoom-in;
}
.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gm-item:hover img { transform: scale(1.04); }
.gm-item:hover {
  box-shadow: 0 0 0 1.5px rgba(233, 86, 37, .35), 0 8px 28px rgba(0, 0, 0, .4);
}
.gm-item:hover .life-photo-caption {
  background: rgba(233, 84, 34, .82);
}

/* ── 23. FOOTER ───────────────────────────────────────────── */
.footer {
  background: #060810;
  border-top: 1px solid var(--border);
  padding-block: 4rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: .88rem;
  color: var(--text-3);
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: .75rem;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  transition: all .25s;
}
.footer-socials a:hover {
  border-color: var(--border-h);
  color: var(--accent);
  background: rgba(233,86,37,.06);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-nav-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

.footer-nav ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-nav a {
  font-size: .88rem;
  color: var(--text-3);
  transition: color .25s;
}
.footer-nav a:hover { color: var(--text); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--text-3);
}
.footer-bottom a { transition: color .25s; }
.footer-bottom a:hover { color: var(--text); }

/* ── 24. BACK TO TOP ──────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: var(--z-sticky);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover { background: var(--accent-dark); }

/* ── 25. LIFE (EVENTS + GALLERY) ─────────────────────────── */
.life { background: var(--bg-2); }

.life-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.life-subtitle {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.5rem;
}

.life-event-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.life-event {
  display: grid;
  grid-template-columns: 70px 1fr auto auto;
  align-items: center;
  gap: 1.75rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding .3s;
}
.life-event:hover { padding-left: .5rem; }
.life-event:first-child { border-top: 1px solid var(--border); }

.led-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  flex-shrink: 0;
  min-width: 70px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: .5rem .75rem;
}

.led-num {
  font-family: var(--ff-number);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: .03em;
  font-variant-numeric: tabular-nums;
}

.led-month {
  font-size: .65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-top: .15rem;
}

.led-info h4 {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: .2rem;
  line-height: 1.3;
}

.led-info p {
  font-size: .78rem;
  color: var(--text-3);
}

.led-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-3);
  flex-shrink: 0;
  transition: all .25s;
}
.led-btn:hover {
  border-color: var(--border-h);
  color: var(--accent);
  background: rgba(233,86,37,.06);
}

.life-event .event-tag {
  margin-bottom: 0;
  white-space: nowrap;
  flex-shrink: 0;
}

.life-photos-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.life-photo-main {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16/10;
}
.life-photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.life-photo-main:hover img { transform: scale(1.04); }

.life-photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.life-photo-small {
  position: relative;
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.life-photo-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.life-photo-small:hover img { transform: scale(1.06); }

.life-photo-main:hover,
.life-photo-small:hover {
  box-shadow: 0 0 0 1.5px rgba(233, 86, 37, .35), 0 8px 28px rgba(0,0,0,.4);
}

.life-gallery-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  width: 100%;
  padding: .85rem 1.5rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  color: var(--text-2);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s, box-shadow .3s;
}
.life-gallery-btn:hover {
  background: rgba(233, 86, 37, .08);
  border-color: rgba(233, 86, 37, .4);
  color: var(--text);
  box-shadow: 0 0 20px rgba(233, 86, 37, .12);
}
.life-gallery-btn svg {
  opacity: .6;
  transition: opacity .25s;
}
.life-gallery-btn:hover svg { opacity: 1; }

.life-photo-caption {
  position: absolute;
  bottom: .65rem;
  left: .65rem;
  padding: .28rem .7rem;
  background: rgba(0,0,0,.58);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  letter-spacing: .04em;
  white-space: nowrap;
  pointer-events: none;
  transition: background .3s;
}
.life-photo-main:hover .life-photo-caption,
.life-photo-small:hover .life-photo-caption {
  background: rgba(233,84,34,.82);
}

/* ── 25b. COLLAB ──────────────────────────────────────────── */
.collab { background: var(--bg); }

.collab-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.collab-photos {
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 1rem;
  align-items: start;
}

.collab-photo-big {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.collab-photo-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
  display: block;
}
.collab-photo-big:hover img { transform: scale(1.04); }

.collab-photo-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 2.5rem;
}

.collab-photo-sm {
  border-radius: var(--r-sm);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.collab-photo-sm img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s var(--ease);
}
.collab-photo-sm:hover img { transform: scale(1.05); }

.collab-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ── 26. NEW MODALS & FOOTER COLLAB ──────────────────────── */
.modal-box--wide {
  max-width: 520px;
}

.modal-form,
#eventForm {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: .5rem;
}

.footer-collab {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 2rem;
  border-top: 1px solid var(--border);
  margin-top: .5rem;
}

.footer-link-btn {
  font-size: .84rem;
  font-weight: 500;
  color: var(--text-3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color .25s;
  font-family: var(--ff-body);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: transparent;
}
.footer-link-btn:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}

.gs-stat-item { opacity: 0; transform: translateX(-24px); }

/* ── 26. SCROLLBAR ────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.12); border-radius: 3px; }

/* ── 26. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1100px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
  .eco-grid { grid-template-columns: repeat(2, 1fr); }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .collab-inner { gap: 3rem; }
}

@media (max-width: 1024px) {
  :root { --section-py: 5rem; }

  .hero-title { font-size: clamp(1.7rem, 4.2vw, 2.8rem); }

  .founder-grid { grid-template-columns: 320px 1fr; gap: 3rem; }

  .stats-main-grid { grid-template-columns: 1fr; gap: 3rem; }
  .stats-chart-col { max-width: 380px; margin-inline: auto; }

  .forums-grid { grid-template-columns: 1fr; gap: 3rem; }

  .membership-plans { grid-template-columns: 1fr; }

  .apply-inner { grid-template-columns: 1fr; gap: 3rem; }

  .form-section-inner,
  .form-section-inner--rev { grid-template-columns: 1fr; gap: 3rem; }
  .form-section-inner--rev { direction: ltr; }

  .alliance-features { grid-template-columns: 1fr 1fr; }

  .life-grid { gap: 2.5rem; }

  .collab-inner { grid-template-columns: 1fr; gap: 3rem; }
  .collab-photos { grid-template-columns: 1fr 160px; }

  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-py: 4rem; }

  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; margin-left: .25rem; }
  .lang-switch { margin-left: auto; }

  .hero-title { font-size: clamp(1.55rem, 7.2vw, 2rem); }
  .hero { padding-top: 0; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .hero-strip-inner { flex-wrap: wrap; }
  .hero-strip-stat { flex: 0 0 50%; }
  .hero-strip-div { display: none; }

  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo { aspect-ratio: 4/3; }

  .stat-row { grid-template-columns: 120px 1fr; gap: 1.25rem; }
  .stat-row-num { font-size: clamp(2.8rem, 6vw, 4rem); }

  .pain-grid { grid-template-columns: 1fr 1fr; }

  .eco-grid { grid-template-columns: 1fr; }

  .events-grid { grid-template-columns: 1fr; }

  .speakers-grid { grid-template-columns: 1fr 1fr; }

  .alliance-features { grid-template-columns: 1fr; }

  .life-grid { grid-template-columns: 1fr; gap: 3rem; }
  .life-event { grid-template-columns: 60px 1fr auto auto; gap: 1.25rem; }

  .collab-photos { grid-template-columns: 1fr 120px; }
  .collab-btns { flex-direction: column; }
  .collab-btns .btn { width: 100%; justify-content: center; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item--tall { grid-row: auto; aspect-ratio: 4/3; }
  .gallery-item--wide { grid-column: auto; }

  .plan-card { padding: 2rem 1.5rem; border-radius: var(--r-lg); }
  .plan-common { padding: 1.25rem 1.5rem; }
  .plan-common-list { flex-direction: column; gap: .6rem; }

  .form-card { padding: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }

  .residents-header { flex-direction: column; align-items: flex-start; }

  .speakers-header { flex-direction: column; align-items: flex-start; }
  .gallery-header { flex-direction: column; align-items: flex-start; }

  .footer-nav { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .gm-grid { grid-template-columns: 1fr 1fr; padding: 1rem 1.5rem 2rem; }
  .modal-box--gallery .modal-gallery-header { padding: 1.5rem 1.5rem 1rem; }
  .modal-box--gallery .modal-close { top: .75rem; right: 1rem; }

  .back-to-top { bottom: 1.25rem; right: 1.25rem; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .pain-grid { grid-template-columns: 1fr; }
  .speakers-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 100px 1fr; gap: 1rem; padding: 1.25rem 0; }
  .stat-row-num { font-size: 3rem; }
  .forums-stat-row { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .forums-stat-sep { width: 40px; height: 1px; }
  .hero-strip-stat { flex: 0 0 50%; }
  .footer-nav { grid-template-columns: 1fr; }
  .gm-grid { grid-template-columns: 1fr; padding: .75rem 1rem 2rem; }
  .collab-photos { grid-template-columns: 1fr; }
  .collab-photo-stack { display: none; }
  .life-event { grid-template-columns: 80px 1fr auto; }
  .led-btn { display: none; }
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ── 27. FORMATS ──────────────────────────────────────────── */
.formats { background: var(--bg); }

.formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem 1.5rem;
  transition: border-color .3s, background .3s, transform .3s var(--ease-spring);
}
.format-card:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
  transform: translateY(-4px);
}

.format-card-num {
  font-family: var(--ff-head);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--accent);
  margin-bottom: .65rem;
}

.format-card-icon {
  display: block;
  margin-bottom: .85rem;
  transition: transform .35s var(--ease-spring);
}
.format-card:hover .format-card-icon {
  transform: translateY(-3px) scale(1.08);
}

.format-card h3 {
  font-family: var(--ff-head);
  font-size: .96rem;
  font-weight: 700;
  margin-bottom: .4rem;
  line-height: 1.3;
}

.format-card p {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ── 28. DASHBOARD ────────────────────────────────────────── */
.dashboard { background: var(--bg); }

.dash-wrap {
  width: 100%;
  margin-inline: auto;
}

.dash-kpi-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-bottom: .85rem;
}

.dash-kpi {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.35rem 1.25rem;
  transition: border-color .25s, background .25s;
}
.dash-kpi:hover {
  border-color: var(--border-h);
  background: var(--bg-card-h);
}

.dash-kpi-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .45rem;
}

.dash-kpi-num {
  font-family: var(--ff-number);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.dash-kpi-svg { opacity: .35; flex-shrink: 0; }

.dash-kpi-label {
  font-size: .86rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .1rem;
}

.dash-kpi-sub {
  font-size: .75rem;
  color: var(--text-3);
}

.dash-main-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .85rem;
  margin-bottom: .85rem;
}
.dash-sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}
.dash-sub-row { margin-bottom: 0; }

.dash-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.25rem 1.35rem;
  min-width: 0;
}

.dash-card-title {
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: .85rem;
}

.dash-ev-table { display: flex; flex-direction: column; }

.dash-ev-head {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .75rem;
  padding-bottom: .45rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: .3rem;
}
.dash-ev-head > span {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-3);
}
.dash-ev-head > span:not(:first-child) { text-align: right; }

.dash-ev-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: .75rem;
  padding: .38rem 0;
  border-bottom: 1px solid rgba(255,255,255,.035);
  align-items: center;
  border-radius: 4px;
  transition: background .15s;
}
.dash-ev-row:hover { background: rgba(255,255,255,.03); padding-inline: .4rem; }

.dash-ev-row > span:first-child {
  font-size: .78rem;
  color: var(--text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dash-ev-count {
  font-family: var(--ff-number);
  font-size: .82rem;
  font-weight: 700;
  color: var(--accent);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.dash-ev-part {
  font-family: var(--ff-number);
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-2);
  text-align: right;
  font-variant-numeric: tabular-nums;
  min-width: 40px;
}

.dash-chart-wrap {
  height: 178px;
  position: relative;
}
.dash-chart-wrap--sm {
  height: 110px;
  margin-bottom: .7rem;
}

.dash-gender-legend {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
}
.dash-gender-legend--col {
  flex-direction: column;
  align-items: flex-start;
  gap: .45rem;
}
.dash-gender-legend--start {
  justify-content: flex-start;
  gap: 1rem;
}
.dash-gender-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-direction: column;
}
.dash-gender-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dash-gender-pct {
  font-family: var(--ff-number);
  font-size: .88rem;
  font-weight: 700;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.dash-gender-lbl {
  font-size: .75rem;
  color: var(--text-3);
}

@media (max-width: 1100px) {
  .formats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .dash-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .dash-main-row { grid-template-columns: repeat(2, 1fr); }
  .dash-sub-row { grid-template-columns: 1fr 1fr; }
  .formats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .formats-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-kpi-row { grid-template-columns: repeat(2, 1fr); }
  .dash-main-row,
  .dash-sub-row { grid-template-columns: 1fr; }
  .dash-chart-wrap--sm {
    width: 130px;
    margin-inline: auto;
  }
  .dash-gender-legend {
    justify-content: center;
  }
  .dash-gender-legend--start {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .formats-grid { grid-template-columns: 1fr 1fr; }
  .dash-kpi-row { grid-template-columns: 1fr 1fr; }
  .format-card { padding: 1rem 0.8rem; }
}

/* ── 26. FOR WHOM (БЛОК 1) ───────────────────────────────── */
.forkto { background: var(--bg-2); }

.forkto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.forkto-col {
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}

.forkto-col--yes { background: rgba(233,86,37,.06); border-color: rgba(233,86,37,.2); }
.forkto-col--no  { background: var(--bg-card); }

.forkto-col-title {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.forkto-col--no .forkto-col-title { color: var(--text-2); }

.forkto-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-2);
  padding-left: 1.6rem;
}

.forkto-list li { position: relative; }
.forkto-list li::before {
  content: '';
  position: absolute;
  left: -1.2rem;
  top: .55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.forkto-list--no li::before { background: var(--text-3); }

.forkto-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 1.75rem 2rem;
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}
.forkto-note-headline {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.forkto-note p:last-child { color: var(--text-2); font-size: .9rem; }

@media (max-width: 640px) {
  .forkto-grid { grid-template-columns: 1fr; }
}

/* ── 27. DASHBOARD REVENUE CARD ─────────────────────────── */

/* ── 28. FORUMS TWO-COL ──────────────────────────────────── */
.forums-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

.forums-col-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}

@media (max-width: 640px) {
  .forums-two-col { grid-template-columns: 1fr; }
}

/* ── 29. PERSONAL BM ─────────────────────────────────────── */
.pbm { background: var(--bg); }
.pbm .section-title { width: max-content; }
.pbm .section-header { margin-bottom: 1.5rem; }
.pbm .section-desc { margin-top: 0; }
.pbm-visual .btn { justify-content: center; }

.pbm-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.pbm-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 1.75rem 0 2rem;
}

.pbm-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-2);
  line-height: 1.55;
}
.pbm-list li svg { flex-shrink: 0; margin-top: .15rem; }

.pbm-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.pbm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  text-align: center;
}

.pbm-card-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.pbm-card-title {
  font-family: var(--ff-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: .35rem;
}

.pbm-card-sub {
  font-size: .82rem;
  color: var(--text-3);
  margin-bottom: 1.25rem;
}

.pbm-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: center;
}

.pbm-card-tags li {
  background: rgba(233,86,37,.12);
  border: 1px solid rgba(233,86,37,.25);
  color: var(--accent);
  border-radius: 100px;
  padding: .35rem .85rem;
  font-size: .75rem;
  font-weight: 600;
}

@media (max-width: 900px) {
  .pbm-inner { grid-template-columns: 1fr; gap: 3rem; }
  .pbm .section-title { width: auto; }
}

/* ── PBM PHOTOS ─────────────────────────────────────────── */
.pbm-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.pbm-photo {
  margin: 0;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
}

.pbm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 700px) {
  .pbm-photos { grid-template-columns: 1fr; gap: 1rem; margin-top: 2.5rem; }
}

/* ── 30. ALLIANCE STATS STRIP ────────────────────────────── */
.alliance-stats-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  margin-bottom: 3rem;
  overflow: hidden;
}

.alliance-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 3rem;
  flex: 1;
  text-align: center;
}

.alliance-stat-div {
  width: 1px;
  height: 60px;
  background: var(--border);
  flex-shrink: 0;
}

.alliance-stat-num {
  font-family: var(--ff-number);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .35rem;
}

.alliance-stat-lbl {
  font-size: .8rem;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .1em;
}

@media (max-width: 640px) {
  .alliance-stats-strip { flex-direction: column; }
  .alliance-stat-div { width: 60px; height: 1px; }
  .alliance-stat-item { padding: 1.5rem 2rem; }
}

/* ── 31. COLLAB DUAL (СПИКЕРЫ + ПАРТНЁРЫ) ───────────────── */
.collab-dual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: start;
}

.collab-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
  margin-inline: 3rem;
}

.collab-panel {
  padding: 1rem 0;
}

.collab-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: rgba(233,86,37,.1);
  border: 1px solid rgba(233,86,37,.2);
  border-radius: var(--r-md);
  margin-bottom: 1.5rem;
}

.collab-panel-desc {
  color: var(--text-2);
  font-size: .9rem;
  line-height: 1.65;
  margin: 1rem 0 1.25rem;
}

.collab-criteria {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 2rem;
  padding-left: 1.25rem;
}

.collab-criteria li {
  font-size: .875rem;
  color: var(--text-2);
  position: relative;
}
.collab-criteria li::before {
  content: '';
  position: absolute;
  left: -1rem;
  top: .55em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}

@media (max-width: 900px) {
  .collab-dual {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .collab-divider {
    width: 100%;
    height: 1px;
    margin-inline: 0;
  }
}

/* ── 33. PROCESS ROADMAP ──────────────────────────────────── */
.process { background: var(--bg-2); }

.process-road-wrap {
  margin-top: 2rem;
}

.process-road-top {
  text-align: center;
  margin-bottom: 2rem;
}

.process-road-desc {
  margin-top: 1rem;
  color: var(--text-2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.process-road-canvas {
  position: relative;
}

.psc-abs {
  position: absolute;
  width: 19%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.125rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}

.psc-abs--orange { border-color: rgba(233,86,37,.35); }
.psc-abs--teal   { border-color: rgba(80,107,115,.35); }

.psc-abs--01 { left: 0;    top: 70%; }
.psc-abs--02 { left: 33.3%; transform: translateX(-50%); top: 40%; }
.psc-abs--03 { left: 66.7%; transform: translateX(-50%); top: 70%; }
.psc-abs--04 { right: 0;   top: 40%; }

.psc-abs h4 {
  font-family: var(--ff-head);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .4rem;
  color: var(--text-1);
}

.psc-abs p {
  font-size: .8rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.process-road-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

@keyframes dash-flow {
  from { stroke-dashoffset: 36; }
  to   { stroke-dashoffset: 0; }
}

@keyframes dash-flow-v {
  from { background-position: 0 0; }
  to   { background-position: 0 16px; }
}

@keyframes pulse-ring {
  0%   { r: 34; opacity: .55; }
  100% { r: 60; opacity: 0; }
}

.process-path-anim {
  stroke-dasharray: 22 14;
  animation: dash-flow 1.4s linear infinite;
}

.process-mobile-list {
  display: none;
  flex-direction: column;
  gap: 0;
  margin-top: 2.5rem;
  list-style: none;
}

.process-mobile-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 2rem;
  position: relative;
}
.process-mobile-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 42px;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(255,255,255,.32) 0px,
    rgba(255,255,255,.32) 8px,
    transparent 8px,
    transparent 16px
  );
  background-size: 2px 16px;
  animation: dash-flow-v 1.4s linear infinite;
}

.pml-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-number);
  font-size: .82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pml-num--teal { background: var(--teal); }

@keyframes pml-pulse {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.9); opacity: 0; }
}

.pml-num::before,
.pml-num::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid var(--accent);
  animation: pml-pulse 2s ease-out infinite;
  pointer-events: none;
}
.pml-num--teal::before,
.pml-num--teal::after {
  border-color: var(--teal);
}
.pml-num::after {
  animation-delay: .85s;
}

.pml-body {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1rem 1.125rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.22);
}
.pml-body--orange { border-color: rgba(233,86,37,.35); }
.pml-body--teal   { border-color: rgba(80,107,115,.35); }
.pml-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .35rem;
}
.pml-body p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.6;
  margin: 0;
}

.process-note {
  text-align: center;
  color: var(--text-3);
  font-size: .82rem;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .process-road-wrap { display: none; }
  .process-mobile-list { display: flex; }
}

/* ── 34. CUSTOM SELECT ────────────────────────────────────── */
.cs-wrap {
  position: relative;
}

.cs-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  cursor: pointer;
  text-align: left;
  user-select: none;
  padding-right: .75rem;
}

.cs-value { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cs-value--ph { color: var(--text-3); }

.cs-caret {
  color: var(--text-3);
  flex-shrink: 0;
  transition: transform .2s var(--ease);
}
.cs-wrap[aria-expanded="true"] .cs-caret { transform: rotate(180deg); }
.cs-wrap[aria-expanded="true"] .cs-trigger {
  border-color: var(--accent);
  background: rgba(233,86,37,.04);
}

.cs-list {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #060810;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  z-index: 60;
  display: none;
  box-shadow: 0 12px 32px rgba(0,0,0,.6);
}
.cs-list.open { display: block; }

.cs-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1rem;
  cursor: pointer;
  font-size: .9rem;
  color: var(--text);
  transition: background .15s;
  list-style: none;
}
.cs-item:hover { background: rgba(255,255,255,.05); }
.cs-item:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }

.cs-item--ph {
  background: rgba(233,86,37,.1);
  color: var(--accent);
  font-weight: 600;
  border-bottom: 1px solid rgba(233,86,37,.15);
}
.cs-item--ph:hover { background: rgba(233,86,37,.14); }

.cs-icon { display: none; }

.cs-check {
  margin-left: auto;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0;
}
.cs-item--active .cs-check { opacity: 1; }

.has-error .cs-trigger {
  border-color: var(--accent);
  background: rgba(233,86,37,.04);
}

/* ── 32. REDUCED MOTION ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}
