/* HP-100 — 공통 헤더·푸터 + 회사소개 페이지 (핸드오프 확정안 3a/3b)
 *
 * 기존 style.css 뒤에 얹는다. 새 마크업은 .hp- 접두어를 쓰므로 옛 규칙과 겹치지 않는다.
 * 수치는 핸드오프 §5 그대로다 — 임의로 바꾸지 않는다.
 */

:root {
  --hp-navy: #15427B;
  --hp-sky: #00A0DB;
  --hp-navy-dark: #0F2F58;
  --hp-navy-900: #0C2B52;
  --hp-navy-600: #1E5599;
  --hp-navy-200: #B9C8DC;
  --hp-navy-050: #EDF1F7;
  --hp-sky-600: #008CC0;
  --hp-sky-700: #0079A6;
  --hp-sky-200: #A7DDF1;
  --hp-sky-050: #E6F6FC;
  --hp-charcoal: #343433;
  --hp-muted: #5B6673;
  --hp-gray-light: #D8D8D8;
  --hp-gray-mid: #BFBFBF;
  --hp-bg: #FFFFFF;
  --hp-bg-soft: #F5F8FB;
  --hp-bg-section: #EEF4F9;
  --hp-line: #E2E8EF;
  --hp-max: 1120px;
  --hp-header-h: 72px;
  --hp-font: "Noto Sans KR", "Noto Sans", sans-serif;
  --hp-font-latin: "Noto Sans", sans-serif;
  --hp-font-mono: "Nanum Gothic Coding", monospace;
  --hp-shadow-overlay: 0 8px 24px rgba(21, 66, 123, .18);
}

.hp-page,
.hp-header,
.hp-footer {
  font-family: var(--hp-font);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.hp-wrap {
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 80px;
}

.hp-nowrap { white-space: nowrap; }

/* 확인되지 않은 값 — 점선 자리표시(핸드오프 §7.4). 값이 확정되기 전에는 배포하지 않는다. */
.hp-ph {
  display: inline-block;
  border: 1px dashed var(--hp-gray-mid);
  border-radius: 2px;
  padding: 0 4px;
  color: var(--hp-muted);
}

/* 사진 자리 — 실사 2장을 받기 전까지 점선 판으로 둔다(핸드오프 §10). */
.hp-photo-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed var(--hp-gray-mid);
  background: var(--hp-bg-soft);
  color: var(--hp-muted);
  font-family: var(--hp-font-mono);
  font-size: 12px;
  text-align: center;
  padding: 16px;
}

/* ── 버튼 (§7.1) ─────────────────────────────────────────────────────────── */
.hp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  min-width: 120px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 4px;
  font: 700 16px/1 var(--hp-font);
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .12s linear, color .12s linear, border-color .12s linear;
}
.hp-btn-primary { background: var(--hp-navy); color: #fff; }
.hp-btn-primary:hover { background: var(--hp-navy-600); }
.hp-btn-primary:active { background: var(--hp-navy-900); }
.hp-btn-accent { background: var(--hp-sky); color: #fff; }
.hp-btn-accent:hover { background: var(--hp-sky-600); }
.hp-btn-accent:active { background: var(--hp-sky-700); }
.hp-btn-secondary { background: #fff; border-color: var(--hp-navy); color: var(--hp-navy); }
.hp-btn-secondary:hover { background: var(--hp-navy-050); }
.hp-btn-outline-dark { background: transparent; border-color: var(--hp-navy-200); color: #fff; }
.hp-btn-outline-dark:hover { background: var(--hp-navy); }

.hp-header a:focus-visible,
.hp-header button:focus-visible,
.hp-footer a:focus-visible,
.hp-page a:focus-visible,
.hp-page button:focus-visible {
  outline: 2px solid var(--hp-navy);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px var(--hp-sky-050);
}

/* ── 공통 헤더 (§6.1) ────────────────────────────────────────────────────── */
.hp-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--hp-header-h);
  background: var(--hp-navy-dark);
  border-bottom: 1px solid var(--hp-navy-600);
}
.hp-header-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 0 80px;
}
.hp-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;          /* 헤더 flex 안에서 줄어들지 않게 — 흰 판 밖으로 글자가 넘쳤다 */
  gap: 8px;
  background: #fff;
  border-radius: 2px;
  padding: 6px 10px;
  text-decoration: none;
}
/* HP-128 — 가로형 로고(400×61). 높이로 크기를 정하면 표시 폭이 저절로 183px 가 되어
   확대 금지선 200px 안에 든다. 비율은 브라우저가 지킨다(width:auto). */
