

/* Start:/local/lib/constructor/blocks/industry-block/industry-block.css?17797459364772*/
.industry-map {
  position: relative;
  background: #0D1B2A;
  overflow: hidden;
}
.industry-map__overlay {
  position: absolute;
  inset: 0;
  opacity: .2;
  background: linear-gradient(to bottom, transparent, rgba(201, 73, 75, .05), transparent);
}
.industry-map__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 5rem 1.25rem 8rem;
}
.industry-map__head { text-align: center; margin-bottom: 4rem; }
.industry-map__accent { margin: 0 auto 1.5rem; }
.industry-map__title { margin: 0 0 1.5rem; color: #fff; font-size: clamp(2rem, 6vw, 4rem); font-weight: 600; letter-spacing: -0.03em; line-height: 1.1; }
.industry-map__lead { margin: 0 auto; max-width: 700px; color: rgba(255,255,255,.8); font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.7; }
.industry-map__zones { display: flex; flex-direction: column; gap: 6rem; }
.industry-map__zone { display: grid; gap: 2rem 4rem; align-items: center; grid-template-columns: 1fr; }
.industry-map__media {
  --zone-color: #c9494b;
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 1rem;
  overflow: hidden;
  border: 2px solid color-mix(in srgb, var(--zone-color) 25%, transparent);
}
.industry-map__image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.industry-map__media:hover .industry-map__image { transform: scale(1.1); }
.industry-map__media-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, color-mix(in srgb, var(--zone-color) 25%, transparent), color-mix(in srgb, var(--zone-color) 6%, transparent)); }
.industry-map__icon-badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: color-mix(in srgb, var(--zone-color) 60%, transparent);
  border: 2px solid var(--zone-color);
}
.industry-map__zone-label-wrap { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; background: linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.5), transparent); }
.industry-map__zone-label {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid color-mix(in srgb, var(--zone-color) 60%, transparent);
  background: color-mix(in srgb, var(--zone-color) 30%, transparent);
}
.industry-map__zone-dot { width: .5rem; height: .5rem; border-radius: 999px; background: #fff; animation: industryDotPulse 1.8s ease-in-out infinite; }
.industry-map__meta { display: flex; align-items: center; gap: .65rem; margin-bottom: 1rem; }
.industry-map__meta-icon { width: 1.5rem; height: 1.5rem; color: #c9494b; display: flex; align-items: center; justify-content: center; }
.industry-map__meta-title { font-size: 13px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.industry-map__subtitle { margin: 0 0 1rem; color: #fff; font-size: clamp(2rem, 4vw, 3.1rem); font-weight: 500; letter-spacing: -0.02em; line-height: 1.2; }
.industry-map__text { margin: 0 0 1.5rem; color: rgba(255,255,255,.8); font-size: clamp(1rem, 2vw, 1.125rem); line-height: 1.7; }
.industry-map__link { color: rgba(255,255,255,.85); font-size: 14px; text-decoration: none; transition: color .2s ease; }
.industry-map__link:hover { color: #fff; }
.industry-map__cta { margin-top: 6rem; text-align: center; }
.industry-map__cta-actions { display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
.industry-map__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.5rem;
  padding: 0 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  transition: all .2s ease;
}
.industry-map__btn--primary { background: #c9494b; color: #fff; }
.industry-map__btn--primary:hover { background: #af3d40; }
.industry-map__btn--ghost { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); color: #fff; }
.industry-map__btn--ghost:hover { background: rgba(255,255,255,.1); }

.reveal { opacity: 0; transform: translateY(50px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes industryDotPulse {
  0% { opacity: .5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.25); }
  100% { opacity: .5; transform: scale(1); }
}

@media (min-width: 768px) {
  .industry-map__zone { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .industry-map__zone--reverse .industry-map__visual { order: 2; }
  .industry-map__zone--reverse .industry-map__content { order: 1; }
  .industry-map__cta-actions { flex-direction: row; }
}

/* End */


/* Start:/local/lib/constructor/blocks/advantages-block/advantages-block.css?17799727601329*/
.advantages-block {
  padding-top: 3.5rem;
  padding-bottom: 5rem;
  background: #081220;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.advantages-block__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.advantages-block__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.advantages-block__item {
  text-align: center;
  padding: 1.25rem 1rem;
  background: #081220;
}

.advantages-block__value {
  font-size: clamp(1.75rem, 6vw, 3rem);
  color: #fff;
  font-weight: 500;
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.advantages-block__label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.35;
}

@media (min-width: 480px) {
  .advantages-block__item {
    padding: 1.25rem 1.5rem;
  }

  .advantages-block__label {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .advantages-block__grid {
    grid-template-columns: repeat(var(--advantages-cols, 4), minmax(0, 1fr));
  }

  .advantages-block__item {
    padding: 1rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .advantages-block__value {
    font-size: clamp(2rem, 5vw, 3rem);
  }
}

/* End */


/* Start:/local/lib/constructor/blocks/speakers-block/speakers-block.css?17828324685601*/
/* Блок спикеров на главной конференции: карусель белых карточек.
 * Центрируется, если карточки влезают (1–4); скроллится, если нет.
 * Десктоп — драг + стрелки; мобайл — нативный свайп, 1.5 карточки, без стрелок. */
.speaker-mic {
  position: relative;
  overflow: hidden;
  background: #0a1523;
  padding: 6rem 0 7rem;
}
.speaker-mic__orb {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.16;
  pointer-events: none;
}
.speaker-mic__orb--left { left: -160px; top: 8%; background: #c9494b; }
.speaker-mic__orb--right { right: -160px; bottom: 0; background: #2b4a6f; }

.speaker-mic__container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: 2.5rem;
}

.speaker-mic__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.speaker-mic__accent { margin-inline: auto; }
.speaker-mic__title {
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 400;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.speaker-mic__lead {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 520px;
  line-height: 1.6;
}

/* Карусель */
.speaker-mic__slider-wrap { position: relative; }

.speaker-mic__arrow {
  position: absolute;
  top: calc(50% - 2.5rem);
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.speaker-mic--scrollable .speaker-mic__arrow { display: flex; }
.speaker-mic__arrow:hover { background: #c9494b; border-color: #c9494b; }
.speaker-mic__arrow:disabled { opacity: 0.3; cursor: default; }
.speaker-mic__arrow:disabled:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.16); }
.speaker-mic__arrow--prev { left: -10px; }
.speaker-mic__arrow--next { right: -10px; }

.speaker-mic__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  cursor: grab;
}
/* во время захвата мышью — свободный скролл без снапа (плавно, как тач на мобиле) */
.speaker-mic__scroll.is-dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }

.speaker-mic__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  margin-inline: auto;
  padding: 0.5rem 0;
}

.speaker-card {
  flex: 0 0 264px;
  width: 264px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px -24px rgba(0, 0, 0, 0.65);
  scroll-snap-align: center;
  user-select: none;
}
.speaker-card__photo-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e9edf2;
}
.speaker-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.speaker-card__photo--empty {
  background: linear-gradient(135deg, #dfe4ea, #c9d1da);
}
.speaker-card__body { padding: 1rem 1.25rem 1.35rem; }
.speaker-card__company {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c9494b;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.speaker-card__name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0a1523;
  line-height: 1.25;
  margin: 0 0 0.3rem;
}
.speaker-card__position {
  font-size: 13px;
  color: #5b6675;
  line-height: 1.45;
}

.speaker-mic__empty {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  padding: 3rem 0;
}

/* CTA */
.speaker-mic__cta {
  text-align: center;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.speaker-mic__cta-title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.speaker-mic__cta-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 480px;
  line-height: 1.6;
}
.speaker-mic__cta-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0.5rem;
}
.speaker-mic__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 3.25rem;
  padding-inline: 1.75rem;
  border-radius: 9999px;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
.speaker-mic__btn--primary { background: #c9494b; color: #fff; }
.speaker-mic__btn--primary:hover { background: #af3d40; }
.speaker-mic__btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}
.speaker-mic__btn--ghost:hover { border-color: #fff; }

.hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }

/* Мобайл: 1.5 карточки, свайп, без стрелок */
@media (max-width: 767px) {
  .speaker-mic { padding: 4rem 0 5rem; }
  .speaker-mic__container { padding-inline: 0; }
  .speaker-mic__head { padding-inline: 1.25rem; margin-bottom: 2rem; }
  .speaker-mic__arrow { display: none !important; }
  .speaker-mic__track { padding-inline: 1.25rem; }
  .speaker-card { flex-basis: 66vw; width: 66vw; }
  .speaker-mic__cta { padding-inline: 1.25rem; margin-top: 3rem; }
}

/* End */


/* Start:/local/lib/constructor/blocks/tickets-block/tickets-block.css?178497815017775*/
.reg-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 1rem;
  overflow-y: auto;
}

.reg-modal.is-open {
  display: flex;
}

.reg-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.reg-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  margin: 1rem auto 2rem;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  padding: 1rem 1.25rem 1.5rem;
}

[data-reg-form] {
  position: relative;
}

.reg-form-loading {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(26, 26, 26, 0.88);
  border-radius: 0.75rem;
}

.reg-form-loading[hidden] {
  display: none !important;
}

.reg-form-loading__spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: #c9494b;
  border-radius: 50%;
  animation: reg-form-spin 0.75s linear infinite;
}

.reg-form-loading__text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.75);
}

@keyframes reg-form-spin {
  to {
    transform: rotate(360deg);
  }
}

.reg-modal--submitting .reg-modal__close {
  opacity: 0.4;
  pointer-events: none;
  cursor: not-allowed;
}

.reg-modal--submitting .reg-modal__backdrop {
  pointer-events: none;
}

@media (min-width: 768px) {
  .reg-modal__dialog {
    padding: 2rem;
  }
}

.reg-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.reg-modal__close svg {
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

.reg-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.reg-modal__title {
  font-size: clamp(1.5rem, 4vw, 1.875rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin: 0 3rem 0.25rem 0;
}

.reg-modal__subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 1.5rem;
}

.reg-participant {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.reg-participant__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.reg-participant__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.reg-participant__remove {
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
}

.reg-participant__remove:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.reg-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .reg-fields {
    grid-template-columns: 1fr 1fr;
  }
}

.reg-field {
  position: relative;
}

.reg-field__icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

.reg-field--error .reg-field__icon {
  color: #ef4444;
}

.reg-field input,
.reg-field select {
  width: 100%;
  height: 2.75rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.reg-field input {
  padding: 0 1rem 0 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.reg-field input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.reg-field select {
  padding: 0 2rem 0 1rem;
  appearance: none;
  -webkit-appearance: none;
  color: #fff;
  /* Непрозрачный тон вместо rgba — Chrome иначе рисует светлый нативный фон при color:#fff */
  background-color: #252525;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ffffff80' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
}

.reg-field select option {
  color: #1a1a1a;
  background-color: #fff;
}

.reg-field select optgroup {
  color: #6b7280;
  background-color: #f3f4f6;
  font-weight: 600;
}

.reg-field--no-icon input,
.reg-field--no-icon select {
  padding-left: 1rem;
}

.reg-field--ticket {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.reg-field__ticket-group {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  max-width: 100%;
  padding: 0.2rem 0.65rem;
  border-radius: 9999px;
  border: 1px solid rgba(201, 73, 75, 0.35);
  background: rgba(201, 73, 75, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
}

.reg-field input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 73, 75, 0.5);
}

.reg-field select:focus {
  background-color: #313131;
  border-color: rgba(201, 73, 75, 0.5);
}

.reg-field--error input {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.05);
}

.reg-field--error select {
  border-color: #ef4444;
  background-color: #2a2020;
}

.reg-participant__price {
  margin-top: 0.75rem;
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 12px;
}

.reg-participant__price-label {
  color: rgba(255, 255, 255, 0.55);
  min-width: 0;
}

.reg-participant__price-value {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  white-space: nowrap;
}

.reg-participant__price-label .reg-participant__price-note {
  display: block;
  margin-top: 0.35rem;
  font-size: 11px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.45);
}

.reg-add-participant {
  width: 100%;
  height: 3rem;
  margin-bottom: 1.5rem;
  border-radius: 0.75rem;
  border: 1px dashed rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}

.reg-add-participant:hover {
  border-color: rgba(201, 73, 75, 0.5);
  background: rgba(201, 73, 75, 0.05);
  color: #fff;
}

.reg-contact {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.reg-contact__toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.reg-contact__toggle input {
  width: 1rem;
  height: 1rem;
  accent-color: #c9494b;
}

.reg-contact__toggle span {
  font-size: 14px;
  color: #fff;
}

.reg-contact__hint {
  margin-left: auto;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.reg-contact__fields {
  display: none;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1rem;
}

.reg-contact__fields.is-visible {
  display: grid;
}

@media (min-width: 768px) {
  .reg-contact__fields.is-visible {
    grid-template-columns: repeat(3, 1fr);
  }
}

.reg-totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.reg-totals__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.reg-totals__sum {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.reg-error {
  margin-bottom: 1rem;
  font-size: 13px;
  color: #ef9ea0;
}

.reg-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .reg-actions {
    flex-direction: row;
  }
}

.reg-btn {
  flex: 1;
  min-height: 3rem;
  border-radius: 0.75rem;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 10px;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.reg-btn--primary {
  border: none;
  background: #c9494b;
  color: #fff;
}

.reg-btn--primary:hover {
  background: #af3d40;
}

.reg-btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
}

.reg-btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.reg-consents {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.reg-eula {
  margin-bottom: 0;
}

.reg-consent__label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.reg-consent__label input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #c9494b;
}

.reg-consent__text {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.reg-eula__label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  user-select: none;
}

.reg-eula__label input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #c9494b;
}

.reg-eula__text {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.8);
}

.reg-eula__text a {
  color: #c9494b;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.reg-eula__text a:hover {
  color: #e05d5f;
}

.reg-eula--error .reg-eula__text {
  color: #fca5a5;
}

.reg-eula--error .reg-eula__label input {
  outline: 1px solid #ef4444;
  outline-offset: 1px;
}

.reg-success {
  text-align: center;
  padding: 3rem 0.5rem;
}

.reg-success__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: rgba(201, 73, 75, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c9494b;
}

.reg-success h3 {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.reg-success p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  margin: 0 auto;
}

.reg-success__close {
  margin-top: 1.5rem;
}

.tickets-section__header {
  text-align: center;
  margin-bottom: 4rem;
}

.tickets-section__accent {
  margin: 0 auto 1.5rem;
}

.tickets-section__title {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.reg-totals__count {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 0.25rem;
}

.reg-totals__sum-wrap {
  text-align: right;
}

.tickets-section {
  padding: 5rem 0 8rem;
}

.tickets-section__inner {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

@media (min-width: 768px) {
  .tickets-section {
    padding: 8rem 0;
  }

  .tickets-section__inner {
    padding-inline: 2rem;
  }
}

.tickets-section__subtitle {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  max-width: 700px;
  margin: 0 auto 4rem;
  text-align: center;
}

@media (min-width: 768px) {
  .tickets-section__subtitle {
    font-size: 16px;
  }
}

.tickets-body {
  width: 100%;
}

.tickets-section .tickets-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tickets-section .tickets-tabs__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}

.tickets-section .tickets-tabs__btn:hover {
  border-color: rgba(201, 73, 75, 0.45);
  color: #fff;
}

.tickets-section .tickets-tabs__btn.is-active {
  background: #c9494b;
  border-color: #c9494b;
  color: #fff;
}

.tickets-section .tickets-panel {
  display: none !important;
  margin: 0;
}

.tickets-section .tickets-panel.is-active {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 0;
}

.tickets-section .tickets-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 768px) {
  .tickets-section .tickets-grid,
  .tickets-section .tickets-panel.is-active {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .tickets-section .tickets-grid,
  .tickets-section .tickets-panel.is-active {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.tickets-section .ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  height: 100%;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
  transition: border-color 0.3s;
}

.tickets-section .ticket-card:hover {
  border-color: rgba(201, 73, 75, 0.5);
}

.tickets-section .ticket-card--popular {
  border-color: rgba(201, 73, 75, 0.4);
  background: linear-gradient(135deg, rgba(201, 73, 75, 0.12) 0%, rgba(201, 73, 75, 0.05) 100%);
}

.ticket-card__badge {
  position: absolute;
  top: -0.75rem;
  left: 1.75rem;
  padding: 0.125rem 0.75rem;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: #c9494b;
  color: #fff;
}

.tickets-section .ticket-card__type {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  text-transform: none;
  color: #c9494b;
  margin: 0 0 0.5rem;
}

.ticket-card__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.25rem;
  line-height: 1.5;
}

.ticket-card__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.ticket-card__price-old {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 500;
  text-decoration: line-through;
}

.ticket-card__price {
  font-size: 2.25rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.ticket-card__next {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
}

.ticket-card__period {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.ticket-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.ticket-card__tag {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.125rem 0.625rem;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
}

.ticket-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  flex: 1;
}

.ticket-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}

.ticket-card__features svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.ticket-card__cta {
  margin-top: auto;
  width: 100%;
  height: 3rem;
  border: none;
  border-radius: 999px;
  background: #c9494b;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.ticket-card__cta:hover {
  background: #af3d40;
}

.tickets-section__empty {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.03);
}

.tickets-section__empty-title {
  margin: 0 0 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.tickets-section__empty-text {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
}

.reg-empty {
  text-align: center;
  padding: 3rem 0.5rem;
}

.reg-empty__icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}

.reg-empty__title {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.reg-empty__text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 440px;
  margin: 0 auto 1.5rem;
}

.reg-empty .reg-btn {
  margin-top: 0.5rem;
}

.reg-discard {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(8, 18, 32, 0.72);
}

.reg-discard[hidden] {
  display: none !important;
}

.reg-discard__card {
  width: 100%;
  max-width: 22rem;
  margin: auto;
  padding: 1.5rem;
  border-radius: 1rem;
  background: #122235;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  text-align: center;
}

.reg-discard__title {
  margin: 0 0 0.6rem;
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
}

.reg-discard__text {
  margin: 0 0 1.25rem;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.reg-discard__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.reg-discard__actions .reg-btn {
  min-width: 7.5rem;
}

/* End */


/* Start:/local/lib/constructor/blocks/participate-block/participate-block.css?17827414468835*/
.participate { padding: 5rem 0 7rem; background: #081220; border-top: 1px solid rgba(255,255,255,.05); border-bottom: 1px solid rgba(255,255,255,.05); }
.participate__container { max-width: 1400px; margin: 0 auto; padding: 0 1.25rem; }
.participate__head { text-align: center; margin-bottom: 4rem; }
.participate__accent { margin: 0 auto 1.5rem; }
.participate__title { margin: 0 0 1.5rem; color: #fff; font-size: clamp(1.875rem, 5vw, 3.75rem); font-weight: 600; line-height: 1.1; letter-spacing: -0.03em; }
.participate__lead { margin: 0 auto; max-width: 700px; color: rgba(255,255,255,.85); font-size: clamp(1rem, 2vw, 1.125rem); }
.participate__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
.participate__cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.participate-card { position: relative; padding: 1.5rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.07); transition: all .35s ease; cursor: pointer; text-align: left; overflow: hidden; }
.participate-card:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
.participate-card__indicator { position: absolute; inset: 0; border-radius: 1rem; opacity: 0; transition: opacity .35s ease; pointer-events: none; }
.participate-card--active { background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.06)); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.participate-card--active .participate-card__indicator { opacity: 1; }
.participate-card__inner { position: relative; z-index: 1; }
.participate-card__icon { width: 3rem; height: 3rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; transition: transform .25s ease; }
.participate-card:hover .participate-card__icon { transform: scale(1.05); }
.participate-card--active .participate-card__icon { transform: scale(1.1); }
.participate-card__title { margin: 0 0 .25rem; color: rgba(255,255,255,.9); font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 500; letter-spacing: -0.01em; line-height: 1.2; }
.participate-card--active .participate-card__title { color: #fff; }
.participate-card__text { margin: 0; color: rgba(255,255,255,.85); font-size: .9rem; }

.participate__detail { border-radius: 1rem; border: 1px solid rgba(255,255,255,.1); background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.03)); padding: 2rem; transition: opacity .25s ease, transform .25s ease; scroll-margin-top: 1rem; }
.participate__detail.is-changing { opacity: .65; transform: translateX(8px); }
.participate__detail-head { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.participate__detail-icon { width: 4rem; height: 4rem; border-radius: .75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.participate__detail-title { margin: 0 0 .5rem; color: #fff; font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }
.participate__detail-subtitle { margin: 0; color: rgba(255,255,255,.85); font-size: .95rem; }
.participate__desc { margin: 0 0 2rem; color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.7; }
.participate__list { margin: 0 0 2rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .85rem; }
.participate__item { display: flex; align-items: flex-start; gap: .75rem; color: rgba(255,255,255,.85); font-size: .95rem; line-height: 1.5; }
.participate__dot-wrap { width: 1.25rem; height: 1.25rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: .1rem; flex-shrink: 0; }
.participate__dot { width: .45rem; height: .45rem; border-radius: 50%; }
.participate__cta { display: inline-flex; width: 100%; height: 3.5rem; border-radius: 999px; border: 0; color: #fff; align-items: center; justify-content: center; gap: .5rem; font-size: .95rem; font-weight: 500; text-decoration: none; transition: background .2s ease, transform .2s ease; cursor: pointer; }
.participate__cta:hover { transform: scale(1.02); }
.participate__cta svg { transition: transform .2s ease; }
.participate__cta:hover svg { transform: translateX(4px); }
.participate__foot { margin-top: 4rem; text-align: center; }
.participate__foot p { margin: 0 0 1rem; color: rgba(255,255,255,.85); font-size: .95rem; }
.participate__mail { color: #c9494b; text-decoration: none; font-size: .95rem; font-weight: 500; }
.participate__mail:hover { color: #af3d40; }

.participate-modal { position: fixed; inset: 0; z-index: 1200; display: none; }
.participate-modal.is-open { display: block; }
.participate-modal__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .8); backdrop-filter: blur(4px); }
.participate-modal__wrap { position: relative; min-height: 100%; display: flex; align-items: center; justify-content: center; padding: 1rem; }
.participate-modal__panel { width: 100%; max-width: 760px; background: linear-gradient(135deg, #1a1a1a, #0D1B2A); border: 1px solid rgba(255,255,255,.1); border-radius: 1rem; padding: 2rem; box-shadow: 0 20px 60px rgba(0,0,0,.45); }
.participate-modal__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.5rem; }
.participate-modal__title { margin: 0; color: #fff; font-size: 1.65rem; font-weight: 500; letter-spacing: -0.02em; }
.participate-modal__close { width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 0; cursor: pointer; background: rgba(255,255,255,.08); color: rgba(255,255,255,.9); }
.participate-modal__form-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1rem; }
.participate-modal input, .participate-modal textarea { width: 100%; box-sizing: border-box; padding: .8rem 1rem; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: .75rem; color: #fff; font-size: .95rem; }
.participate-modal textarea { min-height: 110px; resize: vertical; }
.participate-modal__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  cursor: pointer;
  user-select: none;
}
.participate-modal__consent input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
  accent-color: #c9494b;
}
.participate-modal__consent span {
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  line-height: 1.45;
}
.participate-modal input:focus, .participate-modal textarea:focus { outline: none; border-color: rgba(201,73,75,.5); }
.participate-modal__submit { width: 100%; height: 3rem; border-radius: 999px; border: 0; cursor: pointer; background: #c9494b; color: #fff; font-size: .95rem; font-weight: 500; margin-top: .5rem; }
.participate-modal__submit:hover { background: #af3d40; }
.participate-modal__submit:disabled { opacity: .7; cursor: wait; }
.participate-modal__error { margin-top: .75rem; color: #f87171; font-size: .875rem; }

.participate-modal__success-wrap[hidden] { display: none !important; }
.participate-modal__success {
  text-align: center;
  padding: 1rem 0 0.5rem;
  animation: participateSuccessIn .45s ease both;
}
.participate-modal__success-icon {
  width: 5rem;
  height: 5rem;
  margin: 0 auto 1.5rem;
  border-radius: 999px;
  background: rgba(201, 73, 75, 0.2);
  color: #c9494b;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
}
.participate-modal__success-title {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.participate-modal__success-text {
  margin: 0 auto;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}
.participate-modal__success-close {
  margin-top: 1.75rem;
  min-width: 180px;
  height: 3rem;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.participate-modal__success-close:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}
.participate-modal.is-success .participate-modal__head { margin-bottom: 0; }
.participate-modal.is-success .participate-modal__title {
  visibility: hidden;
  width: 0;
  overflow: hidden;
}

@keyframes participateSuccessIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (min-width: 1024px) {
  .participate__grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .participate-card { padding: 2rem; }
}
@media (min-width: 768px) {
  .participate-modal__form-grid { grid-template-columns: 1fr 1fr; }
}

/* End */


/* Start:/local/lib/constructor/blocks/reviews-block/reviews-block.css?17849143814327*/
/* Блок отзывов: карусель как у спикеров — мобайл нативный свайп, десктоп стрелки + драг. */
.reviews-section {
  padding: 5rem 0 6rem;
  background: #081220;
}

.reviews-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.reviews-section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.reviews-section__accent {
  margin: 0 auto 1.5rem;
}

.reviews-section__title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  color: #fff;
  margin: 0 0 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.reviews-section__subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.reviews-section__slider-wrap {
  position: relative;
}

.reviews-section__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}

.reviews-section--scrollable .reviews-section__arrow {
  display: flex;
}

.reviews-section__arrow:hover {
  background: #c9494b;
  border-color: #c9494b;
}

.reviews-section__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.reviews-section__arrow:disabled:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.reviews-section__arrow--prev {
  left: -10px;
}

.reviews-section__arrow--next {
  right: -10px;
}

.reviews-section__scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  cursor: grab;
  overscroll-behavior-x: contain;
}

.reviews-section__scroll.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.reviews-track {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;
  width: max-content;
  margin-inline: auto;
  padding: 0.5rem 0;
}

.hide-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  flex-direction: column;
  flex: 0 0 min(360px, calc(100vw - 3.5rem));
  min-width: 0;
  border-radius: 1rem;
  padding: 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  transition: border-color 0.25s ease;
  scroll-snap-align: center;
  user-select: none;
}

.review-card:hover {
  border-color: rgba(201, 73, 75, 0.4);
}

.review-card__quote {
  margin-bottom: 1rem;
  opacity: 0.8;
}

.review-card__text {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.75;
}

.review-card__author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.review-card__avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  object-fit: cover;
  object-position: top;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card__meta {
  min-width: 0;
}

.review-card__name {
  font-size: 15px;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__position {
  margin-top: 0.125rem;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-card__dot {
  color: rgba(255, 255, 255, 0.3);
  margin: 0 0.375rem;
}

.review-card__company {
  color: #ef9ea0;
}

@media (min-width: 768px) {
  .reviews-section {
    padding: 6.5rem 0 7rem;
  }

  .reviews-section__inner {
    padding-inline: 2rem;
  }

  .reviews-section__subtitle {
    font-size: 16px;
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex-basis: 360px;
  }
}

@media (max-width: 767px) {
  .reviews-section__inner {
    padding-inline: 0;
  }

  .reviews-section__head {
    padding-inline: 1.25rem;
    margin-bottom: 2rem;
  }

  .reviews-section__arrow {
    display: none !important;
  }

  .reviews-track {
    padding-inline: 1.25rem;
  }

  .review-card {
    flex-basis: 85vw;
    width: 85vw;
  }
}

/* End */


/* Start:/local/lib/constructor/blocks/howitwas-block/howitwas-block.css?17849143813016*/
.howitwas-section {
  padding: 5rem 0 6rem;
  background: #0d1b2a;
}

.howitwas-section__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding-inline: 1.25rem;
}

.howitwas-section__head {
  margin-bottom: 2rem;
}

.howitwas-section__accent {
  margin-bottom: 1.5rem;
}

.howitwas-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 5vw, 3rem);
  color: #fff;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.howitwas-section__subtitle {
  margin: 0;
  max-width: 640px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.howitwas-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.howitwas-tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.75rem;
  padding: 0 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.howitwas-tabs__btn.is-active {
  background: #c9494b;
  color: #fff;
  border-color: #c9494b;
}

.howitwas-panel {
  display: none;
}

.howitwas-panel.is-active {
  display: block;
}

.howitwas-single {
  display: block;
}

.howitwas-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
}

.howitwas-slider__nav {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(13, 27, 42, 0.9);
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
}

.howitwas-slider__nav[disabled] {
  opacity: 0.35;
  cursor: default;
}

.howitwas-track-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
}

.howitwas-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.howitwas-media {
  margin: 0;
  flex: 0 0 min(100%, 880px);
  width: min(100%, 880px);
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

.howitwas-media--single {
  width: 100%;
  max-width: 1100px;
}

.howitwas-media img,
.howitwas-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.howitwas-media__embed {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
}

.howitwas-media__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

@media (max-width: 767px) {
  .howitwas-slider {
    grid-template-columns: 1fr;
  }

  .howitwas-slider__nav {
    display: none;
  }

  .howitwas-media {
    flex-basis: min(100%, calc(100vw - 2.5rem));
    width: min(100%, calc(100vw - 2.5rem));
  }
}

@media (min-width: 768px) {
  .howitwas-section {
    padding: 6.5rem 0 7rem;
  }

  .howitwas-section__inner {
    padding-inline: 2rem;
  }

  .howitwas-section__subtitle {
    font-size: 16px;
  }
}

/* End */


/* Start:/local/lib/constructor/blocks/partners-block/partners-block.css?17849143812282*/
.partners-main {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #081220;
  padding: 4.5rem 0;
}
.partners-main__container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.partners-main__head {
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.partners-main__accent {
  margin-bottom: 1.5rem;
}
.partners-main__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.875rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  font-weight: 400;
}
.partners-main__nav {
  display: none;
  gap: 0.5rem;
  flex-shrink: 0;
}
.partners-main__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.partners-main__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.partners-main__scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 0 1.25rem 0.5rem;
  margin: 0 -1.25rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.partners-main__scroll::-webkit-scrollbar {
  display: none;
}
.partners-main__card {
  position: relative;
  flex: 0 0 66%;
  min-height: 180px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  text-decoration: none;
}
.partners-main__logo {
  width: 90%;
  height: 90%;
  object-fit: contain;
  filter: none !important;
  opacity: 0.9;
  transition: opacity 0.3s;
}
.partners-main__card:hover .partners-main__logo {
  filter: none !important;
  opacity: 1;
}

@media (min-width: 640px) {
  .partners-main__card {
    flex-basis: 40%;
  }
}

@media (min-width: 768px) {
  .partners-main__container {
    padding: 0 2.5rem;
  }
  .partners-main__nav {
    display: flex;
  }
  .partners-main__scroll {
    margin: 0 -2rem;
    padding: 0 2rem 0.5rem;
  }
  .partners-main__card {
    min-height: 200px;
    flex-basis: calc((100% - 3rem) / 3.5);
  }
}

/* End */
/* /local/lib/constructor/blocks/industry-block/industry-block.css?17797459364772 */
/* /local/lib/constructor/blocks/advantages-block/advantages-block.css?17799727601329 */
/* /local/lib/constructor/blocks/speakers-block/speakers-block.css?17828324685601 */
/* /local/lib/constructor/blocks/tickets-block/tickets-block.css?178497815017775 */
/* /local/lib/constructor/blocks/participate-block/participate-block.css?17827414468835 */
/* /local/lib/constructor/blocks/reviews-block/reviews-block.css?17849143814327 */
/* /local/lib/constructor/blocks/howitwas-block/howitwas-block.css?17849143813016 */
/* /local/lib/constructor/blocks/partners-block/partners-block.css?17849143812282 */
