.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.hero-card {
  max-width: 760px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.hero-card h1 {
  font-size: 30px;
  margin-bottom: 10px;
}

.hero-card .subtext {
  line-height: 1.7;
}

.form-card {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row label {
  font-weight: 600;
  color: #374151;
}

.form-row input,
.free-ask-box textarea,
.reflection-box textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.free-ask-box textarea:focus,
.reflection-box textarea:focus {
  outline: none;
  border-color: #60a5fa;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
}

.btn {
  border: none;
  border-radius: 10px;
  padding: 10px 18px;
  cursor: pointer;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  opacity: 0.95;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: #2563eb;
  color: #ffffff;
}

.btn-secondary {
  background: #e5e7eb;
  color: #111827;
}

.message-box {
  margin-top: 16px;
  padding: 12px;
  border-radius: 10px;
  background: #eef2ff;
  color: #1e3a8a;
}

.point-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.point-item {
  padding: 10px 12px;
  border-radius: 10px;
  background: #f3f4f6;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.point-item:hover {
  background: #e5e7eb;
}

.point-item.active {
  background: #dbeafe;
  border-color: #93c5fd;
}

.qa-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qa-item {
  padding: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  background: #ffffff;
}

.answer-box {
  margin-top: 10px;
  padding: 10px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  line-height: 1.7;
}

.verify-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}

.verify-option {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  cursor: pointer;
  background: #ffffff;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.verify-option:hover {
  border-color: #93c5fd;
  background: #f8fbff;
}

.verify-option.selected {
  border-color: #2563eb;
  background: #eff6ff;
}

.free-ask-box,
.reflection-box {
  display: flex;
  flex-direction: column;
}

.subtext {
  color: #6b7280;
}

.side-card {
  min-height: 120px;
}

.hero-result h1 {
  margin-bottom: 10px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 12px;
}

.screenshot-card img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.hotspot-wrap {
  margin-top: 12px;
}

.hotspot-item {
  transition: background 0.15s ease, border-color 0.15s ease;
}

.hotspot-item:hover {
  border-color: rgba(29, 78, 216, 1);
  background: rgba(37, 99, 235, 0.18);
}