/* Onboarding Container */
.onboarding-container {
  min-height: 100vh;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.onboarding-wrapper {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 800px;
  width: 100%;
  overflow: hidden;
}

/* Progress Indicator */
.progress-indicator {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2rem 1rem;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  border-bottom: 1px solid #e9ecef;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.progress-step.active .step-number {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.progress-step.current .step-number {
  background: #667eea;
  color: white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
  animation: pulse 2s infinite;
}

.step-label {
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
  text-align: center;
}

.progress-step.active .step-label {
  color: #667eea;
  font-weight: 600;
}

.progress-line {
  flex: 1;
  height: 2px;
  background: #e9ecef;
  margin: 0 -10px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: background 0.3s ease;
}

.progress-line.active {
  background: #667eea;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(102, 126, 234, 0.1);
  }
}

/* Onboarding Content */
.onboarding-content {
  padding: 2rem;
}

.step-container {
  max-width: 600px;
  margin: 0 auto;
}

.step-header {
  text-align: center;
  margin-bottom: 2rem;
}

.step-header h2 {
  font-size: 28px;
  color: #212529;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.step-header p {
  font-size: 16px;
  color: #6c757d;
}

/* Form Styles */
.step-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.step-container .form-row {
    margin-bottom: 0 !important;
}

label {
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}

.optional {
  font-weight: 400;
  color: #6c757d;
  font-size: 13px;
}

.onboarding-container input,
.onboarding-container select {
  padding: 12px 16px;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
  color: #212529;
}

.onboarding-container input:focus,
.onboarding-container select:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.onboarding-container input.input-error,
.onboarding-container select.input-error {
  border-color: #dc3545;
}

.error-message {
  font-size: 13px;
  color: #dc3545;
  margin-top: -0.25rem;
}

.error-alert {
  padding: 12px 16px;
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 8px;
  font-size: 14px;
}

/* Buttons */
.onboarding-container .btn-primary,
.onboarding-container .btn-secondary {
  padding: 14px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.onboarding-container .btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.onboarding-container .btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.onboarding-container .btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.onboarding-container .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.onboarding-container .btn-secondary {
  background: #f8f9fa;
  color: #495057;
  border: 2px solid #e9ecef;
}

.onboarding-container .btn-secondary:hover:not(:disabled) {
  background: #e9ecef;
  transform: translateY(-2px);
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.onboarding-container .button-group .btn-secondary {
  flex: 0 0 auto;
}

.onboarding-container .button-group .btn-primary {
  flex: 1;
}

/* Email Verification */
.verification-content {
  text-align: center;
  padding: 0 0 2rem 0;
}

.email-icon {
  font-size: 80px;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.verification-instructions {
  max-width: 500px;
  margin: 0 auto;
}

.verification-instructions h3 {
  font-size: 20px;
  color: #212529 !important;
  margin-bottom: 1rem;
}

.verification-instructions p {
  color: #6c757d;
  line-height: 1.6;
}

.verification-tips {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  text-align: left;
}

.tip-title {
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.75rem;
}

.verification-tips ul {
  margin: 0;
  padding-left: 1.5rem;
}

.verification-tips li {
  color: #6c757d;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.verification-success {
  text-align: center;
  padding: 2rem 0;
}

.success-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 0.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }

  to {
    transform: scale(1);
  }
}

.verification-success h2 {
  color: #212529;
  margin-bottom: 0.5rem;
}

.verification-success p {
  color: #6c757d;
  margin-bottom: 0.5rem;
}

.redirect-message {
  color: #667eea;
  font-weight: 600;
  margin-top: 1rem;
}

/* Already Verified Alert */
.already-verified-alert {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border: 2px solid rgba(102, 126, 234, 0.3);
  border-radius: 16px;
  padding: 2.5rem !important;
  margin: 1rem;
}

.already-verified-alert .alert-icon {
  font-size: 64px;
  margin-bottom: 1rem;
  animation: wave 1.5s ease-in-out infinite;
}

@keyframes wave {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(20deg);
  }

  75% {
    transform: rotate(-20deg);
  }
}

.already-verified-alert h2 {
  color: #667eea;
  font-size: 28px;
  margin-bottom: 1rem;
}

