/* ============= DESIGN SYSTEM ============= */
:root {
  /* Light Theme */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f9fc;
  --bg-tertiary: #f1f3f9;
  --surface: #ffffff;
  --surface-hover: #f8f9fc;

  /* Colors */
  --text-primary: #1a1d29;
  --text-secondary: #6b7280;
  --text-tertiary: #9ca3af;

  /* Brand Colors */
  --brand-primary: #5b63f5;
  --brand-primary-light: #e8e9ff;
  --brand-primary-dark: #4449d0;
  --brand-success: #10b981;
  --brand-success-light: #d1fae5;
  --brand-warning: #f59e0b;
  --brand-warning-light: #fef3c7;
  --brand-danger: #ef4444;
  --brand-danger-light: #fee2e2;

  /* UI Elements */
  --border-color: #e5e7eb;
  --border-radius: 16px;
  --border-radius-sm: 12px;
  --border-radius-xs: 8px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15);

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Theme */
[data-theme="dark"] {
  --bg-primary: #0f0f14;
  --bg-secondary: #1a1a24;
  --bg-tertiary: #252534;
  --surface: #1a1a24;
  --surface-hover: #252534;
  --text-primary: #f3f4f6;
  --text-secondary: #9ca3af;
  --text-tertiary: #6b7280;
  --border-color: #374151;
  --brand-primary-light: #2d3192;
  --brand-success-light: #064e3b;
  --brand-warning-light: #78350f;
  --brand-danger-light: #7f1d1d;
}

/* ============= BASE STYLES ============= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
  color: var(--text-primary);
  min-height: 100vh;
  transition: background var(--transition-base), color var(--transition-base);
  line-height: 1.6;
}

/* ============= LOGIN SCREEN ============= */
#loginContainer {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: linear-gradient(135deg, #f8f9fc 0%, #e8e9ff 100%);
  position: relative;
  overflow: hidden;
}

/* Animated gradient background */
#loginContainer::before {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(91, 99, 245, 0.1) 50%,
      transparent 70%);
  animation: gradient-shift 15s linear infinite;
}

@keyframes gradient-shift {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Floating geometric shapes */
.shape {
  position: absolute;
  opacity: 0.1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #5b63f5 0%, #10b981 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: -150px;
  right: -100px;
  animation: float-rotate 20s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #10b981 0%, #5b63f5 100%);
  border-radius: 50%;
  bottom: -100px;
  left: -50px;
  animation: float-up 15s ease-in-out infinite;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #f59e0b 0%, #5b63f5 100%);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  top: 50%;
  left: 10%;
  animation: float-diagonal 18s ease-in-out infinite;
}

@keyframes float-rotate {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  33% {
    transform: translate(-30px, 30px) rotate(120deg) scale(1.1);
  }

  66% {
    transform: translate(30px, -30px) rotate(240deg) scale(0.95);
  }
}

@keyframes float-up {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-50px) scale(1.1);
  }
}

@keyframes float-diagonal {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  25% {
    transform: translate(50px, -30px) rotate(90deg);
  }

  50% {
    transform: translate(-30px, -50px) rotate(180deg);
  }

  75% {
    transform: translate(-50px, 30px) rotate(270deg);
  }
}

/* Login card with glass effect */
.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  box-shadow:
    0 20px 60px rgba(91, 99, 245, 0.15),
    0 0 100px rgba(91, 99, 245, 0.05);
  overflow: hidden;
  max-width: 420px;
  width: 100%;
  position: relative;
  z-index: 10;
  animation: card-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes card-entrance {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Login header with animated gradient */
.login-header {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  background-size: 200% 200%;
  animation: gradient-animation 10s ease infinite;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* Sparkle effect on header */
.login-header::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.1) 50%,
      transparent 70%);
  animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.login-logo {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
  animation: logo-pulse 2s ease-in-out infinite;
}

@keyframes logo-pulse {

  0%,
  100% {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.5),
      0 0 40px rgba(255, 255, 255, 0.2);
  }

  50% {
    box-shadow:
      0 0 30px rgba(255, 255, 255, 0.7),
      0 0 60px rgba(255, 255, 255, 0.3);
  }
}

.login-header h2 {
  font-family: 'Momo Trust Display', 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  color: white;
}

.login-header p {
  margin: 0;
  opacity: 0.95;
  font-size: 1rem;
  position: relative;
  z-index: 1;
  color: white;
}

/* Login body */
.login-body {
  padding: 2.5rem 2rem;
  background: white;
}

