body { background: var(--bg); }

.hardship-banner {
  background: linear-gradient(135deg, #4B7BEC 0%, #6C8FF0 50%, #4B7BEC 100%);
  padding: 24px 16px 32px;
  color: white;
  position: relative;
  overflow: hidden;
}

.hardship-banner::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
}

.hardship-banner::after {
  content: '';
  position: absolute;
  bottom: -16px;
  left: 0;
  right: 0;
  height: 16px;
  background: var(--bg);
  border-radius: 16px 16px 0 0;
  z-index: 2;
}

.hardship-banner-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  position: relative;
  z-index: 3;
}

.hardship-banner-desc {
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.5;
  position: relative;
  z-index: 3;
}

.hardship-banner-features {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  position: relative;
  z-index: 3;
}

.hardship-banner-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  opacity: 0.9;
}

.hardship-banner-feat svg { width: 16px; height: 16px; }

.section { padding: 0 16px; margin-bottom: 16px; }

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0 10px;
}

.section-title { font-size: 16px; font-weight: 600; }

.section-more { font-size: 13px; color: var(--text-tertiary); }

.hardship-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hardship-type-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.hardship-type-card:active { transform: scale(0.97); }

.hardship-type-card.selected {
  border-color: var(--accent-blue);
  background: rgba(75,123,236,0.05);
}

.hardship-type-icon {
  font-size: 32px;
  margin-bottom: 8px;
}

.hardship-type-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.hardship-type-cert {
  font-size: 11px;
  color: var(--text-tertiary);
}

.hardship-form-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.hardship-form-group {
  margin-bottom: 16px;
}

.hardship-form-group:last-child {
  margin-bottom: 0;
}

.hardship-form-label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.hardship-form-label .required {
  color: var(--accent-red);
  font-size: 16px;
}

.hardship-form-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color 0.2s;
}

.hardship-form-input:focus {
  border-color: var(--accent-blue);
  background: var(--bg-white);
}

.hardship-form-input::placeholder {
  color: var(--text-tertiary);
}

.hardship-form-textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-primary);
  background: var(--bg);
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.2s;
}

.hardship-form-textarea:focus {
  border-color: var(--accent-blue);
  background: var(--bg-white);
}

.hardship-form-textarea::placeholder {
  color: var(--text-tertiary);
}

.hardship-upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  background: var(--bg);
  transition: all 0.2s;
  cursor: pointer;
}

.hardship-upload-area:active {
  border-color: var(--accent-blue);
  background: rgba(75,123,236,0.03);
}

.hardship-upload-icon {
  font-size: 32px;
  margin-bottom: 8px;
  opacity: 0.5;
}

.hardship-upload-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.hardship-upload-hint {
  font-size: 12px;
  color: var(--text-tertiary);
}

.hardship-upload-preview {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.hardship-upload-item {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  background: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  position: relative;
}

.hardship-upload-item .remove {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--accent-red);
  color: white;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hardship-benefits {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
}

.hardship-benefit-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
}

.hardship-benefit-row + .hardship-benefit-row {
  border-top: 1px solid var(--border-light);
}

.hardship-benefit-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hardship-benefit-icon.free { background: rgba(38,222,129,0.1); }
.hardship-benefit-icon.priority { background: rgba(75,123,236,0.1); }
.hardship-benefit-icon.subsidy { background: rgba(255,184,0,0.1); }
.hardship-benefit-icon.support { background: rgba(46,196,182,0.1); }

.hardship-benefit-info { flex: 1; }

.hardship-benefit-title { font-size: 14px; font-weight: 500; }

.hardship-benefit-desc { font-size: 12px; color: var(--text-tertiary); margin-top: 2px; }

.hardship-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: calc(100% - 32px);
  margin: 16px auto;
  padding: 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #4B7BEC 0%, #6C8FF0 100%);
  color: white;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(75,123,236,0.3);
  transition: transform 0.2s;
  margin-bottom: 24px;
}

.hardship-submit-btn:active { transform: scale(0.97); }

.hardship-submit-btn svg { width: 18px; height: 18px; }

.hardship-status-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.hardship-status-icon {
  font-size: 48px;
  margin-bottom: 12px;
}

.hardship-status-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hardship-status-title.reviewing { color: var(--accent-gold); }
.hardship-status-title.approved { color: var(--accent-green); }
.hardship-status-title.rejected { color: var(--accent-red); }

.hardship-status-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.hardship-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
}

.hardship-status-badge.reviewing {
  background: rgba(255,184,0,0.1);
  color: #D4960A;
}

.hardship-status-badge.approved {
  background: rgba(38,222,129,0.1);
  color: var(--accent-green);
}

.hardship-tip {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(75,123,236,0.08);
  border-radius: var(--radius-md);
  margin: 0 16px 16px;
}

.hardship-tip svg { width: 16px; height: 16px; color: var(--accent-blue); flex-shrink: 0; margin-top: 1px; }

.hardship-tip p { font-size: 12px; color: var(--text-secondary); line-height: 1.5; }