.already-verified-alert .alert-message {
  font-size: 16px;
  color: #495057;
  max-width: 400px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

.already-verified-alert .redirect-message {
  color: #764ba2;
  animation: pulse 1.5s ease-in-out infinite;
}

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  z-index: 9999;
}

/* Store Activation */
.activation-content {
  padding: 1rem 0;
}

.review-section {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.review-section h3 {
  font-size: 18px;
  color: #212529!important;
  margin-bottom: 1rem;
  font-weight: 600;
}

.review-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
}

.review-item:last-child {
  border-bottom: none;
}

.review-label {
  font-weight: 600;
  color: #495057;
  font-size: 14px;
}

.review-value {
  color: #212529;
  font-size: 14px;
  text-align: right;
  max-width: 60%;
}

.activation-notice {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-left: 4px solid #667eea;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.activation-notice h3 {
  font-size: 18px;
  color: #212529!important;
  margin-bottom: 0.75rem;
}

.activation-notice p {
  color: #495057;
  line-height: 1.6;
  margin: 0;
}

.btn-activate {
  animation: glow 2s infinite;
}
.pl-v .pricing-title {
    margin-bottom: 3rem;
}
.pl-modal .modal-content {
    position: relative;
}
.pl-modal .modal-header {
    padding: 15px 0 0 15px;
    margin-bottom: 1.5rem;
}
.pl-modal .modal-title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pl-modal .modal-title i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #2b5dff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}
.pl-modal .modal-content .close-button {
    position: absolute;
    right: 10px;
    top: 10px;
    color: #fff;
    background: transparent;
    border: 0px;
    font-size: 20px;
    cursor: pointer;
}
.plan-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #152b86, #6a2fe2);
    border: 2px solid #a845ff;
    border-radius: 12px;
    padding: 1rem;
    color: white;
    margin-bottom: 1.5rem;
}
.plan-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #d8b219;
    color: #ffd437;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}
.plan-card h2 {
    font-size: 30px;
    margin-bottom: 5px;
}
.plan-card p {
    color: #ffd437;
    font-size: 20px;
    font-weight: 700;
}
.card-note {
    background: #1b2943;
    border-radius: 8px;
    padding: 14px;
    margin-top: 1.5rem;
    font-size: 13px;
}
.plan-f h4 {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 500;
}
.plan-f ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
}
@keyframes glow {

  0%,
  100% {
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  }

  50% {
    box-shadow: 0 4px 25px rgba(102, 126, 234, 0.6);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .onboarding-container {
    padding: 1rem;
  }

  .progress-indicator {
    padding: 1rem;
    overflow-x: auto;
  }

  .step-label {
    font-size: 10px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 12px;
  }

  .onboarding-content {
    padding: 1.5rem;
  }

  .step-header h2 {
    font-size: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .button-group {
    flex-direction: column;
  }

  .onboarding-container .button-group .btn-secondary,
  .onboarding-container .button-group .btn-primary {
    flex: 1;
  }

  .review-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .review-value {
    text-align: left;
    max-width: 100%;
  }
}

/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-overlay .modal-container {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.modal-overlay .modal-container .modal-content {
  text-align: center;
}

.modal-icon {
  font-size: 72px;
  margin-bottom: 1rem;
  display: inline-block;
  animation: waveHand 1.5s ease-in-out infinite;
}

@keyframes waveHand {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(20deg);
  }

  75% {
    transform: rotate(-20deg);
  }
}

.modal-overlay .modal-container .modal-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: #212529;
  margin: 0 0 0.75rem;
}

.modal-message {
  font-size: 16px;
  color: #6c757d;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.countdown-container {
  margin: 1.5rem 0 2rem;
}

.countdown-circle {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem;
}

.countdown-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.countdown-bg {
  fill: none;
  stroke: #e9ecef;
  stroke-width: 8;
}

.countdown-progress {
  fill: none;
  stroke: #667eea;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 1s linear;
}

.countdown-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 32px;
  font-weight: 700;
  color: #667eea;
}

.countdown-text {
  font-size: 14px;
  color: #6c757d;
  margin: 0;
}

.btn-login-now {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}