@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* =============================================
   READYJOBFLOW — CONTRACTOR SIGNUP FLOW
   Light theme: white bg · blue primary · red accent
   ============================================= */

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Override dark site variables for this page */
body {
  background: #FFFFFF;
  color: #111827;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ---- NAV ---- */
.su-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid #E5E7EB;
}

.su-nav__inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.su-nav__logo {
  font-size: 17px;
  font-weight: 900;
  color: #111827;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.su-nav__logo span { color: #DC2626; }

.su-nav__back {
  font-size: 13px;
  font-weight: 500;
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s;
}

.su-nav__back:hover { color: #111827; }

/* ---- MAIN ---- */
.su-main {
  padding: 96px 0 80px;
  min-height: 100vh;
}

.su-container {
  max-width: 580px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- PROGRESS ---- */
.su-progress {
  margin-bottom: 52px;
  padding-top: 20px;
}

.su-progress__bar {
  height: 4px;
  background: #E5E7EB;
  border-radius: 100px;
  overflow: hidden;
  margin-bottom: 11px;
}

.su-progress__fill {
  height: 100%;
  background: #2563EB;
  border-radius: 100px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.su-progress__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.su-progress__step {
  font-size: 12px;
  font-weight: 700;
  color: #2563EB;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.su-progress__free {
  font-size: 12px;
  color: #9CA3AF;
}

/* ---- STEPS ---- */
.su-step { display: none; }

.su-step.active {
  display: block;
  animation: suFadeIn 0.28s ease;
}

@keyframes suFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.su-step__title {
  font-size: clamp(24px, 4.5vw, 36px);
  font-weight: 800;
  color: #111827;
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
}

.su-step__sub {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 500px;
}

/* ---- FORM ELEMENTS ---- */
.su-field { margin-bottom: 18px; }

.su-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: #6B7280;
  margin-bottom: 7px;
}

.su-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #D1D5DB;
}

.su-input,
.su-select {
  width: 100%;
  padding: 13px 15px;
  background: #FFFFFF;
  border: 1.5px solid #D1D5DB;
  border-radius: 10px;
  color: #111827;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.4;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.su-input::placeholder { color: #9CA3AF; }

.su-input:focus,
.su-select:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.su-input.has-error,
.su-select.has-error {
  border-color: #EF4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.08);
}

.su-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: #FFFFFF;
  padding-right: 44px;
}

.su-select option {
  background: #FFFFFF;
  color: #111827;
}

.su-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* ---- ERRORS ---- */
.su-error {
  display: none;
  font-size: 12px;
  color: #EF4444;
  margin-top: 6px;
}

/* ---- CHECKBOX GRID ---- */
.su-checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 6px;
}

.su-checkbox-item {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  position: relative;
}

.su-checkbox-item:hover { border-color: #93C5FD; }

.su-checkbox-item:has(input:checked) {
  border-color: #2563EB;
  background: #EFF6FF;
}

.su-checkbox-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.su-checkbox-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid #D1D5DB;
  background: #FFFFFF;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}

.su-checkbox-item:has(input:checked) .su-checkbox-box {
  border-color: #2563EB;
  background: #2563EB;
}

.su-checkbox-item:has(input:checked) .su-checkbox-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 2px;
  width: 10px;
  height: 6px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.su-checkbox-item > span:last-child {
  font-size: 14px;
  color: #374151;
  line-height: 1.3;
}

/* ---- RADIO CARDS ---- */
.su-radio-cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 4px;
}

.su-radio-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  position: relative;
}

.su-radio-card:hover { border-color: #93C5FD; }

.su-radio-card:has(input:checked) {
  border-color: #2563EB;
  background: #EFF6FF;
}

.su-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.su-radio-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #D1D5DB;
  flex-shrink: 0;
  position: relative;
  transition: border-color 0.15s;
  background: #FFFFFF;
}

.su-radio-card:has(input:checked) .su-radio-dot {
  border-color: #2563EB;
}

.su-radio-card:has(input:checked) .su-radio-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2563EB;
}

.su-radio-card > span:last-child {
  font-size: 15px;
  color: #374151;
  font-weight: 500;
}

/* ---- DELIVERY GRID ---- */
.su-delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 6px;
}

.su-delivery-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.15s, background 0.15s;
  user-select: none;
  position: relative;
}

.su-delivery-card:hover { border-color: #93C5FD; }

.su-delivery-card:has(input:checked) {
  border-color: #2563EB;
  background: #EFF6FF;
}

.su-delivery-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.su-delivery-icon { font-size: 26px; line-height: 1; }

.su-delivery-label {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

/* ---- ACKNOWLEDGE ---- */
.su-acknowledge {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
  margin-top: 14px;
  padding: 14px 16px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  transition: border-color 0.15s;
  position: relative;
}

.su-acknowledge:hover { border-color: #93C5FD; }

.su-acknowledge:has(input:checked) { border-color: #2563EB; }

.su-acknowledge input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.su-ack-box {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1.5px solid #D1D5DB;
  background: #FFFFFF;
  flex-shrink: 0;
  margin-top: 1px;
  position: relative;
  transition: border-color 0.15s, background 0.15s;
}

.su-acknowledge:has(input:checked) .su-ack-box {
  border-color: #2563EB;
  background: #2563EB;
}

.su-acknowledge:has(input:checked) .su-ack-box::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 2px;
  width: 12px;
  height: 7px;
  border: 2px solid #FFFFFF;
  border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}

.su-acknowledge > span:last-child {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.55;
}

/* ---- VALUE SCREEN (Step 7) ---- */
.su-value-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #DC2626;
  padding: 5px 13px;
  border: 1px solid rgba(220,38,38,0.25);
  border-radius: 100px;
  background: rgba(220,38,38,0.06);
  margin-bottom: 18px;
}

.su-value-body { margin-bottom: 28px; }

.su-value-body p {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.72;
  margin-bottom: 14px;
}

.su-value-emphasis {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #111827 !important;
}

.su-value-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 36px;
}

.su-value-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 13px 18px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-size: 14px;
  color: #374151;
}

