/* ── Apply Row (안심 + 폼) ── */
.apply-row { display: flex; gap: 48px; align-items: stretch; }
.apply-left { flex: 0 0 320px; display: flex; flex-direction: column; }
.apply-right { flex: 1; }

.apply-section-title {
  font-size: clamp(22px, 3vw, 28px); font-weight: 700;
  color: var(--text-primary); line-height: 1.4; margin-bottom: 32px;
}
.apply-guarantees { display: flex; flex-direction: column; gap: 28px; flex: 1; }
.apply-guarantee {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px; border-radius: 12px;
  transition: background 0.2s;
}
.apply-guarantee:hover { background: rgba(155,114,200,0.05); }
.apply-guarantee > i {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--bg-sub); color: var(--purple);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px;
}
.apply-guarantee strong { font-size: 14px; font-weight: 600; color: var(--text-primary); display: block; margin-bottom: 4px; }
.apply-guarantee p { font-size: 13px; color: var(--text-secondary); line-height: 1.5; margin: 0; }

/* ── Inquiry Box ── */
.inquiry-box {
  background: var(--bg-sub); border: 1px solid var(--border); border-radius: 16px;
  overflow: hidden; position: relative;
}
.inquiry-box::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--brand-gradient);
}
.inquiry-header { padding: 28px 28px 20px; border-bottom: 1px solid var(--border); }
.inquiry-title { font-size: 20px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.inquiry-desc { font-size: 13px; color: var(--text-secondary); }
.inquiry-form { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 14px; }
.inquiry-field { display: flex; flex-direction: column; gap: 5px; }
.inquiry-field label { font-size: 12px; font-weight: 500; color: var(--text-secondary); }
.inquiry-field .required { color: var(--brand-light); }
.inquiry-field input, .inquiry-field select, .inquiry-field textarea {
  padding: 11px 14px; font-size: 14px; border-radius: 8px; border: 1px solid var(--border);
  background: var(--bg-main); color: var(--text-primary); outline: none; font-family: inherit;
  transition: border-color 0.2s;
}
.inquiry-field input:focus, .inquiry-field select:focus, .inquiry-field textarea:focus { border-color: var(--brand-light); }
.inquiry-field input::placeholder, .inquiry-field textarea::placeholder { color: var(--text-tertiary); }
.inquiry-field select { color: var(--text-tertiary); cursor: pointer; }
.inquiry-field select option { background: var(--bg-main); color: var(--text-primary); }
.inquiry-field textarea { resize: none; }
.inquiry-submit { width: 100%; padding: 13px; font-size: 14px; margin-top: 4px; }
.btn-inquiry-kakao {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; font-size: 14px; font-weight: 600; border-radius: 8px;
  background: #F7E600; color: #3C1E1E; transition: opacity 0.2s;
}
.btn-inquiry-kakao:hover { opacity: 0.9; }
.inquiry-note { font-size: 11px; color: var(--text-tertiary); text-align: center; margin-top: 2px; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
.faq-question {
  width: 100%; padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; background: var(--bg-card);
  font-size: 14px; font-weight: 500; color: var(--text-primary);
  cursor: pointer; text-align: left;
}
.faq-question i { font-size: 12px; color: var(--text-tertiary); transition: transform 0.2s; flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question { background: var(--bg-sub); }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { display: none; padding: 20px 24px; background: var(--bg-sub); }
.faq-item.open .faq-answer { display: block; }
.faq-answer p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Responsive ── */
@media (max-width: 767px) {
  .apply-row { flex-direction: column; gap: 32px; }
  .apply-right { max-width: 100%; }
}

/* ━━━ 히어로 카피 ━━━ */
.hero-copy {
  margin-top: 24px;
}
.hero-copy p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.hero-copy-accent {
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ━━━ 문의 유형 select 가시성 ━━━ */
.inquiry-field select {
  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='%23C9A0D4' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  color: var(--text-primary);
  font-size: 14px;
}
.inquiry-field select option {
  background: var(--bg-card);
  color: var(--text-primary);
}
.inquiry-field select:invalid,
.inquiry-field select option[value=""][disabled] {
  color: var(--text-tertiary);
}
.inquiry-type-hint {
  font-size: 11px;
  color: var(--brand-dark);
  margin-left: 6px;
  font-weight: 400;
}