.login-body .form-group {
  margin-bottom: 1.75rem;
}

.login-body .form-label {
  color: #4b5563;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.login-body .input-group {
  position: relative;
}

.login-body .input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  z-index: 2;
  transition: color var(--transition-base);
}

.login-body .form-control {
  padding-left: 2.75rem;
  height: 48px;
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  transition: all var(--transition-base);
  font-size: 0.95rem;
}

.login-body .form-control:focus {
  background: white;
  border-color: #5b63f5;
  box-shadow:
    0 0 0 3px rgba(91, 99, 245, 0.1),
    0 2px 8px rgba(91, 99, 245, 0.1);
  outline: none;
}

.login-body .form-control:focus~.input-icon {
  color: #5b63f5;
}

/* Password hint */
.password-hint {
  font-size: 0.8rem;
  color: #6b7280;
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.password-hint i {
  color: #5b63f5;
}

/* Login button */
.login-body .btn-primary {
  background: linear-gradient(135deg, #5b63f5 0%, #4449d0 100%);
  border: none;
  padding: 0.875rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 12px;
  box-shadow:
    0 4px 15px rgba(91, 99, 245, 0.25),
    0 2px 8px rgba(91, 99, 245, 0.15);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.login-body .btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.login-body .btn-primary:hover::before {
  left: 100%;
}

.login-body .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 25px rgba(91, 99, 245, 0.35),
    0 3px 12px rgba(91, 99, 245, 0.2);
}

.login-body .btn-primary:active {
  transform: translateY(0);
}

/* Error message */
.login-error {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  color: #dc2626;
  padding: 0.875rem;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  display: none;
  animation: shake 0.5s, slideDown 0.3s;
  border-left: 4px solid #ef4444;
  font-size: 0.9rem;
}

/* ============= MAIN APP ============= */
#appContainer {
  display: none;
  opacity: 0;
  animation: fadeIn 0.5s ease-out forwards;
}

#appContainer.show {
  display: block;
  opacity: 1;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ============= LAYOUT ============= */
.app-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
}

.app-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.logo-text {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.tagline {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 0;
}

/* Header Actions */
.header-actions {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Theme Toggle */
.theme-toggle {
  background: var(--surface);
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: all var(--transition-base);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-primary);
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-primary);
}

.logout-btn {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fee2e2;
}

.logout-btn:hover {
  background: #ef4444;
  color: white;
  border-color: #ef4444;
}

/* ============= WIZARD CONTAINER ============= */
.wizard-container {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin-bottom: 2rem;
}

/* Progress Bar */
.wizard-progress {
  display: flex;
  padding: 2rem 2rem 1rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  background: var(--bg-tertiary);
}

.progress-step {
  flex: 1;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all var(--transition-base);
}

.progress-step::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 50%;
  width: calc(100% - 40px);
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.progress-step:last-child::before {
  display: none;
}

.progress-step.active::before,
.progress-step.completed::before {
  background: var(--brand-primary);
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--border-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
  transition: all var(--transition-base);
  margin-bottom: 0.5rem;
}

.progress-step.active .step-number {
  background: var(--brand-primary);
  color: white;
  border-color: var(--brand-primary);
  transform: scale(1.1);
  box-shadow: 0 0 0 4px var(--brand-primary-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 var(--brand-primary-light);
  }

  70% {
    box-shadow: 0 0 0 10px transparent;
  }

  100% {
    box-shadow: 0 0 0 0 transparent;
  }
}

.progress-step.completed .step-number {
  background: var(--brand-success);
  color: white;
  border-color: var(--brand-success);
}

.progress-step.completed .step-number::after {
  content: '✓';
  position: absolute;
  font-size: 20px;
}

.step-title {
  font-size: 0.875rem;
  color: var(--text-tertiary);
  font-weight: 500;
  transition: color var(--transition-base);
}

.progress-step.active .step-title,
.progress-step.completed .step-title {
  color: var(--text-primary);
}

/* Wizard Content */
.wizard-content {
  padding: 3rem 2rem;
  min-height: 400px;
  position: relative;
}

.wizard-step {
  display: none;
  animation: fadeInUp var(--transition-slow) ease-in-out;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Step Headers */
.step-header {
  margin-bottom: 2rem;
  text-align: center;
}

.step-header h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.step-header p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin: 0;
}

