/* ============================================================
   Page-specific styles for events/ai-driven-abm-2026.html
   Вторая конференция серии «AI-native компания» (30.07.2026).
   Каркас и компоненты — как у events/ai-native-company.html
   (event-ai-native.css), но с другой палитрой (фиолетовый/розовый
   вместо зелёно-синей), другой сеткой-подложкой (grid с /business
   вместо /index) и градиентом CTA-баннера маджента → фиолетовый.
   Шрифт — Onest (наследуется глобально). Палитра вынесена
   в page-scoped переменные --conf-*.
   ============================================================ */

.page-event-ai-driven-abm {
  /* Акценты страницы */
  --conf-violet: #7a4fd8;
  --conf-violet-soft-bg: #f3eeff;
  --conf-violet-soft-border: #d6c6f5;
  --conf-violet-text: #5b32b0;
  --conf-pink: #e0569a;
  --conf-pink-soft-bg: #fdeef5;
  --conf-pink-soft-border: #f5c4dc;
  --conf-pink-text: #b03272;
  --conf-blue: #4a9fd8;
  --conf-blue-soft-bg: #eef4ff;
  --conf-blue-soft-border: #c0d0f0;
  --conf-blue-text: #2a4aaa;
  --conf-green: #34a35a;
  --conf-green-soft-bg: #e8f8ee;
  --conf-green-soft-border: #bfe8cd;
  --conf-green-text: #1f7a45;
  --conf-amber: #d98a1f;
  --conf-amber-soft-bg: #fff3e0;
  --conf-amber-soft-border: #f0d9a8;
  --conf-amber-text: #a3660f;

  /* Нейтрали */
  --conf-ink: #111111;
  --conf-ink-strong: #0f0f0f;
  --conf-ink-1a: #1a1a1a;
  --conf-text-33: #333333;
  --conf-text-44: #444444;
  --conf-text-55: #555555;
  --conf-text-66: #666666;
  --conf-text-88: #888888;
  --conf-text-99: #999999;
  --conf-line-2: #eeeeee;
  --conf-card-border: #ebebeb;
  --conf-surface-grey: #f6f6f6;

  /* Градиенты */
  --conf-grad-zoom: linear-gradient(90deg, #8a63e0 0%, #e0569a 100%);
  --conf-grad-zoom-cta: linear-gradient(90deg, #4a9fd8 0%, #6fc3e8 100%);
  --conf-grad-badge-1: linear-gradient(135deg, #8a63e0 0%, #4a9fd8 100%);
  --conf-grad-badge-2: linear-gradient(135deg, #e0569a 0%, #ef7f6a 100%);
  --conf-grad-speaker-1: linear-gradient(220deg, #efe9ff 11%, #d8ccf6 96%);
  --conf-grad-speaker-2: linear-gradient(180deg, #ffeaf4 0%, #f6c4dd 100%);
  --conf-grad-speaker-3: linear-gradient(180deg, #e8f2ff 0%, #bcdaf7 100%);
  --conf-grad-badge-3: linear-gradient(135deg, #4a9fd8 0%, #2a6ab0 100%);
  --conf-grad-speaker-4: linear-gradient(180deg, #eafcf0 0%, #bdeccb 100%);
  --conf-grad-badge-4: linear-gradient(135deg, #5fd47f 0%, #1f9d52 100%);
  --conf-grad-speaker-5: linear-gradient(180deg, #fff6e6 0%, #f5dba3 100%);
  --conf-grad-badge-5: linear-gradient(135deg, #f0a93a 0%, #c26a0f 100%);

  /* Тени */
  --conf-shadow-card: 0 2px 20px rgba(0, 0, 0, 0.05);
  --conf-shadow-card-strong: 0 4px 16px rgba(0, 0, 0, 0.08);
  --conf-shadow-card-soft: 0 2px 8px rgba(0, 0, 0, 0.06);

  /* Grid-подложки (готовые SVG с /business — другая сетка, чем у первой конфы) */
  --conf-grid: url("/images/business/v2/hero-bg.svg");
  --conf-grid-sm: url("/images/business/v2/hero-bg-768.svg");
  --conf-grid-xs: url("/images/business/v2/hero-bg-375.svg");
}

.page-event-ai-driven-abm main {
  background: #fff;
  overflow-x: clip;
}

/* Списки внутри страницы по умолчанию без маркеров — переопределяем точечно */
.page-event-ai-driven-abm main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Фразы, которые не должны переноситься на новую строку на десктопе */
@media (min-width: 1024px) {
  .conf-nowrap-lg {
    white-space: nowrap;
  }
}
/* Фразы, которые не должны переноситься никогда (напр. AI-native, ИИ-агентов) */
.conf-nowrap {
  white-space: nowrap;
}

/* ============================================================
   1. Hero + виджет события
   ============================================================ */
.conf-hero {
  position: relative;
  overflow: hidden;
  background: var(--conf-surface-grey);
  margin-top: -64px;
  padding: 104px 0 56px;
}
@media (min-width: 1024px) {
  .conf-hero {
    padding: 112px 0 72px;
  }
}
@media (min-width: 1280px) {
  .conf-hero {
    padding: 124px 0 88px;
  }
}

/* Сетка-подложка — готовый SVG с /business */
.conf-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: var(--conf-grid-xs);
  background-repeat: no-repeat;
  background-position: center top;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 40px, #000 calc(100% - 40px), transparent 100%);
}
@media (min-width: 576px) {
  .conf-hero-bg {
    background-image: var(--conf-grid-sm);
  }
}
@media (min-width: 1024px) {
  .conf-hero-bg {
    background-image: var(--conf-grid);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to bottom, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  }
}
/* Цветные градиент-блобы по обоим краям: фиолетовый слева, розовый справа */
.conf-hero-bg::before,
.conf-hero-bg::after {
  content: "";
  position: absolute;
  width: 75%;
  height: 110%;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.45;
}
.conf-hero-bg::before {
  left: -22%;
  top: -25%;
  background: radial-gradient(circle at 50% 50%, #b9a1f0 0%, rgba(185, 161, 240, 0) 70%);
}
.conf-hero-bg::after {
  right: -22%;
  top: -10%;
  background: radial-gradient(circle at 50% 50%, #f3a6cf 0%, rgba(243, 166, 207, 0) 70%);
}

.conf-hero-container {
  position: relative;
  z-index: 1;
}
.conf-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.conf-hero-content {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .conf-hero-grid {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 32px;
  }
  .conf-hero-content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 672px;
  }
  .conf-event-card {
    flex: 0 0 auto;
    width: clamp(380px, 38vw, 504px);
  }
  .conf-event-people {
    margin-top: auto;
  }
}

.conf-hero-eyebrow {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.16px;
  color: var(--text-muted);
}
@media (min-width: 1024px) {
  .conf-hero-eyebrow {
    margin-top: 40px;
  }
}
.conf-hero-title {
  margin: 16px 0 0;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--conf-ink-strong);
}
@media (min-width: 576px) {
  .conf-hero-title {
    font-size: 38px;
  }
}
@media (min-width: 768px) {
  .conf-hero-title {
    font-size: 44px;
  }
}
@media (min-width: 1024px) {
  .conf-hero-title {
    font-size: 48px;
  }
}
@media (min-width: 1280px) {
  .conf-hero-title {
    font-size: 52px;
    line-height: 60px;
  }
}
/* Подзаголовок хиро (у первой конфы его роль играл длинный h1) */
.conf-hero-lead {
  margin: 18px 0 0;
  max-width: 600px;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--conf-text-44);
}
@media (min-width: 1280px) {
  .conf-hero-lead {
    font-size: 18px;
  }
}
/* Глобальный --brand-pink-subdued (#e8bbcc) на мелком тексте лида почти
   не читается — берём насыщенный розовый страницы с прозрачностью. */
.page-event-ai-driven-abm .text-underline-accent--pink {
  text-decoration-color: rgba(224, 86, 154, 0.55);
}

.conf-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  width: 100%;
}
.conf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  line-height: 22.5px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.conf-btn svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.conf-btn--zoom {
  background: var(--conf-grad-zoom);
  color: #fff;
}
/* Кнопки «Зарегистрироваться» — та же тень на ховере, что и у остальных CTA */
.conf-btn--zoom:hover,
.conf-btn--zoom-cta:hover {
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.14);
}
/* Никаких подчёркиваний на ховере у интерактивных элементов с иконками */
.conf-btn:hover,
.conf-pill:hover,
.conf-link-card:hover,
.conf-link-card:hover .conf-link-title,
.conf-link-card:hover .conf-link-sub {
  text-decoration: none;
}

/* --- Виджет события (правая колонка) --- */
.conf-event-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.conf-event-card-main {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--conf-shadow-card-strong);
}
.conf-event-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
}
.conf-event-num {
  font-weight: 900;
  font-size: 48px;
  line-height: 48px;
  letter-spacing: -2px;
  background: var(--conf-grad-zoom);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.conf-event-date {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  color: var(--conf-text-33);
}
.conf-event-divider {
  height: 1px;
  background: var(--conf-line-2);
  margin-top: 16px;
}
.conf-event-rows {
  display: flex;
  flex-direction: column;
}
.conf-event-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 14px;
}
.conf-event-ico {
  flex: none;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--conf-violet-soft-bg);
  color: var(--conf-violet-text);
}
.conf-event-ico svg {
  width: 18px;
  height: 18px;
}
.conf-event-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.conf-event-label {
  font-weight: 500;
  font-size: 11px;
  line-height: 16.5px;
  color: var(--conf-text-99);
}
.conf-event-value {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--conf-ink);
}
.conf-event-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.conf-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 100px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  text-decoration: none;
  white-space: nowrap;
}
/* Специфичность выше .conf-pill { display: inline-flex }, иначе [hidden]
   (используется для пилюли Zoom, видимой только зарегистрированным) не
   срабатывает. */
.conf-pill[hidden] {
  display: none;
}
.conf-pill svg {
  width: 12px;
  height: 12px;
  flex: none;
}
.conf-pill--blue {
  background: var(--conf-blue-soft-bg);
  border-color: var(--conf-blue-soft-border);
  color: var(--conf-blue-text);
}
.conf-pill--pink {
  background: var(--conf-pink-soft-bg);
  border-color: var(--conf-pink-soft-border);
  color: var(--conf-pink-text);
}
.conf-pill--violet {
  background: var(--conf-violet-soft-bg);
  border-color: var(--conf-violet-soft-border);
  color: var(--conf-violet-text);
}

.conf-event-people {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--conf-shadow-card-soft);
}
.conf-event-avatars {
  display: flex;
  flex: none;
}
.conf-event-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  background: #e7e8e9;
}
.conf-event-avatars img + img {
  margin-left: -10px;
}
.conf-event-people-text {
  display: flex;
  flex-direction: column;
}
.conf-event-people-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--conf-ink);
}
.conf-event-people-sub {
  font-weight: 400;
  font-size: 13px;
  line-height: 19.5px;
  color: var(--conf-text-66);
}

