/* ===== IMPORTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --primary-bg: #e0f2fe;
  --primary-bg-light: #f0f9ff;
  --accent: #06b6d4;
  --success: #10b981;
  --success-light: #d1fae5;
  --warning: #f59e0b;
  --danger: #ef4444;
  --danger-light: #fee2e2;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --bg-body: #f0f9ff;
  --bg-card: #ffffff;
  --border-color: #e2e8f0;
  --border-focus: #0ea5e9;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 40px -5px rgba(14, 165, 233, 0.15), 0 8px 16px -8px rgba(0, 0, 0, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== BACKGROUND DECORATION ===== */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(6, 182, 212, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ===== MAIN CONTAINER ===== */
.form-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px 48px;
}

/* ===== BANNER ===== */
.banner {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 0;
  position: relative;
}

.banner img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

/* ===== FORM HEADER ===== */
.form-header {
  background: var(--bg-card);
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  padding: 32px 36px 28px;
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-lg);
  margin-bottom: 24px;
  position: relative;
}

.form-header h1 {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.form-header .required-note {
  color: var(--danger);
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.form-header .required-note::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--danger);
  border-radius: 50%;
}

/* ===== STEPPER ===== */
.stepper {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.stepper-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.stepper-track::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--border-color);
  border-radius: 2px;
  z-index: 0;
}

.stepper-progress {
  position: absolute;
  top: 20px;
  left: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 2px;
  z-index: 1;
  transition: width var(--transition-slow);
  width: 0%;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  background: var(--bg-card);
  border: 3px solid var(--border-color);
  color: var(--text-muted);
  transition: all var(--transition-base);
  position: relative;
}

.step-item.active .step-circle {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-bg);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.15);
  transform: scale(1.1);
}

.step-item.completed .step-circle {
  border-color: var(--success);
  background: var(--success);
  color: white;
}

.step-item.completed .step-circle .step-number {
  display: none;
}

.step-item.completed .step-circle .step-check {
  display: block;
}

.step-check {
  display: none;
  font-size: 1rem;
}

.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  max-width: 90px;
  transition: color var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.step-item.active .step-label {
  color: var(--primary);
}

.step-item.completed .step-label {
  color: var(--success);
}

/* ===== FORM STEPS ===== */
.form-step {
  display: none;
  animation: fadeSlideIn 0.5s ease forwards;
}

.form-step.active {
  display: block;
}

@keyframes fadeSlideIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeSlideOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-16px);
  }
}

.form-step.exiting {
  animation: fadeSlideOut 0.3s ease forwards;
}

/* ===== FORM CARDS ===== */
.form-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.form-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
  transition: background var(--transition-base);
  border-radius: 0 2px 2px 0;
}

.form-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(14, 165, 233, 0.1);
}

.form-card:focus-within {
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 165, 233, 0.2);
}

.form-card:focus-within::before {
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

/* ===== FORM LABELS ===== */
.form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.4;
}

.form-label .required {
  color: var(--danger);
  margin-left: 2px;
  font-weight: 700;
}

.form-label .optional-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--primary-bg-light);
  padding: 2px 8px;
  border-radius: 10px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ===== TEXT INPUTS ===== */
.form-input {
  width: 100%;
  padding: 12px 0;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-color);
  outline: none;
  transition: all var(--transition-base);
}

.form-input::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.form-input:focus {
  border-bottom-color: var(--primary);
}

.form-input:focus::placeholder {
  color: transparent;
}

/* Floating label effect */
.input-wrapper {
  position: relative;
}

.input-wrapper .floating-label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all var(--transition-base);
  font-weight: 400;
}

.input-wrapper .form-input:focus ~ .floating-label,
.input-wrapper .form-input:not(:placeholder-shown) ~ .floating-label {
  top: -8px;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
}

/* ===== TEXTAREA ===== */
.form-textarea {
  width: 100%;
  padding: 12px 0;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-color);
  outline: none;
  resize: vertical;
  min-height: 60px;
  transition: all var(--transition-base);
}

.form-textarea:focus {
  border-bottom-color: var(--primary);
}

.form-textarea::placeholder {
  color: var(--text-muted);
}

/* ===== RADIO BUTTONS ===== */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.radio-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
}

.radio-option:hover {
  background: var(--primary-bg-light);
}

.radio-option input[type="radio"] {
  display: none;
}

.radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-muted);
  border-radius: 50%;
  margin-right: 14px;
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.radio-custom::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.radio-option input[type="radio"]:checked ~ .radio-custom {
  border-color: var(--primary);
}

.radio-option input[type="radio"]:checked ~ .radio-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.radio-option input[type="radio"]:checked ~ .radio-text {
  color: var(--text-primary);
  font-weight: 500;
}

.radio-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

/* ===== CHECKBOXES ===== */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.checkbox-option:hover {
  background: var(--primary-bg-light);
}

.checkbox-option input[type="checkbox"] {
  display: none;
}