.hp-logo img { height: 28px; width: auto; max-width: 200px; display: block; }
.hp-logo span {
  font: 700 15px/1 var(--hp-font-latin);
  color: var(--hp-navy);
  white-space: nowrap;
}
.hp-nav { display: flex; align-items: stretch; flex: 0 0 auto; height: var(--hp-header-h); margin: 0; padding: 0; }
.hp-nav > li { list-style: none; }
.hp-nav-link {
  display: inline-flex;
  align-items: center;
  height: var(--hp-header-h);
  padding: 0 16px;
  border: 0;
  background: transparent;
  color: var(--hp-gray-light);
  font: 400 15px/1 var(--hp-font-latin);
  text-decoration: none;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: color .12s linear, border-color .12s linear;
}
.hp-nav-link:hover { color: #fff; }
.hp-nav-link[aria-expanded="true"],
.hp-nav-link.is-active { color: #fff; font-weight: 700; border-bottom-color: var(--hp-sky); }
.hp-header-spacer { flex: 1; }
.hp-lang { display: flex; align-items: center; flex: 0 0 auto; }
.hp-lang a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  font: 400 12px/1 var(--hp-font-mono);
  color: var(--hp-navy-200);
  text-decoration: none;
}
.hp-lang a[aria-current="true"] { color: #fff; font-weight: 700; }
.hp-header .hp-btn { height: 44px; flex: 0 0 auto; }

/* 링크 없는 1단계 메뉴 — 토글도 링크도 아닌 글자(§3-2) */
.hp-nav-static { cursor: default; }
.hp-nav-static:hover { color: var(--hp-gray-light); }

/* 메가 메뉴 (1c) */
.hp-mega {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--hp-header-h);
  background: #fff;
  border-bottom: 1px solid var(--hp-line);
  box-shadow: var(--hp-shadow-overlay);
  display: none;
}
.hp-mega[data-open="true"] { display: block; }
.hp-mega-inner {
  display: grid;
  grid-template-columns: 3fr 6fr 3fr;
  gap: 24px;
  max-width: var(--hp-max);
  margin: 0 auto;
  padding: 32px 80px 40px;
}
.hp-mega-label {
  font: 700 12px/1 var(--hp-font-mono);
  letter-spacing: .04em;
  color: var(--hp-muted);
  margin: 0 0 12px;
}
.hp-mega-desc { font-size: 15px; line-height: 1.7; color: var(--hp-charcoal); margin: 0 0 12px; }
.hp-mega-note { font-size: 13px; line-height: 1.6; color: var(--hp-muted); margin: 0; }
.hp-mega-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hp-mega-items a,
.hp-mega-items .hp-mega-off {
  display: block;
  padding: 14px 16px;
  border-radius: 2px;
  text-decoration: none;
  color: var(--hp-charcoal);
  transition: background-color .12s linear;
}
.hp-mega-items a:hover { background: var(--hp-navy-050); }
.hp-mega-items strong { display: block; font: 700 16px/1.4 var(--hp-font); color: var(--hp-navy); }
.hp-mega-items small { display: block; font-size: 13px; line-height: 1.6; color: var(--hp-muted); }
.hp-mega-off { opacity: .55; }
.hp-mega-chip {
  display: inline-block;
  margin-left: 6px;
  border: 1px solid var(--hp-navy-200);
  border-radius: 2px;
  padding: 1px 6px;
  font: 400 12px/1.5 var(--hp-font-mono);
  color: var(--hp-muted);
  white-space: nowrap;
}
.hp-mega-aside { background: var(--hp-bg-soft); border-radius: 6px; padding: 24px; }
.hp-mega-aside p { margin: 0 0 16px; font-size: 14px; line-height: 1.7; color: var(--hp-charcoal); }

/* 모바일 헤더·메뉴 (3b / 1d) */
.hp-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.hp-burger span { display: block; width: 20px; height: 2px; background: #fff; }
.hp-mobile { display: none; }

@media (max-width: 900px) {
  .hp-wrap { padding: 0 20px; }
  .hp-header { height: 64px; }
  .hp-header-inner { height: 64px; padding: 0 20px; gap: 12px; }
  .hp-logo img { height: 24px; }   /* 390px 폭에서 157px — HP-128 */
  .hp-nav, .hp-header .hp-btn, .hp-lang { display: none; }
  .hp-burger { display: flex; }
  .hp-mega { display: none !important; }
  .hp-mobile[data-open="true"] {
    display: block;
    position: fixed;
    inset: 64px 0 0;
    background: #fff;
    z-index: 60;
    overflow-y: auto;
  }
  .hp-mobile-item { border-bottom: 1px solid var(--hp-line); }
  .hp-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 56px;
    padding: 0 20px;
    border: 0;
    background: transparent;
    font: 700 16px/1 var(--hp-font-latin);
    color: var(--hp-navy);
    cursor: pointer;
  }
  .hp-mobile-sub { display: none; margin: 0 0 8px; padding: 0 20px; list-style: none; }
  .hp-mobile-sub[data-open="true"] { display: block; }
  .hp-mobile-sub a,
  .hp-mobile-sub .hp-mega-off {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 12px;
    border-left: 2px solid var(--hp-navy);
    color: var(--hp-charcoal);
    font-size: 15px;
    text-decoration: none;
  }
  .hp-mobile-foot { background: var(--hp-bg-soft); padding: 20px; }
  .hp-mobile-lang { display: flex; margin: 0 0 16px; }
  .hp-mobile-lang a {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    border: 1px solid var(--hp-line);
    font: 400 12px/1 var(--hp-font-mono);
    color: var(--hp-muted);
    text-decoration: none;
  }
  .hp-mobile-lang a[aria-current="true"] { background: var(--hp-navy); border-color: var(--hp-navy); color: #fff; font-weight: 700; }
  .hp-mobile-foot .hp-btn { width: 100%; }
}

/* ── 회사소개 — 첫 화면 (§6.2) ──────────────────────────────────────────── */
.hp-hero { background: var(--hp-navy-dark); color: #fff; padding: 96px 0 0; }
.hp-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
.hp-eyebrow {
  font: 700 12px/1 var(--hp-font-mono);
  letter-spacing: .04em;
  color: var(--hp-navy-200);
  margin: 0 0 24px;
}
.hp-eyebrow em { font-style: normal; color: var(--hp-sky); }
.hp-hero h1 {
  margin: 0 0 24px;
  font: 700 64px/1.2 var(--hp-font);
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hp-hero h1 em { font-style: normal; color: var(--hp-sky); }
.hp-hero-lead { max-width: 500px; margin: 0 0 32px; font-size: 18px; line-height: 1.7; color: var(--hp-gray-light); }
.hp-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; padding-bottom: 80px; }

/* 제품 화면 합성 — 이미지가 아니라 HTML/CSS (§6.2) */
.hp-mock {
  position: relative;
  height: 500px;
  background-image: linear-gradient(to right, rgba(21, 66, 123, .55) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(21, 66, 123, .55) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hp-mock-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--hp-line);
  border-radius: 4px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, .35);
  overflow: hidden;
}
.hp-mock-ops { width: 440px; left: 24px; top: 24px; }
.hp-mock-kms { width: 300px; right: 0; top: 200px; border-top: 3px solid var(--hp-sky); }
.hp-mock-bms { width: 340px; height: 168px; left: 72px; bottom: 0; }
.hp-mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 36px;
  padding: 0 12px;
  background: var(--hp-navy);
  color: #fff;
  font: 700 12px/1 var(--hp-font-mono);
  letter-spacing: .04em;
}
.hp-mock-demo { font-weight: 400; color: var(--hp-sky-200); }
.hp-mock-row {
  display: grid;
  grid-template-columns: 64px 1fr 56px 92px;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border-bottom: 1px solid var(--hp-line);
  font: 400 12px/1 var(--hp-font-mono);
  color: var(--hp-charcoal);
}
.hp-mock-row:last-child { border-bottom: 0; }
.hp-mock-row span:last-child { text-align: right; color: var(--hp-muted); }
.hp-mock-body { padding: 12px; font-size: 13px; line-height: 1.6; color: var(--hp-charcoal); }
.hp-mock-bars { display: flex; align-items: flex-end; gap: 10px; height: 92px; padding: 12px; }
.hp-mock-bars i { display: block; flex: 1; background: var(--hp-navy); border-radius: 2px 2px 0 0; }
.hp-mock-bars i:nth-child(3) { background: var(--hp-sky); }

/* 회사 개요 띠 (§6.2 하단) */
.hp-facts { background: var(--hp-navy-900); border-top: 1px solid var(--hp-navy-600); }
.hp-facts-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr 1.8fr .95fr 1.05fr 1.1fr;
}
.hp-facts-grid > div { padding: 20px 24px; border-left: 1px solid var(--hp-navy-600); }
.hp-facts-grid > div:first-child { border-left: 0; padding-left: 0; }
.hp-facts dt {
  margin: 0 0 6px;
  font: 400 11px/1 var(--hp-font-mono);
  letter-spacing: .04em;
  color: var(--hp-sky-200);
}
.hp-facts dd { margin: 0; font-size: 14px; line-height: 1.5; color: #fff; }
.hp-facts dd.hp-est { font: 400 22px/1.2 var(--hp-font-mono); white-space: nowrap; }
.hp-caption {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 16px;
  font-size: 12px;
  color: var(--hp-muted);
}
.hp-caption .hp-mono { font-family: var(--hp-font-mono); }

/* ── 사진 띠 (§6.3) ──────────────────────────────────────────────────────── */
.hp-photoband { position: relative; }
.hp-photoband .hp-photo-ph { height: 560px; }
.hp-photoband-img { display: block; width: 100%; height: 560px; object-fit: cover; }
.hp-domain-img { display: block; width: 100%; height: 360px; object-fit: cover; }
.hp-photoband-panel {
  position: absolute;
  left: 80px;
  bottom: 0;
  width: 560px;
  background: #fff;
  border-top: 4px solid var(--hp-sky);
  padding: 36px 40px 40px;
}
.hp-photoband-panel p { margin: 12px 0 0; font: 700 32px/1.35 var(--hp-font); color: var(--hp-navy); }

/* ── 하는 일 (§6.4) ─────────────────────────────────────────────────────── */
.hp-section { padding: 128px 0; background: #fff; }
.hp-section-head { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: end; margin: 0 0 48px; }
.hp-section h2 { margin: 0; font: 700 64px/1.15 var(--hp-font); letter-spacing: -0.025em; color: var(--hp-navy); }
.hp-section-lead { margin: 0; font-size: 18px; line-height: 1.7; color: var(--hp-charcoal); }
.hp-list { border-top: 2px solid var(--hp-navy); }
.hp-list-row {
  display: grid;
  grid-template-columns: 120px 420px 1fr 40px;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 8px;
  border-bottom: 1px solid var(--hp-line);
  text-decoration: none;
  transition: background-color .12s linear;
}
.hp-list-row:hover { background: var(--hp-bg-section); }
.hp-list-num { font: 700 36px/1 var(--hp-font-mono); color: var(--hp-sky); }
.hp-list-name { font: 700 26px/1.3 var(--hp-font-latin); color: var(--hp-navy); }
.hp-list-desc { font-size: 16px; line-height: 1.6; color: var(--hp-charcoal); }
.hp-list-arrow { font-size: 22px; color: var(--hp-navy); text-align: right; }

/* ── 도메인 띠 (§6.5) ───────────────────────────────────────────────────── */
.hp-domain { display: grid; grid-template-columns: 1fr 1fr; }
.hp-domain .hp-photo-ph { height: 360px; }
.hp-domain-text { background: var(--hp-navy-dark); color: #fff; padding: 56px 80px 56px 64px; }
.hp-domain-text h2 { margin: 0 0 16px; font: 700 30px/1.4 var(--hp-font); color: #fff; }
.hp-domain-text p { margin: 0; font-size: 16px; line-height: 1.7; color: var(--hp-gray-light); }

/* ── 연혁 (§6.6) ────────────────────────────────────────────────────────── */
.hp-section-sm { padding: 120px 0; }
.hp-section-sm h2 { font-size: 48px; line-height: 1.2; }
.hp-table { width: 100%; border-collapse: collapse; border-top: 2px solid var(--hp-navy); }
.hp-table th {
  background: var(--hp-bg-soft);
  border-bottom: 1px solid var(--hp-gray-mid);
  padding: 10px 12px;
  text-align: left;
  font: 400 12px/1.4 var(--hp-font-mono);
  color: var(--hp-muted);
}
.hp-table td { padding: 16px 12px; border-bottom: 1px solid var(--hp-line); font-size: 16px; color: var(--hp-charcoal); }
.hp-table tbody tr { min-height: 64px; }
.hp-table tbody tr:hover { background: var(--hp-bg-soft); }
.hp-table .hp-date { width: 160px; font: 700 15px/1.4 var(--hp-font-mono); color: var(--hp-navy); white-space: nowrap; }
.hp-table .hp-kind { width: 120px; }
.hp-table .hp-code { width: 96px; font: 400 12px/1.4 var(--hp-font-mono); color: var(--hp-muted); white-space: nowrap; }
.hp-chip {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border: 1px solid var(--hp-navy-200);
  border-radius: 2px;
  padding: 0 8px;
  font-size: 12px;
  color: var(--hp-charcoal);
  white-space: nowrap;
}
.hp-empty { padding: 32px 12px; text-align: center; color: var(--hp-muted); }

/* ── 자격·파트너 (§6.7) ─────────────────────────────────────────────────── */
.hp-section-alt { background: var(--hp-bg-section); padding: 112px 0; }
.hp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.hp-card {
  background: #fff;
  border: 1px solid var(--hp-line);
  border-top: 3px solid var(--hp-navy);
  border-radius: 2px;
  padding: 28px 28px 32px;
}
.hp-card h3 { margin: 0 0 12px; font: 700 18px/1.4 var(--hp-font); color: var(--hp-navy); }
.hp-card p { margin: 0; font-size: 15px; line-height: 1.7; color: var(--hp-charcoal); }

/* ── 문의 (§6.8) ────────────────────────────────────────────────────────── */
.hp-contact { background: var(--hp-navy-dark); color: #fff; padding: 112px 0; }
.hp-contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: start; }
.hp-contact h2 { margin: 0 0 16px; font: 700 48px/1.2 var(--hp-font); color: #fff; }
.hp-contact p { margin: 0; font-size: 18px; line-height: 1.7; color: var(--hp-gray-light); }
.hp-contact-links { margin: 16px 0 0; padding: 0; list-style: none; }
.hp-contact-links a {
  display: inline-block;
  padding: 6px 0;
  font: 400 14px/1.6 var(--hp-font-mono);
  color: #fff;
  text-decoration: none;
}
.hp-contact-links a:hover { color: var(--hp-sky-200); }

/* ── 공통 푸터 (§6.9) ───────────────────────────────────────────────────── */
.hp-footer { background: #fff; border-top: 1px solid var(--hp-line); padding: 64px 0 32px; }
.hp-footer-grid { display: grid; grid-template-columns: 2.2fr repeat(4, 1fr); gap: 24px; }
/* HP-128 — 푸터도 같은 가로형. 32px 면 표시 폭이 210px 라 확대 금지선을 넘는다 */
.hp-footer-brand img { height: 28px; width: auto; max-width: 200px; display: block; margin: 0 0 16px; }
.hp-footer-brand p { margin: 0 0 4px; font-size: 13px; line-height: 1.7; color: var(--hp-muted); }
.hp-footer h3 {
  margin: 0 0 12px;
  font: 700 12px/1 var(--hp-font-mono);
  letter-spacing: .04em;
  color: var(--hp-navy);
}
.hp-footer ul { margin: 0; padding: 0; list-style: none; }
.hp-footer li { margin: 0 0 8px; }
.hp-footer li a { font-size: 14px; color: var(--hp-muted); text-decoration: none; }
.hp-footer li a:hover { color: var(--hp-navy); }
.hp-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 32px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--hp-line);
  font-size: 13px;
  color: var(--hp-muted);
}
.hp-footer-bottom a { color: var(--hp-muted); text-decoration: none; }
.hp-footer-privacy { font-weight: 700; color: var(--hp-navy) !important; }
.hp-footer-lang a { margin-left: 12px; font-family: var(--hp-font-mono); font-size: 12px; }
.hp-footer-lang a[aria-current="true"] { color: var(--hp-navy); font-weight: 700; }

/* ── 모바일 (3b) ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .hp-hero { padding: 48px 0 0; }
  .hp-hero-grid { grid-template-columns: 1fr; }
  .hp-hero h1 { font-size: 36px; line-height: 1.28; letter-spacing: -0.02em; }
  .hp-hero-lead { font-size: 16px; }
  .hp-hero-cta { padding-bottom: 48px; }
  .hp-mock { display: none; }
  .hp-facts-grid { grid-template-columns: 1fr 1fr; }
  .hp-facts-grid > div { border-left: 0; border-top: 1px solid var(--hp-navy-600); padding: 16px 0; }
  .hp-facts-grid > div:nth-child(2) { padding-left: 16px; border-left: 1px solid var(--hp-navy-600); }
  .hp-section, .hp-section-sm, .hp-section-alt, .hp-contact { padding: 64px 0; }
  .hp-section-head { grid-template-columns: 1fr; gap: 16px; margin-bottom: 32px; }
  .hp-section h2 { font-size: 30px; line-height: 1.25; }
  .hp-section-sm h2 { font-size: 30px; }
  .hp-list-row { grid-template-columns: 36px 1fr; gap: 8px 12px; min-height: 0; padding: 16px 4px; }
  .hp-list-num { font-size: 12px; }
  .hp-list-name { font-size: 16px; }
  .hp-list-desc { grid-column: 2; font-size: 14px; }
  .hp-list-arrow { display: none; }
  .hp-photoband .hp-photo-ph, .hp-photoband-img { height: 280px; }
  .hp-domain-img { height: 240px; }
  .hp-photoband-panel { position: static; width: auto; padding: 24px 20px 28px; }
  .hp-photoband-panel p { font-size: 22px; line-height: 1.4; }
  .hp-domain { grid-template-columns: 1fr; }
  .hp-domain-text { padding: 32px 20px; }
  .hp-cards { grid-template-columns: 1fr; }
  .hp-card { padding: 20px; }
  .hp-contact-grid { grid-template-columns: 1fr; }
  .hp-contact h2 { font-size: 30px; }
  .hp-footer-grid { grid-template-columns: 1fr 1fr; }
  .hp-footer-brand { grid-column: 1 / -1; }
  .hp-footer-bottom { flex-direction: column; align-items: flex-start; }
  .hp-table .hp-date, .hp-table .hp-kind, .hp-table .hp-code { width: auto; }
}

/* HP-124 §3-2 — FIVETRAN 공인 파트너 배지.
   241px 원본이라 그보다 크게 쓰면 흐려진다. 등급 문구와 한 줄에 놓지 않고
   아래 줄에 따로 둔다 — 붙여 놓으면 한 대상에 두 등급이 붙은 것처럼 읽힌다. */
.hp-badge {
  display: block;
  width: auto;
  max-width: 120px;
  height: auto;
  margin-top: 1rem;
}