/* ============================================================
   Общие компоненты секций
   ============================================================ */
.conf-tag {
  display: inline-flex;
  align-items: center;
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--conf-violet-soft-bg);
  border: 1px solid var(--conf-violet-soft-border);
  font-weight: 600;
  font-size: 13px;
  line-height: 19.5px;
  color: var(--conf-violet-text);
}
.conf-h2 {
  margin: 0;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--conf-ink);
}
@media (min-width: 768px) {
  .conf-h2 {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  .conf-h2 {
    font-size: 36px;
  }
}
.conf-section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
.conf-section-sub {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--conf-text-55);
}

/* ============================================================
   2. Speakers
   ============================================================ */
.conf-speakers {
  background: #fff;
  padding: 64px 0 80px;
}
@media (min-width: 1024px) {
  .conf-speakers {
    padding: 80px 0 120px;
  }
}

.conf-lead {
  max-width: 860px;
  margin: 0 auto 56px;
  text-align: center;
}
.conf-lead-title {
  margin: 0;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--conf-ink);
}
@media (min-width: 768px) {
  .conf-lead-title {
    font-size: 32px;
  }
}
.conf-lead-text {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: var(--conf-text-44);
}

.conf-speakers-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}
@media (min-width: 1024px) {
  .conf-speakers-list {
    gap: 40px;
    margin-top: 56px;
  }
}