.su-value-check {
  color: #2563EB;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
}

/* ---- ACTIONS ---- */
.su-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding-bottom: 60px;
}

.su-btn-back {
  flex-shrink: 0;
  padding: 13px 18px;
  background: transparent;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  color: #6B7280;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.su-btn-back:hover {
  border-color: #9CA3AF;
  color: #111827;
}

.su-btn-continue {
  flex: 1;
  padding: 14px 24px;
  background: #2563EB;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
  letter-spacing: 0.01em;
}

.su-btn-continue:hover {
  background: #1D4ED8;
  box-shadow: 0 6px 24px rgba(37,99,235,0.25);
}

.su-btn-continue:active { transform: scale(0.99); }

.su-btn-continue:disabled {
  background: #93C5FD;
  cursor: not-allowed;
  box-shadow: none;
}

/* ---- CONFIRMATION ---- */
.su-step--confirm { text-align: center; padding: 48px 0; }

.su-confirm-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: #DCFCE7;
  border: 1.5px solid #86EFAC;
  color: #16A34A;
  font-size: 28px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.su-confirm-title { text-align: center; }

.su-confirm-body {
  font-size: 16px;
  color: #6B7280;
  line-height: 1.7;
  max-width: 420px;
  margin: 12px auto 36px;
}

.su-confirm-countdown {
  margin: 8px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.su-confirm-countdown__num {
  font-size: 72px;
  font-weight: 900;
  color: #2563EB;
  line-height: 1;
  letter-spacing: -0.04em;
  transition: opacity 0.3s;
}

.su-confirm-countdown__label {
  font-size: 13px;
  color: #9CA3AF;
}

.su-confirm-next {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  max-width: 380px;
  margin: 0 auto 32px;
}

.su-confirm-next__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: #374151;
  line-height: 1.5;
}

.su-confirm-next__num {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #2563EB;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.su-btn-home {
  display: inline-block;
  padding: 13px 26px;
  background: #F9FAFB;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  color: #374151;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.su-btn-home:hover {
  border-color: #2563EB;
  color: #2563EB;
}

/* ---- STEP 1 VS COMPARISON ---- */
.su-step1-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 32px;
}

.su-step1-vs__col {
  border-radius: 12px;
  padding: 16px 18px;
}

.su-step1-vs__col--bad {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
}

.su-step1-vs__col--good {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
}

.su-step1-vs__label {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
}

.su-step1-vs__col--bad .su-step1-vs__label { color: #DC2626; }
.su-step1-vs__col--good .su-step1-vs__label { color: #2563EB; }

.su-step1-vs__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.su-step1-vs__col ul li {
  font-size: 13px;
  line-height: 1.45;
  color: #4B5563;
  padding-left: 16px;
  position: relative;
}

.su-step1-vs__col--bad ul li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 700;
}

.su-step1-vs__col--good ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563EB;
  font-weight: 700;
}

/* ---- VS COMPARISON (Step 7) ---- */
.su-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.su-vs__col {
  border-radius: 14px;
  padding: 20px 18px;
}

.su-vs__col--bad {
  background: #FEF2F2;
  border: 1.5px solid #FECACA;
}

.su-vs__col--good {
  background: #EFF6FF;
  border: 1.5px solid #BFDBFE;
}

.su-vs__heading {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.su-vs__col--bad .su-vs__heading { color: #DC2626; }
.su-vs__col--good .su-vs__heading { color: #2563EB; }

.su-vs__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.su-vs__list li {
  font-size: 13px;
  line-height: 1.45;
  color: #4B5563;
  padding-left: 18px;
  position: relative;
}

.su-vs__col--bad .su-vs__list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #EF4444;
  font-weight: 700;
}

.su-vs__col--good .su-vs__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2563EB;
  font-weight: 700;
}

.su-value-quote {
  font-size: 15px;
  font-style: italic;
  color: #374151;
  line-height: 1.65;
  border-left: 3px solid #2563EB;
  padding: 4px 0 4px 16px;
  margin: 0 0 32px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 500px) {
  .su-row { grid-template-columns: 1fr; }
  .su-checkbox-grid { grid-template-columns: 1fr; }
  .su-vs { grid-template-columns: 1fr; }
  .su-step1-vs { grid-template-columns: 1fr; }

  .su-actions {
    flex-direction: column-reverse;
    gap: 8px;
  }

  .su-btn-back,
  .su-btn-continue {
    width: 100%;
    text-align: center;
  }
}
