/* ============================================================
   WIDEP — 공통 스타일 (산업용 B2B 데이터 플랫폼)
   Next.js: public/ 을 정적 루트로 서빙
   브레이크포인트: 860px
   ============================================================ */

/* ---------- 디자인 토큰 (팔레트 · 폰트) ---------- */
:root {
  /* Font */
  --font-main: 'SUIT Variable', 'SUIT', 'Pretendard Variable', Pretendard, 'Noto Sans KR', sans-serif;
  --font-tech: 'IBM Plex Sans', 'SUIT Variable', sans-serif;

  /* Brand — CLAUDE.md 결정 1: teal 통일 */
  --c-primary:      #0e8585;   /* Teal (CTA · 브랜드) */
  --c-accent:       #0a6a6a;   /* 진한 teal (활성 상태 · 호버) */
  --c-secondary:    #7fd2d2;   /* 보조 teal (배경 강조 · 태그) */
  --c-warm:         #B8873A;   /* 강조 수치 · 중요 태그 */

  /* Text */
  --c-text-strong:  #1A2332;   /* 제목 · 강조 */
  --c-text-body:    #36424A;   /* 본문 */
  --c-text-muted:   #66727A;   /* 메타 · 날짜 */

  /* Surface */
  --c-bg:           #F6F8F7;   /* 섹션 배경 */
  --c-surface:      #FFFFFF;   /* 카드 · 표 · 폼 */

  /* Border */
  --c-border:       #D6DFDC;
  --c-border-strong:#CFD4DA;

  /* Dark surfaces (teal 계열) · 인버스 */
  --c-dark:         #0f1717;   /* 다크 섹션 배경 */
  --c-deep:         #0a1313;   /* 최심 다크 (푸터 · 딥 섹션 · HW 이미지) */
  --c-dark-2:       #152120;   /* 다크 카드 (bento) */
  --c-inverse:      #FFFFFF;   /* 다크 위 텍스트 · 아이콘 · 경계 */

  /* State */
  --c-danger:       #C44B4B;
  --c-warning:      #D39A2C;
  --c-info:         #3C6E91;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; height: 100%; }
body {
  font-family: var(--font-main);
  font-weight: 400;
  letter-spacing: -0.02em;
  -webkit-font-smoothing: antialiased;
  color: var(--c-text-body);
  background: var(--c-surface);
  scroll-snap-type: y proximity;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
}
.hero, .sec, .footer { scroll-snap-align: start; }
h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { color: var(--c-text-strong); font-weight: 700; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
.mono, .tech-label, .module-code, .data-label, .metric-value {
  font-family: var(--font-tech);
  letter-spacing: 0;
}

.wrap { max-width: 1400px; margin: 0 auto; padding-inline: 40px; width: 100%; }
/* 콘텐츠 높이에 맞춰 섹션을 조밀하게 — 짧은 섹션의 100vh 중앙정렬 공백 제거.
   히어로는 .hero에서 별도로 풀스크린 유지. */
.sec {
  padding-block: clamp(56px, 7vh, 88px);
  display: block;
  overflow: visible;
}
.sec--alt { background: var(--c-bg); }
.sec--dark { background: var(--c-dark); }
.sec--deep { background: var(--c-deep); }
/* 100vh를 항상 넘는 상세/폼 페이지 — 인라인 스타일 없이 CSS에서 처리 */
.sec--case, .sec--consult {
  height: auto;
  min-height: 100vh;
  overflow: visible;
  display: block;
  scroll-snap-align: none;
  padding-top: 56px;
}
/* 콘텐츠가 한 화면(100vh)을 넘을 수 있는 홈 섹션 — 하단 잘림 방지 */
.sec--tall {
  height: auto;
  overflow: visible;
  display: block;
}
@media (max-height: 640px) {
  .sec { height: auto; }
}

.eyebrow {
  font-family: var(--font-tech);
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  color: var(--c-accent); margin-bottom: 18px;
  text-transform: uppercase;
}
.sec--dark .eyebrow, .sec--deep .eyebrow { color: var(--c-secondary); }
.h2 { font-size: clamp(28px, 3.4vw, 38px); line-height: 1.25; font-weight: 700; letter-spacing: -0.02em; color: var(--c-text-strong); }
.sub { margin-top: 14px; font-size: 16px; line-height: 1.7; color: var(--c-text-body); }
.sec--dark .sub, .sec--deep .sub { color: rgba(255,255,255,.66); }

/* ---------- 버튼 (Primary · Secondary · Text) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 44px; padding: 0 20px;
  border-radius: 2px;
  font-family: var(--font-main);
  font-size: 15px; font-weight: 600;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap; flex-shrink: 0;
}
/* Primary: 구축상담, 문의하기, 핵심 CTA */
.btn--primary {
  background: var(--c-primary);
  color: var(--c-inverse);
  border: 1px solid var(--c-primary);
}
.btn--primary:hover { background: var(--c-accent); border-color: var(--c-accent); }
/* Secondary: 자세히 보기, 사례 보기, 보조 이동 */
.btn--secondary {
  background: var(--c-surface);
  color: var(--c-primary);
  border: 1px solid var(--c-primary);
}
.btn--secondary:hover { background: var(--c-primary); color: var(--c-inverse); }
/* Text: 작은 링크, 목록 더보기 */
.btn--text {
  background: transparent;
  border: 0;
  color: var(--c-primary);
  padding: 0 4px;
  height: auto;
  min-height: 24px;
}
.btn--text:hover { color: var(--c-accent); text-decoration: underline; text-underline-offset: 4px; }
.btn:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 2px; }

/* 기존 클래스 별칭 (마이그레이션 여유) */
.btn--ghost { background: var(--c-surface); color: var(--c-primary); border: 1px solid var(--c-primary); }
.btn--ghost:hover { background: var(--c-primary); color: var(--c-inverse); }
.btn--ghost-inv { background: transparent; color: var(--c-inverse); border: 1px solid rgba(255,255,255,.35); }
.btn--ghost-inv:hover { border-color: var(--c-inverse); color: var(--c-inverse); }

/* ---------- 헤더 ---------- */
.gnb {
  position: sticky; top: 0; z-index: 100; height: 68px;
  border-bottom: 1px solid rgba(0,0,0,.07);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
}
.gnb__in { max-width: 1400px; margin: 0 auto; padding-inline: 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.gnb__left { display: flex; align-items: center; gap: 44px; min-width: 0; }
.gnb__logo img { height: 25px; width: auto; }
.gnb__links { display: flex; gap: 26px; }
.gnb__links a { font-size: 15px; font-weight: 500; color: var(--c-text-body); transition: color .15s ease; }
.gnb__links a:hover { color: var(--c-primary); }
.gnb__right { display: flex; align-items: center; gap: 14px; }
.gnb--dark { background: rgba(15,23,23,.85); border-bottom-color: rgba(255,255,255,.08); }
.gnb--dark .gnb__links a { color: rgba(255,255,255,.82); }
.gnb--dark .gnb__links a:hover { color: var(--c-secondary); }
/* C: 오버레이 → 스크롤 시 다크 고정 */
.gnb--overlay { position: fixed; left: 0; right: 0; background: transparent; border-bottom-color: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; transition: background .25s ease, border-color .25s ease; }
.gnb--overlay .gnb__links a { color: var(--c-inverse); }
.gnb--overlay .gnb__links a:hover { color: var(--c-warm); }
.gnb--overlay.scrolled { background: rgba(26,35,50,.92); border-bottom-color: rgba(255,255,255,.08); backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px); }

/* 햄버거 & 모바일 메뉴 */
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer; }
.burger span { display: block; height: 2px; width: 100%; background: var(--c-text-strong); transition: transform .2s ease, opacity .2s ease; }
.gnb--dark .burger span, .gnb--overlay .burger span { background: var(--c-inverse); }
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; display: none;
  flex-direction: column; padding: 96px 28px 40px; gap: 6px;
  background: var(--c-dark);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 16px 8px; font-size: 20px; font-weight: 600; color: var(--c-inverse); border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu a:active { color: var(--c-secondary); }
