.wizard-layout {
  min-height: 100vh;
  background-color: #F9FAFB;
  display: flex;
  flex-direction: column;
}

.fundraising-wizard {
  max-width: 550px;
  margin: 0 auto;
}
.fundraising-wizard__header {
  margin-bottom: 2rem;
}
.fundraising-wizard__header--center {
  text-align: center;
}
.fundraising-wizard__title {
  font-size: 24px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 0.75rem 0;
  line-height: 32px;
  letter-spacing: -0.3px;
}
.fundraising-wizard__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #6B7280;
  margin: 0;
  line-height: 24px;
  letter-spacing: -0.2px;
}
.fundraising-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
}
.fundraising-wizard__actions--single {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .fundraising-wizard__actions {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .fundraising-wizard {
    max-width: 100%;
  }
  .fundraising-wizard__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.3px;
  }
  .fundraising-wizard__subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
}

.auth-wizard {
  max-width: 550px;
  margin: 0 auto;
}
.auth-wizard__header {
  margin-bottom: 2rem;
}
.auth-wizard__header--center {
  text-align: center;
}
.auth-wizard__title {
  font-size: 24px;
  font-weight: 600;
  color: #1F2937;
  margin: 0 0 0.75rem 0;
  line-height: 32px;
  letter-spacing: -0.3px;
}
.auth-wizard__subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #6B7280;
  margin: 0;
  line-height: 24px;
  letter-spacing: -0.2px;
}
.auth-wizard__actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
}
.auth-wizard__actions--single {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .auth-wizard__actions {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .auth-wizard {
    max-width: 100%;
  }
  .auth-wizard__title {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.3px;
  }
  .auth-wizard__subtitle {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.2px;
  }
}

.fundraising-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.fundraising-option {
  cursor: pointer;
  display: block;
  margin: 0;
}
.fundraising-option--disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.fundraising-option--disabled .fundraising-option__card {
  background: #fafafa;
  border-color: #e5e7eb;
  cursor: not-allowed;
}
.fundraising-option--disabled .fundraising-option__title {
  color: #9ca3af;
}
.fundraising-option--disabled .fundraising-option__description {
  color: #d1d5db;
}
.fundraising-option--disabled .fundraising-option__indicator {
  border-color: #e5e7eb;
  background-color: #f3f4f6;
}
.fundraising-option__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.fundraising-option__card {
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s ease;
}
.fundraising-option:not(.fundraising-option--disabled) .fundraising-option__card:hover {
  border-color: #1D54E2;
  box-shadow: 0 2px 8px rgba(29, 84, 226, 0.1);
}
.fundraising-option__radio:checked + .fundraising-option__card {
  border-color: #1D54E2;
  background-color: #eff3fe;
}
.fundraising-option__radio:checked + .fundraising-option__card .fundraising-option__indicator {
  background-color: #1D54E2;
  border-color: #1D54E2;
}
.fundraising-option__radio:checked + .fundraising-option__card .fundraising-option__indicator::after {
  opacity: 1;
}
.fundraising-option__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.fundraising-option__indicator {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid #DEE0E3;
  background: #FFFFFF;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.fundraising-option__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.fundraising-option__content {
  flex: 1;
}
.fundraising-option__title {
  font-size: 15px;
  font-weight: 500;
  color: #1F2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}
.fundraising-option__description {
  font-size: 15px;
  font-weight: 400;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .fundraising-option__card {
    padding: 0.875rem;
  }
  .fundraising-option__title {
    font-size: 14px;
  }
  .fundraising-option__description {
    font-size: 13px;
  }
}

.btn-wizard {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
}
.btn-wizard--primary {
  background-color: #1D54E2;
  color: #ffffff;
  border: 1px solid #1D54E2;
}
.btn-wizard--primary:hover {
  background-color: rgb(24.36, 70.56, 189.84);
  border-color: rgb(24.36, 70.56, 189.84);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 84, 226, 0.3);
}
.btn-wizard--primary:active {
  transform: translateY(0);
}
.btn-wizard--secondary {
  background-color: transparent;
  color: #1F2937;
  border: 1px solid #DEE0E3;
}
.btn-wizard--secondary:hover {
  background-color: #F9FAFB;
  border-color: rgb(194.4098360656, 198.0819672131, 203.5901639344);
}
.btn-wizard--club-primary {
  background-color: #14151A;
  color: #ffffff;
  border: 1px solid #14151A;
}
.btn-wizard--club-primary:hover {
  background-color: #2A2B30;
  border-color: #2A2B30;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(20, 21, 26, 0.3);
}
.btn-wizard--club-primary:active {
  transform: translateY(0);
}
.btn-wizard--club-primary:disabled {
  background-color: #14151A;
  color: #ffffff;
  border-color: #14151A;
  opacity: 0.5;
  cursor: not-allowed;
}
.btn-wizard--club-primary:disabled:hover {
  background-color: #14151A;
  border-color: #14151A;
  transform: none;
  box-shadow: none;
}
.btn-wizard--lg {
  padding: 0.875rem 2rem;
}
.btn-wizard--disabled {
  background-color: #F9FAFB !important;
  color: #9CA3AF !important;
  border-color: #DEE0E3 !important;
  cursor: not-allowed !important;
  opacity: 0.6 !important;
}
.btn-wizard--disabled:hover {
  background-color: #F9FAFB !important;
  color: #9CA3AF !important;
  border-color: #DEE0E3 !important;
  transform: none !important;
  box-shadow: none !important;
}

.form-group-wizard {
  margin-bottom: 1.5rem;
}

.form-label-wizard {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.form-label-hint {
  font-weight: 400;
  color: rgba(13, 17, 38, 0.4);
}

.input-with-icon {
  position: relative;
}

.input-with-icon .icon-calendar {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("/icons/theme-v2/date.svg");
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.input-icon-left {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
  pointer-events: none;
  z-index: 1;
}

.input-icon-graphic {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
}

.input-with-icon .form-control-wizard {
  padding-left: 2.75rem;
}

.form-control-wizard {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 400;
  color: #1F2937;
  background-color: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.form-control-wizard::-moz-placeholder {
  color: #9ca3af;
}
.form-control-wizard::placeholder {
  color: #9ca3af;
}
.form-control-wizard:focus {
  outline: none;
  border-color: #1D54E2;
  box-shadow: 0 0 0 3px rgba(29, 84, 226, 0.1);
}
.form-control-wizard.iti-phone {
  width: 100% !important;
}

.iti {
  width: 100% !important;
}
.iti .iti__input {
  width: 100% !important;
  border: 1px solid #DEE0E3 !important;
  border-radius: 8px !important;
  padding: 0.75rem 1rem !important;
  padding-left: 3.5rem !important;
  font-size: 14px !important;
}
.iti .iti__input:focus {
  border-color: #1D54E2 !important;
  box-shadow: 0 0 0 3px rgba(29, 84, 226, 0.1) !important;
}

.form-control-with-icon {
  padding-left: 2rem;
  font-size: 15px;
}

.form-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-size: 13px;
  color: rgba(13, 17, 38, 0.4);
  line-height: 1.4;
}
.form-hint .icon-info {
  width: 14px;
  height: 14px;
  min-width: 14px;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%236B7280' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='m8.93 6.588-2.29.287-.082.38.45.083c.294.07.352.176.288.469l-.738 3.468c-.194.897.105 1.319.808 1.319.545 0 1.178-.252 1.465-.598l.088-.416c-.2.176-.492.246-.686.246-.275 0-.375-.193-.304-.533L8.93 6.588zM9 4.5a1 1 0 1 1-2 0 1 1 0 0 1 2 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.form-error {
  margin-top: 0.5rem;
  font-size: 13px;
  color: #dc2626;
}

.file-upload-wrapper {
  position: relative;
}

.file-input-wizard {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}
.file-upload-label:hover {
  border-color: #1D54E2;
  background-color: #F9FAFB;
}
.file-upload-label.file-uploaded {
  border-color: #1D54E2;
  background-color: #eff3fe;
}

.file-upload-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #6B7280;
}

.file-upload-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
}

.file-upload-button {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
}

.file-upload-hint {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
}

.file-name-display {
  display: none;
  margin-top: 0.5rem;
  font-size: 13px;
  color: #1F2937;
  font-weight: 500;
}

.valuation-type-section {
  margin-bottom: 2rem;
}
.valuation-type-section__title {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  margin: 0 0 0.5rem 0;
}
.valuation-type-section__subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.valuation-options {
  display: flex;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .valuation-options {
    flex-direction: column;
  }
}

.valuation-option {
  flex: 1;
  cursor: pointer;
  margin: 0;
}
.valuation-option__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.valuation-option__label {
  display: block;
  padding: 0.875rem 1rem;
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  text-align: center;
  transition: all 0.2s ease;
}
.valuation-option:hover .valuation-option__label {
  border-color: #1D54E2;
  background-color: #F9FAFB;
}
.valuation-option__radio:checked + .valuation-option__label {
  border-color: #1D54E2;
  background-color: #eff3fe;
  color: #1D54E2;
}

.wizard-container {
  max-width: 550px;
  margin: 0 auto;
}

.wizard-title {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.wizard-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  margin-bottom: 2rem;
  line-height: 1.5;
}

.terms-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.term-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.term-checkbox {
  cursor: pointer;
  margin: 0;
  display: block;
}
.term-checkbox input[type=checkbox] {
  display: none;
}

.term-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.term-checkbox:hover .term-label {
  border-color: #1D54E2;
}

.term-checkbox input[type=checkbox]:checked + .term-label {
  border-color: #1D54E2;
  background: #f7f9fc;
}

.term-icon {
  width: 20px;
  height: 20px;
  border: 2px solid #DEE0E3;
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s ease;
}

.term-checkbox input[type=checkbox]:checked + .term-label .term-icon {
  background: #1D54E2;
  border-color: #1D54E2;
}

.term-checkbox input[type=checkbox]:checked + .term-label .term-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.term-content {
  flex: 1;
}

.term-title {
  font-size: 15px;
  font-weight: 500;
  color: #1F2937;
  line-height: 1.4;
  margin-bottom: 0.25rem;
}

.term-description {
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.5;
}

.term-input-container {
  padding-left: 2.75rem;
  animation: slideDown 0.2s ease;
}
.term-input-container textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 15px;
  font-weight: 400;
  color: #1F2937;
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  outline: none;
  transition: all 0.2s ease;
  resize: vertical;
  min-height: 100px;
}
.term-input-container textarea::-moz-placeholder {
  color: rgba(13, 17, 38, 0.4);
}
.term-input-container textarea::placeholder {
  color: rgba(13, 17, 38, 0.4);
}
.term-input-container textarea:focus {
  border-color: #1D54E2;
  box-shadow: 0 0 0 3px rgba(29, 84, 226, 0.1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
}
.wizard-actions--single {
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .wizard-actions {
    flex-direction: column;
  }
}

.wizard-btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #DEE0E3;
  background: transparent;
  color: #1F2937;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.wizard-btn.wizard-btn-back {
  flex: 2;
}
.wizard-btn.wizard-btn-back:hover {
  background-color: #F9FAFB;
  border-color: rgb(194.4098360656, 198.0819672131, 203.5901639344);
}
.wizard-btn.wizard-btn-next {
  background: #1D54E2;
  color: #ffffff;
  border-color: #1D54E2;
  flex: 8;
}
.wizard-btn.wizard-btn-next:hover {
  background-color: rgb(24.36, 70.56, 189.84);
  border-color: rgb(24.36, 70.56, 189.84);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 84, 226, 0.3);
}
.wizard-btn.wizard-btn-next:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .wizard-btn {
    width: 100%;
  }
}

