.document-scan-landing {
  --ds-bg: #f4f6fb;
  --ds-card: #ffffff;
  --ds-text: #141822;
  --ds-muted: #64748b;
  --ds-accent: #f5ad4f;
  --ds-border: #e2e8f0;
  --ds-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  margin: 1.5rem 0 1.25rem;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--ds-text);
  line-height: 1.45;
}

.document-scan-landing__card {
  background: var(--ds-card);
  border-radius: 16px;
  box-shadow: var(--ds-shadow);
  padding: 20px 18px 22px;
}

.document-scan-landing__title {
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  line-height: 1.25;
}

.document-scan-landing__subtitle {
  margin: 0 0 16px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.35;
  color: var(--ds-muted);
}

.document-scan-landing__details {
  background: #f8fafc;
  border: 1px solid var(--ds-border);
  border-radius: 14px;
  padding: 12px 14px;
  margin: 0 0 12px;
}

.document-scan-landing__details summary {
  cursor: pointer;
  font-weight: 650;
  font-size: 15px;
  list-style: none;
}

.document-scan-landing__details summary::-webkit-details-marker {
  display: none;
}

.document-scan-landing__details summary::after {
  content: "Свернуть";
  float: right;
  font-weight: 500;
  font-size: 13px;
  color: var(--ds-muted);
}

.document-scan-landing__details:not([open]) summary::after {
  content: "Развернуть";
}

.document-scan-landing__details ol {
  margin: 10px 0 0;
  padding-left: 1.2rem;
  color: #334155;
  font-size: 14px;
}

.document-scan-landing__details li + li {
  margin-top: 6px;
}

.document-scan-landing__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 18px;
  text-align: center;
}

.document-scan-landing__add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--ds-accent);
  color: #141822 !important;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  box-shadow: 0 8px 20px rgba(245, 173, 79, 0.35);
  cursor: pointer;
}

.document-scan-landing__add-btn:hover {
  filter: brightness(0.97);
}

.document-scan-landing__hint {
  margin: 10px 0 18px;
  font-size: 13px;
  color: var(--ds-muted);
}

.document-scan-landing__scan-circle {
  display: block;
  width: 112px;
  height: 112px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  animation: document-scan-pulse 1.8s infinite;
  cursor: pointer;
}

.document-scan-landing__scan-circle img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.document-scan-landing__scan-lead {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 600;
}

@keyframes document-scan-pulse {
  0% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(245, 173, 79, 0.55);
  }
  70% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 16px rgba(245, 173, 79, 0);
  }
  100% {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2), 0 0 0 0 rgba(245, 173, 79, 0);
  }
}
