/* =========================
   TOOL WRAPPER
========================= */

.tool-wrapper {
  max-width: 960px;
  margin: 50px auto 90px;
  padding: 0 20px;
}

/* =========================
   TITLE
========================= */

.tool-title {
  font-size: 38px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 6px;
}

.tool-title span {
  color: var(--primary);
}

.tool-subtitle {
  text-align: center;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 36px;
}

/* =========================
   UPLOAD CARD
========================= */

.upload-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 60px;
  text-align: center;
}

.upload-box {
  border: 2px dashed var(--border);
  border-radius: 14px;
  padding: 36px 20px;
  cursor: pointer;
  margin-bottom: 24px;
}

.upload-box p {
  font-size: 16px;
  color: var(--text);
}

.upload-box span {
  font-size: 14px;
  color: var(--muted);
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.btn {
  padding: 14px 28px;
  font-size: 15px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background: var(--primary);
  color: white;
}

.btn.secondary {
  background: #eef2ff;
  color: var(--primary);
  text-decoration: none;
}

.hidden {
  display: none;
}

/* =========================
   ABOUT TOOL
========================= */

.tool-info {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
}

.tool-info h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.tool-info p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
}

/* =========================
   FULL WIDTH INFO SECTIONS
========================= */

.tool-info-section {
  width: 100%;
  padding: 80px 20px;
  background: #ffffff;
}

.tool-info-section.alt {
  background: #f8fafc;
}

.tool-info-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.tool-info-text {
  max-width: 560px;
}

.tool-info-text h2 {
  font-size: 34px;
  margin-bottom: 18px;
}

.tool-info-text p {
  font-size: 18px;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 14px;
}

.tool-info-wrapper img {
  width: 420px;
  max-width: 100%;
}

/* =========================
   SERVICES LIST
========================= */

.fc-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fc-service-list li {
  margin-bottom: 12px;
}

.fc-service-list a {
  font-size: 18px;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.fc-service-list a:hover {
  text-decoration: underline;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 900px) {
  .tool-info-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .tool-info-wrapper img {
    width: 280px;
  }

  .tool-title {
    font-size: 30px;
  }
}
