  /* Кнопка вызова */
  .launch-btn {
      background: #1e3c72;
      border: none;
      color: white;
      font-size: 1.3rem;
      font-weight: 500;
      padding: 12px 28px;
      border-radius: 48px;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: background 0.2s;
      letter-spacing: 0.5px;
  }

  .launch-btn:hover {
      background: #0f2a4a;
  }

  /* Затемнённый фон (оверлей) */
  .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.75);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 1000;
      backdrop-filter: blur(2px);
      font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  }

  /* Модальное окно */
  .modal-container {
      background: white;
      max-width: 520px;
      width: 90%;
      border-radius: 28px;
      box-shadow: 0 25px 40px rgba(0, 0, 0, 0.25);
      overflow: hidden;
      transition: all 0.2s ease;
      animation: fadeSlideUp 0.2s ease-out;
  }

  @keyframes fadeSlideUp {
      from {
          opacity: 0;
          transform: translateY(12px);
      }

      to {
          opacity: 1;
          transform: translateY(0);
      }
  }

  /* Область картинки */
  .image-area {
      padding: 12px;
      text-align: center;
      background: #ffffff;
  }

  .tour-img {
      width: 100%;
      max-height: 320px;
      object-fit: cover;
      border-radius: 20px;
      display: block;
      margin: 0 auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
      background: #f5f7fa;
  }

  /* Индикатор шага */
  .step-counter {
      text-align: center;
      font-size: 0.85rem;
      color: #4b5563;
      background: #f9fafb;
      padding: 8px 0 4px 0;
      letter-spacing: 0.3px;
      font-weight: 500;
  }

  /* Блок кнопок */
  .button-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 28px 28px 28px;
      background: white;
      border-top: 1px solid #eef2f6;
  }

  .nav-btn {
      font-size: 1rem;
      font-weight: 600;
      padding: 10px 24px;
      border-radius: 60px;
      border: none;
      cursor: pointer;
      transition: all 0.2s;
      background: #f1f3f7;
      color: #1f2a44;
      min-width: 100px;
  }

  .nav-btn.primary-btn {
      background: #1e3c72;
      color: white;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  }

  .nav-btn.primary-btn:hover {
      background: #0f2f54;
      transform: scale(0.97);
  }

  .nav-btn:active {
      transform: scale(0.96);
  }

  .nav-btn:disabled {
      opacity: 0.45;
      cursor: not-allowed;
      transform: none;
      background: #e2e8f0;
      color: #5c6b7e;
  }

  /* кнопка "Назад" всегда левее — flex обеспечивает это */
  /* адаптивность */
  @media (max-width: 480px) {
      .modal-container {
          width: 95%;
      }

      .nav-btn {
          padding: 8px 18px;
          min-width: 80px;
          font-size: 0.9rem;
      }

      .image-area {
          padding: 20px 18px 10px 18px;
      }

      .button-bar {
          padding: 16px 20px 24px 20px;
      }
  }