/* ==============================================================================================
   DESIGN SYSTEM & STYLESHEET - ASESMEN ASNAF V2
   Proyek: Formulir Asesmen Asnaf & Profil Sosial Ekonomi (WJYIP x LAZ Percikan Iman x Creadin.co)
   Standar UI/UX Profesional: Modern Corporate & Philanthropic Design System
   ============================================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Primary Islamic Emerald Palette */
  --primary-950: #022c22;
  --primary-900: #064e3b;
  --primary-800: #065f46;
  --primary-700: #047857;
  --primary-600: #059669;
  --primary-500: #10b981;
  --primary-400: #34d399;
  --primary-200: #a7f3d0;
  --primary-100: #d1fae5;
  --primary-50:  #ecfdf5;

  /* Accent Amber / Gold */
  --accent-700:  #b45309;
  --accent-600:  #d97706;
  --accent-500:  #f59e0b;
  --accent-100:  #fef3c7;
  --accent-50:   #fffbeb;

  /* Slate & Neutrals */
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50:  #f8fafc;
  --white:     #ffffff;

  /* System Functional */
  --danger-600: #dc2626;
  --danger-500: #ef4444;
  --danger-100: #fee2e2;
  --danger-50:  #fef2f2;
  --success-600: #16a34a;
  --success-500: #22c55e;
  --success-100: #dcfce7;

  /* Radii & Shadows */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 2px 4px 0 rgba(15, 23, 42, 0.06);
  --shadow-md: 0 6px 12px -2px rgba(15, 23, 42, 0.08), 0 3px 6px -3px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 12px 24px -4px rgba(15, 23, 42, 0.1), 0 6px 12px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 20px 32px -6px rgba(15, 23, 42, 0.12), 0 10px 16px -8px rgba(15, 23, 42, 0.08);
}

/* Reset & Global */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f6f8fa;
  color: var(--slate-800);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

/* App Container */
.app-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px 20px 80px 20px;
}

/* Banner Top Section */
.banner-top-container {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--slate-200);
  margin-bottom: 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.banner-top-container:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--slate-300);
}

.banner-top-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* Lucide Icons & SVG Utility */
i[data-lucide], svg.lucide {
  display: inline-block;
  width: 20px;
  height: 20px;
  stroke-width: 2px;
  vertical-align: middle;
  stroke: currentColor;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.icon-xs, i[data-lucide].icon-xs, svg.lucide.icon-xs {
  width: 14px !important;
  height: 14px !important;
}

.icon-sm, i[data-lucide].icon-sm, svg.lucide.icon-sm {
  width: 16px !important;
  height: 16px !important;
}

.icon-md, i[data-lucide].icon-md, svg.lucide.icon-md {
  width: 20px !important;
  height: 20px !important;
}

.icon-lg, i[data-lucide].icon-lg, svg.lucide.icon-lg {
  width: 24px !important;
  height: 24px !important;
}

.icon-xl, i[data-lucide].icon-xl, svg.lucide.icon-xl {
  width: 32px !important;
  height: 32px !important;
}

.icon-2xl, i[data-lucide].icon-2xl, svg.lucide.icon-2xl {
  width: 40px !important;
  height: 40px !important;
}

/* Header & Brand Section */
.brand-header {
  background: linear-gradient(135deg, var(--primary-950) 0%, var(--primary-900) 45%, var(--primary-800) 100%);
  border-radius: var(--radius-xl);
  padding: 38px 32px;
  color: var(--white);
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.brand-header::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.brand-header::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.brand-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.badge-program {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  color: #fef08a;
  border: 1px solid rgba(254, 240, 138, 0.35);
}

.badge-partner {
  background-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.badge-creator {
  background-color: rgba(0, 0, 0, 0.3);
  color: var(--slate-300);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-header h1 {
  font-size: 1.95rem;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
  position: relative;
  z-index: 2;
}

.brand-header p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.brand-management-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 8px 18px;
  background-color: rgba(0, 0, 0, 0.28);
  border-radius: var(--radius-md);
  font-size: 0.83rem;
  color: #e2e8f0;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 2;
  line-height: 1.5;
}

.brand-management-info strong {
  color: #fef08a;
  font-weight: 700;
}

.puskas-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 6px 14px;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  font-size: 0.82rem;
  color: #a7f3d0;
  border: 1px solid rgba(167, 243, 208, 0.25);
  position: relative;
  z-index: 2;
}

/* Welcome Page Section */
.welcome-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-lg);
  padding: 40px 36px;
  margin-bottom: 28px;
  transition: all 0.3s ease;
}

.welcome-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px auto;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  background-color: var(--primary-50);
  color: var(--primary-700);
  border: 1.5px solid var(--primary-200);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.welcome-title {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--slate-900);
  line-height: 1.3;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.welcome-subtitle {
  font-size: 0.95rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.welcome-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.welcome-feature-card {
  background-color: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  transition: all 0.2s ease;
}

.welcome-feature-card:hover {
  background-color: var(--white);
  border-color: var(--primary-400);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.feature-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--primary-100);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.feature-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 8px;
}

.feature-desc {
  font-size: 0.84rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.welcome-info-strip {
  background-color: #f8fafc;
  border: 1px solid var(--slate-200);
  border-left: 4px solid var(--primary-600);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--slate-700);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.welcome-cta-box {
  text-align: center;
}

.btn-start-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-600) 100%);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(4, 120, 87, 0.3);
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-start-large:hover {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
  box-shadow: 0 8px 24px rgba(4, 120, 87, 0.4);
  transform: translateY(-2px);
}