.mobile-menu .mobile-contact { margin-top: auto; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.55); }
body.menu-open { overflow: hidden; }
body.menu-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
body.menu-open .burger span { background: var(--c-inverse); }

/* ---------- 히어로 (공통 표지 — 고정) ---------- */
.hero { position: relative; min-height: 100vh; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,19,19,.62) 0%, rgba(10,19,19,.32) 40%, rgba(10,19,19,.92) 100%); }
.hero__in { position: relative; z-index: 1; text-align: center; padding: 96px 24px 40px; max-width: 860px; }
.hero__badge {
  display: inline-block; padding: 7px 16px; border-radius: 9999px;
  background: rgba(127,210,210,.16); border: 1px solid rgba(127,210,210,.3);
  font-size: 13px; font-weight: 700; color: var(--c-secondary); margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero__title { font-size: clamp(34px, 5.4vw, 62px); line-height: 1.16; font-weight: 600; letter-spacing: -0.02em; color: var(--c-inverse); text-shadow: 0 2px 28px rgba(0,0,0,.6); }
.hero__title em { font-style: normal; color: var(--c-secondary); }
.hero__sub { margin: 22px auto 0; font-size: clamp(14px, 1.6vw, 18px); line-height: 1.7; color: rgba(255,255,255,.84); max-width: 640px; text-shadow: 0 1px 10px rgba(0,0,0,.5); }
.hero__cta { margin-top: 32px; }
.hero__stats { display: flex; justify-content: center; gap: clamp(24px, 5vw, 56px); margin-top: 32px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); }
.hero__stats strong { display: block; font-size: clamp(18px, 2.4vw, 30px); font-weight: 800; color: var(--c-inverse); letter-spacing: -0.02em; }
.hero__stats small { display: block; font-size: 12px; color: rgba(255,255,255,.62); margin-top: 4px; }

/* ---------- 그리드 ---------- */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 32px; }

/* ---------- 카드 (통일: radius 0-2px, hairline, no shadow) ---------- */
.card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  box-shadow: none;
  padding: 28px;
}
.card--top { border-top: 2px solid var(--c-accent); }
.metric {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: 24px 26px;
}
.metric strong { font-family: var(--font-tech); font-size: 24px; font-weight: 600; color: var(--c-text-strong); }
.metric span { display: block; font-size: 13px; color: var(--c-text-muted); margin-top: 8px; line-height: 1.55; }
.step { padding: 26px 0; border-top: 1px solid var(--c-accent); }
.step .no { font-family: var(--font-tech); font-size: 13px; font-weight: 600; color: var(--c-accent); }
.step h3 { font-size: 19px; font-weight: 700; margin-top: 10px; }
.step p { font-size: 14px; line-height: 1.65; color: var(--c-text-body); margin-top: 8px; }

