/* PSI REGISTRATION — additional styles */

/* Gold CTA */
.btn-gold {
  background: var(--gold);
  box-shadow: 0 4px 18px rgba(201,146,42,.32);
}
.btn-gold:hover {
  background: #a87520;
  box-shadow: 0 8px 28px rgba(201,146,42,.42);
}

/* Hero section (mirrors hero-form but with gold accent) */
.psi-section {
  min-height: 100vh;
  padding: 130px 24px 80px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.psi-bg-blob {
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,146,42,.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.psi-blob-2 {
  top: auto; right: auto;
  bottom: -150px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(44,181,168,.06) 0%, transparent 70%);
}
.psi-outer {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Perks list */
.psi-perks { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.psi-perk {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform .22s, box-shadow .22s;
}
.psi-perk:hover { transform: translateX(4px); box-shadow: var(--shadow-s); }
.psi-perk-ico {
  width: 40px; height: 40px; border-radius: 10px;
  display: flex; align-items: center; justify-content:center; flex-shrink: 0;
}
.psi-perk strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); }
.psi-perk span { font-size: .8rem; color: var(--muted); }

/* Step tag */
.step-tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 50px;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  text-transform: uppercase; margin-bottom: 10px;
}

/* Input prefix */
.input-prefix-wrap { display: flex; align-items: stretch; gap: 0; }
.input-prefix {
  display: flex; align-items: center; padding: 0 14px;
  background: var(--border); border: 1.5px solid var(--border);
  border-right: none; border-radius: 10px 0 0 10px;
  font-size: .82rem; font-weight: 700; color: var(--mid);
  white-space: nowrap;
}
.input-prefix-wrap input {
  border-radius: 0 10px 10px 0;
  border-left: none;
}
.input-prefix-wrap input:focus { border-color: var(--teal); }

/* Field hint */
.field-hint { font-size: .76rem; color: var(--muted); margin-top: 2px; }

/* Field divider */
.field-divider {
  display: flex; align-items: center; gap: 12px;
  margin: 20px 0 16px;
  font-size: .73rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: var(--muted);
}
.field-divider::before, .field-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}

/* Terms box */
.terms-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4px 0;
  max-height: 340px;
  overflow-y: auto;
  scroll-behavior: smooth;
}
.terms-box::-webkit-scrollbar { width: 5px; }
.terms-box::-webkit-scrollbar-track { background: transparent; }
.terms-box::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
.term-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}
.term-item:last-child { border-bottom: none; }
.term-num {
  flex-shrink: 0;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--gold-bg); color: var(--gold);
  font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px;
}
.term-item strong { display: block; font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.term-item p { font-size: .83rem; color: var(--mid); line-height: 1.6; }

/* Photo upload */
.photo-upload-area {
  display: flex; align-items: center; gap: 20px;
  padding: 18px 20px;
  background: var(--bg); border: 2px dashed var(--border);
  border-radius: var(--radius);
  transition: border-color .2s;
}
.photo-upload-area:hover { border-color: var(--gold); }
.photo-preview {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); flex-shrink: 0; overflow: hidden;
}
.photo-preview img { width: 100%; height: 100%; object-fit: cover; }
.photo-upload-info { display: flex; flex-direction: column; gap: 4px; }
.photo-upload-info strong { font-size: .9rem; font-weight: 700; color: var(--text); }
.photo-upload-info span { font-size: .79rem; color: var(--muted); }

/* Psi form card – slightly wider */
.psi-form-card { max-width: 520px; }

/* Responsive */
@media(max-width: 960px) {
  .psi-outer { grid-template-columns: 1fr; }
  .psi-copy { display: none; }
  .psi-section { padding: 100px 20px 60px; align-items: flex-start; }
}
@media(max-width: 600px) {
  .photo-upload-area { flex-direction: column; text-align: center; }
}