.checkbox-custom {
  width: 22px;
  height: 22px;
  border: 2px solid var(--text-muted);
  border-radius: 5px;
  margin-right: 14px;
  position: relative;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.checkbox-custom::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  transition: transform var(--transition-fast);
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-custom::after {
  transform: translate(-50%, -50%) scale(1);
}

.checkbox-option input[type="checkbox"]:checked ~ .checkbox-text {
  color: var(--text-primary);
  font-weight: 500;
}

.checkbox-text {
  font-size: 0.92rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

/* Checkbox with text input (Yang lain) */
.checkbox-other-wrapper {
  display: flex;
  align-items: center;
  flex: 1;
}

.checkbox-other-input {
  border: none;
  border-bottom: 1px solid var(--border-color);
  padding: 4px 8px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--text-primary);
  background: transparent;
  outline: none;
  flex: 1;
  margin-left: 4px;
  transition: border-color var(--transition-fast);
}

.checkbox-other-input:focus {
  border-bottom-color: var(--primary);
}

/* ===== DATE INPUT ===== */
.date-wrapper {
  position: relative;
}

.date-label-small {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-date {
  padding: 12px 0;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text-primary);
  background: transparent;
  border: none;
  border-bottom: 2px solid var(--border-color);
  outline: none;
  transition: all var(--transition-base);
  cursor: pointer;
}

.form-date:focus {
  border-bottom-color: var(--primary);
}

/* ===== NAVIGATION BUTTONS ===== */
.form-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 28px;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 0.92rem;
  font-family: inherit;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn:active {
  transform: scale(0.97);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.45);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0) scale(0.97);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-secondary);
  border: 2px solid var(--border-color);
}

.btn-secondary:hover {
  border-color: var(--primary-light);
  color: var(--primary);
  background: var(--primary-bg-light);
}

.btn-submit {
  background: linear-gradient(135deg, var(--success), #059669);
  color: white;
  box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-submit:hover {
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.45);
  transform: translateY(-1px);
}

.btn-icon {
  font-size: 1.1rem;
  transition: transform var(--transition-fast);
}

.btn-primary:hover .btn-icon-right {
  transform: translateX(3px);
}

.btn-secondary:hover .btn-icon-left {
  transform: translateX(-3px);
}

.nav-spacer {
  flex: 1;
}

/* ===== VALIDATION ===== */
.form-card.error {
  border-color: rgba(239, 68, 68, 0.3);
}

.form-card.error::before {
  background: var(--danger);
}

.error-message {
  display: none;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 8px;
  padding-left: 2px;
  animation: shakeError 0.4s ease;
}

.form-card.error .error-message {
  display: flex;
  align-items: center;
  gap: 4px;
}

.error-message::before {
  content: '⚠';
  font-size: 0.85rem;
}

@keyframes shakeError {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  50% { transform: translateX(6px); }
  75% { transform: translateX(-4px); }
}

/* ===== SUCCESS SCREEN ===== */
.success-screen {
  display: none;
  text-align: center;
  padding: 60px 36px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.success-screen.active {
  display: block;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.success-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--success), #059669);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
  animation: checkBounce 0.6s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes checkBounce {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.success-screen h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.success-screen p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
  line-height: 1.6;
}

.token-box {
  background: var(--primary-bg);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.token-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.token-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: 2px;
  margin-bottom: 12px;
  word-break: break-all;
}

.token-help {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.success-actions .btn {
  padding: 12px 24px;
}

/* ===== STEP INFO HEADER ===== */
.step-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary-bg);
}

.step-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary-bg), var(--primary-bg-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.step-info-text h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
}

.step-info-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .form-container {
    padding: 12px 8px 32px;
  }

  .banner img {
    height: 150px;
  }

  .form-header {
    padding: 24px 20px 20px;
  }

  .form-header h1 {
    font-size: 1.3rem;
  }

  .stepper {
    padding: 20px 16px;
  }

  .step-label {
    font-size: 0.65rem;
    max-width: 70px;
  }

  .step-circle {
    width: 34px;
    height: 34px;
    font-size: 0.8rem;
  }

  .stepper-track::before,
  .stepper-progress {
    top: 17px;
    left: 34px;
    right: 34px;
  }

  .form-card {
    padding: 20px 18px;
  }

  .form-navigation {
    flex-wrap: wrap;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ===== LOADING SPINNER ===== */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== TOOLTIP ===== */
.form-card .tooltip {
  display: inline-block;
  margin-left: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  line-height: 18px;
  cursor: help;
  position: relative;
  vertical-align: middle;
}

.form-card .tooltip:hover::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-primary);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 400;
  white-space: nowrap;
  z-index: 10;
  box-shadow: var(--shadow-md);
}

/* ===== FOOTER ===== */
.form-footer {
  text-align: center;
  margin-top: 32px;
  padding: 16px;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.form-footer a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.form-footer a:hover {
  text-decoration: underline;
}

/* ===== REVIEW SECTION ===== */
.review-section {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.review-section:hover {
  box-shadow: var(--shadow-md);
}

.review-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: linear-gradient(135deg, var(--primary-bg), var(--primary-bg-light));
  border-bottom: 1px solid var(--border-color);
}

.review-section-header h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0;
}

.btn-edit {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-family: inherit;
  font-weight: 600;
  color: var(--primary);
  background: var(--bg-card);
  border: 1.5px solid var(--primary-light);
  border-radius: 20px;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-edit:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
}

.review-grid {
  padding: 8px 28px 16px;
}

.review-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  gap: 16px;
}

.review-item:last-child {
  border-bottom: none;
}

.review-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  min-width: 140px;
  flex-shrink: 0;
}

.review-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
  word-break: break-word;
  flex: 1;
}

@media (max-width: 640px) {
  .review-section-header {
    padding: 14px 18px;
  }

  .review-grid {
    padding: 6px 18px 12px;
  }

  .review-item {
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }

  .review-value {
    text-align: left;
  }

  .review-label {
    min-width: unset;
  }
}