/* ---------- 파이프라인 (B) ---------- */
.pipe { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; border: 1px solid rgba(127,210,210,.22); border-radius: 4px; background: rgba(255,255,255,.02); overflow: hidden; }
.pipe__node { padding: 24px 20px; }
.pipe__node + .pipe__node { border-left: 1px solid rgba(255,255,255,.08); }
.pipe__node .tag { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 700; letter-spacing: .08em; color: var(--c-secondary); }
.pipe__node h3 { font-size: 17px; font-weight: 800; color: var(--c-inverse); margin-top: 8px; }
.pipe__node p { font-size: 12px; line-height: 1.6; color: rgba(255,255,255,.6); margin-top: 6px; }
.pipe__node--hl { background: rgba(14,133,133,.12); }
.pipe__node--hl h3 { color: var(--c-secondary); }
.pipe__arrow { display: flex; align-items: center; justify-content: center; padding-inline: 8px; color: var(--c-secondary); font-weight: 700; }

/* ---------- 벤토 (B) ---------- */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.bento__cell { background: var(--c-dark-2); border: 1px solid rgba(255,255,255,.1); border-radius: 4px; padding: 24px; transition: transform .2s ease, border-color .2s ease; }
.bento__cell:hover { transform: translateY(-3px); border-color: rgba(127,210,210,.5); }
.bento__cell .code { font-family: 'JetBrains Mono', monospace; font-weight: 700; color: var(--c-secondary); }
.bento__cell p { font-size: 13px; line-height: 1.65; color: rgba(255,255,255,.7); margin-top: 10px; }
.bento__cell .en { font-family: 'JetBrains Mono', monospace; font-size: 10px; letter-spacing: .04em; color: rgba(255,255,255,.5); }
.b-span3 { grid-column: span 3; }
.b-span2 { grid-column: span 2; }
.b-row2 { grid-row: span 2; }

/* ---------- 스펙 표 (B) ---------- */
.spec { display: grid; grid-template-columns: auto 1fr; column-gap: 24px; }
.spec dt, .spec dd { margin: 0; padding: 12px 0; border-top: 1px solid rgba(255,255,255,.1); }
.spec dt { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); white-space: nowrap; }
.spec dd { font-size: 14px; color: var(--c-inverse); }
.spec dd.mono { font-size: 13px; }

/* ---------- 듀오톤 배너 (C) ---------- */
.duo { position: relative; min-height: clamp(300px, 42vw, 420px); display: flex; align-items: center; overflow: hidden; }
.duo__bg { position: absolute; inset: 0; }
.duo__bg img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); }
.duo__bg .tint { position: absolute; inset: 0; background: var(--c-primary); mix-blend-mode: color; }
.duo__bg .shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,19,19,.85) 0%, rgba(10,19,19,.4) 60%, rgba(10,19,19,.2) 100%); }
.duo__in { position: relative; z-index: 1; padding-block: 48px; }
.duo h3 { font-size: clamp(24px, 3.2vw, 34px); line-height: 1.3; font-weight: 800; color: var(--c-inverse); }
.duo p { margin-top: 14px; font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.8); max-width: 460px; }

/* ---------- 사례 카드 (industry / scope / modules / result) ---------- */
.ref-card {
  display: flex; flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  overflow: hidden;
  color: var(--c-text-body);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.22,.61,.36,1);
}
.ref-card:hover {
  border-color: var(--c-primary);
  box-shadow: 0 14px 34px rgba(26,35,50,.10);
  transform: translateY(-4px);
}
.ref-card__img {
  position: relative;
  aspect-ratio: 16/8;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-border);
}
.ref-card__img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s cubic-bezier(.22,.61,.36,1);
}
.ref-card:hover .ref-card__img img { transform: scale(1.045); }
.ref-card__industry {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--c-border);
  font-family: var(--font-tech);
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--c-primary);
}
.ref-card__body { padding: 20px 22px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.ref-card__title { font-size: 16px; line-height: 1.4; font-weight: 700; color: var(--c-text-strong); }
.ref-card__spec { margin: 0; display: grid; grid-template-columns: 46px 1fr; gap: 6px 12px; }
.ref-card__spec dt {
  font-family: var(--font-tech);
  font-size: 10px; font-weight: 500; letter-spacing: .06em;
  color: var(--c-text-muted);
  text-transform: uppercase;
  padding-top: 2px;
}
.ref-card__spec dd { margin: 0; font-size: 12.5px; line-height: 1.55; color: var(--c-text-body); }
.ref-card__module {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 10.5px; font-weight: 600; letter-spacing: .04em;
  color: var(--c-primary);
  padding: 2px 6px;
  border: 1px solid var(--c-primary);
  margin-right: 4px;
  margin-bottom: 4px;
}
.ref-card .btn--text { margin-top: auto; align-self: flex-start; }

.ref-card--cta {
  display: flex; flex-direction: column; justify-content: center;
  background: var(--c-text-strong);
  padding: 32px 28px;
  color: var(--c-inverse);
  border: 1px solid var(--c-text-strong);
}
.ref-card--cta .ref-card__tag {
  font-family: var(--font-tech);
  font-size: 10.5px; font-weight: 600; letter-spacing: .1em;
  color: var(--c-warm); margin-bottom: 14px;
  text-transform: uppercase;
}
.ref-card--cta h3 { font-size: 22px; line-height: 1.35; font-weight: 700; color: var(--c-inverse); }
.ref-card--cta p { margin: 12px 0 0; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,.7); }
.ref-card--cta .btn--text { margin-top: 22px; color: var(--c-inverse); }
.ref-card--cta .btn--text:hover { color: var(--c-warm); }