.wizard-header {
  background-color: #FFFFFF;
  border-bottom: 1px solid #DEE0E3;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.wizard-header__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.wizard-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.wizard-header__logo-img {
  height: 32px;
  width: 32px;
}
.wizard-header__logo:hover {
  text-decoration: none;
}
.wizard-header__progress {
  width: 550px;
  height: 5px;
  background-color: #E9EAEC;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.wizard-header__progress-bar {
  height: 100%;
  background-color: #1D54E2;
  border-radius: 999px;
  transition: width 0.3s ease;
}
.wizard-header__close {
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  background-color: transparent;
  border: 1px solid #DEE0E3;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.wizard-header__close:hover {
  background-color: #F9FAFB;
  text-decoration: none;
}

.wizard-main {
  flex: 1;
  padding: 3rem 0;
}
.wizard-main__container {
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .wizard-main {
    padding: 2rem 0;
  }
  .wizard-main__container {
    padding: 0 1rem;
  }
}

.wizard-footer {
  background-color: #fff;
  border-top: 1px solid #DEE0E3;
  padding: 1.5rem 0;
  margin-top: auto;
}
.wizard-footer__container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.wizard-card {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
}
.wizard-card__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #DEE0E3;
}
.wizard-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #1F2937;
  margin-bottom: 0.5rem;
}
.wizard-card__subtitle {
  font-size: 16px;
  color: #6B7280;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .wizard-card {
    padding: 1.5rem;
    border-radius: 8px;
  }
  .wizard-card__title {
    font-size: 20px;
  }
  .wizard-card__subtitle {
    font-size: 14px;
  }
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #DEE0E3;
}
.wizard-nav__btn {
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.wizard-nav__btn--primary {
  background-color: #1D54E2;
  color: #fff;
}
.wizard-nav__btn--primary:hover {
  background-color: rgb(24.36, 70.56, 189.84);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 84, 226, 0.3);
}
.wizard-nav__btn--primary:active {
  transform: translateY(0);
}
.wizard-nav__btn--secondary {
  background-color: transparent;
  color: #1F2937;
  border: 2px solid #DEE0E3;
}
.wizard-nav__btn--secondary:hover {
  background-color: #F9FAFB;
  border-color: rgb(194.4098360656, 198.0819672131, 203.5901639344);
}
.wizard-nav__btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wizard-nav__btn:disabled:hover {
  transform: none;
  box-shadow: none;
}
.wizard-nav__spacer {
  flex: 1;
}
@media (max-width: 576px) {
  .wizard-nav {
    flex-direction: column;
  }
  .wizard-nav__btn {
    width: 100%;
    justify-content: center;
  }
  .wizard-nav__spacer {
    display: none;
  }
}

