/* ===========================================
   HEDING 커리어 컨설팅 - styles.css
   Google Forms 자동채움 완전판
   =========================================== */

/* ---- CSS Variables ---- */
:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #eff6ff;
  --accent: #0891b2;
  --success: #10b981;
  --error: #ef4444;
  --warning-bg: #fef9c3;
  --warning-border: #ca8a04;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;
  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-mid: #f1f5f9;
  --border: #e2e8f0;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .1);
  --shadow-lg: 0 16px 32px rgba(0, 0, 0, .14);
  --transition: .2s ease;
  --container: 1100px;
  --header-h: 60px;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-light);
  padding-top: var(--header-h);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
}

ul,
ol {
  padding-left: 1.2em;
}

li {
  margin-bottom: 4px;
}

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 56px 0;
}

.grid {
  display: grid;
  gap: 16px;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}

@media(min-width:640px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }

  section {
    padding: 80px 0;
  }
}

@media(min-width:1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.mb-xl {
  margin-bottom: 40px;
}

.mt-lg {
  margin-top: 16px;
}

.mt-md {
  margin-top: 12px;
}

.hidden {
  display: none !important;
}

.text-center {
  text-align: center;
}

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 28px;
  width: auto;
  object-fit: contain;
  margin-bottom: 8px;
  filter: brightness(0) invert(1);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  min-height: 44px;
  white-space: nowrap;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover:not(:disabled) {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--bg-mid);
  color: var(--text-primary);
  border-color: var(--border);
}

.btn-secondary:hover:not(:disabled) {
  background: var(--border);
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover:not(:disabled) {
  background: var(--primary-light);
}

.btn-outline-white {
  background: transparent;
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}

.btn-outline-white:hover:not(:disabled) {
  background: rgba(255, 255, 255, .15);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  min-height: 52px;
}

.btn-sm {
  padding: 6px 14px;
  font-size: 13px;
  min-height: 34px;
}

.btn-block {
  width: 100%;
}

/* ---- Section Common ---- */
.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.3;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 15px;
}

.sub-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
}

.badge-discount {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  margin-left: 6px;
  vertical-align: middle;
}

