[xpr-cloak] {
  display: none !important;
}

:root {
  --bg-primary: #f8fafc;
  --bg-secondary: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.25);
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --border: rgba(255, 255, 255, 0.18);
  --accent: #6366f1;
  --accent-hover: #4f46e5;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
  --shadow-lg: 0 15px 35px rgba(31, 38, 135, 0.2);
  --backdrop-blur: blur(20px);
  --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

[data-theme="dark"] {
  --bg-primary: #0f172a;
  --bg-secondary: #1e293b;
  --bg-card: rgba(15, 23, 42, 0.4);
  --text-primary: #f1f5f9;
  --text-secondary: #cbd5e1;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #818cf8;
  --accent-hover: #6366f1;
  --success: #34d399;
  --error: #f87171;
  --warning: #fbbf24;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.3);
  --gradient-primary: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
  --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #a21caf 100%);
  --gradient-accent: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
}

.container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 900px;
  overflow: hidden;
}

.header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 25px;
  text-align: center;
  position: relative;
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.header-content {
  position: relative;
  z-index: 1;
}

.header h1 {
  font-size: 1.8rem;
  margin-bottom: 5px;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.header p {
  opacity: 0.9;
  font-size: 0.95rem;
  font-weight: 400;
}

.company-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  margin-top: 8px;
  backdrop-filter: blur(10px);
}

.progress-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  direction: rtl;
}

.step {
  display: contents;
  align-items: center;
  flex: 1;
  position: relative;
}

.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.step.active .step-number {
  background: #ea580c;
  color: white;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.step.completed .step-number {
  background: #059669;
  color: white;
}

.step-label {
  margin-right: 8px;
  font-weight: 600;
  color: #64748b;
  font-size: 12px;
}

.step.active .step-label {
  color: #ea580c;
}

.step.completed .step-label {
  color: #059669;
}

.step-line {
  height: 2px;
  background: #e2e8f0;
  flex: 1;
  margin: 0 10px;
}

.step.completed .step-line {
  background: #059669;
}

.form-container {
  padding: 25px 30px;
}

.form-step.active {
  display: block;
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.step-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  letter-spacing: -0.2px;
  text-align: right;
}

.step-subtitle {
  color: #64748b;
  font-size: 0.9rem;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: right;
}

.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #374151;
  font-size: 13px;
  text-align: right;
}

.form-group input {
  width: 95%;
  padding: 12px 16px;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s ease;
  background: #fafbfc;
  font-family: inherit;
  text-align: right;
  direction: rtl;
}

.form-group input:focus {
  outline: none;
  border-color: #ea580c;
  background: white;
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.1);
}

.form-group input.error {
  border-color: #dc2626;
  background: #fef2f2;
}

.error-message {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  font-weight: 500;
  text-align: right;
}

.success-message {
  color: #059669;
  font-size: 12px;
  margin-top: 4px;
  display: none;
  font-weight: 500;
  text-align: right;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.verification-container {
  text-align: center;
  padding: 20px;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.verification-icon {
  width: 50px;
  height: 50px;
  background: #ea580c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 20px;
}

.verification-container h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #1e293b;
}

.verification-container p {
  color: #64748b;
  margin-bottom: 15px;
  font-size: 0.85rem;
}

.verification-code-input {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 15px 0;
  direction: ltr;
}

.code-digit {
  width: 40px;
  height: 40px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border: 2px solid #e5e7eb;
  border-radius: 6px;
  background: white;
  direction: ltr;
  transition: all 0.3s ease;
}

.code-digit:focus {
  border-color: #ea580c;
  outline: none;
  box-shadow: 0 0 0 2px rgba(234, 88, 12, 0.1);
}

.code-digit.error {
  border-color: #dc2626;
  background: #fef2f2;
  animation: shake 0.5s ease-in-out;
}

.code-digit.success {
  border-color: #059669;
  background: #f0fdf4;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-3px);
  }
  75% {
    transform: translateX(3px);
  }
}

.resend-code {
  color: #ea580c;
  text-decoration: none;
  font-weight: 500;
  font-size: 12px;
}

.resend-code:hover {
  text-decoration: underline;
}

/* Enhanced Message Styles */
.message-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  z-index: 10;
  display: flex;
  animation: fadeIn 0.3s ease-in;
}

.message-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  max-width: 250px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  animation: messageSlideIn 0.3s ease-out;
  margin: 0 auto;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(-15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.message-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 18px;
  color: white;
}