/* ---------- 뉴스 카드 ---------- */
.news-card {
  display: flex; flex-direction: column;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: 22px 24px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.22,.61,.36,1);
  color: var(--c-text-body);
}
.news-card:hover {
  border-color: var(--c-primary);
  box-shadow: 0 12px 30px rgba(26,35,50,.09);
  transform: translateY(-3px);
}
.news-card--pinned { border-left: 2px solid var(--c-warm); }
.news-card__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.news-card__category {
  font-family: var(--font-tech);
  font-size: 10.5px; font-weight: 600; letter-spacing: .06em;
  color: var(--c-accent);
  text-transform: uppercase;
}
.news-card__pin {
  font-family: var(--font-tech);
  font-size: 9.5px; font-weight: 600; letter-spacing: .08em;
  color: var(--c-warm);
  border: 1px solid var(--c-warm);
  padding: 1px 6px;
}
.news-card__title { font-size: 15px; font-weight: 700; line-height: 1.4; color: var(--c-text-strong); }
.news-card__summary { font-size: 12.5px; line-height: 1.6; color: var(--c-text-body); margin-top: 8px; }
.news-card__date {
  font-family: var(--font-tech);
  font-size: 11px; color: var(--c-text-muted); margin-top: 14px;
  letter-spacing: .04em;
}

/* ---------- 소식 ---------- */
/* flow-root: 트랙의 음수 마진이 마진 상쇄로 새어나가 슬라이더 위치가 밀리는 것 방지 */
.news-slider { position: relative; display: flow-root; }
.news-slider__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* overflow-x:auto → overflow-y도 auto로 계산되어 세로가 클리핑됨.
     카드 hover lift(-3px)+그림자가 상하로 잘리지 않도록 여백을 주고, 음수 마진으로 레이아웃 위치는 유지 */
  padding-block: 16px;
  margin-block: -16px;
}
.news-slider__track::-webkit-scrollbar { display: none; }

.news-card--slide {
  flex: 0 0 calc((100% - 40px) / 3); /* 데스크톱 3열 (gap 20px × 2) */
  scroll-snap-align: start;
}

.news-slider__nav {
  display: flex; align-items: center; justify-content: center;
  gap: 16px; margin-top: 22px;
}
.news-slider__btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  background: var(--c-surface);
  color: var(--c-text-strong);
  font-size: 20px; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease, opacity .2s ease;
}
.news-slider__btn:hover:not(:disabled) { border-color: var(--c-primary); color: var(--c-primary); }
.news-slider__btn:disabled { opacity: .35; cursor: default; }
.news-slider__dots { display: flex; align-items: center; gap: 8px; }
.news-slider__dot {
  width: 8px; height: 8px; border-radius: 50%;
  border: 0; padding: 0;
  background: var(--c-border-strong);
  cursor: pointer;
  transition: background .2s ease, width .2s ease, border-radius .2s ease;
}
.news-slider__dot.is-active { background: var(--c-primary); width: 22px; border-radius: 4px; }

@media (max-width: 1100px) {
  .news-card--slide { flex-basis: calc((100% - 20px) / 2); } /* 태블릿 2열 */
}
@media (max-width: 860px) {
  .news-card--slide { flex-basis: 88%; } /* 모바일 1열 + 다음 카드 살짝 노출 */
}

/* ---------- 연혁 · 주요 실적 ---------- */
.timeline { margin-top: 24px; }
.hgroup { display: grid; grid-template-columns: 150px 1fr; gap: 40px; padding: 30px 0; border-top: 1px solid var(--c-border); }
/* 맨 위(2026)와 화살표 바로 아래(이전 연혁 첫 구간)의 구분선 제거 — 화살표가 선에 갇히지 않고 자연스럽게 */
.timeline > .hgroup:first-child,
.hist-more__panel > .hgroup:first-child { border-top: 0; }
.hgroup__period { font-family: var(--font-tech); font-size: 24px; font-weight: 700; color: var(--c-text-strong); letter-spacing: .02em; white-space: nowrap; }
.hgroup__list { display: flex; flex-direction: column; gap: 12px; margin: 0; padding: 0; list-style: none; }
.hitem { display: grid; grid-template-columns: 96px 1fr; gap: 18px; align-items: baseline; }
.hitem__yr { font-family: var(--font-tech); font-size: 13px; font-weight: 600; color: var(--c-text-muted); white-space: nowrap; font-variant-numeric: tabular-nums; }
.hitem__text { font-size: 15px; line-height: 1.6; color: var(--c-text-body); }
.hitem--hl .hitem__text { color: var(--c-primary); font-weight: 700; }

