/* ═══════════════════════════════════════════════════════════
   HQ SUPPORT — hq-support.css
   본사 지원 6카드(3×2) + 하단 "함께 성장" 띠 배너
   · #orbit-growth 다음. section--tint(연노랑) → 흰 카드 + 골드 포인트.
   · #problem(구조분석 6카드)와 별개 — 클래스 네임스페이스 hq* 로 분리.
   · 아이콘 이미지 자리 src="#" → 깨진 이미지 대신 골드 점선 플레이스홀더.
   · 등장: scroll-reveal(data-reveal, 반복/unobserve 금지). 검정·이모지 없음.
═══════════════════════════════════════════════════════════ */

.hqsupport {
  scroll-margin-top: 80px;
}
.hqsupport__head {
  text-align: center;
  margin-bottom: 48px;
}
.hqsupport__title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--color-text, #1a1a1a);
  margin: 0 0 10px;
  word-break: keep-all;
}
.hqsupport__title em {
  font-style: normal;
  color: var(--gold, #f0c000);
}
.hqsupport__sub {
  font-size: clamp(0.96rem, 1.5vw, 1.08rem);
  color: var(--color-text-sub, #555);
  margin: 0;
  word-break: keep-all;
}

/* ── 3×2 그리드 ── */
.hqsupport__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.hqcard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center; /* 아이콘·제목·설명·강조 모두 가로 중앙 */
  background: var(--color-card, #ffffff);
  border: 1px solid var(--color-line, #ececec);
  border-radius: 20px;
  padding: 44px 30px 32px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.hqcard:hover {
  transform: translateY(-5px);
  border-color: var(--gold, #f0c000);
  box-shadow: 0 16px 34px rgba(240, 192, 0, 0.16);
}

/* 번호 배지(골드) */
.hqcard__num {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold, #f0c000);
  color: #1a1a1a;
  font-family: var(--font-en, sans-serif);
  font-weight: 900;
  font-size: 0.95rem;
}

/* 아이콘 이미지 자리 — src="#"(빈 상태) 폴백(깨진 이미지 방지) */
.hqcard__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: color-mix(in srgb, var(--gold, #f0c000) 10%, #ffffff);
  border: 1px dashed color-mix(in srgb, var(--gold, #f0c000) 30%, #ffffff);
}
.hqcard__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  color: transparent; /* 빈/깨진 상태 alt·아이콘 노출 최소화 */
  font-size: 0;
}

.hqcard__title {
  font-size: 1.16rem;
  font-weight: 800;
  color: var(--color-text, #1a1a1a);
  margin: 0 0 10px;
  word-break: keep-all;
}
.hqcard__desc {
  font-size: 0.93rem;
  line-height: 1.7;
  color: var(--color-text-sub, #555);
  margin: 0 0 16px;
  word-break: keep-all;
}

/* 강조 문구(01~03) — 골드 pill */
.hqcard__highlight {
  display: inline-block;
  background: color-mix(in srgb, var(--gold, #f0c000) 16%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--gold, #f0c000) 40%, #ffffff);
  color: var(--gold-dark, #c9a000);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 7px 16px;
  border-radius: 999px;
  margin: 0;
  word-break: keep-all;
}

/* 체크 리스트(04~06) — 골드 체크(인라인 SVG data-URI, 이모지 아님) */
.hqcard__checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.hqcard__checks li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text, #1a1a1a);
  word-break: keep-all;
}
.hqcard__checks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11' fill='%23f0c000'/%3E%3Cpath d='M7 12.5l3 3 7-7' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

/* ═══════════════════════════════════════════════════════════
   띠 배너 — "함께 성장하면 더 멀리"
═══════════════════════════════════════════════════════════ */
.grow-band {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 34px 9%;
  background: linear-gradient(
    135deg,
    var(--gold, #f0c000) 0%,
    var(--gold-dark, #c9a000) 100%
  );
}
.grow-band__icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.grow-band__icon svg {
  width: 38px;
  height: 32px;
}
.grow-band__text {
  text-align: left;
}
.grow-band__title {
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  font-weight: 900;
  line-height: 1.3;
  color: #1a1a1a;
  margin: 0 0 6px;
  word-break: keep-all;
}
.grow-band__title em {
  font-style: normal;
  color: var(--color-point-red, #e23b34); /* 빨강 포인트 */
}
.grow-band__sub {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 600;
  color: #3a2e00;
  margin: 0;
  word-break: keep-all;
}

/* ═══════════════════════════════════════════════════════════
   "함께 성장" 챕터 묶음 — 오비탈 + 6카드 + 띠배너를 한 톤 밴드로
   · 한 톤(연노랑) 배경으로 셋을 한 덩어리로. 띠배너(골드)가 챕터 마무리.
   · 챕터 제목은 오비탈 헤더 하나만 — 6카드 큰 제목(h2급)은 소제목으로 강등.
   · 내부 간격은 "묶음 내 적당히", 위/아래 이웃과는 큰 여백+톤차로 경계.
═══════════════════════════════════════════════════════════ */
.grow-chapter {
  background: var(--color-bg-tint, #fff7e0); /* 한 톤 밴드 */
}
/* 내부 섹션 배경은 밴드가 담당 → 투명, 세로 패딩은 묶음 내 간격으로 축소 */
.grow-chapter .orbit {
  background: transparent;
  padding-bottom: 36px; /* 오비탈 → 6카드 (묶음 내 간격) */
}
.grow-chapter .hqsupport {
  background: transparent; /* section--tint 와 동일 톤 → 밴드로 통일 */
  padding-top: 28px; /* 6카드 → 오비탈에 붙임 */
  padding-bottom: 52px; /* 6카드 → 띠배너 */
}
/* 6카드 헤더 = 챕터 제목 중복 → 소제목으로 강등(텍스트는 유지) */
.grow-chapter .hqsupport__head {
  margin-bottom: 30px;
}
.grow-chapter .hqsupport__title {
  font-size: clamp(1.14rem, 2vw, 1.42rem); /* h2급 → 소제목 */
  color: var(--color-text, #1a1a1a);
}

/* ═══════════════════════════════════════════════════════════
   반응형 — 모바일 세로(44px 터치 여백)
═══════════════════════════════════════════════════════════ */
@media (max-width: 880px) {
  .hqsupport__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 620px) {
  .hqsupport__grid {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
  .hqcard {
    padding: 40px 24px 30px;
  }
  .grow-band {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    padding: 30px 7%;
  }
  .grow-band__text {
    text-align: center;
  }
}