/* ---- Hero ---- */
.hero {
  background: linear-gradient(135deg, #1e40af 0%, #0891b2 100%);
  color: #fff;
  padding: 80px 0 72px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}

.hero-title {
  font-size: clamp(26px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.hero-subtitle {
  font-size: clamp(14px, 2.5vw, 17px);
  opacity: .9;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---- Stats ---- */
.stats-section {
  background: var(--bg-white);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.stat-item {
  padding: 20px 16px;
  text-align: center;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stat-item:nth-child(2n) {
  border-right: none;
}

.stat-item:nth-child(3),
.stat-item:nth-child(4) {
  border-bottom: none;
}

.stat-number {
  display: block;
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

@media(min-width:640px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-item {
    border-bottom: none;
  }

  .stat-item:nth-child(4) {
    border-right: none;
  }

  .stat-item:nth-child(2) {
    border-right: 1px solid var(--border);
  }

  .stat-item:nth-child(3) {
    border-bottom: none;
  }
}

/* ---- Common Section ---- */
.common-section {
  background: var(--bg-light);
}

.common-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.common-icon {
  font-size: 28px;
  margin-bottom: 10px;
}

.common-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.common-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---- Services ---- */
.services-section {
  background: var(--bg-white);
}

.price-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.price-card.featured {
  border-color: var(--primary);
  background: var(--primary-light);
}

.price-card-header h4 {
  font-size: 17px;
  font-weight: 700;
}

.price-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.price-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.price-amount span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.price-original {
  font-size: 13px;
  color: var(--text-tertiary);
  text-decoration: line-through;
}

.price-features {
  list-style: none;
  padding: 0;
  flex: 1;
}

.price-features li {
  padding: 5px 0;
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-features li::before {
  content: "✓";
  color: var(--success);
  font-weight: 700;
  flex-shrink: 0;
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--radius-full);
}

.option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.option-icon {
  font-size: 22px;
  flex-shrink: 0;
}

.option-price {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--primary);
}

/* ---- Process Section ---- */
.process-section {
  background: var(--bg-light);
}

/* ---- Accordion ---- */
.accordion {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid var(--border);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  padding: 18px 20px;
  background: none;
  border: none;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}

.accordion-header:hover {
  background: var(--bg-light);
}

.accordion-header.active {
  color: var(--primary);
}

.accordion-icon {
  font-size: 13px;
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--text-tertiary);
}

.accordion-header.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.accordion-content.active {
  max-height: 1000px;
}

.accordion-body {
  padding: 0 20px 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.accordion-body h4 {
  color: var(--text-primary);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  margin-top: 16px;
}

.accordion-body h4:first-child {
  margin-top: 0;
}

.accordion-body ol,
.accordion-body ul {
  padding-left: 18px;
}

/* ---- Headhunter Section ---- */
.hunters-section {
  background: var(--bg-white);
}

.hunter-controls {
  text-align: center;
  margin-bottom: 8px;
}

.hunter-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  transition: border-color var(--transition);
}

.hunter-card.selected-1 {
  border-color: var(--primary);
}

.hunter-card.selected-2 {
  border-color: var(--accent);
}

.hunter-card.selected-3 {
  border-color: var(--success);
}

.hunter-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

.hunter-name {
  font-size: 16px;
  font-weight: 700;
}

.hunter-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.hunter-tag {
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-mid);
  color: var(--text-secondary);
  padding: 2px 9px;
  border-radius: var(--radius-full);
}

.hunter-bio {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.hunter-btn-wrap {
  width: 100%;
}

.btn-hunter {
  width: 100%;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  transition: all var(--transition);
  min-height: 38px;
}

.btn-hunter:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
}

.btn-hunter.rank-1 {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.btn-hunter.rank-2 {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-hunter.rank-3 {
  background: var(--success);
  color: #fff;
  border-color: var(--success);
}

.btn-hunter:disabled {
  opacity: .4;
  cursor: not-allowed;
}

#btn-no-preference.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.hunter-loading {
  grid-column: 1/-1;
  text-align: center;
  color: var(--text-tertiary);
  padding: 40px;
}

.hunter-summary {
  margin-top: 20px;
  background: var(--primary-light);
  border: 1px solid #bfdbfe;
  border-radius: var(--radius-md);
  padding: 14px 20px;
  font-size: 14px;
  color: var(--text-primary);
}

/* ---- 산업 필터 칩 ---- */
.hunter-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 4px;
  padding: 2px 0;
}

.filter-chip {
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 32px;
}

.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}

.filter-chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* ---- 헤드헌터 카드 키워드 뱃지 ---- */
.hunter-kw-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

.hunter-kw-badge {
  font-size: 11px;
  font-weight: 700;
  background: #e0f2fe;
  color: #0369a1;
  padding: 2px 9px;
  border-radius: var(--radius-full);
  letter-spacing: -.01em;
}


/* ---- Apply CTA ---- */
.apply-section {
  background: var(--primary);
}

.apply-box {
  text-align: center;
}

.apply-box h2 {
  color: #fff;
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 12px;
}

.apply-box p {
  color: rgba(255, 255, 255, .85);
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.7;
}

.apply-cta {
  margin-bottom: 20px;
}

.payment-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .9);
  border-radius: var(--radius-full);
  padding: 8px 18px;
  font-size: 13px;
}

/* ---- Payment ---- */
.payment-section {
  background: var(--bg-light);
}

.payment-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 13px;
  text-align: center;
  min-width: 110px;
}

