  /* ========== БАЗОВЫЕ СТИЛИ ========== */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: 'Georgia', serif;
    background: #f0f2f4;
    color: #2c3e50;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* ========== АНИМАЦИИ ========== */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes shine {
    0% { background-position: -100%; }
    100% { background-position: 200%; }
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
  }
  
  @keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
  }
  
  .fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
  }
  
  .fade-in {
    animation: fadeIn 1s ease-out forwards;
  }
  
  /* ========== HERO SECTION С ПАРАЛЛАКСОМ ========== */
  .hero {
    background: linear-gradient(160deg, rgba(13, 27, 42, 0.92) 0%, rgba(26, 42, 58, 0.88) 45%, rgba(30, 52, 72, 0.90) 100%), url('https://medicalconf.ru/header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 100px 20px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Анимированные частицы на фоне */
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 30%, rgba(10,116,218,0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(10,116,218,0.08) 0%, transparent 50%),
      radial-gradient(circle at 40% 80%, rgba(10,116,218,0.06) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
  }
  
  /* Золотая сетка */
  .hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(10,116,218,0.08)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  /* Премиальный логотип с эффектом */
  .logo {
    display: inline-block;
    border: 2px solid #0A74DA;
    border-radius: 6px;
    padding: 16px 36px;
    margin-bottom: 32px;
    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(10,116,218,0.2);
    transition: all 0.4s ease;
    animation: fadeInUp 1s ease-out 0.2s both;
  }
  
  .logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 48px rgba(10,116,218,0.35);
    border-color: #1E88E5;
  }
  
  .logo-text {
    color: #ffffff;
    font-size: 36px;
    letter-spacing: 3px;
    font-weight: normal;
  }
  
  .logo-accent {
    color: #0A74DA;
    font-weight: bold;
  }
  
  /* Премиальный бейдж Минздрава */
  .ministry-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(10,116,218,0.2), rgba(10,116,218,0.1));
    border: 1px solid rgba(10,116,218,0.6);
    border-radius: 30px;
    padding: 12px 32px;
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(10,116,218,0.15);
    animation: fadeInUp 1s ease-out 0.4s both, pulse 3s ease-in-out infinite;
  }
  
  .ministry-badge-text {
    color: #E3F2FD;
    font-size: 13px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
  }
  
  /* Заголовок Hero */
  .hero-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: normal;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    animation: fadeInUp 1s ease-out 0.6s both;
  }
  
  .hero-subtitle {
    color: #0A74DA;
    font-size: 23px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out 0.8s both;
  }
  
  .hero-description {
    color: rgba(255,255,255,0.95);
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 1s both;
  }

/* Быстрая заявка под hero */
.hero-quick-form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 32px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 60%, #0A74DA 100%);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.25);
}

.hero-quick-form-text h2 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 8px;
}

.hero-quick-form-text p {
  margin: 0;
  font-size: 14px;
  color: rgba(249, 250, 251, 0.86);
  max-width: 420px;
  line-height: 1.7;
}

.hero-quick-form-fields {
  flex: 1;
}

.hero-quick-form-row {
  display: flex;
  gap: 12px;
  margin-bottom: 10px;
}

.hero-quick-form-row input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 10px;
  border: none;
  font-family: 'Georgia', serif;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: #111827;
}

.hero-quick-form-row input::placeholder {
  color: #9ca3af;
}

.hero-quick-form-btn {
  width: 100%;
  margin-top: 4px;
  font-size: 13px;
}