.wizard-form-fields {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.wizard-form-group {
  display: flex;
  flex-direction: column;
}

.wizard-form-label {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  margin-bottom: 0.5rem;
}

.wizard-form-label-hint {
  font-weight: 400;
  color: #6B7280;
}

.wizard-form-input,
.wizard-form-fields input[type=text],
.wizard-form-fields input[type=url],
.wizard-form-fields input[type=email],
.wizard-form-fields input[type=number],
.wizard-form-fields textarea,
.wizard-form-fields select {
  width: 100% !important;
  padding: 0.75rem 1rem !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #1F2937 !important;
  background-color: #FFFFFF !important;
  border: 1px solid #DEE0E3 !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
  line-height: 1.5 !important;
  box-shadow: none !important;
}
.wizard-form-input::-moz-placeholder, .wizard-form-fields input[type=text]::-moz-placeholder, .wizard-form-fields input[type=url]::-moz-placeholder, .wizard-form-fields input[type=email]::-moz-placeholder, .wizard-form-fields input[type=number]::-moz-placeholder, .wizard-form-fields textarea::-moz-placeholder, .wizard-form-fields select::-moz-placeholder {
  color: #9ca3af !important;
}
.wizard-form-input::placeholder,
.wizard-form-fields input[type=text]::placeholder,
.wizard-form-fields input[type=url]::placeholder,
.wizard-form-fields input[type=email]::placeholder,
.wizard-form-fields input[type=number]::placeholder,
.wizard-form-fields textarea::placeholder,
.wizard-form-fields select::placeholder {
  color: #9ca3af !important;
}
.wizard-form-input:focus,
.wizard-form-fields input[type=text]:focus,
.wizard-form-fields input[type=url]:focus,
.wizard-form-fields input[type=email]:focus,
.wizard-form-fields input[type=number]:focus,
.wizard-form-fields textarea:focus,
.wizard-form-fields select:focus {
  outline: none !important;
  border-color: #1D54E2 !important;
  box-shadow: 0 0 0 3px rgba(29, 84, 226, 0.1) !important;
}
.wizard-form-input.is-invalid,
.wizard-form-fields input[type=text].is-invalid,
.wizard-form-fields input[type=url].is-invalid,
.wizard-form-fields input[type=email].is-invalid,
.wizard-form-fields input[type=number].is-invalid,
.wizard-form-fields textarea.is-invalid,
.wizard-form-fields select.is-invalid {
  border-color: #dc2626 !important;
}

.wizard-form-fields select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  background-size: 16px !important;
  padding-right: 2.5rem !important;
  cursor: pointer !important;
}

