/* ─── Footer Static Pages ────────────────────────────────── */
.fp-page { min-height: 100vh; background: var(--bg); display: flex; flex-direction: column; }
.fp-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}
.fp-content { max-width: 760px; margin: 0 auto; padding: 60px 40px 80px; }
.fp-eyebrow { font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 12px; }
.fp-title { font-size: clamp(26px, 4vw, 44px); font-weight: 800; letter-spacing: -1.5px; margin-bottom: 16px; line-height: 1.15; }
.fp-subtitle { font-size: 16px; color: var(--text-muted); line-height: 1.65; margin-bottom: 48px; }
.fp-divider { border: none; border-top: 1px solid var(--border); margin: 40px 0; }

.fp-section { margin-bottom: 40px; }
.fp-section-title { font-size: 17px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.fp-section p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 12px; }
.fp-section ul { padding-left: 20px; display: flex; flex-direction: column; gap: 8px; }
.fp-section li { font-size: 15px; color: var(--text-muted); line-height: 1.7; }
.fp-section h4 { font-size: 15px; font-weight: 700; color: var(--text); margin: 20px 0 8px; }

/* Service Intro Feature Cards */
.fp-feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin: 24px 0; }
.fp-feature-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.2s, border-color 0.2s;
}
.fp-feature-card:hover { transform: translateY(-2px); border-color: var(--primary-border); }
.fp-feature-icon { font-size: 24px; margin-bottom: 10px; }
.fp-feature-card h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.fp-feature-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Contact Form */
.fp-contact-form { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.fp-form-field { display: flex; flex-direction: column; gap: 6px; }
.fp-form-label { font-size: 13px; font-weight: 600; color: var(--text); }
.fp-form-input {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  width: 100%;
  transition: border-color 0.2s;
  background: var(--bg-white);
  font-family: inherit;
}
.fp-form-input:focus { outline: none; border-color: var(--primary); }
.fp-form-textarea { min-height: 140px; resize: vertical; }
.fp-form-submit {
  padding: 13px 28px;
  background: var(--text);
  color: var(--bg);
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  align-self: flex-start;
}
.fp-form-submit:hover { background: #292524; }

/* ── 내 문의 내역 확인 ────────────────────────────────── */
.fp-my-contact {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.fp-my-contact-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.fp-my-contact-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.fp-my-contact-form { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.fp-my-contact-form .fp-form-input { flex: 1; min-width: 240px; }
.fp-check-btn { align-self: auto !important; white-space: nowrap; }

.fp-my-empty { font-size: 14px; color: var(--text-muted); padding: 20px 0; }

.fp-my-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  margin-bottom: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fp-my-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.fp-my-type {
  font-size: 12px;
  font-weight: 700;
  background: var(--primary-light);
  color: var(--primary);
  border: 1px solid var(--primary-border);
  border-radius: var(--radius-full);
  padding: 2px 10px;
}
.fp-my-date { font-size: 12px; color: var(--text-light); margin-left: auto; }
.fp-my-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: var(--radius-full);
}
.fp-my-status.answered { background: #dcfce7; color: #16a34a; }
.fp-my-status.pending  { background: #fef9c3; color: #ca8a04; }
.fp-my-content {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}
.fp-my-reply {
  background: var(--primary-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fp-my-reply-label { font-size: 11px; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .05em; }
.fp-my-reply-text  { font-size: 14px; color: var(--text); line-height: 1.6; white-space: pre-wrap; word-break: break-word; margin: 0; }
.fp-my-reply-date  { font-size: 11px; color: var(--text-light); }
.fp-my-pending {
  font-size: 13px;
  color: var(--text-muted);
  padding: 10px 12px;
  background: #fafaf8;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}

/* Contact Info Cards */
.fp-contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
.fp-contact-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
}
.fp-contact-card-icon { font-size: 24px; margin-bottom: 10px; }
.fp-contact-card-label { font-size: 12px; color: var(--text-light); margin-bottom: 4px; }
.fp-contact-card-value { font-size: 14px; font-weight: 600; color: var(--text); }

@media (max-width: 768px) {
  .fp-content { padding: 40px 16px 60px; }
  .fp-nav { padding: 12px 16px; }
  .fp-feature-grid { grid-template-columns: 1fr; }
  .fp-contact-cards { grid-template-columns: 1fr; }
}