.conf-speaker {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--conf-card-border);
  border-radius: 24px;
  box-shadow: var(--conf-shadow-card);
}
@media (min-width: 768px) {
  .conf-speaker {
    flex-direction: row;
    align-items: stretch;
  }
}

.conf-speaker-media {
  position: relative;
  flex: none;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 24px;
  min-height: 240px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  background-color: #f0edf7;
  background-image: var(--sp-pattern), var(--sp-panel);
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
}
@media (min-width: 768px) {
  .conf-speaker-media {
    width: 280px;
    padding: 40px 28px;
    border-radius: 24px 0 0 24px;
  }
}
@media (min-width: 1280px) {
  .conf-speaker-media {
    width: 320px;
  }
}
/* Номер спикера — вынесен за верхний край карточки (как в макете) */
.conf-speaker-num {
  position: absolute;
  top: -16px;
  left: 24px;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sp-num);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
}
.conf-speaker-photo {
  width: clamp(150px, 42vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.conf-speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.conf-speaker-body {
  flex: 1 1 auto;
  min-width: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .conf-speaker-body {
    padding: 36px 40px;
  }
}
.conf-speaker-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 100px;
  background: var(--sp-badge-bg);
  border: 1px solid var(--sp-badge-border);
  color: var(--sp-badge-text);
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
}
.conf-speaker-name {
  margin: 14px 0 0;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--conf-ink);
}
@media (min-width: 768px) {
  .conf-speaker-name {
    font-size: 28px;
  }
}
.conf-speaker-role {
  margin: 8px 0 0;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: var(--conf-text-66);
}
.conf-speaker-label {
  margin: 24px 0 0;
  font-weight: 700;
  font-size: 11px;
  line-height: 16.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #bbbbbb;
}
.conf-speaker-topic {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  color: var(--conf-ink);
}
.conf-speaker-desc {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--conf-text-44);
}
.conf-speaker-desc p {
  margin: 0;
}
.conf-speaker-desc p + p {
  margin-top: 8px;
}
.conf-speaker-desc strong {
  font-weight: 700;
  color: var(--conf-ink);
}
/* Подзаголовки внутри описания — единый вертикальный ритм */
.conf-speaker-desc .conf-speaker-subhead {
  margin-top: 18px;
  margin-bottom: 6px;
}
.conf-speaker-desc > .conf-speaker-subhead:first-child {
  margin-top: 0;
}
/* Маркированные списки (специфичность перебивает сброс `main ul`) */
.conf-speaker-desc .conf-speaker-ul {
  list-style: disc;
  margin: 6px 0 14px;
  padding-left: 22px;
}
.conf-speaker-desc .conf-speaker-ul li {
  margin: 0 0 8px;
}
.conf-speaker-desc .conf-speaker-ul li:last-child {
  margin-bottom: 0;
}
.conf-speaker-desc .conf-speaker-ul li::marker {
  color: var(--sp-accent);
}
.conf-accent {
  color: var(--sp-accent);
  font-weight: 700;
}