.wizard-form-error {
  margin-top: 0.5rem;
  font-size: 13px;
  color: #dc2626;
}

.wizard-multiselect {
  position: relative;
}
.wizard-multiselect__trigger {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  text-align: left;
}
.wizard-multiselect__trigger:hover {
  border-color: #1D54E2;
}
.wizard-multiselect__trigger[aria-expanded=true] {
  border-color: #1D54E2;
  box-shadow: 0 0 0 3px rgba(29, 84, 226, 0.1);
}
.wizard-multiselect__selected {
  flex: 1;
}
.wizard-multiselect__placeholder {
  font-size: 14px;
  color: #9ca3af;
}
.wizard-multiselect__value {
  font-size: 14px;
  color: #1F2937;
}
.wizard-multiselect__chevron {
  display: flex;
  align-items: center;
  color: #6B7280;
  transition: transform 0.2s ease;
}
.wizard-multiselect__trigger[aria-expanded=true] .wizard-multiselect__chevron {
  transform: rotate(180deg);
}
.wizard-multiselect__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 100;
  max-height: 320px;
  display: flex;
  flex-direction: column;
}
.wizard-multiselect__search {
  padding: 0.75rem;
  border-bottom: 1px solid #DEE0E3;
}
.wizard-multiselect__search-input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 14px;
  border: 1px solid #DEE0E3;
  border-radius: 6px;
  background: #F9FAFB;
}
.wizard-multiselect__search-input:focus {
  outline: none;
  border-color: #1D54E2;
  background: #FFFFFF;
}
.wizard-multiselect__list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  overflow-y: auto;
  flex: 1;
}
.wizard-multiselect__item {
  margin: 0;
}
.wizard-multiselect__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 1rem;
  cursor: pointer;
  transition: background-color 0.15s ease;
  margin: 0;
}
.wizard-multiselect__option:hover {
  background-color: #F9FAFB;
}
.wizard-multiselect__checkbox {
  width: 16px;
  height: 16px;
  min-width: 16px;
  cursor: pointer;
  accent-color: #1D54E2;
}
.wizard-multiselect__label {
  font-size: 14px;
  color: #1F2937;
  cursor: pointer;
}