/* 이전 연혁 펼침 — 소식 슬라이더의 원형 내비 버튼과 동일 톤 (details/summary, JS 불필요) */
.hist-more__btn {
  list-style: none; cursor: pointer; user-select: none;
  display: flex; justify-content: center;
  padding: 24px 0;
}
.hist-more__btn::-webkit-details-marker { display: none; }
.hist-more__btn::marker { content: ''; }
.hist-more__circle {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--c-border-strong);
  background: var(--c-surface);
  color: var(--c-text-strong);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s ease, color .2s ease;
}
.hist-more__btn:hover .hist-more__circle,
.hist-more:focus-within .hist-more__circle { border-color: var(--c-primary); color: var(--c-primary); }
.hist-more__circle svg { display: block; transition: transform .25s ease; }
.hist-more[open] .hist-more__circle svg { transform: rotate(180deg); }

/* ---------- 문의 / 푸터 ---------- */
.contact { display: grid; grid-template-columns: 1.3fr 1fr; gap: 64px; align-items: center; }
.contact h2 { font-size: clamp(28px, 3.6vw, 42px); line-height: 1.25; font-weight: 800; letter-spacing: -0.02em; color: var(--c-inverse); }
.contact .info { border-left: 1px solid rgba(255,255,255,.12); padding-left: 44px; display: flex; flex-direction: column; gap: 22px; }
.contact .info small { display: block; font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45); }
.contact .info b { display: block; font-size: 20px; font-weight: 800; color: var(--c-inverse); margin-top: 6px; font-variant-numeric: tabular-nums; }
.contact .info p { font-size: 15px; line-height: 1.6; color: rgba(255,255,255,.8); margin-top: 6px; }
.footer { background: var(--c-deep); border-top: 1px solid rgba(255,255,255,.08); padding: 56px 0 36px; }
.footer > .wrap { width: 100%; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 40px; }
.footer h4 { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.45); margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer li, .footer p { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7; }
.footer__bar { margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13px; color: rgba(255,255,255,.4); }

/* ============================================================
   Smart E³I — 좌 60% 시스템 목업 + 우 40% 핵심 3모듈 + 하단 3모듈
   ============================================================ */
.sw { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.sw__head { display: flex; flex-direction: column; padding-bottom: 18px; border-bottom: 1px solid var(--c-border); }
.sw__head .eyebrow { color: var(--c-accent); margin-bottom: 12px; }
.sw__title {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text-strong);
}
.sw__title em { font-style: normal; color: var(--c-accent); }
.sw__lede {
  max-width: 780px;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  color: var(--c-text-body);
  margin-top: 14px;
}

/* ============================================================
   Smart E³I — 6모듈 3×2 그리드 (`.sw-panels` / `.sw-panel*`)
   Home.tsx <ModulesGrid /> · vanilla main.js modules-grid 렌더러 대상
   ============================================================ */
.sw-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 14px;
  margin-top: 32px;
}
.sw-panel {
  position: relative;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  padding: 20px 22px 22px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s cubic-bezier(.22,.61,.36,1);
  outline: none;
}
.sw-panel:hover,
.sw-panel:focus-visible {
  border-color: var(--c-accent);
  box-shadow: 0 14px 34px rgba(26,35,50,.10);
  transform: translateY(-4px);
}
.sw-panel__head {
  display: flex; flex-direction: column; gap: 6px;
}
.sw-panel__stage {
  font-family: var(--font-tech);
  font-size: 10.5px; font-weight: 600; letter-spacing: .08em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}
.sw-panel__code {
  font-family: var(--font-tech);
  font-size: 22px; font-weight: 600;
  color: var(--c-text-strong);
  line-height: 1.15;
  display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap;
}
.sw-panel__code small {
  font-family: var(--font-tech);
  font-size: 11px; font-weight: 500; letter-spacing: .04em;
  color: var(--c-text-muted);
  text-transform: uppercase;
}
.sw-panel__name {
  font-size: 14px; font-weight: 600; color: var(--c-text-strong);
  margin-top: 2px;
}

