/* =========================================================
   wenjuan.css  –  Intake Form 问卷页样式
   ========================================================= */

/* ── Intake Section ────────────────────────────────────── */
.intake {
  padding: 120px 40px 96px;
  max-width: 768px;
  margin: 0 auto;
}
.intake-inner .section-label {
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.intake-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  letter-spacing: -0.2px;
  margin-bottom: 32px;
}

/* ── Form Block Label ──────────────────────────────────── */
.form-block {
  margin-bottom: 20px;
}
.form-block-label {
  display: block;
  font-size: 0.89rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
.form-block-label span { color: var(--green); }

/* ── Select：与 input 保持完全一致 ── */
.form-group select {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: 11px 14px;
  font-size: 0.89rem;
  color: #555;
  font-family: inherit;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  background: #fff;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  cursor: pointer;
}
.form-group select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(63,203,110,0.15);
}

/* ── Checkbox List ─────────────────────────────────────── */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.89rem;
  color: #555;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--green);
  flex-shrink: 0;
}

/* ── Full-width Submit Button ──────────────────────────── */
.btn-submit-full {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  font-size: 0.89rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease;
  margin-top: 8px;
}
.btn-submit-full:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 860px) {
  .intake {
    padding: 100px 24px 72px;
  }
  .intake-title {
    font-size: 1.6rem;
  }
}
@media (max-width: 540px) {
  .intake {
    padding: 80px 18px 56px;
  }
}
