.pt-hero {
  background: linear-gradient(120deg, #0f172a, #f97316);
  color: #ffffff;
  padding: 52px 0 42px;
}

.pt-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
}

.pt-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: #fed7aa;
  margin-bottom: 10px;
}

.pt-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pt-meta span {
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.pt-hero-card {
  background: rgba(30, 41, 59, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  padding: 24px;
}

.pt-hero-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #ffffff;
  color: #ea580c;
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-bottom: 12px;
}

.pt-main {
  padding: 46px 0 70px;
}

.pt-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.35fr) minmax(0, 1fr);
  gap: 32px;
}

.pt-tool-card,
.pt-section,
.pt-sidebar-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.pt-dropzone {
  border: 2px dashed #fed7aa;
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  margin: 20px 0;
  background: #fff7ed;
}

.pt-dropzone.dragging {
  border-color: #ea580c;
  background: #ffedd5;
}

.pt-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

.pt-results {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #f8fafc;
  padding: 18px;
  min-height: 150px;
}

.pt-job {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr 0.6fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.pt-job:last-child {
  border-bottom: none;
}

.pt-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pt-status.pending {
  background: rgba(249, 115, 22, 0.2);
  color: #c2410c;
}

.pt-status.done {
  background: rgba(134, 239, 172, 0.35);
  color: #166534;
}

.pt-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

.pt-feature-grid article {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 18px;
  padding: 16px;
}

.pt-faq-item + .pt-faq-item {
  margin-top: 12px;
}

.pt-faq-question {
  width: 100%;
  text-align: left;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px 14px;
  background: #fff7ed;
  font-weight: 600;
  cursor: pointer;
  position: relative;
}

.pt-faq-question::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.pt-faq-item.open .pt-faq-question::after {
  content: "-";
}

.pt-faq-answer {
  display: none;
  padding: 12px 4px 4px;
  color: #475569;
}

.pt-faq-item.open .pt-faq-answer {
  display: block;
}

.pt-sidebar-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pt-sidebar-ad {
  border: 1px dashed #fed7aa;
  border-radius: 18px;
  padding: 36px 18px;
  text-align: center;
  color: #94a3b8;
}

@media (max-width: 960px) {
  .pt-hero-inner,
  .pt-grid,
  .pt-job {
    grid-template-columns: 1fr;
  }

  .pt-actions {
    flex-direction: column;
  }
}