.review-company-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 0.5rem 0.75rem;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px solid #DEE0E3;
}

.review-company-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1D54E2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  flex-shrink: 0;
}

.review-company-name {
  font-size: 16px;
  font-weight: 600;
  color: #1F2937;
  margin: 0;
}

.review-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.review-accordion-item {
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.review-accordion-header {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
  position: relative;
  transition: background-color 0.2s ease;
}
.review-accordion-header:hover {
  background-color: #F9FAFB;
}

.review-accordion-title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.review-accordion-title {
  font-size: 15px;
  font-weight: 600;
  color: #1F2937;
  display: block;
}

.review-accordion-subtitle {
  font-size: 13px;
  font-weight: 400;
  color: #6B7280;
  display: none;
}

.review-accordion-item.is-open .review-accordion-subtitle {
  display: block;
}

.review-accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B7280;
  transition: transform 0.3s ease;
  margin-left: auto;
  flex-shrink: 0;
}
.review-accordion-icon svg {
  display: block;
}

.review-accordion-content {
  padding: 0 1.25rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.review-accordion-content[hidden] {
  display: none;
}

.review-field {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.5rem 0;
}
.review-field:not(:last-child) {
  border-bottom: 1px solid #F9FAFB;
}

.review-field-label {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  flex-shrink: 0;
}

.review-field-value {
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  text-align: right;
  word-break: break-word;
}

@media (max-width: 768px) {
  .review-field {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .review-field-value {
    text-align: left;
  }
}
.role-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.role-option {
  cursor: pointer;
  display: block;
  margin: 0;
}
.role-option__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.role-option__card {
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s ease;
}
.role-option:hover .role-option__card {
  border-color: #1D54E2;
  box-shadow: 0 2px 8px rgba(29, 84, 226, 0.1);
}
.role-option__radio:checked + .role-option__card {
  border-color: #1D54E2;
  background-color: #eff3fe;
}
.role-option__radio:checked + .role-option__card .role-option__indicator {
  background-color: #1D54E2;
  border-color: #1D54E2;
}
.role-option__radio:checked + .role-option__card .role-option__indicator::after {
  opacity: 1;
}
.role-option__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.role-option__indicator {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid #DEE0E3;
  background: #FFFFFF;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.role-option__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.role-option__content {
  flex: 1;
}
.role-option__title {
  font-size: 15px;
  font-weight: 500;
  color: #1F2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}
.role-option__description {
  font-size: 15px;
  font-weight: 400;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .role-option__card {
    padding: 0.875rem;
  }
  .role-option__title {
    font-size: 14px;
  }
  .role-option__description {
    font-size: 13px;
  }
}
.path-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.path-option {
  cursor: pointer;
  display: block;
  margin: 0;
}
.path-option__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.path-option__card {
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s ease;
}
.path-option:hover .path-option__card {
  border-color: #1D54E2;
  box-shadow: 0 2px 8px rgba(29, 84, 226, 0.1);
}
.path-option__radio:checked + .path-option__card {
  border-color: #1D54E2;
  background-color: #eff3fe;
}
.path-option__radio:checked + .path-option__card .path-option__indicator {
  background-color: #1D54E2;
  border-color: #1D54E2;
}
.path-option__radio:checked + .path-option__card .path-option__indicator::after {
  opacity: 1;
}
.path-option__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.path-option__indicator {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid #DEE0E3;
  background: #FFFFFF;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.path-option__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.path-option__content {
  flex: 1;
}
.path-option__title {
  font-size: 15px;
  font-weight: 500;
  color: #1F2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}
.path-option__description {
  font-size: 15px;
  font-weight: 400;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .path-option__card {
    padding: 0.875rem;
  }
  .path-option__title {
    font-size: 14px;
  }
  .path-option__description {
    font-size: 13px;
  }
}
.product-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-option {
  cursor: pointer;
  display: block;
  margin: 0;
}
.product-option__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.product-option__card {
  background: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.2s ease;
}
.product-option:hover .product-option__card {
  border-color: #1D54E2;
  box-shadow: 0 2px 8px rgba(29, 84, 226, 0.1);
}
.product-option__radio:checked + .product-option__card {
  border-color: #1D54E2;
  background-color: #eff3fe;
}
.product-option__radio:checked + .product-option__card .product-option__indicator {
  background-color: #1D54E2;
  border-color: #1D54E2;
}
.product-option__radio:checked + .product-option__card .product-option__indicator::after {
  opacity: 1;
}
.product-option__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.product-option__indicator {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  border: 2px solid #DEE0E3;
  background: #FFFFFF;
  position: relative;
  transition: all 0.2s ease;
  margin-top: 2px;
}
.product-option__indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.product-option__content {
  flex: 1;
}
.product-option__title {
  font-size: 15px;
  font-weight: 500;
  color: #1F2937;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}
.product-option__description {
  font-size: 15px;
  font-weight: 400;
  color: #6B7280;
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .product-option__card {
    padding: 0.875rem;
  }
  .product-option__title {
    font-size: 14px;
  }
  .product-option__description {
    font-size: 13px;
  }
}
.company-summary {
  max-width: 600px;
  margin: 0 auto;
}

.summary-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}

.summary-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.company-avatar {
  width: 48px;
  height: 48px;
  background: #2563eb;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
}

.company-info {
  flex: 1;
}

.company-info h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}

.company-type {
  font-size: 14px;
  color: #6b7280;
}

.company-info span {
  color: #6b7280;
  font-size: 14px;
}

.edit-btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: #6b7280;
  border-radius: 6px;
}

.edit-btn:hover {
  background: #f3f4f6;
  color: #374151;
}

.summary-section {
  margin-bottom: 24px;
}

.summary-section:last-child {
  margin-bottom: 0;
}

.summary-section h4 {
  margin: 0 0 8px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.section-subtitle {
  color: #6b7280;
  font-size: 14px;
  margin: 0 0 16px 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f3f4f6;
}

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

.info-label {
  color: #374151;
  font-weight: 500;
  font-size: 14px;
}

.info-value {
  color: #6b7280;
  font-size: 14px;
}

.company-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.company-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.company-form .form-label {
  font-size: 14px;
  font-weight: 500;
  color: -text-primary;
  margin: 0;
}
.company-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 14px;
  font-weight: 400;
  color: -text-primary;
  background-color: -bg-white;
  border: 1px solid -border-color;
  border-radius: 8px;
  transition: all 0.2s ease;
  line-height: 1.5;
  box-shadow: none;
}
.company-form .form-control::-moz-placeholder {
  color: #9ca3af;
}
.company-form .form-control::placeholder {
  color: #9ca3af;
}
.company-form .form-control:focus {
  outline: none;
  border-color: #1D54E2;
  box-shadow: 0 0 0 3px rgba(29, 84, 226, 0.1);
}
.company-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%236B7280' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

.wizard-actions {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 2rem;
}
.wizard-actions .btn-wizard--outline {
  background-color: transparent;
  color: -text-primary;
  border: 1px solid -border-color;
}
.wizard-actions .btn-wizard--outline:hover {
  background-color: #F9FAFB;
  border-color: rgb(194.4098360656, 198.0819672131, 203.5901639344);
}
@media (max-width: 768px) {
  .wizard-actions {
    flex-direction: column;
  }
  .wizard-actions .btn-wizard {
    width: 100%;
  }
}

.company-details {
  padding: 0;
}

.expand-icon {
  transition: transform 0.2s ease;
}
.expand-icon.rotated {
  transform: rotate(180deg);
}

.social-login-divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 1.5rem 0;
}
.social-login-divider::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #DEE0E3;
  content: "";
}
.social-login-divider span {
  background-color: #FFFFFF;
  padding: 0 1rem;
  font-size: 14px;
  font-weight: 400;
  color: #6B7280;
  position: relative;
  z-index: 1;
}

