.claim-page .section {
  padding-top: 96px;
  padding-bottom: 64px;
}

.claim-wrap {
  max-width: 720px;
  margin: 0 auto;
}

.claim-hero {
  margin-bottom: 28px;
}

.claim-hero h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
}

.claim-hero p {
  color: var(--tw-muted, #666);
  line-height: 1.6;
  margin: 0;
}

.claim-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 28px;
}

.claim-step-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 8px;
  border-radius: 12px;
  border: 1px solid var(--border, #e5e5e5);
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.claim-step-pill:hover:not(.locked) {
  border-color: rgba(232, 33, 39, 0.25);
  color: #e82127;
}

.claim-step-pill.active {
  border-color: rgba(232, 33, 39, 0.35);
  background: #fef2f2;
  color: #e82127;
}

.claim-step-pill.done {
  border-color: rgba(5, 150, 105, 0.25);
  background: #ecfdf5;
  color: #059669;
}

.claim-step-pill.locked {
  opacity: 0.45;
  pointer-events: none;
  cursor: default;
}

.claim-step-pill span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-top: 4px;
  opacity: 0.85;
}

.claim-card {
  background: #fff;
  border: 1px solid var(--border, #ececec);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.claim-card h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
}

.claim-card-intro {
  color: var(--tw-muted, #666);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.claim-card.locked {
  opacity: 0.55;
  pointer-events: none;
}

.claim-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.claim-grid .full {
  grid-column: 1 / -1;
}

.claim-grid label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.claim-grid input,
.claim-grid select,
.claim-grid textarea,
.claim-card select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border, #ddd);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

.claim-grid textarea {
  min-height: 96px;
  resize: vertical;
}

.claim-pin-row {
  max-width: 280px;
  margin-bottom: 20px;
}

.claim-choice-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.claim-summary {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.7;
}

.claim-summary strong {
  display: block;
  margin-bottom: 4px;
}

.claim-fee-box {
  background: #fafafa;
  border: 1px solid #ececec;
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 20px;
}

.claim-fee-box ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: #555;
  font-size: 14px;
  line-height: 1.7;
}

.claim-fee-amount {
  font-size: 15px;
  color: #444;
  margin-top: 12px;
}

.claim-fee-note {
  margin: 10px 0 0;
  color: #555;
  font-size: 14px;
  line-height: 1.65;
}

.claim-fee-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 14px;
  font-size: 14px;
}

.claim-fee-table th,
.claim-fee-table td {
  padding: 10px 0;
  border-bottom: 1px solid #ececec;
  text-align: left;
  vertical-align: top;
}

.claim-fee-table td:last-child,
.claim-fee-table th:last-child {
  text-align: right;
  white-space: nowrap;
  padding-left: 16px;
}

.claim-fee-table tfoot td {
  border-bottom: none;
  padding-top: 14px;
  font-size: 15px;
}

.claim-step-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.claim-status-actions {
  margin: 16px 0 4px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.claim-status-msg {
  color: var(--tw-muted, #666);
  line-height: 1.7;
  margin-top: 12px;
}

@media (max-width: 640px) {
  .claim-steps {
    grid-template-columns: 1fr 1fr;
  }

  .claim-grid {
    grid-template-columns: 1fr;
  }
}