.step-num {
  width: 28px;
  height: 28px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-arrow {
  color: var(--text-tertiary);
  font-size: 18px;
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.alert-warning {
  background: var(--warning-bg);
  border-left: 4px solid var(--warning-border);
}

/* ---- Coach Section ---- */
.coach-section {
  background: var(--bg-white);
}

.benefit-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 18px;
}

.benefit-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.benefit-card h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ---- FAQ ---- */
.faq-section {
  background: var(--bg-light);
}

/* ---- Footer ---- */
.footer {
  background: #0f172a;
  color: rgba(255, 255, 255, .75);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 14px;
  margin-top: 8px;
  line-height: 1.5;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.footer-col h5 {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  font-size: 13px;
  margin-bottom: 7px;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
}

@media(min-width:768px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---- Modal ---- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 2000;
  overflow-y: auto;
  padding: 16px;
  align-items: flex-start;
  justify-content: center;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  margin: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 32px);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-header h3 {
  font-size: 18px;
  font-weight: 700;
}

.modal-close {
  width: 32px;
  height: 32px;
  background: var(--bg-mid);
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: background var(--transition);
}

.modal-close:hover {
  background: var(--border);
}

.modal-body {
  padding: 20px 24px;
  overflow-y: auto;
  flex: 1;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-shrink: 0;
}

@media(max-width:480px) {
  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

/* ---- Form Elements ---- */
.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-label.required::after,
.required-mark {
  color: var(--error);
}

.form-label.required::after {
  content: " *";
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 10px 13px;
  font-size: 14px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 42px;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.form-input.error,
.form-textarea.error {
  border-color: var(--error);
}

.form-input[readonly] {
  background: var(--bg-mid);
  cursor: default;
}

.form-textarea {
  min-height: 80px;
  resize: vertical;
}

.form-error {
  display: block;
  font-size: 12px;
  color: var(--error);
  margin-top: 4px;
  min-height: 16px;
}

.form-hint {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 3px;
}

/* ---- Checkboxes / Radios ---- */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.check-label,
.radio-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  cursor: pointer;
  padding: 2px 0;
}

.check-label.lg {
  font-size: 14px;
  font-weight: 600;
}

.check-label input,
.radio-label input {
  width: 17px;
  height: 17px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--primary);
}

.badge-readonly {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-mid);
  color: var(--text-secondary);
  padding: 1px 8px;
  border-radius: var(--radius-full);
  margin-left: 6px;
}

/* ---- Summary Box ---- */
.summary-box {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  margin-top: 20px;
}

.summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.summary-header .form-label {
  margin: 0;
}

.summary-textarea {
  background: var(--bg-white);
  font-size: 13px;
  line-height: 1.6;
  min-height: 90px;
  cursor: default;
}

/* ---- 플로팅 로고 ---- */
#heding-floating-logo {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 9999;
  display: block;
  padding: 8px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: box-shadow var(--transition), transform var(--transition);
}

#heding-floating-logo:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  transform: translateY(-1px);
}

#heding-floating-logo img {
  display: block;
  height: 28px;
  width: auto;
  max-width: 140px;
}

@media (max-width: 420px) {
  #heding-floating-logo {
    left: 12px;
    bottom: 12px;
    padding: 6px;
    border-radius: 10px;
  }

  #heding-floating-logo img {
    height: 22px;
    max-width: 120px;
  }
}

/* ---- 더보기/접기 버튼 ---- */
.hunter-more-wrap {
  text-align: center;
  margin-top: 24px;
}

/* ---- 헌터 카드: 이름/직급 한 줄 ---- */
.hunter-identity {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.hunter-title {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 키워드 +N 오버플로우 뱃지 */
.hunter-kw-more {
  font-size: 11px;
  font-weight: 700;
  background: var(--bg-mid);
  color: var(--text-secondary);
  padding: 2px 9px;
  border-radius: var(--radius-full);
}

/* ---- 푸터 브랜드명 텍스트 ---- */
.footer-brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  margin-bottom: 6px;
}

/* ---- 산업군 대분류+중분류 row ---- */
.industry-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.industry-row select,
.industry-row input {
  flex: 1;
  min-width: 120px;
}

/* ---- 선택 뱃지 ---- */
.badge-optional {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  background: #f1f5f9;
  color: var(--text-secondary);
  padding: 1px 8px;
  border-radius: var(--radius-full);
  margin-left: 4px;
  vertical-align: middle;
}

/* ---- 헌터 오타방지 안내문구 ---- */
.hunter-warn {
  display: block;
  font-size: 12px;
  color: var(--text-tertiary);
  margin-top: 4px;
  line-height: 1.5;
}

.warn-typo {
  color: #b45309;
  background: #fffbeb;
  border-radius: 6px;
  padding: 4px 8px;
  margin-top: 6px;
}

/* ---- 전문분야 선택 카드 ---- */
.specialty-card {
  background: var(--bg-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  max-width: 680px;
  margin: 0 auto;
}

.specialty-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.specialty-hint {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 10px;
}

/* ---- 헤드헌터 목록 보기 링크 ---- */
.hunter-list-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 14px;
}

.mt-lg {
  margin-top: 20px;
}