/* ============= FORM ELEMENTS ============= */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-helper {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.form-helper i {
  font-size: 0.875rem;
}

.form-control,
.form-select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-xs);
  background: var(--bg-primary);
  color: var(--text-primary);
  font-size: 1rem;
  transition: all var(--transition-base);
  font-family: inherit;
}

.form-control:focus,
.form-select:focus {
  outline: none;
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-primary-light);
}

.form-control.is-valid {
  border-color: var(--brand-success);
}

.form-control.is-invalid {
  border-color: var(--brand-danger);
}

/* Input Groups */
.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-tertiary);
  pointer-events: none;
  z-index: 1;
}

.input-group .form-control {
  padding-left: 2.75rem;
}

/* Radio Cards */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.radio-card {
  position: relative;
  cursor: pointer;
}

.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-card-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background: var(--bg-primary);
  transition: all var(--transition-base);
  text-align: center;
}

.radio-card:hover .radio-card-label {
  border-color: var(--brand-primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.radio-card input[type="radio"]:checked~.radio-card-label {
  background: var(--brand-primary-light);
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px var(--brand-primary-light);
}

.radio-card-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-tertiary);
  transition: color var(--transition-base);
}

.radio-card input[type="radio"]:checked~.radio-card-label .radio-card-icon {
  color: var(--brand-primary);
}

.radio-card-title {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.875rem;
}

/* Toggle Switches */
.toggle-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-tertiary);
  border-radius: var(--border-radius-xs);
  margin-top: 0.5rem;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--border-color);
  border-radius: 24px;
  transition: all var(--transition-base);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: all var(--transition-base);
}

.toggle-switch input:checked+.toggle-slider {
  background: var(--brand-primary);
}

.toggle-switch input:checked+.toggle-slider::before {
  transform: translateX(24px);
}

.toggle-label {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
}

.toggle-description {
  font-size: 0.75rem;
  color: var(--text-tertiary);
}

/* Tooltip */
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: help;
  transition: all var(--transition-base);
  margin-left: 0.5rem;
}

.tooltip-icon:hover {
  transform: scale(1.2);
  background: var(--brand-primary);
  color: white;
}

/* ============= BUTTONS ============= */
.btn {
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius-xs);
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn-success {
  background: linear-gradient(135deg, var(--brand-success) 0%, #059669 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border: 2px solid var(--brand-primary);
}

.btn-outline:hover {
  background: var(--brand-primary);
  color: white;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--bg-tertiary);
}

.wizard-info {
  color: var(--text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

/* ============= RESULTS DASHBOARD ============= */
.results-container {
  display: none;
  animation: slideUp var(--transition-slow) ease-out;
}

.results-container.show {
  display: block;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Summary Cards */
.summary-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.summary-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  transition: all var(--transition-base);
}

.summary-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.summary-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
}

.summary-card.success::before {
  background: linear-gradient(180deg, var(--brand-success) 0%, #059669 100%);
}

.summary-card.warning::before {
  background: linear-gradient(180deg, var(--brand-warning) 0%, #d97706 100%);
}

.summary-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-sm);
  background: var(--brand-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--brand-primary);
  margin-bottom: 1rem;
}

.summary-card.success .summary-icon {
  background: var(--brand-success-light);
  color: var(--brand-success);
}

.summary-card.warning .summary-icon {
  background: var(--brand-warning-light);
  color: var(--brand-warning);
}

.summary-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.summary-value {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.summary-change {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.summary-change.positive {
  color: var(--brand-success);
}

/* Details Tables Section */
.details-section {
  margin-bottom: 2rem;
}

.section-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border-color);
}

.section-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-xs);
  background: var(--brand-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-primary);
}

.section-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  flex: 1;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.detail-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all var(--transition-base);
}

.detail-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.detail-header {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
  border-bottom: 1px solid var(--border-color);
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Colored section headers */
.detail-card:nth-child(1) .detail-header {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-bottom: 2px solid #3b82f6;
}

.detail-card:nth-child(2) .detail-header {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-bottom: 2px solid #3b82f6;
}

.detail-card:nth-child(3) .detail-header {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border-bottom: 2px solid #f59e0b;
}

.detail-card:nth-child(4) .detail-header {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border-bottom: 2px solid #f59e0b;
}

.detail-card:nth-child(5) .detail-header {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  border-bottom: 2px solid #f59e0b;
}

.detail-card:nth-child(6) .detail-header {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border-bottom: 2px solid #10b981;
}

[data-theme="dark"] .detail-card:nth-child(1) .detail-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #dbeafe;
}

