.autoplay-import-page {
  max-width: 940px;
  margin: 0 auto;
}

.autoplay-import-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.autoplay-import-header h1 {
  margin: 5px 0 8px;
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.04em;
}

.autoplay-import-header p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.55;
}

.autoplay-import-card {
  padding: 26px;
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.08), transparent 25rem),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.autoplay-import-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.autoplay-import-step > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  border-radius: 10px;
  background: var(--navy-soft);
  color: #fff;
  font-weight: 900;
}

.autoplay-import-step div {
  display: grid;
  gap: 2px;
}

.autoplay-import-step strong {
  font-size: 15px;
}

.autoplay-import-step small {
  color: var(--text-muted);
}

.autoplay-import-form {
  margin: 18px 0 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.autoplay-import-input {
  width: 100%;
  min-height: 280px;
  margin: 0;
  padding: 18px;
  resize: vertical;
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--text);
  font: 14px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.autoplay-import-input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  outline: none;
}

.autoplay-import-destination {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.autoplay-import-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.autoplay-import-option {
  width: 100%;
  min-height: 94px;
  margin: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.autoplay-import-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.autoplay-import-option > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.autoplay-import-option strong {
  font-size: 16px;
}

.autoplay-import-option small {
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.35;
}

.autoplay-import-option-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
}

.autoplay-import-follow-up:hover {
  border-color: #f1c36d;
}

.autoplay-import-follow-up .autoplay-import-option-icon {
  background: var(--amber-soft);
  color: var(--amber);
}

.autoplay-import-appointment:hover {
  border-color: #c4b5fd;
}

.autoplay-import-appointment .autoplay-import-option-icon {
  background: var(--purple-soft);
  color: var(--purple);
}

.autoplay-import-arrow {
  color: var(--text-muted);
  font-size: 20px;
}

.autoplay-import-privacy {
  margin: 16px 0 0;
  color: var(--text-muted);
  text-align: center;
  font-size: 13px;
}

@media (max-width: 700px) {
  .autoplay-import-header {
    flex-direction: column;
  }

  .autoplay-import-card {
    padding: 20px 16px;
  }

  .autoplay-import-options {
    grid-template-columns: 1fr;
  }
}