.hero-quick-form-note {
  margin: 8px 0 0;
  font-size: 11px;
  color: rgba(229, 231, 235, 0.85);
  text-align: right;
}
  
  /* Декоративная линия */
  .divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(to right, transparent, #0A74DA, transparent);
    margin: 40px auto;
    position: relative;
    animation: fadeIn 1s ease-out 1.2s both;
  }
  
  .divider::before,
  .divider::after {
    content: '✦';
    position: absolute;
    color: #0A74DA;
    font-size: 12px;
    top: -6px;
  }
  
  .divider::before {
    left: -20px;
  }
  
  .divider::after {
    right: -20px;
  }
  
  /* ========== КНОПКИ С ЭФФЕКТАМИ ========== */
  .btn {
    display: inline-block;
    padding: 16px 44px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
    font-family: 'Georgia', serif;
    position: relative;
    overflow: hidden;
    font-weight: 500;
  }
  
  .btn::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;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn-primary {
    background: linear-gradient(135deg, #0A74DA, #1565C0);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(10,116,218,0.4);
    animation: fadeInUp 1s ease-out 1.4s both;
  }
  
  .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(10,116,218,0.5);
  }
  
  .btn-secondary {
    background: linear-gradient(135deg, #1a2a3a, #0d1b2a);
    color: #ffffff;
    box-shadow: 0 6px 24px rgba(26,42,58,0.4);
  }
  
  .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(26,42,58,0.5);
  }
  
  .btn-outline {
    background: transparent;
    border: 2px solid #1a2a3a;
    color: #1a2a3a;
  }
  
  .btn-outline:hover {
    background: #1a2a3a;
    color: #ffffff;
    transform: translateY(-2px);
  }

/* МОБИЛЬНЫЙ STICKY CTA */
.mobile-sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 16px;
  background: linear-gradient(135deg, #0d1b2a, #0A74DA);
  box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.5);
  z-index: 999;
  display: none;
}

.mobile-sticky-cta-btn {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  background: #ffffff;
  color: #0A74DA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
  
  /* ========== СЕКЦИИ ========== */
  .section {
    padding: 60px 05px;
    position: relative;
  }
  
  .section-white {
    background: #ffffff;
  }
  
  .section-gray {
    background: linear-gradient(180deg, #f0f4f8 0%, #e1e8ed 100%);
  }
  
  .section-dark {
    background: linear-gradient(160deg, #1a2a3a 0%, #0d1b2a 100%);
    color: #ffffff;
    position: relative;
  }
  
  /* Декоративный фон для темных секций */
  .section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
      radial-gradient(circle at 10% 20%, rgba(10,116,218,0.05) 0%, transparent 50%),
      radial-gradient(circle at 90% 80%, rgba(10,116,218,0.03) 0%, transparent 50%);
    pointer-events: none;
  }
  
  .section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: normal;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 20px;
    color: #1a2a3a;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #0A74DA, #1E88E5);
    border-radius: 2px;
  }
  
  .section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #6b7280;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
  }
  
  /* ========== КАРТОЧКИ ПРЕИМУЩЕСТВ С ИКОНКАМИ ========== */
  .advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .advantage-card {
    background: #ffffff;
    padding: 48px 36px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10,116,218,0.1);
  }
  
  .advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A74DA, #1E88E5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }
  
  .advantage-card:hover::before {
    transform: scaleX(1);
  }
  
  .advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 48px rgba(10,116,218,0.15);
  }
  
  .advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .advantage-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(10,116,218,0.2));
    transition: all 0.4s ease;
  }
  
  .advantage-card:hover .advantage-icon img {
    transform: scale(1.1) rotate(5deg);
  }
  
  .advantage-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a2a3a;
    text-align: center;
    font-weight: 500;
  }
  
  .advantage-text {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
    text-align: center;
  }
  
  /* ========== ПРОГРАММА С ТАЙМЛАЙНОМ ========== */
  .program-timeline {
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
  }
  
  .program-item {
    position: relative;
    padding-left: 80px;
    padding-bottom: 48px;
    transition: all 0.3s ease;
  }
  
  .program-item::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: -48px;
    width: 2px;
    background: linear-gradient(to bottom, rgba(10,116,218,0.4), rgba(10,116,218,0.1));
  }
  
  .program-item:last-child::before {
    display: none;
  }
  
  .program-dot {
    position: absolute;
    left: 18px;
    top: 8px;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #0A74DA, #1E88E5);
    border-radius: 50%;
    border: 4px solid #1a2a3a;
    box-shadow: 0 0 0 4px rgba(10,116,218,0.2);
    transition: all 0.3s ease;
  }
  
  .program-item:hover .program-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px rgba(10,116,218,0.3);
  }
  
  .program-time {
    color: #0A74DA;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
  }
  
  .program-title {
    font-size: 17px;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
  }
  
  .program-description {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* ========== СПИСКИ АУДИТОРИИ ========== */
  .audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
    gap: 48px;
    margin-top: 60px;
  }
  
  .audience-section h3 {
    font-size: 20px;
    margin-bottom: 28px;
    color: #1a2a3a;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-left: 20px;
  }
  
  .audience-section h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #0A74DA, #1E88E5);
    border-radius: 2px;
  }
  
  .audience-section ol {
    list-style: none;
    counter-reset: item;
    padding: 0;
  }
  
  .audience-section ol li {
    counter-increment: item;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.8;
    padding-left: 40px;
    position: relative;
  }