[data-theme="dark"] .detail-card:nth-child(2) .detail-header {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
  color: #dbeafe;
}

[data-theme="dark"] .detail-card:nth-child(3) .detail-header {
  background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
  color: #fef3c7;
}

[data-theme="dark"] .detail-card:nth-child(4) .detail-header {
  background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
  color: #fef3c7;
}

[data-theme="dark"] .detail-card:nth-child(5) .detail-header {
  background: linear-gradient(135deg, #78350f 0%, #92400e 100%);
  color: #fef3c7;
}

[data-theme="dark"] .detail-card:nth-child(6) .detail-header {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: #d1fae5;
}

/* 7th card - GUADAGNO NETTO ANNO - Verde */
.detail-card:nth-child(7) .detail-header {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border-bottom: 2px solid #10b981;
}

[data-theme="dark"] .detail-card:nth-child(7) .detail-header {
  background: linear-gradient(135deg, #064e3b 0%, #065f46 100%);
  color: #d1fae5;
}

.detail-body {
  padding: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-color);
  transition: all var(--transition-base);
}

.detail-row:hover {
  background: var(--bg-tertiary);
  margin: 0 -0.5rem;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

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

.detail-label {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.detail-value {
  font-weight: 600;
  color: var(--text-primary);
}

.detail-value.highlight {
  color: var(--brand-primary);
  font-size: 1.125rem;
}

/* Alert Messages */
.alert {
  padding: 1rem 1.5rem;
  border-radius: var(--border-radius-xs);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: slideDown var(--transition-base) ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.alert-info {
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  border-left: 4px solid var(--brand-primary);
}

.alert-warning {
  background: var(--brand-warning-light);
  color: #92400e;
  border-left: 4px solid var(--brand-warning);
}

.alert-success {
  background: var(--brand-success-light);
  color: #065f46;
  border-left: 4px solid var(--brand-success);
}

.alert-icon {
  font-size: 1.25rem;
}

.alert-content {
  flex: 1;
}

.alert-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.alert-message {
  font-size: 0.875rem;
}

/* F24 Styles */
.f24-container {
  background: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  margin-top: 2rem;
  color: #263238;
  font-family: 'Courier New', monospace;
}

.f24-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 3px solid #263238;
  margin-bottom: 1.5rem;
}

.f24-logo {
  font-size: 0.875rem;
  font-weight: bold;
}

.f24-mod-box {
  border: 3px solid #263238;
  padding: 0.5rem 1rem;
  font-weight: bold;
  font-size: 1.25rem;
}

.f24-section {
  border: 2px solid #90a4ae;
  margin-bottom: 1.5rem;
}

.f24-section-header {
  background: #eceff1;
  padding: 0.5rem 1rem;
  font-weight: bold;
  border-bottom: 2px solid #90a4ae;
}

.f24-table {
  width: 100%;
  border-collapse: collapse;
}

.f24-table th {
  background: #f5f5f5;
  padding: 0.5rem;
  font-size: 0.75rem;
  border: 1px solid #90a4ae;
  font-weight: normal;
  text-align: center;
}

.f24-table td {
  padding: 0.75rem;
  border: 1px solid #90a4ae;
  text-align: right;
}

.f24-table td.text-left {
  text-align: left;
}

.f24-table td.text-center {
  text-align: center;
}

.f24-total-row {
  background: #eceff1;
  font-weight: bold;
}

.f24-saldo-finale {
  background: #e3f2fd;
  padding: 1rem;
  text-align: right;
  font-size: 1.25rem;
  font-weight: bold;
  border-top: 3px solid #263238;
  margin-top: 1rem;
}

/* Loading State */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

.loading-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
}

.loading-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--border-color);
  border-top-color: var(--brand-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 1rem;
}

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

.loading-text {
  color: var(--text-primary);
  font-weight: 500;
}

/* Row helper */
.row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

/* ============= UTILITIES ============= */
@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-4px);
  }

  20%,
  40%,
  60%,
  80% {
    transform: translateX(4px);
  }
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .app-container {
    padding: 1rem;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  .theme-toggle {
    position: static;
    margin-top: 1rem;
  }

  .wizard-progress {
    padding: 1rem;
  }

  .step-title {
    display: none;
  }

  .wizard-content {
    padding: 2rem 1rem;
  }

  .radio-cards {
    grid-template-columns: 1fr;
  }

  .summary-cards {
    grid-template-columns: 1fr;
  }

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

  .wizard-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .wizard-actions .btn {
    width: 100%;
  }

  .wizard-info {
    order: -1;
  }

  .shape-1,
  .shape-2,
  .shape-3 {
    display: none;
  }
}