@media (max-width: 1100px) {
  .sw-panels { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .sw-panels { grid-template-columns: 1fr; gap: 12px; margin-top: 24px; }
  .sw-panel { padding: 18px 18px 20px; }
  .sw-panel__code { font-size: 20px; }
}


/* ---------- 리빌 ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   챕터 (하단 정보 영역: 사례 · 소식 · 오시는 길)
   ============================================================ */
.sec--chapter { background: var(--c-bg); border-top: 1px solid var(--c-border); }
.sec--chapter:first-of-type { border-top: 0; }
.chapter-head { display: flex; flex-direction: column; gap: 10px; padding-bottom: 20px; border-bottom: 1px solid var(--c-border); }
.chapter-head__mark {
  display: inline-block;
  font-family: var(--font-tech);
  font-size: 11px; font-weight: 600; letter-spacing: .1em;
  color: var(--c-text-muted);
  padding-left: 10px;
  border-left: 2px solid var(--c-accent);
  align-self: flex-start;
  text-transform: uppercase;
}
.chapter-head .h2 { color: var(--c-text-strong); }

/* --- 문의 섹션 (라이트) --- */
.sec--chapter-contact .contact h2 { color: var(--c-text-strong); font-size: clamp(24px, 3vw, 34px); line-height: 1.3; font-weight: 700; }
.sec--chapter-contact .contact h2 em { font-style: normal; color: var(--c-accent); }
.sec--chapter-contact .contact .sub { color: var(--c-text-body); }
.sec--chapter-contact .info { border-left: 1px solid var(--c-border); padding-left: 44px; }
.sec--chapter-contact .info small { color: var(--c-text-muted); font-family: var(--font-tech); font-size: 10.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.sec--chapter-contact .info b { color: var(--c-text-strong); font-family: var(--font-tech); font-weight: 600; }
.sec--chapter-contact .info b a { color: var(--c-text-strong); }
.sec--chapter-contact .info p { color: var(--c-text-body); }
.sec--chapter-contact .info .mono-sub { color: var(--c-text-muted); font-size: 12px; font-family: var(--font-tech); }
.sec--chapter-contact .chapter-head__mark { margin-bottom: 16px; }
@media (max-width: 860px) {
  .sec--chapter-contact .info { border-left: 0; padding-left: 0; border-top: 1px solid var(--c-border); padding-top: 28px; }
}

/* ============================================================
   HW 피처 — ECP · DCM · MPMS (좌/우 이미지 + 스펙 반복)
   ============================================================ */
.hw-feature { display: flex; flex-direction: column; gap: 20px; width: 100%; }
.hw-feature__head { margin-bottom: 4px; }
.hw-feature__head { display: flex; flex-direction: column; }
.hw-feature__head .eyebrow { color: var(--c-accent); margin-bottom: 14px; }
.e3i__title {
  font-family: var(--font-main);
  font-size: clamp(24px, 2.8vw, 34px);
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--c-text-strong);
}
.e3i__title em { font-style: normal; color: var(--c-accent); }
.e3i__lede {
  max-width: 780px;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  color: var(--c-text-body);
  margin-top: 14px;
}
.hw-feature__body {
  display: grid;
  grid-template-columns: minmax(280px, 46%) 1fr;
  gap: 0;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  min-height: 260px;
}
.hw-feature__image {
  position: relative;
  background-color: var(--c-deep);
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 28px 28px;
  overflow: hidden;
  border-right: 1px solid var(--c-border);
}
.hw-feature__image img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(.1) contrast(1.05);
  opacity: .92;
}
.hw-feature__image .tag {
  position: absolute; top: 16px; left: 16px;
  padding: 5px 10px;
  background: rgba(255,255,255,.92);
  font-family: var(--font-tech);
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  color: var(--c-text-strong);
  z-index: 1;
}
.hw-feature__info { padding: 34px; display: flex; flex-direction: column; gap: 12px; }
.hw-feature__code {
  font-family: var(--font-tech);
  font-weight: 800; font-size: 34px; line-height: 1;
  color: var(--c-text-strong);
  border-left: 2px solid var(--c-primary);
  padding-left: 12px;
}
.hw-feature__code small {
  display: block;
  font-size: 11px; font-weight: 600; letter-spacing: .08em;
  color: var(--c-text-muted);
  margin-top: 10px;
}
.hw-feature__name { font-size: 17px; font-weight: 700; color: var(--c-text-strong); padding-left: 14px; line-height: 1.35; }
.hw-feature__desc { font-size: 13.5px; line-height: 1.65; color: var(--c-text-body); padding-left: 14px; margin-top: 4px; }
.hw-feature__spec {
  margin: 12px 0 0 14px;
  display: grid; grid-template-columns: 68px 1fr;
  gap: 10px 16px;
  border-top: 1px solid var(--c-border);
  padding-top: 14px;
}
.hw-feature__spec dt {
  font-family: var(--font-tech);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--c-text-muted);
}
.hw-feature__spec dd { margin: 0; font-size: 13.5px; line-height: 1.55; color: var(--c-text-body); }
/* 이미지 우측 배치(짝수 행) — 데스크톱에서만 좌우 반전 */
.hw-feature__body--reverse { grid-template-columns: 1fr minmax(280px, 46%); }
.hw-feature__body--reverse .hw-feature__info { order: 1; }
.hw-feature__body--reverse .hw-feature__image {
  order: 2;
  border-right: 0;
  border-left: 1px solid var(--c-border);
}
@media (max-width: 860px) {
  .hw-feature__body { grid-template-columns: 1fr; min-height: 0; }
  .hw-feature__image { min-height: 180px; border-right: 0; border-bottom: 1px solid var(--c-border); }
  .hw-feature__info { padding: 22px; }
  .hw-feature__code { font-size: 26px; }
  /* 모바일에서는 반전 해제 — 이미지가 항상 위(DOM 순서 유지) */
  .hw-feature__body--reverse { grid-template-columns: 1fr; }
  .hw-feature__body--reverse .hw-feature__image { order: 0; border-left: 0; border-bottom: 1px solid var(--c-border); }
  .hw-feature__body--reverse .hw-feature__info { order: 0; }
}

/* ============================================================
   반응형 — 860px
   ============================================================ */