/* Аккордеоны "Для кого" на мобильных */
.audience-section.audience-collapsible h3 {
  cursor: pointer;
}

.audience-section.audience-collapsible h3::after {
  content: '▾';
  font-size: 14px;
  color: #0A74DA;
  margin-left: 8px;
}

.audience-section.audience-collapsed h3::after {
  content: '▸';
}

.audience-section.audience-collapsible ol {
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.audience-section.audience-collapsed ol {
  max-height: 0;
  opacity: 0;
  pointer-events: none;
}
  
  .audience-section ol li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #0A74DA, #1E88E5);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(10,116,218,0.3);
  }
  
  /* ========== ПРЕИМУЩЕСТВА УЧАСТИЯ ========== */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
    margin-top: 60px;
  }
  
  .benefit-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
  }
  
  .benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  
  .benefit-number {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: #1a2a3a;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  }
  
  .benefit-text {
    color: #2c3e50;
    font-size: 15px;
    line-height: 1.8;
    padding-top: 8px;
  }
  
  /* ========== ПАРТНЕРЫ ========== */
  .partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
    margin-top: 60px;
  }
  
  .partner-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .partner-logo-wrapper {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    filter: grayscale(30%);
    transition: all 0.3s ease;
  }
  
  .partner-logo:hover .partner-logo-wrapper {
    filter: grayscale(0%);
    transform: scale(1.05);
  }
  
  .partner-logo img {
    max-width: 200px;
    max-height: 100px;
    height: auto;
    width: auto;
  }
  
  .partner-description {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
  }
  
  /* ========== ТИПЫ ПАРТНЕРСТВА ========== */
  .partnership-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .partnership-card {
    padding: 48px 36px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }
  
  .partnership-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
  }
  
  .partnership-card:hover::before {
    left: 100%;
  }
  
  .partnership-card.standard {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  
  .partnership-card.premium {
    background: linear-gradient(135deg, #1a2a3a, #0d1b2a);
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  }
  
  .partnership-card.elite {
    background: linear-gradient(135deg, #2D98DA, #148bff);
    box-shadow: 0 8px 32px rgba(45, 152, 218, 0.3);
  }
  
  .partnership-card:hover {
    transform: translateY(-8px);
  }
  
  .partnership-card h4 {
    font-size: 24px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
  }

/* Цвет текста в тарифных списках */
.section-dark .partnership-card ul {
  color: rgba(243, 244, 246, 0.96) !important;
}

.section-dark .partnership-card ul li {
  color: inherit !important;
}

/* Стандартный тариф в тёмной секции — чёрный текст */
.section-dark .partnership-card.standard ul,
.section-dark .partnership-card.standard ul li {
  color: #111827 !important;
}

/* Блок "Стать партнером" (белая секция) — светлый текст в карточках */
.section-with-accent .partnership-cards .partnership-card ul,
.section-with-accent .partnership-cards .partnership-card ul li {
  color: rgba(249, 250, 251, 0.96) !important;
}

/* В блоке "Стать партнером" для карточки "Партнер" текст чёрный */
.section-with-accent .partnership-cards .partnership-card.standard ul,
.section-with-accent .partnership-cards .partnership-card.standard ul li {
  color: #111827 !important;
}
  
  .partnership-card.standard h4 {
    color: #1a2a3a;
  }
  
  .partnership-card.premium h4 {
    color: #0A74DA;
  }
  
  .partnership-card.elite h4 {
    color: #ffffff;
  }
  
  /* ========== ФОРМА ========== */
  .form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 56px 48px;
    border-radius: 16px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.08);
    border: 1px solid rgba(10,116,218,0.1);
  }
  
  .form-group {
    margin-bottom: 28px;
  }
  
  .form-label {
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 0.5px;
  }
  
  .form-input {
    width: 100%;
    padding: 16px 18px;
    border: 2px solid #e8ecef;
    border-radius: 8px;
    font-family: 'Georgia', serif;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fafbfc;
  }
  
  .form-input:focus {
    outline: none;
    border-color: #0A74DA;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(10,116,218,0.1);
  }
  
  .form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .form-checkbox input {
    margin-right: 12px;
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  
  .form-checkbox label {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
    cursor: pointer;
  }
  
  /* ========== CTA BOX ========== */
  .cta-box {
    background: linear-gradient(135deg, #1a2a3a 0%, #0d1b2a 100%);
    padding: 64px 48px;
    border-radius: 20px;
    text-align: center;
    margin: 80px auto;
    max-width: 1000px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 56px rgba(0,0,0,0.15);
  }
  
  .cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(10,116,218,0.1) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
  }
  
  .cta-box-title {
    color: #ffffff;
    font-size: 32px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  
  .cta-box-text {
    color: rgba(255,255,255,0.85);
    font-size: 17px;
    margin-bottom: 36px;
    position: relative;
    z-index: 1;
    line-height: 1.8;
  }
  
  /* ========== FOOTER ========== */
  .footer {
    background: linear-gradient(160deg, #0d1b2a 0%, #000000 100%);
    color: rgba(255,255,255,0.7);
    padding: 64px 20px 40px;
    text-align: center;
    position: relative;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(10,116,218,0.3), transparent);
  }
  
  .footer-title {
    color: #ffffff;
    font-size: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
  }
  
  .footer-divider {
    width: 50px;
    height: 2px;
    background: rgba(10,116,218,0.5);
    margin: 24px auto;
  }
  
  .footer-text {
    font-size: 13px;
    line-height: 1.9;
    margin-bottom: 16px;
  }
  
  .footer-link {
    color: #0A74DA;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .footer-link:hover {
    color: #1E88E5;
    text-decoration: underline;
  }
  
  /* ========== КОНТАКТЫ ========== */
  .contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .contact-item a {
    font-size: 18px;
    color: #1a2a3a;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .contact-item a:hover {
    color: #0A74DA;
    transform: translateY(-2px);
  }
  
  .social-links {
    text-align: center;
    margin-top: 40px;
  }
  
  .social-links a {
    color: #0A74DA;
    text-decoration: none;
    font-size: 16px;
    margin: 0 16px;
    transition: all 0.3s ease;
    display: inline-block;
  }
  
  .social-links a:hover {
    color: #1E88E5;
    transform: translateY(-2px);
  }
  
  /* ========== RESPONSIVE ========== */
  @media screen and (max-width: 768px) {
    .hero {
      padding: 60px 20px 50px;
      min-height: auto;
      background-attachment: scroll;
    }
    
    .hero-title {
      font-size: 32px;
    }
    
    .section {
      padding: 60px 05px;
    }
    
    .section-title {
      font-size: 28px;
    }
    
    .advantages-grid,
    .audience-grid,
    .benefits-grid,
    .partners-grid {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    
    .form-container {
      padding: 40px 28px;
    }
    
    .cta-box {
      padding: 48px 32px;
    }
    
    .logo-text {
      font-size: 28px;
    }
    
    .partnership-cards {
      grid-template-columns: 1fr;
    }

    /* Партнёры мероприятия — шире и по центру на мобильных */
    .partners-grid {
      justify-items: center;
      margin-top: 40px;
    }

    .partner-logo {
      align-items: center;
    }

    .partner-logo-wrapper {
      margin: 0 auto 16px;
      justify-content: center;
    }

    /* Быстрая форма и sticky CTA адаптированы под мобильный */
    .hero-quick-form {
      flex-direction: column;
      align-items: stretch;
      padding: 22px 20px;
    }

    .hero-quick-form-text h2 {
      font-size: 18px;
    }

    .hero-quick-form-row {
      flex-direction: column;
    }

    .mobile-sticky-cta {
      display: block;
    }
  }
  
  /* ========== SCROLL ANIMATIONS ========== */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
  }
/* ========== СЕКЦИЯ "ПРИ ПОДДЕРЖКЕ" — ГАЛЕРЕЯ ПИСЕМ ========== */
#support-section .container {
  max-width: 1100px;
}

.support-section-subtitle {
  text-align: center;
  color: #6b7280;
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 0;
}

.ministry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.ministry-letter {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s ease;
  box-shadow: 0 10px 40px rgba(10, 116, 218, 0.12),
              0 2px 12px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  border: 1px solid rgba(10, 116, 218, 0.08);
}

.ministry-letter:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 56px rgba(10, 116, 218, 0.2),
              0 8px 24px rgba(0, 0, 0, 0.1);
}

.ministry-letter img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ministry-letter:hover img {
  transform: scale(1.08);
}

.ministry-letter-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(10, 74, 130, 0.92) 0%,
    rgba(10, 116, 218, 0.4) 40%,
    transparent 70%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.ministry-letter:hover .ministry-letter-overlay {
  opacity: 1;
}

.ministry-letter-title {
  color: #ffffff;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ========== БЛОК СПИКЕРОВ ========== */
.speakers-section {
  padding: 60px 00px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.speakers-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, transparent, #0A74DA, transparent);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.speaker-card {
  text-align: center;
  transition: transform 0.4s ease;
  padding: 20px;
  border-radius: 16px;
  background: #fafbfc;
}

.speaker-card:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 12px 40px rgba(10, 116, 218, 0.12);
}

.speaker-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto 24px;
  position: relative;
  overflow: hidden;
  border: 4px solid #0A74DA;
  box-shadow: 0 8px 24px rgba(10, 116, 218, 0.2);
  transition: all 0.4s ease;
}