/* Цветовые модификаторы карточек спикеров */
.conf-speaker--violet {
  --sp-panel: var(--conf-grad-speaker-1);
  --sp-pattern: url("/images/events/ai-native-company/speaker-panel-1.svg");
  --sp-num: var(--conf-grad-badge-1);
  --sp-accent: #6a45c9;
  --sp-badge-bg: var(--conf-violet-soft-bg);
  --sp-badge-border: var(--conf-violet-soft-border);
  --sp-badge-text: var(--conf-violet-text);
}
.conf-speaker--pink {
  --sp-panel: var(--conf-grad-speaker-2);
  --sp-pattern: url("/images/events/ai-native-company/speaker-panel-2.svg");
  --sp-num: var(--conf-grad-badge-2);
  --sp-accent: #cf3f87;
  --sp-badge-bg: var(--conf-pink-soft-bg);
  --sp-badge-border: var(--conf-pink-soft-border);
  --sp-badge-text: var(--conf-pink-text);
}
.conf-speaker--blue {
  --sp-panel: var(--conf-grad-speaker-3);
  --sp-pattern: url("/images/events/ai-native-company/speaker-panel-3.svg");
  --sp-num: var(--conf-grad-badge-3);
  --sp-accent: #2f6fc9;
  --sp-badge-bg: var(--conf-blue-soft-bg);
  --sp-badge-border: var(--conf-blue-soft-border);
  --sp-badge-text: var(--conf-blue-text);
}
.conf-speaker--green {
  --sp-panel: var(--conf-grad-speaker-4);
  --sp-pattern: url("/images/events/ai-native-company/speaker-panel-2.svg");
  --sp-num: var(--conf-grad-badge-4);
  --sp-accent: #1f9d52;
  --sp-badge-bg: var(--conf-green-soft-bg);
  --sp-badge-border: var(--conf-green-soft-border);
  --sp-badge-text: var(--conf-green-text);
}
.conf-speaker--amber {
  --sp-panel: var(--conf-grad-speaker-5);
  --sp-pattern: url("/images/events/ai-native-company/speaker-panel-1.svg");
  --sp-num: var(--conf-grad-badge-5);
  --sp-accent: #b9700f;
  --sp-badge-bg: var(--conf-amber-soft-bg);
  --sp-badge-border: var(--conf-amber-soft-border);
  --sp-badge-text: var(--conf-amber-text);
}