.message-icon.success {
  background: linear-gradient(135deg, #059669, #047857);
}

.message-icon.error {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
}

.message-icon.info {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.message-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e293b;
}

.message-text {
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
}

.verification-status {
  margin-top: 15px;
  padding: 10px;
  border-radius: 6px;
  animation: fadeIn 0.3s ease-in;
  font-size: 12px;
}

.verification-status.success {
  background: linear-gradient(135deg, #f0fdf4, #dcfce7);
  border: 1px solid #bbf7d0;
  color: #166534;
}

.verification-status.error {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  border: 1px solid #fecaca;
  color: #991b1b;
}

.verification-status.info {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.verification-status-icon {
  display: inline-block;
  margin-left: 6px;
  font-size: 14px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.plan-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  background: white;
}

.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: #cbd5e1;
}

.plan-card.selected {
  border-color: #ea580c;
  background: linear-gradient(
    135deg,
    rgba(234, 88, 12, 0.05),
    rgba(234, 88, 12, 0.1)
  );
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.2);
}

.plan-card.recommended {
  border-color: #059669;
  position: relative;
}

.plan-card.recommended::before {
  content: "محبوب‌ترین";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #059669, #047857);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 3px 8px rgba(5, 150, 105, 0.3);
}

.plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ea580c;
  margin-bottom: 3px;
}

.plan-period {
  color: #64748b;
  font-size: 11px;
  margin-bottom: 15px;
}

.plan-features {
  list-style: none;
  margin-bottom: 15px;
  text-align: right;
}

.plan-features li {
  padding: 4px 0;
  color: #4b5563;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  direction: rtl;
}

.plan-features li::before {
  content: "✓";
  color: #059669;
  font-weight: bold;
  margin-left: 8px;
  font-size: 12px;
}

.buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
  gap: 12px;
  direction: rtl;
}

.btn {
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  min-width: 120px;
}