.speaker-card:hover .speaker-avatar {
  border-color: #1E88E5;
  box-shadow: 0 12px 32px rgba(10, 116, 218, 0.3);
  transform: scale(1.05);
}

.speaker-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.speaker-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: 2px;
}

.speaker-name {
  font-size: 20px;
  font-weight: 600;
  color: #1a2a3a;
  margin-bottom: 8px;
  line-height: 1.4;
}

.speaker-company {
  font-size: 15px;
  color: #0A74DA;
  font-weight: 500;
  line-height: 1.5;
}

/* Адаптивность */
@media (max-width: 768px) {
  .speakers-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
  }
  
  .speaker-avatar {
    width: 140px;
    height: 140px;
  }
  
  .speaker-avatar-placeholder {
    font-size: 40px;
  }
  
  .ministry-gallery {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .speakers-grid {
    grid-template-columns: 1fr;
  }
}

/* Акцентная синяя линия сверху для белых секций */
.section-with-accent {
  border-top: 3px solid #0A74DA;
  box-shadow: 0 -2px 20px rgba(10, 116, 218, 0.08);
}

/* Усиление контраста серых секций */
.section-gray {
  background: linear-gradient(180deg, #f0f4f8 0%, #e1e8ed 100%) !important;
  border-top: 1px solid #d0dae3;
  border-bottom: 1px solid #d0dae3;
}
/* ========== TIMELINE КЛЮЧЕВЫХ ДОКЛАДОВ ========== */
.keynote-timeline {
  max-width: 900px;
  margin: 60px auto 0;
  position: relative;
  padding: 40px 0;
}

/* Вертикальная линия */
.keynote-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, 
    transparent,
    #0A74DA 10%,
    #0A74DA 90%,
    transparent
  );
}