/* ============================================================
   Карточки-ссылки (conf-link-card) — переиспользуются в success-экране
   модалки регистрации (разделы «Формат» и «Как присоединиться» убраны).
   ============================================================ */
.page-event-ai-driven-abm .conf-links-list {
  width: 100%;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.conf-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--conf-card-border);
  border-radius: 14px;
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.conf-link-card:hover {
  border-color: #d6d8dc;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}
.conf-link-ico {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
}
.conf-link-ico svg {
  width: 22px;
  height: 22px;
}
.conf-link-ico--blue {
  background: var(--conf-blue-soft-bg);
  color: #3865d8;
}
.conf-link-ico--pink {
  background: var(--conf-pink-soft-bg);
  color: var(--conf-pink-text);
}
.conf-link-ico--violet {
  background: var(--conf-violet-soft-bg);
  color: var(--conf-violet-text);
}
.conf-link-text {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.conf-link-title {
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  color: var(--conf-ink);
}
.conf-link-sub {
  margin-top: 2px;
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: var(--conf-text-88);
}
.conf-link-arrow {
  flex: none;
  color: #cccccc;
}
.conf-link-arrow svg {
  width: 16px;
  height: 16px;
}

/* ============================================================
   3. Banner CTA
   ============================================================ */
/* Градиент маджента → фиолетовый (у первой конфы — сине-зелёный) */
.conf-banner {
  position: relative;
  overflow: hidden;
  background-image: linear-gradient(
    304.64deg,
    #d8509a 34.4%,
    #d0509f 42%,
    #c450a8 49%,
    #b650b3 56%,
    #a850bf 63%,
    #9a4fca 71%,
    #8c4dd3 80%,
    #7f49da 90%,
    #7645de 95.1%
  );
  color: var(--brand-white);
}
/* Grid-SVG поверх градиента с радиальной маской — как в cta-banner-2026 */
.conf-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/images/index/v2/business-bg-grid-375.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 90%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 90%);
}
@media (min-width: 576px) {
  .conf-banner-bg {
    background-image: url("/images/index/v2/business-bg-grid-768.svg");
  }
}
@media (min-width: 1024px) {
  .conf-banner-bg {
    background-image: url("/images/index/v2/business-bg-grid.svg");
  }
}
.conf-banner-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 56px var(--page-pad-x) 60px;
}
@media (min-width: 1024px) {
  .conf-banner-inner {
    padding: 72px var(--page-pad-x) 76px;
  }
}
.conf-banner-title {
  margin: 0;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--brand-white);
}
@media (min-width: 768px) {
  .conf-banner-title {
    font-size: 32px;
  }
}
@media (min-width: 1280px) {
  .conf-banner-title {
    font-size: 36px;
  }
}
.conf-banner-sub {
  margin: 0;
  max-width: 640px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}
