/* === FONTS === */
@font-face {
  font-family: 'TT Bluescreens';
  src: url('assets/TT_Bluescreens_Regular_4b399c35.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Bluescreens';
  src: url('assets/TT_Bluescreens_Italic_bae0d0f8.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Bluescreens';
  src: url('assets/TT_Bluescreens_DemiBold_23722e57.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Bluescreens';
  src: url('assets/TT_Bluescreens_Bold_Italic_33b1c78f.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'TT Bluescreens Condensed';
  src: url('assets/TT_Bluescreens_Condensed_Bold_3d8f47ee.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'TT Bluescreens Condensed';
  src: url('assets/TT_Bluescreens_Condensed_Medium_9a7deb80.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('assets/Inter-VariableFont_fc957622.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fafafa;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; font: inherit; cursor: pointer; }
ul { list-style: none; }

/* === CONTAINER === */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; }
}

/* === HEADER === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s ease;
  background: transparent;
}
.header.scrolled {
  background: rgba(255,255,255,0.97);
  /* backdrop-filter убран намеренно: filter на .header делал его containing block
     для position:fixed мобильного меню — из-за этого меню схлопывалось при прокрутке
     (или на программных страницах, где header всегда .scrolled). */
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
@media (min-width: 1024px) {
  .header .container { height: 80px; }
}
.header-logo img {
  height: 40px;
}
@media (min-width: 1024px) {
  .header-logo img { height: 48px; }
}
.header-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .header-nav { display: flex; }
}
.header-nav button {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}
.header-nav button:hover { color: #e16fc8; }
.header-tg {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #000;
  color: #fff;
  transition: background 0.2s;
}
.header-tg:hover { background: #e16fc8; }
.header-tg svg { width: 16px; height: 16px; }

/* Mobile menu */
.mobile-burger {
  display: block;
  padding: 0.5rem;
}
@media (min-width: 1024px) {
  .mobile-burger { display: none; }
}
.mobile-burger svg { width: 24px; height: 24px; }
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  max-height: calc(100vh - 64px);
  background: #ffffff;
  border-top: 1px solid #f3f4f6;
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
  padding: 0.5rem 0 1rem;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
/* .header .container задаёт height:64px и flex-row; у мобильного меню nav тоже
   класс .container — перебиваем более специфичным селектором, иначе меню сжимается. */
.header .mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.25rem;
  height: auto;
}
.mobile-menu button,
.mobile-menu a {
  display: block;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  padding: 0.85rem 0;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-menu button:last-child,
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu button:hover,
.mobile-menu a:hover { color: #e16fc8; }

/* === HERO (артборд 1:1 c архивом через container query units) ===
   Десктоп (≥1024px): .hero__stage = grid 1200px архива, все координаты в cqw
   (1cqw = 1% ширины stage), поэтому при 1200px совпадает с архивом пиксель-в-пиксель,
   а на 1024–1200px равномерно масштабируется. ≤1023px — чистая мобильная раскладка. */
.hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

/* Фон — серая карта Восточной Сибири (zoom + оттенок как в архиве) + «дыхание» */
.hero__map {
  position: absolute;
  top: -42%;
  left: -40%;
  width: 176%;
  height: 165%;
  /* Размер карты задан в vw (от ширины окна), а НЕ в % от увеличенного блока —
     иначе на широких мониторах карта сильно приближалась. Чем меньше vw — тем
     мельче карта и тем больше городов видно. */
  background: #d6d6d6 url('assets/hero-map.svg') 50% 50% / 120vw no-repeat;
  opacity: 0.59;
  z-index: 0;
  pointer-events: none;
  transform-origin: 50% 50%;
  animation: heroMapBreathe 40s ease-in-out infinite;
}

/* Артборд = grid 1200px */
.hero__stage {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  container-type: inline-size;
  aspect-ratio: 1200 / 720;
}

/* Розовая линия-петля — точная геометрия архива, ЗА заголовком (z1) */
.hero__line {
  position: absolute;
  top: -15.75cqw;      /* -189px */
  left: -113.5cqw;     /* -1362px */
  width: 306cqw;       /* 3673px */
  height: 97.2cqw;     /* 1166px */
  z-index: 1;
  overflow: visible;
  pointer-events: none;
  opacity: 0;
  animation: heroFade 2s ease 0.2s forwards;
}

/* Генеральные партнёры — рядом с заголовком (как в архиве: left 803 в grid 1200) */
.hero__partners {
  position: absolute;
  top: 13.8cqw;        /* 166px */
  left: 66.9cqw;       /* 803px */
  z-index: 5;
  opacity: 0;
  animation: heroFade 1.4s ease 0.5s forwards;
}
.hero__partners-label {
  display: block;
  max-width: 12cqw;
  margin-bottom: 1.3cqw;
  font-family: 'TT Bluescreens', sans-serif;
  font-size: 0.92cqw;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #242424;
}
.hero__partners-logos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5cqw;
}
.hero__partners-logos img {
  height: 2cqw;        /* ~24px */
  width: auto;
}

/* Заголовок + подзаголовок + дата + кнопки */
.hero__headline {
  position: absolute;
  top: 10.6cqw;        /* 128px */
  left: 19.6cqw;       /* 235px */
  width: 62cqw;
  z-index: 3;
}
.hero__title {
  margin: 0;
  font-family: 'TT Bluescreens Condensed', 'TT Bluescreens', sans-serif;
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero__title-line {
  display: block;
  opacity: 0;
  font-size: 15.83cqw;  /* 190px */
  white-space: nowrap;
}
.hero__title-line--pink {
  color: #e16fc8;
  animation: heroFadeUp 1s ease forwards;
}
.hero__title-line--dark {
  color: #242424;
  animation: heroFadeUp 1s ease 0.2s forwards;
}

/* Маленький розовый штрих-акцент */
.hero__tick {
  position: absolute;
  top: 33cqw;          /* 397px */
  left: 45.4cqw;       /* 545px */
  width: 7.17cqw;      /* 86px */
  height: auto;
  z-index: 4;
  pointer-events: none;
  opacity: 0;
  animation: heroFade 2s ease 0.6s forwards;
}

.hero__sub {
  margin-top: 3.4cqw;
  font-family: 'TT Bluescreens', serif;
  font-weight: 400;
  font-size: 4.58cqw;   /* 55px */
  line-height: 1.1;
  letter-spacing: 0.1em;
  color: #242424;
  white-space: nowrap;
  opacity: 0;
  animation: heroFadeUp100 1s ease 0.4s forwards;
}

.hero__date {
  margin-top: 1.4cqw;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(0.9rem, 1.5cqw, 1.2rem);
  color: #3a3a3a;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.55s forwards;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.3cqw;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.7s forwards;
}

/* Кнопки адаптированы под светлый фон */
.hero .hero-btn--outline {
  color: #242424;
  border-color: rgba(36, 36, 36, 0.55);
  background: transparent;
}
.hero .hero-btn--outline:hover {
  background: #242424;
  color: #fff;
  border-color: #242424;
  transform: scale(1.05);
}

/* Анимации hero */
@keyframes heroMapBreathe {
  0%   { transform: scale(1) translate(0, 0); }
  50%  { transform: scale(1.05) translate(1.4%, 0.7%); }
  100% { transform: scale(1) translate(0, 0); }
}
@keyframes heroFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(50px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeUp100 {
  from { opacity: 0; transform: translateY(100px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ≤1023px — чистая мобильная раскладка (стек) */
@media (max-width: 1023px) {
  .hero { min-height: 0; }
  .hero__stage {
    aspect-ratio: auto;
    container-type: normal;
    min-height: 86vh;
    padding: 6.5rem 1.25rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* На узком/высоком мобильном hero cover гарантирует, что карта заполняет весь
     блок (иначе сверху оставалась пустая белая полоса). */
  .hero__map { top: -12%; left: -12%; width: 124%; height: 124%; opacity: 0.5; background-size: cover; }
  /* Линия проходит по диагонали через нижнюю строку заголовка («Юридический форум»),
     чтобы не сливаться с верхней строкой. */
  .hero__line {
    top: 19%;
    left: -55%;
    width: 215%;
    height: auto;
  }
  /* На архивах в hero нет кнопок — центрированный контент ставит заголовок ниже,
     поэтому линию тоже опускаем. */
  .archive-page .hero__line { top: 28%; }
  .hero__tick { display: none; }

  .hero__headline {
    position: static;
    width: auto;
    order: 1;
    text-align: center;
  }
  .hero__title-line {
    white-space: normal;
    font-size: clamp(2.9rem, 15.5vw, 6rem);
  }
  .hero__sub {
    white-space: normal;
    font-size: clamp(1.1rem, 5.5vw, 2rem);
    margin-top: 1rem;
    letter-spacing: 0.12em;
  }
  .hero__date {
    font-size: 0.95rem;
    margin-top: 1.4rem;
  }
  .hero__buttons {
    margin-top: 1.4rem;
    justify-content: center;
  }
  .hero__buttons .hero-btn { flex: 1 1 auto; }

  .hero__partners {
    position: static;
    order: 2;
    margin-top: 2.5rem;
    top: auto;
    left: auto;
    text-align: center;
  }
  .hero__partners-label {
    max-width: none;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    margin-bottom: 0.6rem;
  }
  .hero__partners-logos {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.1rem;
  }
  .hero__partners-logos img { height: 22px; }
}

/* Уважаем prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero__map,
  .hero__line,
  .hero__tick,
  .hero__title-line,
  .hero__sub,
  .hero__date,
  .hero__buttons,
  .hero__partners {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* === VIDEO SECTION === */
.video-section {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .video-section { padding: 8rem 0; }
}
.video-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .video-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .video-section h2 { font-size: 3rem; }
}
.video-section .pink { color: #e16fc8; }
.video-wrapper {
  max-width: 56rem;
  margin: 0 auto;
}
.video-player {
  position: relative;
  aspect-ratio: 16/9;
  background: #111827;
  border-radius: 1rem;
  overflow: hidden;
}
.video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === CTA SECTION === */
.cta-section {
  padding: 5rem 0;
  background: #e16fc8;
}
@media (min-width: 1024px) {
  .cta-section { padding: 7rem 0; }
}
.cta-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .cta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .cta-grid { gap: 2rem; }
}
.cta-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: left;
  transition: all 0.3s;
}
@media (min-width: 1024px) {
  .cta-card { padding: 2.5rem; }
}
.cta-card:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.02);
}
.cta-card svg {
  width: 40px;
  height: 40px;
  color: #fff;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.cta-card:hover svg { transform: scale(1.1); }
.cta-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .cta-card h3 { font-size: 1.5rem; }
}
.cta-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .cta-card p { font-size: 1rem; }
}

/* === PROGRAM SECTION === */
.program-section {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .program-section { padding: 8rem 0; }
}
.program-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .program-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .program-section h2 { font-size: 3rem; }
}
.program-section .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
.program-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .program-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .program-grid { grid-template-columns: repeat(3, 1fr); }
}
.program-card {
  position: relative;
  height: 16rem;
  border-radius: 1rem;
  overflow: hidden;
  display: block;
}
@media (min-width: 1024px) {
  .program-card { height: 18rem; }
}
.program-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s;
}
.program-card:hover .bg { transform: scale(1.1); }
.program-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.4), rgba(0,0,0,0.1));
  transition: background 0.3s;
}
.program-card:hover .overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.5), rgba(0,0,0,0.15));
}
.program-card .content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
}
.program-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}
@media (min-width: 1024px) {
  .program-card h3 { font-size: 1.5rem; }
}
.program-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
}
@media (min-width: 1024px) {
  .program-card p { font-size: 1rem; }
}