.timeline-session {
  margin-bottom: 80px;
  position: relative;
}

.timeline-session:last-child {
  margin-bottom: 0;
}

/* Заголовок сессии */
.session-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.session-time-badge {
  display: inline-block;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 8px 24px rgba(10, 116, 218, 0.3);
  margin-bottom: 16px;
}

.session-title {
  font-size: 28px;
  color: #1a2a3a;
  font-weight: 600;
  margin: 0;
}

/* Маркер на линии */
.session-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 120px;
  width: 24px;
  height: 24px;
  background: #0A74DA;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(10, 116, 218, 0.2);
  z-index: 2;
}

/* Контейнер докладов */
.keynote-talks {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}

/* Карточка доклада - альтернативное расположение */
.keynote-card {
  display: flex;
  gap: 30px;
  position: relative;
  width: calc(50% - 40px);
  margin-left: 0;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.keynote-card:nth-child(even) {
  margin-left: auto;
  margin-right: 0;
}

.keynote-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 116, 218, 0.2);
  border-color: #0A74DA;
}

/* Коннектор к линии */
.keynote-card::before {
  content: '';
  position: absolute;
  top: 50px;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #0A74DA, transparent);
}

.keynote-card:nth-child(odd)::before {
  right: -40px;
  background: linear-gradient(to right, #0A74DA, transparent);
}

.keynote-card:nth-child(even)::before {
  left: -40px;
  background: linear-gradient(to left, #0A74DA, transparent);
}

/* Точка на коннекторе */
.keynote-card::after {
  content: '';
  position: absolute;
  top: 44px;
  width: 12px;
  height: 12px;
  background: #0A74DA;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(10, 116, 218, 0.4);
}

.keynote-card:nth-child(odd)::after {
  right: -46px;
}

.keynote-card:nth-child(even)::after {
  left: -46px;
}

/* Фото спикера в карточке */
.keynote-speaker-photo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #0A74DA;
  box-shadow: 0 4px 16px rgba(10, 116, 218, 0.2);
}

.keynote-speaker-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder для фото */
.keynote-speaker-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* Контент карточки */
.keynote-content {
  flex: 1;
}

.keynote-topic {
  font-size: 18px;
  font-weight: 600;
  color: #1a2a3a;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.keynote-speaker-name {
  font-size: 15px;
  color: #0A74DA;
  font-weight: 600;
  margin: 0 0 4px 0;
}

.keynote-company {
  font-size: 14px;
  color: #6b7280;
  margin: 0 0 12px 0;
}

.keynote-highlight {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.6;
  margin: 0;
  font-style: italic;
  border-left: 3px solid #0A74DA;
  padding-left: 12px;
  background: linear-gradient(to right, rgba(10, 116, 218, 0.05), transparent);
  padding: 8px 12px;
  border-radius: 0 8px 8px 0;
}

/* Кнопка "Полная программа" */
.program-cta-section {
  text-align: center;
  margin-top: 60px;
  padding: 50px 20px;
  background: linear-gradient(135deg, #f0f4f8, #e1e8ed);
  border-radius: 20px;
  border: 2px dashed #0A74DA;
}

.program-cta-title {
  font-size: 24px;
  color: #1a2a3a;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.program-cta-subtitle {
  font-size: 15px;
  color: #6b7280;
  margin: 0 0 30px 0;
}

.btn-request-program {
  display: inline-block;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  color: #ffffff;
  padding: 16px 48px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 116, 218, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-request-program:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 116, 218, 0.4);
  background: linear-gradient(135deg, #1E88E5, #0A74DA);
}

/* Адаптивность */
@media (max-width: 968px) {
  .keynote-timeline::before {
    left: 50px;
  }
  
  .keynote-card {
    width: calc(100% - 100px);
    margin-left: 100px !important;
    margin-right: 0 !important;
  }
  
  .keynote-card::before {
    right: auto !important;
    left: -60px !important;
    width: 60px !important;
    background: linear-gradient(to right, #0A74DA, transparent) !important;
  }
  
  .keynote-card::after {
    right: auto !important;
    left: -66px !important;
  }
  
  .session-marker {
    left: 50px;
  }
}

@media (max-width: 768px) {
  .keynote-timeline::before {
    left: 30px;
  }
  
  .keynote-card {
    width: calc(100% - 80px);
    margin-left: 80px !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px;
  }
  
  .keynote-card::before {
    left: -50px !important;
    width: 50px !important;
  }
  
  .keynote-card::after {
    left: -56px !important;
  }
  
  .session-marker {
    left: 30px;
  }
  
  .session-time-badge {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .session-title {
    font-size: 22px;
  }
  
  .keynote-topic {
    font-size: 16px;
  }
  
  .keynote-highlight {
    text-align: left;
  }
}

/* ========== МОДАЛЬНАЯ ФОРМА ЗАПРОСА ПРОГРАММЫ ========== */
.program-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  animation: fadeIn 0.3s ease-out;
  overflow-y: auto;
  padding: 20px;
}

.program-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-modal-content {
  background: #ffffff;
  border-radius: 20px;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: fadeInUp 0.4s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.program-modal-header {
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  padding: 40px 30px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
}

.program-modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.program-modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.program-modal-icon {
  font-size: 48px;
  color: #ffffff;
  margin-bottom: 16px;
}

.program-modal-title {
  font-size: 26px;
  color: #ffffff;
  margin: 0 0 12px 0;
  font-weight: 600;
}

.program-modal-subtitle {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  line-height: 1.6;
}

.program-modal-body {
  padding: 40px 30px;
}

.program-form-group {
  margin-bottom: 24px;
}

.program-form-label {
  display: block;
  font-size: 14px;
  color: #1a2a3a;
  font-weight: 600;
  margin-bottom: 8px;
}

.program-form-label .required {
  color: #e74c3c;
  margin-left: 4px;
}

.program-form-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e1e8ed;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Georgia', serif;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.program-form-input:focus {
  outline: none;
  border-color: #0A74DA;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(10, 116, 218, 0.1);
}

.program-form-input::placeholder {
  color: #9ca3af;
}

.program-form-note {
  font-size: 12px;
  color: #6b7280;
  margin-top: 16px;
  line-height: 1.6;
  padding: 12px;
  background: #f0f4f8;
  border-radius: 8px;
  border-left: 3px solid #0A74DA;
}

.program-form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(10, 116, 218, 0.3);
  letter-spacing: 0.5px;
}

.program-form-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 116, 218, 0.4);
}