.social-login-buttons {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.social-login-buttons .btn-social {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background-color: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  color: #1F2937;
  font-weight: 500;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-family: "Inter", sans-serif;
}
.social-login-buttons .btn-social:hover {
  background-color: #F9FAFB;
  border-color: #CBD5E1;
  color: #1F2937;
  text-decoration: none;
}
.social-login-buttons .btn-social svg {
  width: 18px;
  height: 18px;
}
@media (max-width: 576px) {
  .social-login-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }
  .social-login-buttons .btn-social {
    width: 100%;
  }
}

.wizard-file-upload {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background-color: #FFFFFF;
  border: 1px solid #DEE0E3;
  border-radius: 8px;
  transition: all 0.2s ease;
}
.wizard-file-upload:hover {
  border-color: #1D54E2;
}
.wizard-file-upload__button {
  padding: 0.5rem 1rem;
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  background-color: #F9FAFB;
  border: 1px solid #DEE0E3;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.wizard-file-upload__button:hover {
  background-color: #F3F4F6;
  border-color: #D1D5DB;
}
.wizard-file-upload__button:active {
  transform: translateY(1px);
}
.wizard-file-upload__text {
  font-size: 14px;
  color: #6B7280;
  flex: 1;
}

.wizard-select-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.wizard-select-wrapper select {
  padding-right: 2.5rem !important;
  background-image: none !important;
}
.wizard-select-wrapper .wizard-select-arrow {
  position: absolute;
  right: 1rem;
  pointer-events: none;
  display: flex;
  align-items: center;
  color: #6B7280;
}
.wizard-select-wrapper .wizard-select-arrow svg {
  width: 16px;
  height: 16px;
}

.wizard-form-input--hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.form-check-wizard {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form-check-wizard__input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #1D54E2;
}
.form-check-wizard__label {
  font-size: 14px;
  font-weight: 500;
  color: #1F2937;
  line-height: 20px;
  cursor: pointer;
  flex: 1;
}