/* === SPEAKERS SECTION === */
.speakers-section {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .speakers-section { padding: 8rem 0; }
}
.speakers-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .speakers-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .speakers-section h2 { font-size: 3rem; }
}
.speakers-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .speakers-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .speakers-grid { grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}
.speaker-card .photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1rem;
  background: #e5e7eb;
}
.speaker-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.speaker-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.speaker-card .surname { color: #e16fc8; }
.speaker-card ul { display: flex; flex-direction: column; gap: 0.375rem; }
.speaker-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}
.speaker-card li .dash {
  color: #e16fc8;
  margin-top: 2px;
  flex-shrink: 0;
}

/* === PARTNERS SECTION === */
.partners-section {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .partners-section { padding: 8rem 0; }
}
.partners-layout {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .partners-layout { grid-template-columns: 250px 1fr; }
}
.partners-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .partners-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .partners-section h2 { font-size: 3rem; }
}
.partner-groups { display: flex; flex-direction: column; gap: 3rem; }
.partner-group h3 {
  font-size: 0.75rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}
.partner-group .logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .partner-group .logos { gap: 3rem; }
}
.partner-group .logos img {
  height: 48px;
  width: auto;
  object-fit: contain;
  max-width: 180px;
}
@media (min-width: 1024px) {
  .partner-group .logos img { height: 56px; }
}
.partner-group .logos .text-logo {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
}