.program-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.program-form-message {
  display: none;
  padding: 16px;
  border-radius: 10px;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
}

.program-form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.program-form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

@media (max-width: 576px) {
  .program-modal-content {
    border-radius: 16px;
  }
  
  .program-modal-header {
    padding: 30px 20px;
  }
  
  .program-modal-title {
    font-size: 22px;
  }
  
  .program-modal-body {
    padding: 30px 20px;
  }
}

/* ========== БЛОК "КОМУ СТОИТ ПРИЙТИ" ========== */
.target-audience-section {
  background: linear-gradient(135deg, #0d1b2a 0%, #1a2a3a 100%);
  color: #ffffff;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.target-audience-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(10,116,218,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(10,116,218,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.target-audience-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.target-audience-intro {
  text-align: center;
  margin-bottom: 60px;
}

.target-audience-badge {
  display: inline-block;
  background: rgba(10, 116, 218, 0.2);
  border: 1px solid rgba(10, 116, 218, 0.4);
  color: #E3F2FD;
  padding: 10px 24px;
  border-radius: 20px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
}

.target-audience-title {
  font-size: 42px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.target-audience-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.audience-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.audience-group {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(10, 116, 218, 0.3);
  border-radius: 20px;
  padding: 40px 36px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.audience-group:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #0A74DA;
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(10, 116, 218, 0.3);
}

.audience-group-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(10, 116, 218, 0.3);
}

.audience-group-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 20px 0;
  color: #ffffff;
}

