/* PoC·ODM 하이라이트 — 홈 톤 확장 */

.hl-page {
  padding-top: var(--header-h);
}

.hl-hero {
  padding: 72px 0 56px;
  background:
    radial-gradient(ellipse 80% 60% at 0% 0%, rgba(13, 110, 99, 0.12), transparent 55%),
    linear-gradient(180deg, #f7faf9 0%, #fff 70%);
}

.hl-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hl-hero h1 {
  margin-top: 4px;
}

.hl-hero .lead {
  max-width: 34rem;
}

.hl-hero__visual {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #0f172a;
  box-shadow: var(--shadow-lg);
}

.hl-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.hl-trust {
  list-style: none;
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.9fr;
  gap: 12px;
  margin-top: 36px;
  max-width: 520px;
}

.hl-trust li {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
}

.hl-trust a {
  display: block;
  height: 100%;
  padding: 14px 16px;
  border-radius: inherit;
}

.hl-trust a:hover {
  background: var(--primary-light);
}

.hl-trust a:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.hl-trust strong {
  display: block;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.hl-trust span {
  display: block;
  margin-top: 4px;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}

.hl-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.hl-filter {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

.hl-filter:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.hl-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.hl-card {
  grid-column: span 4;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  padding: 22px 22px 20px;
  min-height: 100%;
}

.hl-card--wide {
  grid-column: span 8;
  padding: 28px;
  background: var(--primary-light);
  border-color: #b7e0da;
}

.hl-card--wide h3 {
  font-size: 1.4rem;
}

.hl-card[hidden] {
  display: none;
}

.hl-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.hl-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary-dark);
  background: var(--primary-light);
  padding: 4px 8px;
  border-radius: 4px;
}

.hl-card__tag--muted {
  color: var(--muted);
  background: var(--bg-alt);
}

.hl-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.hl-card__hook {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.45;
  margin-bottom: 10px;
}

.hl-card__body {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.hl-card__odm {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.5;
}

.hl-card__odm strong {
  color: var(--primary-dark);
}

.hl-split {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 28px;
  align-items: start;
}

.hl-bullets {
  margin-top: 20px;
  padding-left: 1.15rem;
  color: var(--ink);
  line-height: 1.75;
}

.hl-bullets li + li {
  margin-top: 6px;
}

.hl-note {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  background: #fff;
}

.hl-note--teal {
  background: var(--primary-light);
  border-color: #b7e0da;
}

.hl-note__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.hl-note__title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hl-note p:last-child {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.hl-scope {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  counter-reset: scope;
}

.hl-scope li {
  counter-increment: scope;
  position: relative;
  padding: 22px 22px 22px 64px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.hl-scope li::before {
  content: counter(scope, decimal-leading-zero);
  position: absolute;
  left: 18px;
  top: 22px;
  font-weight: 800;
  font-size: 0.95rem;
  color: #a7f3d0;
}

.hl-scope strong {
  display: block;
  color: #fff;
  margin-bottom: 6px;
}

.hl-page .contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 16px;
}

@media (max-width: 960px) {
  .hl-hero__grid,
  .hl-split {
    grid-template-columns: 1fr;
  }

  .hl-card { grid-column: span 6; }
  .hl-card--wide { grid-column: span 12; }

  .hl-scope {
    grid-template-columns: 1fr;
  }

  .hl-trust {
    grid-template-columns: 1fr;
  }

  .hl-hero {
    padding-top: 48px;
  }
}

@media (max-width: 640px) {
  .hl-card,
  .hl-card--wide {
    grid-column: span 12;
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hl-filter {
    transition: none;
  }
}