@media (max-width: 860px) {
  .wrap { padding-inline: 20px; }
  .gnb__in { padding-inline: 20px; }
  .gnb__links { display: none; }
  .burger { display: flex; }
  .grid2, .grid3, .grid4 { grid-template-columns: 1fr; }
  .grid4 { gap: 0; }
  .hero__stats { gap: 20px; }
  .pipe { grid-template-columns: 1fr; }
  .pipe__arrow { transform: rotate(90deg); padding: 2px 0; }
  .pipe__node + .pipe__node { border-left: 0; border-top: 1px solid rgba(255,255,255,.08); }
  .bento { grid-template-columns: 1fr 1fr; }
  .b-span3, .b-span2 { grid-column: span 2; }
  .b-row2 { grid-row: auto; }
  .hgroup { grid-template-columns: 1fr; gap: 16px; padding: 24px 0; }
  .hgroup__period { font-size: 20px; }
  .hitem { grid-template-columns: 78px 1fr; gap: 12px; }
  .contact { grid-template-columns: 1fr; gap: 36px; }
  .contact .info { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.12); padding-top: 28px; }
  .footer__grid { grid-template-columns: 1fr; }
  .duo__bg .shade { background: linear-gradient(180deg, rgba(10,19,19,.35) 0%, rgba(10,19,19,.88) 100%); }

}

/* ============================================================
   드롭다운 (GNB 구축 사례)
   ============================================================ */
.gnb__item { position: relative; display: inline-flex; align-items: center; }
.gnb__item > a { display: inline-flex; align-items: center; gap: 6px; }
.gnb__item .caret { font-size: 9px; opacity: .65; transform: translateY(1px); transition: transform .18s ease; }
.gnb__item:hover .caret { transform: translateY(1px) rotate(180deg); }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  min-width: 320px; padding: 8px; z-index: 120;
  background: var(--c-surface); border: 1px solid rgba(0,0,0,.08); border-radius: 6px;
  box-shadow: 0 12px 36px rgba(0,0,0,.16);
  opacity: 0; visibility: hidden; transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.dropdown::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.gnb__item:hover .dropdown, .gnb__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.gnb__links .dropdown a { display: block; padding: 12px 14px; border-radius: 4px; }
.gnb__links .dropdown a:hover { background: var(--c-bg); }
.gnb__links .dropdown a b { display: block; font-size: 14px; font-weight: 700; color: var(--c-text-strong); }
.gnb__links .dropdown a span { display: block; font-size: 12.5px; color: var(--c-text-muted); margin-top: 3px; line-height: 1.5; }
.gnb__links .dropdown .dropdown__all { margin-top: 6px; border-top: 1px solid rgba(0,0,0,.07); font-size: 13px; font-weight: 700; color: var(--c-primary); }
.gnb__links .dropdown .dropdown__all:hover { color: var(--c-accent); }
@media (max-width: 860px) { .dropdown { display: none; } }

/* ============================================================
   기술 자료 받기 (hover 드롭다운)
   ============================================================ */
.doc-menu { position: relative; display: inline-flex; }
.doc-menu__trigger {
  font-family: inherit;
  letter-spacing: inherit;
}
.doc-menu__dropdown {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  min-width: 300px;
  padding: 6px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 2px;
  box-shadow: 0 8px 20px rgba(26,35,50,.12);
  opacity: 0; visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 120;
}
.doc-menu__dropdown::after {
  content: "";
  position: absolute;
  bottom: -12px; left: 0; right: 0; height: 12px;
}
.doc-menu:hover .doc-menu__dropdown,
.doc-menu:focus-within .doc-menu__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.doc-menu__dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 2px;
  color: var(--c-text-body);
}
.doc-menu__dropdown a:hover,
.doc-menu__dropdown a:focus-visible { background: var(--c-bg); outline: none; }
.doc-menu__dropdown a b {
  display: block;
  font-size: 14px; font-weight: 700;
  color: var(--c-text-strong);
  letter-spacing: -0.01em;
}
.doc-menu__dropdown a span {
  display: block;
  font-size: 12px; color: var(--c-text-muted);
  margin-top: 4px; line-height: 1.5;
}

/* ============================================================
   폼 (상담 신청)
   ============================================================ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 13px; font-weight: 700; color: var(--c-text-strong); }
.field label .req { color: var(--c-danger); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--c-text-strong);
  padding: 12px 14px; background: var(--c-surface);
  border: 1px solid rgba(0,0,0,.16); border-radius: 2px;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--c-primary); outline-offset: -1px; border-color: var(--c-primary);
}
.form-msg { display: none; padding: 14px 16px; border-radius: 2px; font-size: 14px; line-height: 1.6; margin-top: 18px; }
.form-msg.ok { display: block; background: rgba(14,133,133,.08); border: 1px solid rgba(14,133,133,.3); color: var(--c-accent); }
.form-msg.note { display: block; background: var(--c-bg); border: 1px solid rgba(0,0,0,.1); color: var(--c-text-body); }
@media (max-width: 860px) { .form-grid { grid-template-columns: 1fr; } }


/* ============================================================
   모바일 마감 (지시서 2-6) — 860px↓에서 .sec 100vh + scroll-snap 해제
   내용이 화면보다 긴 섹션(모듈 2×3, 사례 카드, Consult 폼, Case 상세)에서
   콘텐츠 잘림 방지. 데스크톱은 프레젠테이션 톤 유지, 모바일만 자연 스크롤.
   ============================================================ */
@media (max-width: 860px) {
  body { scroll-snap-type: none; overflow-y: auto; }
  .hero, .sec, .footer { scroll-snap-align: none; scroll-snap-stop: normal; }
  .hero, .sec, .footer {
    height: auto;
    min-height: 0;
    overflow: visible;
  }
  .hero { min-height: 100vh; }
  .sec { padding-block: clamp(60px, 12vw, 96px); }
}