/* ============= PRINT STYLES ============= */
@media print {

  /* Hide everything by default */
  body * {
    visibility: hidden !important;
  }

  /* Show printable content and all its children */
  .printable,
  .printable * {
    visibility: visible !important;
  }

  /* Position printable content */
  .printable {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    padding: 10pt !important;
    margin: 0 !important;
  }

  /* Hide elements that shouldn't print */
  .no-print,
  .action-buttons,
  .charts-container,
  button,
  .btn,
  .alert {
    display: none !important;
    visibility: hidden !important;
  }

  /* Very compact layout */
  h2 {
    font-size: 12pt !important;
    margin: 6pt 0 3pt 0 !important;
    page-break-after: avoid !important;
  }

  h3,
  h4 {
    font-size: 10pt !important;
    margin: 4pt 0 2pt 0 !important;
    page-break-after: avoid !important;
  }

  /* Summary cards - force display and compact */
  .summary-cards {
    display: grid !important;
    visibility: visible !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6pt !important;
    margin: 6pt 0 !important;
    page-break-inside: avoid !important;
    page-break-after: avoid !important;
  }

  .summary-card {
    display: block !important;
    visibility: visible !important;
    padding: 4pt !important;
    border: 0.5pt solid #ccc !important;
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    margin: 0 !important;
  }

  .summary-label {
    font-size: 7pt !important;
    margin: 0 !important;
  }

  .summary-value {
    font-size: 11pt !important;
    font-weight: bold !important;
    margin: 2pt 0 !important;
  }

  .summary-icon {
    font-size: 12pt !important;
    margin: 0 !important;
  }

  .summary-change {
    font-size: 6pt !important;
    margin: 0 !important;
  }

  /* Detail sections - very compact */
  .details-section {
    margin: 4pt 0 !important;
    padding: 0 !important;
  }

  .detail-card {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
    margin: 4pt 0 !important;
    padding: 4pt !important;
    border: 0.5pt solid #ddd !important;
  }

  .detail-card h3 {
    page-break-after: avoid !important;
  }

  /* Tables - very compact */
  table {
    font-size: 7pt !important;
    width: 100% !important;
    margin: 2pt 0 !important;
    border-collapse: collapse !important;
  }

  td,
  th {
    padding: 2pt 4pt !important;
    border: 0.5pt solid #ddd !important;
  }

  th {
    font-weight: bold !important;
    background: #f5f5f5 !important;
  }

  /* COMMENTATO - Impediva stampa a colori */
  /* Force white background and black text */
  /* * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  } */

  /* Remove animations and transitions */
  * {
    animation: none !important;
    transition: none !important;
  }

  /* Prevent orphaned headings */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid !important;
  }

  /* Keep related content together */
  .detail-card,
  .summary-card {
    page-break-inside: avoid !important;
  }
}

/* ============= FIX INPUT BORDER RADIUS ============= */
/* Ensure all input fields have consistent rounded corners */
.input-group .form-control {
  border-radius: var(--border-radius-xs) !important;
}

.input-group .input-icon {
  border-radius: var(--border-radius-xs) 0 0 var(--border-radius-xs);
}

/* ============= UI/UX ENHANCEMENTS ============= */

/* 1. TOAST NOTIFICATIONS */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
}

.toast {
  background: white;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 300px;
  animation: slideInRight 0.3s ease-out;
  border-left: 4px solid var(--brand-primary);
  position: relative;
  overflow: hidden;
}

.toast.success {
  border-left-color: var(--brand-success);
}

.toast.error {
  border-left-color: var(--brand-danger);
}

.toast.warning {
  border-left-color: var(--brand-warning);
}

.toast.info {
  border-left-color: var(--brand-info, #3b82f6);
}

.toast-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.25rem;
}

.toast.success .toast-icon {
  background: var(--brand-success-light);
  color: var(--brand-success);
}

.toast.error .toast-icon {
  background: var(--brand-danger-light);
  color: var(--brand-danger);
}

.toast.warning .toast-icon {
  background: var(--brand-warning-light);
  color: var(--brand-warning);
}

.toast.info .toast-icon {
  background: #dbeafe;
  color: #3b82f6;
}

.toast-content {
  flex: 1;
}