.btn-primary {
  background: linear-gradient(135deg, #ea580c 0%, #dc2626 100%);
  color: white;
  box-shadow: 0 3px 8px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 15px rgba(234, 88, 12, 0.4);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-secondary {
  background: #6b7280;
  color: white;
  box-shadow: 0 3px 8px rgba(107, 114, 128, 0.2);
}

.btn-secondary:hover {
  background: #4b5563;
  transform: translateY(-1px);
}

/* Loading spinner animation */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* Submit button specific styles */
.btn[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

.submitting-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: -0.25rem;
  margin-left: -0.75rem;
  animation: spin 1s linear infinite;
}

.spinner-track {
  opacity: 0.25;
}

.spinner-path {
  opacity: 0.75;
}

/* Submitting state styles */
.btn[type="submit"][aria-label*="Processing"] {
  background: linear-gradient(135deg, #9ca3af 0%, #6b7280 100%);
  color: white;
  box-shadow: 0 3px 8px rgba(156, 163, 175, 0.3);
}

.btn[type="submit"][aria-label*="Processing"]:hover {
  transform: none;
  box-shadow: 0 3px 8px rgba(156, 163, 175, 0.3);
}

.summary-section {
  background: #f8fafc;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #e2e8f0;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e2e8f0;
  direction: rtl;
  font-size: 13px;
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 1rem;
  color: #1e293b;
  background: white;
  margin: 15px -20px -20px;
  padding: 18px 20px;
  border-radius: 0 0 10px 10px;
}

.summary-label {
  color: #64748b;
  font-weight: 600;
  font-size: 12px;
}

.summary-value {
  color: #1e293b;
  font-weight: 600;
}

.security-notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 6px;
  padding: 12px;
  margin-top: 15px;
  font-size: 14px;
  color: #ea580c;
  text-align: right;
  line-height: 1.4;
}

/* Privacy Section Styles */
.privacy-section {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0 25px 0;
  direction: rtl;
}

.privacy-section .form-group {
  margin-bottom: 14px;
}

.privacy-section .checkbox-group {
  display: flex;
  margin-bottom: 10px;
}

.privacy-section label {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  margin-right: 6px;
  cursor: pointer;
}

.privacy-section select {
  width: 100%;
  padding: 10px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 7px;
  font-size: 13px;
  background: #fafbfc;
  margin-top: 5px;
  transition: border-color 0.2s;
  text-align: right;
  direction: rtl;
}

.privacy-section select:focus {
  border-color: #ea580c;
  background: white;
  outline: none;
}

.privacy-section input[type="checkbox"] {
  accent-color: #ea580c;
  width: 16px;
  height: 16px;
  margin-left: 8px;
  vertical-align: middle;
}

.privacy-section .error-message {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 5px;
  padding: 6px 10px;
  font-size: 11px;
  margin-top: 5px;
  display: none;
  text-align: right;
}

.privacy-section .form-group input:invalid ~ .error-message,
.privacy-section .form-group select:invalid ~ .error-message {
  display: block;
}

#businessNotice {
  font-size: 14px;
  margin-top: 8px;
  padding: 10px 12px;
  border-radius: 6px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  text-align: right;
}

@media (max-width: 768px) {
  .form-container {
    padding: 20px;
  }

  .progress-bar {
    padding: 15px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .plans-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-label {
    display: none;
  }

  .buttons {
    flex-direction: column;
    gap: 10px;
  }

  .header {
    padding: 20px;
  }

  .header h1 {
    font-size: 1.5rem;
  }

  .verification-code-input {
    gap: 6px;
  }

  .code-digit {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .message-content {
    max-width: 220px;
    padding: 15px;
  }

  .plan-card {
    padding: 15px;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .privacy-section {
    padding: 12px 8px;
    margin: 15px 0 18px 0;
  }
}

/* Persian number styles */
.persian-numbers {
  font-family: "Vazirmatn", "Tahoma", sans-serif;
}

.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-card);
  backdrop-filter: var(--backdrop-blur);
  -webkit-backdrop-filter: var(--backdrop-blur);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  box-shadow: var(--shadow);
  min-width: 320px;
  transform: translateX(100%);
  animation: slideIn 0.4s ease forwards;
  position: relative;
  overflow: hidden;
}

.toast.success {
  border-left: 4px solid var(--success);
  background: rgba(16, 185, 129, 0.1);
}

.toast.error {
  border-left: 4px solid var(--error);
  background: rgba(239, 68, 68, 0.1);
}

.toast.info {
  border-left: 4px solid var(--accent);
  background: rgba(99, 102, 241, 0.1);
}

.toast.warning {
  border-left: 4px solid var(--warning);
  background: rgba(245, 158, 11, 0.1);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.toast-icon {
  font-size: 1.3rem;
}

.toast-message {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
}

.toast-close {
  background: none;
  border: none;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 1.3rem;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.toast-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

@keyframes slideIn {
  to {
    transform: translateX(0);
  }
}

@keyframes slideOut {
  to {
    transform: translateX(100%);
  }
}

.toast.removing {
  animation: slideOut 0.4s ease forwards;
}

@media (max-width: 480px) {
  .toast {
    min-width: 280px;
    margin: 0 1rem;
  }

  .toast-container {
    right: 0;
    left: 0;
    align-items: center;
  }
}

.payment-options {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0 25px 0;
  direction: rtl;
}

.payment-options h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.payment-method {
  position: relative;
  margin-bottom: 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  padding: 0;
}

.payment-method:hover {
  border-color: #3b82f6;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.15);
}

.payment-method input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.payment-method label {
  display: block;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.payment-method label:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  transform: translateY(-50%) translateX(-13%);
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  background: white;
  transition: all 0.2s ease-in-out;
}

.payment-method label:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.75rem;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #3b82f6;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.payment-method input[type="radio"]:checked + label {
  background-color: #eff6ff;
  border-left: 4px solid #3b82f6;
}

.payment-method input[type="radio"]:checked + label:before {
  border-color: #3b82f6;
}

.payment-method input[type="radio"]:checked + label:after {
  opacity: 1;
}

.payment-title {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-icon {
  width: 24px;
  height: 24px;
  background: #f3f4f6;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
}

.payment-desc {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 400;
  margin-top: 0.25rem;
  display: block;
}

.no-payment-methods {
  text-align: center;
  padding: 3rem 2rem;
  color: #6b7280;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.no-payment-methods:before {
  content: "⚠️";
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* Responsive design */
@media (max-width: 640px) {
  body {
    padding: 1rem;
  }

  .payment-options {
    padding: 1.5rem;
  }

  .payment-method label {
    padding: 1rem 1.25rem;
  }

  .payment-method label:before,
  .payment-method label:after {
    right: 1.25rem;
  }

  .payment-method label:after {
    right: 1.5rem;
  }
}

/* Animation for smooth transitions */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.payment-method {
  animation: fadeIn 0.3s ease-out;
}

.payment-method:nth-child(2) {
  animation-delay: 0.1s;
}
.payment-method:nth-child(3) {
  animation-delay: 0.2s;
}
.payment-method:nth-child(4) {
  animation-delay: 0.3s;
}
.payment-method:nth-child(5) {
  animation-delay: 0.4s;
}

.empty-state {
  text-align: center;
  padding: 2rem;
  margin: 2rem auto;
  color: #6b7280;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.checkbox-group {
  display: flex;
  gap: 0.5rem;
}
