/* MENTOR APPLICATION WIZARD */

.mentors-apply-page {
  background: var(--mint);
  min-height: 100vh;
}

.mentors-apply-main {
  padding: 36px 0 70px;
}

.mentors-apply-shell {
  max-width: 720px;
  margin: 0 auto;
}

.mentors-apply-progress {
  margin-bottom: 28px;
}

.mentors-apply-progress-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.92rem;
  font-weight: 800;
  color: rgba(16, 35, 58, 0.72);
}

.mentors-apply-progress-bar {
  height: 8px;
  background: rgba(16, 35, 58, 0.1);
  border-radius: 999px;
  overflow: hidden;
}

.mentors-apply-progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(135deg, var(--green), var(--green-2));
  border-radius: 999px;
  transition: width 0.25s ease;
}

.mentors-apply-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(3, 20, 36, 0.1);
  border: 1px solid rgba(16, 35, 58, 0.06);
  padding: 36px 32px;
}

.mentors-apply-card h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: var(--deep-navy);
  letter-spacing: -0.03em;
}

.mentors-apply-card .step-intro {
  margin: 0 0 28px;
  color: rgba(16, 35, 58, 0.76);
  line-height: 1.5;
  font-size: 1.02rem;
}

.mentors-apply-step {
  display: none;
}

.mentors-apply-step.is-active {
  display: block;
}

.mentors-apply-step h2 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  color: var(--deep-navy);
}

.mentors-apply-step .step-lead {
  margin: 0 0 24px;
  color: rgba(16, 35, 58, 0.72);
  line-height: 1.5;
}

.mentors-apply-field {
  margin-bottom: 18px;
}

.mentors-apply-field label,
.mentors-apply-field legend {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--deep-navy);
  font-size: 0.95rem;
}

.mentors-apply-field input[type="text"],
.mentors-apply-field input[type="email"],
.mentors-apply-field input[type="tel"],
.mentors-apply-field input[type="url"],
.mentors-apply-field select,
.mentors-apply-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(16, 35, 58, 0.14);
  border-radius: 12px;
  font: inherit;
  color: var(--text);
  background: #fff;
}

.mentors-apply-field textarea {
  min-height: 120px;
  resize: vertical;
}

.mentors-apply-field input:focus,
.mentors-apply-field select:focus,
.mentors-apply-field textarea:focus {
  outline: 2px solid rgba(59, 127, 50, 0.35);
  border-color: var(--green);
}

.mentors-apply-field.has-error input,
.mentors-apply-field.has-error select,
.mentors-apply-field.has-error textarea {
  border-color: #c0392b;
}

.mentors-apply-field-error {
  display: none;
  margin-top: 6px;
  color: #c0392b;
  font-size: 0.88rem;
  font-weight: 700;
}

.mentors-apply-field.has-error .mentors-apply-field-error {
  display: block;
}

.mentors-apply-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mentors-apply-schedule-box {
  background: var(--mint);
  border: 1px solid rgba(59, 127, 50, 0.2);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 22px;
  text-align: center;
}

.mentors-apply-schedule-box p {
  margin: 0 0 18px;
  color: rgba(16, 35, 58, 0.8);
  line-height: 1.5;
}

.mentors-apply-track-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.mentors-apply-track-option {
  position: relative;
}

.mentors-apply-track-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.mentors-apply-track-option label {
  display: block;
  padding: 20px 18px;
  border: 2px solid rgba(16, 35, 58, 0.12);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  margin: 0;
}

.mentors-apply-track-option label strong {
  display: block;
  margin-bottom: 6px;
  color: var(--deep-navy);
}

.mentors-apply-track-option label span {
  font-size: 0.9rem;
  color: rgba(16, 35, 58, 0.72);
  font-weight: 600;
  line-height: 1.4;
}

.mentors-apply-track-option input:checked + label {
  border-color: var(--green);
  background: rgba(143, 207, 95, 0.12);
}

.mentors-apply-track-fields {
  display: none;
}

.mentors-apply-track-fields.is-visible {
  display: block;
}

.mentors-apply-checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.mentors-apply-checkbox-grid label,
.mentors-apply-radio-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 600;
  color: rgba(16, 35, 58, 0.86);
  cursor: pointer;
  margin: 0;
  line-height: 1.4;
}

.mentors-apply-checkbox-grid input,
.mentors-apply-radio-row input {
  margin-top: 3px;
  flex-shrink: 0;
}

.mentors-apply-radio-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mentors-apply-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(16, 35, 58, 0.08);
}

.mentors-apply-actions .btn-back {
  background: transparent;
  border: 1px solid rgba(16, 35, 58, 0.16);
  color: var(--deep-navy);
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.mentors-apply-actions .btn-back:hover {
  background: rgba(16, 35, 58, 0.04);
}

.mentors-apply-actions .btn-back:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.mentors-apply-disclaimer {
  margin-top: 18px;
  font-size: 0.86rem;
  color: rgba(16, 35, 58, 0.62);
  line-height: 1.5;
}

.mentors-apply-status {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 700;
}

.mentors-apply-status.is-error {
  display: block;
  background: #fdecea;
  color: #922b21;
}

.mentors-apply-status.is-success {
  display: block;
  background: #eaf4e8;
  color: #2d6a2d;
}

.mentors-apply-honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* THANKS PAGE */

.mentors-thanks-page {
  background: var(--mint);
}

.mentors-thanks-main {
  padding: 60px 0 80px;
}

.mentors-thanks-card {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(3, 20, 36, 0.1);
  padding: 48px 36px;
  text-align: center;
}

.mentors-thanks-card span {
  font-size: 3rem;
  display: block;
  margin-bottom: 18px;
}

.mentors-thanks-card h1 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--deep-navy);
  letter-spacing: -0.03em;
}

.mentors-thanks-card h1 span {
  font-size: inherit;
  display: inline;
  color: var(--green);
}

.mentors-thanks-card p {
  margin: 0 0 16px;
  color: rgba(16, 35, 58, 0.78);
  line-height: 1.55;
  font-size: 1.05rem;
}

.mentors-thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

@media (max-width: 720px) {
  .mentors-apply-card {
    padding: 28px 20px;
  }

  .mentors-apply-row,
  .mentors-apply-track-options,
  .mentors-apply-checkbox-grid {
    grid-template-columns: 1fr;
  }

  .mentors-apply-actions {
    flex-direction: column-reverse;
  }

  .mentors-apply-actions .btn,
  .mentors-apply-actions .btn-back {
    width: 100%;
  }
}