/* Notice Cards */
.stage-notice-card {
  background-color: var(--primary-50);
  border: 1.5px solid var(--primary-500);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.notice-icon-box {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--primary-600);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notice-content h3 {
  color: var(--primary-900);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.notice-content p {
  color: var(--primary-800);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Form Card Container */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  padding: 30px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.form-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--slate-300);
}

.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--slate-100);
}

.section-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background-color: var(--primary-50);
  color: var(--primary-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid var(--primary-100);
}

.section-header h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.01em;
}

.section-header p {
  font-size: 0.85rem;
  color: var(--slate-500);
  margin-top: 2px;
}

/* Form Grids & Layout */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-700);
}

.form-label .req {
  color: var(--danger-500);
  margin-left: 2px;
}

.form-hint {
  font-size: 0.78rem;
  color: var(--slate-500);
  line-height: 1.4;
}

/* Input Fields & Controls */
.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-prefix {
  position: absolute;
  left: 14px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--slate-400);
  pointer-events: none;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--slate-800);
  background-color: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: all 0.2s ease;
}

.form-select {
  width: 100%;
  padding: 13px 44px 13px 16px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--slate-800);
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.5;
  transition: all 0.2s ease;
}

.form-input.has-prefix {
  padding-left: 44px;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary-600);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
  background-color: var(--white);
}

.form-select option {
  padding: 10px 14px;
  font-size: 0.92rem;
  color: var(--slate-800);
  background-color: var(--white);
}

.form-textarea {
  resize: vertical;
  min-height: 85px;
}

/* Radio Cards & Segmented Buttons */
.radio-group-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.radio-card-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  background-color: var(--slate-50);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--slate-700);
  transition: all 0.2s ease;
}

.radio-card-label:hover {
  background-color: var(--white);
  border-color: var(--primary-500);
}

.radio-card-label input[type="radio"] {
  accent-color: var(--primary-600);
  width: 16px;
  height: 16px;
}

.radio-card-label:has(input[type="radio"]:checked) {
  background-color: var(--primary-50);
  border-color: var(--primary-600);
  color: var(--primary-900);
  font-weight: 600;
  box-shadow: 0 0 0 2px rgba(5, 150, 105, 0.12);
}

/* Image Upload Cards */
.upload-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.upload-card {
  border: 2px dashed var(--slate-300);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  background-color: var(--slate-50);
  transition: all 0.2s ease;
  position: relative;
}

.upload-card.dragover {
  border-color: var(--primary-600);
  background-color: var(--primary-50);
}

.upload-card.has-file {
  border-style: solid;
  border-color: var(--primary-500);
  background-color: var(--white);
}

.upload-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--slate-200);
  color: var(--slate-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  transition: all 0.2s ease;
}

.upload-card.has-file .upload-icon-box {
  background-color: var(--primary-100);
  color: var(--primary-700);
}

.upload-label-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-800);
  margin-bottom: 4px;
}

.upload-subtext {
  font-size: 0.78rem;
  color: var(--slate-500);
  margin-bottom: 14px;
}

.btn-browse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary-700);
  background-color: var(--primary-50);
  border: 1.5px solid var(--primary-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-browse:hover {
  background-color: var(--primary-100);
  border-color: var(--primary-300);
}

.upload-preview-box {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--slate-200);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.preview-thumbnail {
  width: 100%;
  max-height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--slate-200);
}

.preview-meta {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-700);
}

.btn-remove-photo {
  font-size: 0.78rem;
  color: var(--danger-500);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  margin-top: 4px;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 28px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  background: linear-gradient(135deg, var(--primary-700) 0%, var(--primary-600) 100%);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(4, 120, 87, 0.25);
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-700) 100%);
  box-shadow: 0 6px 16px rgba(4, 120, 87, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  background-color: var(--white);
  color: var(--slate-700);
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background-color: var(--slate-100);
  border-color: var(--slate-400);
}

/* Official Acknowledgment Receipt View (Tahap 3) */
.receipt-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-xl);
  padding: 40px;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.receipt-icon-box {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background-color: var(--success-100);
  color: var(--success-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.receipt-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.receipt-desc {
  color: var(--slate-600);
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.receipt-card {
  background: var(--slate-50);
  border: 1.5px dashed var(--slate-300);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 24px;
  text-align: left;
}

.receipt-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.88rem;
}

.receipt-row:last-child {
  border-bottom: none;
}

.receipt-label {
  color: var(--slate-500);
  font-weight: 500;
}

.receipt-value {
  color: var(--slate-900);
  font-weight: 700;
}

.status-badge-recorded {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background-color: var(--success-100);
  color: var(--success-600);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Loading Screen Overlay */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  z-index: 9999;
}

.spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--primary-400);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 16px;
}

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

/* App Footer & Attribution */
.app-footer {
  margin-top: 40px;
  text-align: center;
}

.footer-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-xs);
}

.footer-brand-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--primary-800);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--slate-600);
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 12px auto;
}

.footer-copyright {
  font-size: 0.78rem;
  color: var(--slate-400);
  font-weight: 500;
}

/* Print Styles */
@media print {
  body {
    background: white;
  }
  .brand-header, .stepper-container, .action-buttons, .btn-print-hide, .app-footer {
    display: none !important;
  }
  .receipt-container {
    box-shadow: none;
    border: 1px solid var(--slate-300);
    padding: 24px;
    max-width: 100%;
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .app-container {
    padding: 16px 12px 60px 12px;
  }
  .brand-header {
    padding: 24px 20px;
  }
  .brand-header h1 {
    font-size: 1.4rem;
  }
  .form-card {
    padding: 20px 16px;
  }
  .stepper-container {
    padding: 12px 16px;
  }
  .step-text {
    display: none;
  }
  .action-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
  }
  .receipt-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