/* На десктопе подзаголовок — в одну строку */
@media (min-width: 1024px) {
  .conf-banner-sub {
    max-width: none;
    white-space: nowrap;
  }
}
.conf-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}
.conf-btn--zoom-cta {
  background: var(--conf-grad-zoom-cta);
  color: #fff;
}

/* ============================================================
   Модалка регистрации на мероприятие
   ============================================================ */
.conf-modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 16px;
  border: 0;
  background: transparent;
}
.conf-modal[open] {
  display: flex;
  align-items: center;
  justify-content: center;
}
.conf-modal::backdrop {
  background: rgba(17, 17, 17, 0.55);
}
body.event-modal-open {
  overflow: hidden;
}

.conf-modal-inner {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: calc(100dvh - 32px);
  overflow-y: auto;
  padding: 32px 24px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--conf-shadow-card-strong);
}
@media (min-width: 576px) {
  .conf-modal-inner {
    padding: 36px;
  }
}
.conf-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.06);
  color: var(--conf-ink);
  cursor: pointer;
  transition: background 0.18s ease;
}
.conf-modal-close:hover {
  background: rgba(17, 17, 17, 0.1);
}
.conf-modal-close .i {
  font-size: 16px;
}
.conf-modal-title {
  margin: 0;
  padding-right: 28px;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--conf-ink);
}
.conf-modal-text {
  margin: 10px 0 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: var(--conf-text-55);
}
.conf-modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 22px;
}
.conf-modal-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.conf-modal-label {
  font-weight: 600;
  font-size: 13px;
  line-height: 1.3;
  color: var(--conf-text-44);
}
.conf-modal-input {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--conf-card-border);
  border-radius: 12px;
  background: #fff;
  font-family: inherit;
  font-size: 15px;
  color: var(--conf-ink);
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}
.conf-modal-input::placeholder {
  color: var(--conf-text-88);
}
.conf-modal-input:focus {
  outline: none;
  border-color: var(--conf-violet);
  box-shadow: 0 0 0 3px rgba(122, 79, 216, 0.15);
}
.conf-modal-input:user-invalid {
  border-color: #e2576b;
}
.conf-modal-submit {
  width: 100%;
  margin-top: 4px;
}
.conf-modal-submit[disabled] {
  opacity: 0.6;
  pointer-events: none;
}
/* Состояние загрузки — спиннер вместо подписи (как у .btn-2026.is-loading в
   модалке рассылки журнала; переиспользуем общий @keyframes btn-2026-spin). */
.conf-modal-submit.is-loading {
  position: relative;
  opacity: 0.7;
  color: transparent !important;
}
.conf-modal-submit.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  margin: -9px 0 0 -9px;
  border-radius: 50%;
  border: 2px solid #fff;
  border-right-color: transparent;
  opacity: 0.9;
  animation: btn-2026-spin 0.7s linear infinite;
}
.conf-modal-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 12px;
  line-height: 1.5;
  color: var(--conf-text-88);
}
.conf-modal-consent a {
  color: var(--conf-blue-text);
}
.conf-modal-checkbox {
  flex: none;
  width: 16px;
  height: 16px;
  margin: 1px 0 0;
  accent-color: var(--conf-violet);
  cursor: pointer;
}
.conf-modal-error {
  margin: 0;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(226, 87, 107, 0.12);
  color: #b80027;
  font-size: 13px;
  line-height: 1.4;
}
/* Success-экран: клон .conf-links-list (он вне <main>, поэтому список сбрасываем явно) */
.conf-modal-links {
  margin-top: 20px;
}
.conf-modal-links .conf-links-list {
  margin-top: 0;
  list-style: none;
  padding: 0;
}