.toast-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.toast-message {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-theme="dark"] .toast {
  background: var(--surface);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

/* 2. SKELETON LOADING */
.results-skeleton {
  animation: fadeIn 0.3s ease-out;
  padding: 2rem 0;
}

.skeleton-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.skeleton-card {
  background: var(--surface);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
}

.skeleton-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.skeleton-text-lg {
  height: 40px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
  margin-bottom: 0.75rem;
}

.skeleton-text-sm {
  height: 20px;
  width: 70%;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 8px;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

[data-theme="dark"] .skeleton-icon,
[data-theme="dark"] .skeleton-text-lg,
[data-theme="dark"] .skeleton-text-sm {
  background: linear-gradient(90deg, #2a2a2a 25%, #3a3a3a 50%, #2a2a2a 75%);
  background-size: 200% 100%;
}

/* 3. RESULT ANIMATIONS */
.summary-card {
  opacity: 0;
  transform: translateY(20px);
  animation: cardReveal 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.summary-card:nth-child(1) {
  animation-delay: 0.1s;
}

.summary-card:nth-child(2) {
  animation-delay: 0.2s;
}

.summary-card:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes cardReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Confetti emoji for positive results - DISABLED */
.summary-card.success .summary-value {
  position: relative;
}

/* Removed emoji per user request
.summary-card.success .summary-value::after {
  content: '🎉';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  animation: celebrate 0.6s ease-out;
}
*/

@keyframes celebrate {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0) rotate(0deg);
  }

  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.2) rotate(180deg);
  }

  100% {
    opacity: 1;
    transform: translateY(-50%) scale(1) rotate(360deg);
  }
}

/* 4. BUTTON MICRO-INTERACTIONS */
.btn {
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  box-shadow:
    0 4px 15px rgba(91, 99, 245, 0.3),
    inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 6px 25px rgba(91, 99, 245, 0.4),
    inset 0 -2px 5px rgba(0, 0, 0, 0.1);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow:
    0 2px 10px rgba(91, 99, 245, 0.3),
    inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Loading state for buttons */
.btn.loading {
  pointer-events: none;
  opacity: 0.7;
  position: relative;
}

.btn.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

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

/* 5. IMPROVED TOOLTIPS */
.tooltip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: var(--brand-primary-light);
  color: var(--brand-primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: help;
  margin-left: 0.5rem;
  transition: all var(--transition-base);
  font-style: normal;
}

.tooltip-icon:hover {
  background: var(--brand-primary);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(91, 99, 245, 0.3);
}

/* 6. BREADCRUMB NAVIGATION */
.breadcrumb-nav {
  margin-bottom: 2rem;
  padding: 1rem 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-tertiary);
  font-size: 0.875rem;
  transition: color var(--transition-base);
}

.breadcrumb-item.active {
  color: var(--brand-primary);
  font-weight: 600;
}

.breadcrumb-item i {
  font-size: 0.75rem;
}

/* Mobile responsiveness for new features */
@media (max-width: 768px) {
  .toast-container {
    top: 10px;
    right: 10px;
    left: 10px;
    max-width: none;
  }

  .toast {
    min-width: auto;
  }

  .skeleton-cards {
    grid-template-columns: 1fr;
  }

  .breadcrumb-nav {
    padding: 0.5rem 0;
  }

  .breadcrumb {
    gap: 0.5rem;
  }

  .breadcrumb-item {
    font-size: 0.75rem;
  }

  .summary-card.success .summary-value::after {
    right: -20px;
    font-size: 1.25rem;
  }
}

/* Accessibility: Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {

  .toast,
  .summary-card,
  .skeleton-icon,
  .skeleton-text-lg,
  .skeleton-text-sm,
  .btn::before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============= APP FOOTER ============= */
.app-footer {
  margin-top: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
  border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface);
  border-radius: var(--border-radius-xs);
  border-left: 4px solid var(--brand-primary);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.footer-disclaimer i {
  color: var(--brand-primary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.footer-disclaimer p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-disclaimer strong {
  color: var(--text-primary);
  font-weight: 600;
}

.footer-info {
  text-align: center;
  padding: 1rem 0;
}

.footer-info p {
  margin: 0;
  color: var(--text-tertiary);
  font-size: 0.8rem;
}

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
  .app-footer {
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }

  .footer-disclaimer {
    flex-direction: column;
    padding: 1rem;
  }

  .footer-disclaimer i {
    font-size: 1rem;
  }

  .footer-disclaimer p {
    font-size: 0.8rem;
  }

  .footer-info p {
    font-size: 0.75rem;
  }
}