.pill {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 14px;
  border: 1px solid rgba(var(--primary-rgb), 0.2);
  border-radius: 999px;
  background: rgba(var(--primary-rgb), 0.08);
  color: var(--primary-dark);
  font-size: 13px;
}

.card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  opacity: 0.8;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(var(--primary-rgb), 0.4);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

.card p {
  color: var(--muted);
}

.checklist {
  display: grid;
  max-width: 750px;
  margin-top: 20px;
  gap: 14px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--bg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.check-item:hover {
  transform: translateX(4px);
  border-color: rgba(var(--primary-rgb), 0.35);
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  border-radius: 6px;
  background: var(--primary);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

form {
  max-width: 520px;
  display: grid;
  gap: 14px;
}

input,
textarea {
  width: 100%;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  outline: none;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.12);
}

textarea {
  min-height: 192px;
  resize: vertical;
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 12px 16px;
  border: none;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: var(--bg);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--primary-dark);
}

@media (min-width: 768px) {
  textarea {
    min-height: 224px;
  }
}

@media (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