/* === TICKETS / REGISTRATION === */
.tickets-section {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .tickets-section { padding: 8rem 0; }
}
.tickets-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .tickets-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .tickets-section h2 { font-size: 3rem; }
}
.tickets-section .subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.form-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.form-tab {
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s;
  background: #f3f4f6;
  color: #374151;
}
.form-tab:hover { background: #e5e7eb; }
.form-tab.active {
  background: #e16fc8;
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(225,111,200,0.2);
}
.form-tab .price {
  margin-left: 0.5rem;
  opacity: 0.7;
}
.reg-form {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}
.form-group label .required { color: #ef4444; }
.form-group input,
.form-group textarea {
  width: 100%;
  height: 36px;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  background: transparent;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: 'Inter', sans-serif;
}
.form-group textarea {
  height: auto;
  min-height: 80px;
  resize: vertical;
  padding: 0.5rem 0.75rem;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e16fc8;
  box-shadow: 0 0 0 2px rgba(225,111,200,0.2);
}
.form-submit {
  width: 100%;
  background: #e16fc8;
  color: #fff;
  padding: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: background 0.2s, transform 0.1s;
}
.form-submit:hover { background: #c85db3; }
.form-submit:active { transform: scale(0.97); }
.form-disclaimer {
  text-align: center;
  font-size: 0.75rem;
  color: #9ca3af;
}
.form-disclaimer a {
  text-decoration: underline;
  transition: color 0.2s;
}
.form-disclaimer a:hover { color: #4b5563; }

/* === ORGANIZERS SECTION === */
.organizers-section {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .organizers-section { padding: 8rem 0; }
}
.organizers-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .organizers-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .organizers-section h2 { font-size: 3rem; }
}
.organizers-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .organizers-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .organizers-grid { gap: 2rem; }
}
.org-card {
  background: #f3f4f6;
  border-radius: 1rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}
@media (min-width: 1024px) {
  .org-card { padding: 2.5rem; }
}
.org-card img { height: 64px; object-fit: contain; }
@media (min-width: 1024px) {
  .org-card img { height: 110px; max-width: 280px; }
}
.org-card .org-text { text-align: center; }
.org-card .org-subtitle {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}
.org-card .org-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
}
@media (min-width: 1024px) {
  .org-card .org-name { font-size: 1.5rem; }
}

/* === ORG PEOPLE SECTION === */
.org-people-section {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .org-people-section { padding: 8rem 0; }
}
.org-people-title {
  position: relative;
  margin-bottom: 4rem;
}
.org-people-title::before {
  content: '';
  position: absolute;
  top: -1rem;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, #e16fc8, transparent);
}
.org-people-title h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 900;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .org-people-title h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .org-people-title h2 { font-size: 3rem; }
}
.org-people-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) {
  .org-people-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .org-people-grid { gap: 4rem; }
}