.audience-price {
  font-size: 14px;
  color: rgba(243, 244, 246, 0.92);
  margin: 0 0 16px 0;
  font-weight: 500;
}

.audience-group-description {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin: 0 0 28px 0;
}

.audience-criteria-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.audience-criteria-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.audience-criteria-item:last-child {
  border-bottom: none;
}

.audience-criteria-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(10, 116, 218, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0A74DA;
  font-size: 12px;
  margin-top: 2px;
}

.audience-criteria-text {
  flex: 1;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.audience-criteria-text strong {
  color: #ffffff;
  font-weight: 600;
}

.audience-note {
  margin-top: 32px;
  padding: 20px 24px;
  background: rgba(231, 76, 60, 0.1);
  border: 1px solid rgba(231, 76, 60, 0.3);
  border-radius: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.audience-note-icon {
  color: #e74c3c;
  margin-right: 8px;
}

.audience-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 30px;
  background: rgba(10, 116, 218, 0.1);
  border: 2px dashed rgba(10, 116, 218, 0.4);
  border-radius: 20px;
}

.audience-cta-title {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 16px 0;
  color: #ffffff;
}

.audience-cta-text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 30px 0;
  line-height: 1.7;
}

.btn-audience-register {
  display: inline-block;
  background: #ffffff;
  color: #0A74DA;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.btn-audience-register:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
  background: #E3F2FD;
}