/* ============================================================
   상담 페이지 (consult) — ConsultForm.tsx 인라인 스타일 이관
   ============================================================ */
.sec--consult { background: var(--c-bg); }
.consult { max-width: 860px; }
.consult__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -0.02em; }
.consult__lede { max-width: 640px; }
.consult__lede a { color: var(--c-primary); font-weight: 700; }
.consult__form { margin-top: 32px; padding: 36px; border-radius: 8px; }
.field--full { grid-column: 1 / -1; }
.field--hp { position: absolute; left: -9999px; }
.consult__agree {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 22px;
  font-size: 13px; line-height: 1.6; color: var(--c-text-body);
  cursor: pointer;
}
.consult__agree input { margin-top: 2px; accent-color: var(--c-primary); width: 16px; height: 16px; }
.consult__actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; }

/* ============================================================
   사례 상세 (case) — CaseDetail.tsx 인라인 스타일 이관
   ============================================================ */
.case__crumb { font-size: 12px; color: var(--c-text-muted); }
.case__crumb a { color: var(--c-primary); }
.case__badges { display: flex; align-items: center; gap: 10px; margin-top: 24px; }
.case__industry {
  padding: 6px 12px; background: var(--c-primary); border-radius: 2px;
  font-size: 12px; font-weight: 700; color: var(--c-inverse);
}
.case__title { margin-top: 16px; font-size: clamp(28px, 4vw, 42px); line-height: 1.25; font-weight: 800; letter-spacing: -0.02em; }
.case__lede { max-width: 720px; }
.case-body { grid-template-columns: 2fr 1fr; gap: 32px; margin-top: 44px; }
.case__figure { border-radius: 8px; overflow: hidden; border: 1px solid rgba(0,0,0,.08); box-shadow: 0 4px 16px rgba(0,0,0,.06); }
.case__figure img { width: 100%; }
.case__section { margin-top: 40px; }
.case__section h2 { font-size: 22px; font-weight: 800; }
.case__section p { font-size: 15px; line-height: 1.8; color: var(--c-text-body); margin-top: 14px; }
.case__figure--inline { margin-top: 24px; box-shadow: none; }
.case__caption { font-size: 13px; color: var(--c-text-muted); text-align: center; margin-top: 10px; }
.case__info { padding: 26px; }
.case__info-title { font-size: 15px; font-weight: 800; padding-bottom: 14px; border-bottom: 2px solid var(--c-text-strong); }
.case__info dl { margin: 0; }
.case__info dt { font-size: 12px; font-weight: 700; color: var(--c-text-muted); margin-top: 16px; }
.case__info dd { margin: 6px 0 0; font-size: 14px; line-height: 1.6; color: var(--c-text-strong); }
.case__aside .btn { width: 100%; }
.case__info + .btn { margin-top: 16px; }
.case__aside .btn + .btn { margin-top: 10px; }
.case__nav {
  display: flex; justify-content: space-between; gap: 16px;
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(0,0,0,.1);
  flex-wrap: wrap;
}
.case__nav-prev { font-size: 14px; font-weight: 600; color: var(--c-text-muted); }
.case__nav-next { font-size: 14px; font-weight: 700; color: var(--c-primary); }
@media (max-width: 860px) {
  .case-body { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }
}

/* ---------- 사례 카드: 고객·연도 + 이미지 표시자 ---------- */
.ref-card__client {
  font-family: var(--font-tech);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
  color: var(--c-text-muted);
}
.ref-card__img--ph {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #E4E9E7, #E4E9E7 10px, #DBE2DF 10px, #DBE2DF 20px);
}
.ref-card__ph-label {
  font-family: var(--font-tech);
  font-size: 11px; letter-spacing: .08em; color: var(--c-text-muted); opacity: .85;
}

/* ---------- 사례 상세: 메타 · 태그 · 리스트 · 이미지 표시자 ---------- */
.case__meta {
  font-family: var(--font-tech);
  font-size: 12px; font-weight: 600; letter-spacing: .03em;
  color: var(--c-text-muted);
}
.case__tags { list-style: none; margin: 14px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.case__tag {
  font-family: var(--font-tech);
  font-size: 12px; font-weight: 600; letter-spacing: .02em;
  color: var(--c-primary);
  padding: 5px 10px;
  border: 1px solid var(--c-primary);
  border-radius: 2px;
}
.case__list { margin: 14px 0 0; padding-left: 0; list-style: none; }
.case__list li {
  position: relative; padding-left: 18px;
  font-size: 15px; line-height: 1.75; color: var(--c-text-body);
  margin-top: 8px;
}
.case__list li::before {
  content: ''; position: absolute; left: 2px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-primary);
}
.case__list--result li::before { background: var(--c-warm); }

.case__figure--ph {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, #EDF1EF, #EDF1EF 12px, #E4E9E7 12px, #E4E9E7 24px);
  box-shadow: none;
}
.case__figure-ph-label {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-family: var(--font-tech);
  font-size: 12px; letter-spacing: .06em; color: var(--c-text-muted); text-align: center;
}
.case__figure-ph-label b {
  font-size: 13px; font-weight: 700; color: var(--c-text-strong); letter-spacing: .04em;
}