/* === PERSON CARD === */
.person-card .person-photo {
  position: relative;
  width: 100%;
  max-width: 24rem;
  height: 480px;
  border-radius: 0.5rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #f3f4f6;
}
.person-card .person-photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: opacity 0.4s ease;
  max-width: none;
}
.person-card .person-photo .photo-bw {
  opacity: 1;
}
.person-card .person-photo .photo-color {
  opacity: 0;
}
.person-card .person-photo:hover .photo-bw {
  opacity: 0;
}
.person-card .person-photo:hover .photo-color {
  opacity: 1;
}

.person-card h3 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .person-card h3 { font-size: 1.875rem; }
}
.person-card .surname { color: #e16fc8; }
.person-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
.person-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #4b5563;
}
@media (min-width: 1024px) {
  .person-card li { font-size: 1rem; }
}
.person-card li .dash {
  color: #e16fc8;
  margin-top: 2px;
  flex-shrink: 0;
}

/* === ARCHIVE SECTION === */
.archive-section {
  padding: 5rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .archive-section { padding: 8rem 0; }
}
.archive-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .archive-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .archive-section h2 { font-size: 3rem; }
}
.archive-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .archive-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .archive-grid { gap: 2rem; }
}
.archive-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  padding: 2rem;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (min-width: 1024px) {
  .archive-card { padding: 2.5rem; }
}
.archive-card.dark { background: linear-gradient(to bottom right, #111827, #374151); }
.archive-card.pink { background: linear-gradient(to bottom right, #e16fc8, #9b4dca); }
.archive-card .year-watermark {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  font-weight: 900;
  color: rgba(255,255,255,0.1);
}
@media (min-width: 1024px) {
  .archive-card .year-watermark { font-size: 6rem; }
}
.archive-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .archive-card h3 { font-size: 1.5rem; }
}
.archive-card .desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}
.archive-card .link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}
.archive-card:hover .link { color: #fff; }
.archive-card:hover .link svg { transform: translateX(4px); }
.archive-card .link svg { transition: transform 0.2s; width: 16px; height: 16px; }

/* === FAQ SECTION === */
.faq-section {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .faq-section { padding: 8rem 0; }
}
.faq-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .faq-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .faq-section h2 { font-size: 3rem; }
}
.faq-section .faq-subtitle {
  text-align: center;
  color: #6b7280;
  margin-bottom: 3rem;
}
.faq-list {
  max-width: 42rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item .question-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  text-align: left;
  cursor: pointer;
}
.faq-item .q-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq-item .q-avatar span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #6b7280;
}
.faq-item .q-bubble {
  background: #f3f4f6;
  border-radius: 1rem;
  border-top-left-radius: 0.25rem;
  padding: 0.75rem 1rem;
  max-width: 85%;
  transition: background 0.2s;
}
.faq-item .question-row:hover .q-bubble { background: #e5e7eb; }
.faq-item .q-bubble p {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}
@media (min-width: 1024px) {
  .faq-item .q-bubble p { font-size: 1rem; }
}
.faq-item .q-bubble .sender {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 0.25rem;
}
.faq-item .chevron {
  width: 16px;
  height: 16px;
  color: #9ca3af;
  flex-shrink: 0;
  margin-top: 0.75rem;
  transition: transform 0.2s;
}
.faq-item.open .chevron { transform: rotate(180deg); }
.faq-item .answer-row {
  display: none;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
  animation: fadeIn 0.2s ease;
}
.faq-item.open .answer-row { display: flex; }
.faq-item .a-bubble {
  background: #e16fc8;
  border-radius: 1rem;
  border-top-right-radius: 0.25rem;
  padding: 0.75rem 1rem;
  max-width: 85%;
}
.faq-item .a-bubble p {
  font-size: 0.875rem;
  color: #fff;
}
@media (min-width: 1024px) {
  .faq-item .a-bubble p { font-size: 1rem; }
}
.faq-item .a-bubble .sender {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  margin-top: 0.25rem;
  text-align: right;
}
.faq-item .a-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e16fc8;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.faq-item .a-avatar span {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === FOOTER === */
.footer {
  background: #111827;
  color: #fff;
  padding: 4rem 0;
}
@media (min-width: 1024px) {
  .footer { padding: 5rem 0; }
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer-brand h3 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-brand .pink { color: #e16fc8; }
.footer-brand p {
  color: #9ca3af;
  font-size: 0.875rem;
  max-width: 28rem;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #d1d5db;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col li a:hover { color: #e16fc8; }
.footer-col li a svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid #1f2937;
  margin-top: 3rem;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom p {
  color: #6b7280;
  font-size: 0.75rem;
}

/* === PROGRAM SUBPAGE HERO === */
.program-hero {
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
}
@media (min-width: 1024px) {
  .program-hero { padding: 10rem 0 6rem; min-height: 600px; }
}

.program-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.74) 50%, rgba(0,0,0,0.62) 100%);
  z-index: 2;
}

.program-hero .texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHZpZXdCb3g9IjAgMCA2MCA2MCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNmZmYiIGZpbGwtb3BhY2l0eT0iMC4xIj48cGF0aCBkPSJNMzYgMzRoLTJ2LTRoMnYtMmgtNHY2aDR6Ii8+PC9nPjwvZz48L3N2Zz4=");
  background-repeat: repeat;
  z-index: 3;
}

.program-hero .container {
  position: relative;
  z-index: 10;
}

.program-hero .back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
  transition: color 0.2s;
}
.program-hero .back-link:hover { color: #fff; }
.program-hero .back-link svg { width: 16px; height: 16px; }
.program-hero .back-link span { font-size: 0.875rem; }

.program-hero .icon-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.program-hero .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.program-hero .icon-box svg { width: 32px; height: 32px; }
.program-hero .badge-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.program-hero h1 {
  font-family: 'TT Bluescreens', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #e16fc8;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
  .program-hero h1 { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .program-hero h1 { font-size: 3.75rem; }
}

.program-hero .description {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  max-width: 48rem;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .program-hero .description { font-size: 1.125rem; }
}
@media (min-width: 1024px) {
  .program-hero .description { font-size: 1.25rem; }
}

.program-hero .highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .program-hero .highlights { grid-template-columns: repeat(4, 1fr); }
}
.program-hero .highlight-chip {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.program-hero .highlight-chip svg { width: 20px; height: 20px; color: #e16fc8; }
.program-hero .highlight-chip span { color: #fff; font-size: 0.875rem; font-weight: 500; }

/* Program details */
.program-details {
  padding: 4rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .program-details { padding: 6rem 0; }
}
.program-details .container { max-width: 56rem; }
.program-details h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .program-details h2 { font-size: 1.875rem; }
}
.detail-list { display: flex; flex-direction: column; gap: 1rem; }
.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: #f9fafb;
  transition: background 0.2s;
}
.detail-item:hover { background: #f3f4f6; }
.detail-item svg {
  width: 20px;
  height: 20px;
  color: #e16fc8;
  flex-shrink: 0;
  margin-top: 2px;
}
.detail-item span { color: #374151; }

/* Program schedule */
.program-schedule {
  padding: 4rem 0;
  background: #f9fafb;
}
@media (min-width: 1024px) {
  .program-schedule { padding: 6rem 0; }
}
.program-schedule .container { max-width: 56rem; }
.program-schedule h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .program-schedule h2 { font-size: 1.875rem; }
}
.schedule-timeline { position: relative; }
.schedule-timeline::before {
  content: '';
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(225,111,200,0.2);
}
.schedule-list { display: flex; flex-direction: column; gap: 1rem; }
.schedule-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}
.schedule-item .dot-wrap {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(225,111,200,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.schedule-item .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e16fc8;
}
.schedule-item .text {
  background: #fff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  flex: 1;
  color: #374151;
}

/* Program CTA */
.program-cta {
  padding: 4rem 0;
  background: #fff;
  text-align: center;
}
@media (min-width: 1024px) {
  .program-cta { padding: 6rem 0; }
}
.program-cta .container { max-width: 42rem; }
.program-cta h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .program-cta h2 { font-size: 1.875rem; }
}
.program-cta p {
  color: #4b5563;
  margin-bottom: 2rem;
}
.program-cta .cta-btn {
  display: inline-block;
  background: #e16fc8;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.2s;
  box-shadow: 0 10px 15px -3px rgba(225,111,200,0.25);
}
.program-cta .cta-btn:hover { background: #c85db3; transform: scale(1.05); }
.program-cta .cta-btn:active { transform: scale(0.95); }

/* === LEGAL PAGES === */
.legal-page {
  padding-top: 5rem;
}
.legal-page .back-row {
  margin-bottom: 2rem;
}
.legal-page .back-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.legal-page .back-row a:hover { color: #e16fc8; }
.legal-page .back-row a svg { width: 16px; height: 16px; }
.legal-page h1 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .legal-page h1 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .legal-page h1 { font-size: 3rem; }
}
.legal-content {
  max-width: 48rem;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.legal-content p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}
.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content ul li {
  color: #4b5563;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}
.legal-content ul li::before {
  content: '\2022';
  position: absolute;
  left: 0;
  color: #e16fc8;
}

/* === GRADIENTS for program pages === */
.gradient-experts {
  background: url('images/program/hockey.webp') center/cover no-repeat;
}
.gradient-choir {
  background: url('images/program/choir.webp') center/cover no-repeat;
}
.gradient-hockey {
  background: url('images/program/hockey.webp') center/cover no-repeat;
}
.gradient-kids {
  background: url('images/program/kids.webp') center/cover no-repeat;
}
.gradient-women {
  background: url('images/program/women.webp') center/cover no-repeat;
}
.gradient-banya {
  background: url('images/program/sauna.webp') center/cover no-repeat;
}

/* === UTILITY === */
.pink { color: #e16fc8; }
.hidden { display: none !important; }

/* === PROGRAM SELECT (checkbox cards) === */
.program-select {
  margin-top: 0.5rem;
}
.program-select__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.program-select__title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}
.program-select__total {
  font-size: 0.875rem;
  color: #374151;
  background: #f3f4f6;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}
.program-select__total strong {
  color: #e16fc8;
  font-weight: 700;
}
.program-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.program-cards--extra {
  margin-left: 1.5rem;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.program-cards__subtitle {
  font-size: 0.8125rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.program-card-check {
  display: block;
  cursor: pointer;
  position: relative;
}
.program-card-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.program-card-check__box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  padding: 0.875rem 1rem;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.program-card-check input[type="checkbox"]:checked + .program-card-check__box {
  border-color: #e16fc8;
  background: rgba(225, 111, 200, 0.05);
  box-shadow: 0 0 0 3px rgba(225, 111, 200, 0.15);
}
.program-card-check:hover .program-card-check__box {
  border-color: #d1a8c9;
}
.program-card-check__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
}
.program-card-check__price {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e16fc8;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .program-card-check__box {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}

/* === SCROLL PROGRESS BAR === */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #e16fc8, #9b4dca);
  z-index: 100;
  transition: width 0.1s linear;
}

/* === SCROLL TO TOP BUTTON === */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e16fc8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(225, 111, 200, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 90;
  cursor: pointer;
  border: none;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top:hover {
  background: #c85db3;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(225, 111, 200, 0.5);
}
.scroll-top svg {
  width: 24px;
  height: 24px;
}

/* === COUNTDOWN SECTION === */
.countdown-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  text-align: center;
}
.countdown-title {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .countdown-title { font-size: 2.25rem; }
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .countdown { gap: 2.5rem; }
}
.countdown__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown__num {
  font-family: 'TT Bluescreens', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #e16fc8;
  line-height: 1;
  text-shadow: 0 0 20px rgba(225, 111, 200, 0.5);
}
@media (min-width: 768px) {
  .countdown__num { font-size: 4.5rem; }
}
@media (min-width: 1024px) {
  .countdown__num { font-size: 5.5rem; }
}
.countdown__label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .countdown__label { font-size: 0.875rem; }
}

/* === ANIMATE ON SCROLL === */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === ENHANCED SPEAKER CARDS === */
.speaker-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  border-radius: 1rem;
}
.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(225, 111, 200, 0.15);
}
.speaker-card .photo {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.speaker-card:hover .photo {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(225, 111, 200, 0.3);
}
.speaker-card:hover .photo img {
  filter: grayscale(0%);
}

/* === ENHANCED PROGRAM CARDS === */
.program-card {
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.program-card .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.program-card:hover .bg-video {
  transform: scale(1.05);
  transition: transform 0.5s ease;
}

/* === ENHANCED CTA SECTION (particles bg) === */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
          radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
          radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
          radial-gradient(circle at 60% 80%, rgba(255,255,255,0.06) 0%, transparent 45%);
  pointer-events: none;
  animation: ctaShimmer 8s ease-in-out infinite alternate;
}
@keyframes ctaShimmer {
  0% { opacity: 0.5; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

/* === ENHANCED FORM SUBMIT BUTTON === */
.form-submit {
  position: relative;
  overflow: hidden;
}
.form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.form-submit:hover::before {
  left: 100%;
}

/* === GRADIENT GLOW ON FORM TABS === */
.form-tab.active {
  position: relative;
  animation: tabGlow 2s ease-in-out infinite alternate;
}
@keyframes tabGlow {
  0% { box-shadow: 0 10px 15px -3px rgba(225,111,200,0.2); }
  100% { box-shadow: 0 10px 25px -3px rgba(225,111,200,0.4); }
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
}

/* === ENHANCED ARCHIVE CARDS === */
.archive-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.archive-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* === PROGRAM-SELECT ANIMATION === */
.program-cards--extra,
.program-cards--cert {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.program-cards--extra:not(.hidden),
.program-cards--cert:not(.hidden) {
  animation: slideDown 0.3s ease forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === FAQ ITEM ANIMATION === */
.faq-item .answer-row {
  animation: fadeSlideIn 0.3s ease;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === SMOOTH LINK UNDERLINE EFFECT === */
.footer-col li a::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: #e16fc8;
  transition: width 0.3s ease;
}
.footer-col li a:hover::after {
  width: 100%;
}

/* === SPEAKER CARD ENHANCED === */
.speaker-tagline {
  font-size: 0.8125rem;
  font-style: italic;
  color: #6b7280;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.speaker-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.speaker-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #374151;
  background: #f3f4f6;
  padding: 0.25rem 0.625rem;
  border-radius: 9999px;
  border: 1px solid #e5e7eb;
}
.speaker-superpower {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #e16fc8;
  margin-top: 0.25rem;
}

/* === SPEAKER SOCIAL LINK === */
.speaker-social {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: #fff;
  border-radius: 9999px;
  font-size: 0.8125rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-decoration: none;
}
.speaker-social svg {
  width: 14px;
  height: 14px;
  color: #e16fc8;
}
.speaker-social:hover {
  background: linear-gradient(135deg, #e16fc8, #9b4dca);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(225, 111, 200, 0.4);
}
.speaker-social:hover svg {
  color: #fff;
}

/* === CORPORATE NOTE === */
.form-corporate {
  font-size: 0.8125rem;
  color: #e16fc8;
  text-align: center;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.form-corporate a {
  color: #e16fc8;
  font-weight: 600;
  text-decoration: underline;
}
.form-corporate a:hover {
  color: #c85db3;
}

/* === FOOTER CONTACTS ENHANCED === */
.footer-contact-block {
  margin-bottom: 1.25rem;
}
.footer-contact-block:last-child {
  margin-bottom: 0;
}
.footer-contact-time {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-bottom: 0.25rem;
}
.footer-contact-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #e16fc8;
  margin-bottom: 0.375rem;
}
.footer-contact-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer-contact-block li a {
  color: #d1d5db;
  font-size: 0.8125rem;
  transition: color 0.2s;
}
.footer-contact-block li a:hover {
  color: #e16fc8;
}

/* ============================================
   MOBILE-FIRST RESPONSIVE FIXES
   ============================================ */

@media (max-width: 767px) {
  .countdown-section {
    padding: 2rem 0;
  }
  .countdown-title {
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
  }
  .countdown {
    gap: 1rem;
  }
  .countdown__num {
    font-size: 2.25rem;
  }
  .countdown__label {
    font-size: 0.625rem;
  }

  .video-section {
    padding: 3rem 0;
  }
  .video-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .cta-section {
    padding: 3rem 0;
  }
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .cta-card {
    padding: 1.25rem;
  }
  .cta-card svg {
    width: 32px;
    height: 32px;
  }
  .cta-card h3 {
    font-size: 1.125rem;
  }
  .cta-card p {
    font-size: 0.8125rem;
  }

  .program-section {
    padding: 3rem 0;
  }
  .program-section h2 {
    font-size: 1.5rem;
  }
  .program-section .subtitle {
    font-size: 0.875rem;
    margin-bottom: 2rem;
  }
  .program-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .program-card {
    height: 12rem;
  }
  .program-card h3 {
    font-size: 1.125rem;
  }
  .program-card p {
    font-size: 0.8125rem;
  }

  .speakers-section {
    padding: 3rem 0;
  }
  .speakers-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .speakers-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .speaker-card {
    padding: 1rem;
    text-align: center;
  }
  .speaker-card .photo {
    margin-left: auto;
    margin-right: auto;
  }
  .speaker-meta {
    justify-content: center;
  }
  .speaker-social {
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }

  .partners-section {
    padding: 3rem 0;
  }
  .partners-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .partners-section h2 {
    font-size: 1.5rem;
    text-align: center;
  }
  .partner-group .logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 1rem;
    align-items: center;
    justify-items: center;
  }
  .partner-group .logos img {
    height: 40px;
    max-width: 100%;
  }
  .partner-group .logos a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .tickets-section {
    padding: 3rem 0;
  }
  .tickets-section h2 {
    font-size: 1.5rem;
  }
  .form-tabs {
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }
  .form-tab {
    padding: 0.625rem 1rem;
    font-size: 0.8125rem;
  }
  .reg-form {
    gap: 1rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .program-cards--extra {
    margin-left: 0.75rem;
  }
  .form-submit {
    padding: 0.875rem;
    font-size: 1rem;
  }
  .form-corporate {
    font-size: 0.75rem;
  }

  .organizers-section {
    padding: 3rem 0;
  }
  .organizers-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .organizers-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .org-card {
    min-height: 140px;
    padding: 2rem;
  }
  .org-card img {
    height: 80px;
    max-width: 220px;
  }

  .org-people-section {
    padding: 3rem 0;
  }
  .org-people-title {
    margin-bottom: 2rem;
  }
  .org-people-title h2 {
    font-size: 1.5rem;
  }
  .org-people-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .person-card .person-photo {
    max-width: 100%;
    height: 400px;
  }

  .archive-section {
    padding: 3rem 0;
  }
  .archive-section h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  .archive-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .archive-card {
    min-height: 180px;
    padding: 1.5rem;
  }

  .faq-section {
    padding: 3rem 0;
  }
  .faq-section h2 {
    font-size: 1.5rem;
  }
  .faq-item .q-bubble {
    max-width: 100%;
  }
  .faq-item .a-bubble {
    max-width: 100%;
  }

  .footer {
    padding: 3rem 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand h3 {
    font-size: 1.25rem;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  .scroll-top {
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
  .scroll-top svg {
    width: 20px;
    height: 20px;
  }

  .program-hero {
    padding: 5rem 0 2rem;
    min-height: 60vh;
    background-size: cover;
    background-position: center center;
  }
  .program-hero h1 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .program-hero .description {
    font-size: 0.8125rem;
  }
  .program-hero .back-link {
    margin-bottom: 1rem;
  }
  .program-hero .icon-badge {
    margin-bottom: 1rem;
  }
  .program-hero .icon-box {
    width: 40px;
    height: 40px;
  }
  .program-hero .icon-box svg {
    width: 24px;
    height: 24px;
  }
  .program-hero .badge-text {
    font-size: 0.75rem;
  }
  .program-hero .highlights {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 1.5rem;
  }
  .program-hero .highlight-chip {
    padding: 0.625rem;
    gap: 0.375rem;
  }
  .program-hero .highlight-chip span {
    font-size: 0.6875rem;
  }
  .program-hero .highlight-chip svg {
    width: 16px;
    height: 16px;
  }

  .legal-page {
    padding-top: 4rem;
  }
  .legal-page h1 {
    font-size: 1.5rem;
  }
}

/* === HERO OVERLAY WITH BUTTONS === */
.hero-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-content {
  text-align: center;
}
.hero-date {
  font-size: 1.125rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
@media (min-width: 768px) {
  .hero-date { font-size: 1.375rem; }
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero-btn {
  padding: 0.75rem 1.75rem;
  border-radius: 9999px;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid #e16fc8;
}
.hero-btn--primary {
  background: #e16fc8;
  color: #fff;
}
.hero-btn--primary:hover {
  background: #c85db3;
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(225,111,200,0.4);
}
.hero-btn--outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.8);
}
.hero-btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: scale(1.05);
}
@media (max-width: 767px) {
  .hero-overlay {
    padding: 1.5rem 1rem;
  }
  .hero-date {
    font-size: 0.9375rem;
    margin-bottom: 1rem;
  }
  .hero-btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.8125rem;
  }
}

/* === CTA QUOTE === */
.cta-quote {
  text-align: center;
  color: #fff;
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  opacity: 0.95;
}
@media (max-width: 767px) {
  .cta-quote {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}

/* === PARTNER LOGOS HOVER === */
.partner-group .logos a {
  display: inline-block;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.partner-group .logos a:hover {
  transform: scale(1.08);
  opacity: 0.8;
}

/* ============================================== */
/* ГАЛЕРЕЯ — КАРУСЕЛЬ ФОТОГРАФИЙ                 */
/* ============================================== */
/* === GALLERY MASONRY === */
.gallery-section {
  padding: 5rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .gallery-section { padding: 8rem 0; }
}
.gallery-section h2 {
  font-family: 'TT Bluescreens', serif;
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .gallery-section h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .gallery-section h2 { font-size: 3rem; }
}
.gallery-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
  font-weight: 500;
}
.masonry-grid {
  columns: 3;
  column-gap: 0.75rem;
}
.masonry-grid .gallery-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-grid .gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.masonry-grid .gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}
.masonry-grid .gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(225, 111, 200, 0);
  transition: background 0.3s ease;
  pointer-events: none;
  border-radius: 0.5rem;
}
.masonry-grid .gallery-item:hover::after {
  background: rgba(225, 111, 200, 0.1);
}
.gallery-item.hidden {
  display: none;
}
.gallery-show-more {
  display: block;
  margin: 2rem auto 0;
  padding: 0.875rem 2.5rem;
  background: transparent;
  border: 2px solid #e16fc8;
  color: #e16fc8;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 2rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.gallery-show-more:hover {
  background: #e16fc8;
  color: #fff;
  transform: scale(0.97);
  box-shadow: 0 8px 25px rgba(225, 111, 200, 0.3);
}
.gallery-show-more.hidden-btn {
  display: none;
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.active {
  display: flex;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightbox-in 0.25s cubic-bezier(0.23,1,0.32,1);
}
@keyframes lightbox-in {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.lightbox-close:hover {
  background: #e16fc8;
  transform: scale(1.1);
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev svg,
.lightbox-next svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.lightbox-prev:hover,
.lightbox-next:hover {
  background: #e16fc8;
  transform: translateY(-50%) scale(1.1);
}
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* === GALLERY TABLET === */
@media (max-width: 1023px) and (min-width: 768px) {
  .masonry-grid {
    columns: 2;
  }
}
/* === GALLERY MOBILE === */
@media (max-width: 767px) {
  .gallery-section {
    padding: 3rem 0;
  }
  .gallery-section h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
  .masonry-grid {
    columns: 2;
    column-gap: 0.5rem;
  }
  .masonry-grid .gallery-item {
    margin-bottom: 0.5rem;
  }
  .lightbox-prev,
  .lightbox-next {
    width: 36px;
    height: 36px;
  }
  .lightbox-prev svg,
  .lightbox-next svg {
    width: 18px;
    height: 18px;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    font-size: 1.5rem;
  }
}

/* === AMBASSADORS SECTION (reuses speakers-section styles) === */
/* No extra CSS needed — .ambassadors-section inherits from .speakers-section */

/* === REVIEWS VIDEO SECTION (reuses video-section styles) === */
/* No extra CSS needed — .reviews-video-section inherits from .video-section */