/* Адаптивность */
@media (max-width: 968px) {
  .audience-groups {
    grid-template-columns: 1fr;
  }
  
  .target-audience-title {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .target-audience-section {
    padding: 60px 00px;
  }
  
  .target-audience-title {
    font-size: 28px;
  }
  
  .target-audience-subtitle {
    font-size: 16px;
  }
  
  .audience-group {
    padding: 30px 24px;
  }
  
  .audience-group-title {
    font-size: 22px;
  }
}

/* ========== CTA БЛОК "СТАТЬ СПИКЕРОМ" ========== */
.become-speaker-cta {
  text-align: center;
  margin-top: 60px;
  padding: 50px 30px;
  background: linear-gradient(135deg, #f0f4f8, #e1e8ed);
  border-radius: 20px;
  border: 2px dashed #0A74DA;
  position: relative;
  overflow: hidden;
}

.become-speaker-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(10, 116, 218, 0.05) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.become-speaker-cta-content {
  position: relative;
  z-index: 1;
}

.become-speaker-icon {
  font-size: 48px;
  color: #0A74DA;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.become-speaker-title {
  font-size: 28px;
  color: #1a2a3a;
  margin: 0 0 16px 0;
  font-weight: 600;
}

.become-speaker-subtitle {
  font-size: 16px;
  color: #6b7280;
  margin: 0 0 30px 0;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-become-speaker {
  display: inline-block;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  color: #ffffff;
  padding: 18px 48px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 116, 218, 0.3);
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn-become-speaker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-become-speaker:hover::before {
  width: 300px;
  height: 300px;
}

.btn-become-speaker:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 116, 218, 0.4);
}

.btn-become-speaker i {
  margin-right: 10px;
  position: relative;
  z-index: 1;
}

.btn-become-speaker span {
  position: relative;
  z-index: 1;
}

@media (max-width: 768px) {
  .become-speaker-title {
    font-size: 24px;
  }
  
  .become-speaker-subtitle {
    font-size: 15px;
  }
  
  .btn-become-speaker {
    padding: 16px 36px;
    font-size: 16px;
  }
}

/* ========== КНОПКА "НАВЕРХ" ========== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(10, 116, 218, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: linear-gradient(135deg, #1E88E5, #0A74DA);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(10, 116, 218, 0.4);
}

.scroll-to-top:active {
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 18px;
  }
}

/* ========== ИНДИКАТОР ЗАГРУЗКИ ФОРМЫ ========== */
.form-loading {
  pointer-events: none;
  opacity: 0.7;
}

.form-loading button[type="submit"] {
  position: relative;
  padding-right: 50px;
}

.form-spinner {
  display: none;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ffffff;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.form-loading .form-spinner {
  display: block;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

.form-message {
  display: none;
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 8px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  animation: slideDown 0.3s ease;
}

.form-message.success {
  display: block;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.form-message.error {
  display: block;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== МОБИЛЬНОЕ МЕНЮ ========== */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  z-index: 10000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  box-shadow: 0 4px 16px rgba(10, 116, 218, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10, 116, 218, 0.4);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  padding: 20px;
  background: linear-gradient(135deg, #0A74DA, #1E88E5);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-mobile .logo-text {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 2px;
}

.logo-mobile .logo-accent {
  color: #FFC107;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
  flex: 1;
}

.mobile-menu-list li {
  margin: 0;
}

.mobile-menu-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  color: #1a2a3a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-menu-list a:hover {
  background: rgba(10, 116, 218, 0.08);
  border-left-color: #0A74DA;
  color: #0A74DA;
}

.mobile-menu-list a i {
  font-size: 18px;
  width: 24px;
  color: #0A74DA;
}

.mobile-menu-footer {
  padding: 20px;
  background: #f8f9fa;
  text-align: center;
  border-top: 1px solid #e1e8ed;
}

.mobile-menu-footer p {
  margin: 4px 0;
  color: #1a2a3a;
  font-size: 14px;
  font-weight: 600;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 280px;
  }

/* РџРѕРґСЃРєР°Р·РєРё РІ РїСЂРѕРіСЂР°РјРјРµ (data-title) */
.program-item div[data-title] { position: relative; }
.program-item div[data-title]:hover { background: rgba(10, 116, 218, 0.12); transform: translateX(3px); }
.program-item div[data-title]:hover::after {
  content: attr(data-title);
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  margin-top: 0;
  background: #0a1a2a;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.5;
  max-width: 350px;
  width: max-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2147483647;
  pointer-events: none;
  font-weight: normal;
  white-space: normal;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media (max-width: 768px) {
  .program-item div[data-title]:hover::after { max-width: 280px; }
}
