/* 사업분야(business_info) — B2B 리디자인 */

.business_info.dg-biz-page {
  width: 100%;
  overflow-x: hidden;
}

.dg-biz-page {
  --dg-biz-max: 1200px;
  --dg-biz-gutter: 24px;
  background: #fff;
  color: #1f2f3f;
}

.dg-biz-page * {
  box-sizing: border-box;
}

.biz-inner {
  width: 100%;
  max-width: var(--dg-biz-max);
  margin: 0 auto;
  padding: 0 var(--dg-biz-gutter);
}

/* ── 상단 소개 ── */
.dg-biz-intro {
  position: relative;
  overflow: hidden;
  max-width: var(--dg-biz-max);
  margin: 0 auto;
  padding: 56px 0 64px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #e4e8ee;
}

.dg-biz-intro > .biz-inner {
  position: relative;
  z-index: 1;
}

.biz-intro-title {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  margin: 0;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0b3159;
}

.biz-intro-accent {
  position: relative;
  flex-shrink: 0;
  width: 12px;
  height: 48px;
}

.biz-intro-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: #0b5fa5;
}

.biz-intro-accent::after {
  content: "";
  position: absolute;
  top: 18px;
  left: 4px;
  width: 4px;
  height: 30px;
  border-radius: 2px;
  background: linear-gradient(180deg, #0b5fa5 0%, #0b3159 100%);
}

.biz-intro-title__text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.biz-intro-desc {
  margin: 18px 0 0;
  max-width: 720px;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  color: #52677b;
}

/* ── 섹션 네비 ── */
.biz-nav {
  border-top: 1px solid #dce5ee;
  background: #fff;
}

.biz-nav-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.biz-nav-item {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 10px;
  padding: 18px 16px;
  border-right: 1px solid #dce5ee;
  text-decoration: none;
  transition: background 0.2s ease;
}

.biz-nav-item:last-child {
  border-right: none;
}

.biz-nav-item:hover {
  background: #f7fbff;
}

.biz-nav-num {
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.biz-nav-ko {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  color: #0b3159;
}

.biz-nav-item--blue .biz-nav-num {
  color: #0b5fa5;
}

.biz-nav-item--red .biz-nav-num {
  color: #b13f4d;
}

.biz-nav-item--green .biz-nav-num {
  color: #2d805e;
}

/* ── 본문 섹션 공통 ── */
.biz-body {
  background: #fff;
  padding: 0 24px 80px;
}

.biz-section {
  position: relative;
  overflow: hidden;
  max-width: var(--dg-biz-max);
  margin: 0 auto;
  padding: 64px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-bottom: 1px solid #e4e8ee;
}

.biz-section:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.biz-section > .biz-inner {
  position: relative;
  z-index: 1;
}

.biz-section::before {
  position: absolute;
  top: 8px;
  right: 28px;
  font-size: clamp(120px, 14vw, 160px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #0b3159;
  opacity: 0.05;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.biz-section--01::before {
  content: "01";
}

.biz-section--02::before {
  content: "02";
}

.biz-section--03::before {
  content: "03";
}

.biz-section--04::before {
  content: "04";
}

.biz-split {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 48px 64px;
  align-items: start;
}

/* ── 좌측 설명 ── */
.biz-aside {
  position: static;
}

.biz-sec-head {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 16px;
}

/* 01~04 섹션 대표 타이틀 — #container h2(user.css) 덮어쓰기 */
#container .business_info.dg-biz-page .biz-sec-head .biz-sec-num {
  flex-shrink: 0;
  margin: 0;
  font-size: clamp(28px, 3vw, 32px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

#container .business_info.dg-biz-page .biz-sec-head .biz-sec-title {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0b3159;
}

.biz-sec-desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #52677b;
}

.biz-aside-note {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #dce5ee;
}

.biz-aside-note strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #0b3159;
}

.biz-aside-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #52677b;
}

.biz-section--01 .biz-sec-num {
  color: #0b5fa5;
}

.biz-section--02 .biz-sec-num {
  color: #b13f4d;
}

.biz-section--03 .biz-sec-num {
  color: #0b5fa5;
}

.biz-section--04 .biz-sec-num {
  color: #2d805e;
}

/* ── 라인 버튼 ── */
.biz-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  margin-top: 24px;
  border: 1px solid #dce5ee;
  border-radius: 6px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: #0b3159;
  text-decoration: none;
  transition:
    border-color 0.28s ease,
    color 0.28s ease,
    background-color 0.28s ease,
    box-shadow 0.28s ease,
    transform 0.28s ease;
}

.biz-line-btn:hover {
  border-color: #0b5fa5;
  color: #0b5fa5;
  background: #f7fbff;
  box-shadow: 0 10px 24px rgba(11, 95, 165, 0.12);
  transform: translateY(-2px);
}

.biz-line-btn--primary {
  margin-top: 28px;
}

.biz-line-btn--sm {
  min-height: 34px;
  padding: 0 14px;
  margin-top: 16px;
  font-size: 12px;
}

.biz-section--02 .biz-line-btn:hover {
  border-color: #b13f4d;
  color: #b13f4d;
  background: #fff8f9;
  box-shadow: 0 10px 24px rgba(177, 63, 77, 0.12);
}

.biz-section--04 .biz-line-btn:hover {
  border-color: #2d805e;
  color: #2d805e;
  background: #f6fbf8;
  box-shadow: 0 10px 24px rgba(45, 128, 94, 0.12);
}

.biz-line-btn--icon {
  min-width: 34px;
  padding: 0;
}

.biz-line-btn--icon::after {
  content: "→";
  font-size: 14px;
  line-height: 1;
}

/* ── 우측 패널 ── */
.biz-panel-title {
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #dce5ee;
  font-size: 20px;
  font-weight: 700;
  color: #0b3159;
}

/* 01 · 장비 미니 카드 */
.biz-section--01 .biz-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.biz-section--01 .biz-panel .biz-facts {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.biz-equipment-full {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #dce5ee;
}

.biz-section--01 .biz-panel .biz-equipment-full {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.biz-section--01 .biz-equipment-full .biz-panel-title {
  margin-bottom: 16px;
  padding-bottom: 0;
  border-bottom: none;
}

.biz-section--01 .biz-equipment-full .biz-panel-title::after,
.biz-section--01 .biz-equipment-full .biz-panel-title.is-visible::after,
.biz-section--01 .biz-equipment-full .biz-panel-title.dg-reveal.is-visible::after {
  display: none;
  content: none;
  width: 0;
  height: 0;
}

.biz-section--01 .eq-mini__ko,
.biz-section--01 .eq-mini__en {
  text-decoration: none;
}

.biz-section--01 .eq-mini__img {
  min-height: 120px;
  height: 120px;
  padding: 0;
}

.biz-section--01 .eq-mini__img img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

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

.eq-mini {
  display: flex;
  flex-direction: column;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.eq-mini:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(11, 49, 89, 0.1);
}

.biz-section--01 .eq-mini:hover {
  border-color: #0b5fa5;
}

.eq-mini__img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  height: 120px;
  padding: 0;
  background: #f7fbff;
  overflow: hidden;
}

.eq-mini__img img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.eq-mini:hover .eq-mini__img img {
  transform: scale(1.06);
}

.eq-mini__label {
  padding: 10px 8px 12px;
  border-top: 1px solid #dce5ee;
  text-align: center;
}

.eq-mini__ko {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: #52677b;
  word-break: keep-all;
}

.eq-mini__en {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b3159;
}

.biz-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dce5ee;
}

.biz-fact {
  padding: 16px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.biz-fact:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(11, 49, 89, 0.08);
  border-color: #0b5fa5;
}

.biz-fact strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #0b3159;
}

.biz-fact p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #52677b;
}

/* 02 · 소모품 */
.biz-section--02 .biz-split {
  align-items: start;
}

.biz-section--02 .biz-panel .bc-service-row {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.bc-products-full {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #dce5ee;
}

.biz-section--02 .bc-products-full .bc-product-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.biz-section--02 .bc-products-full .bc-product {
  grid-template-columns: minmax(200px, 260px) minmax(0, 1fr);
  gap: 24px 28px;
  align-items: start;
  padding: 22px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.biz-section--02 .bc-products-full .bc-product:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(177, 63, 77, 0.1);
  border-color: #b13f4d;
}

.biz-section--02 .bc-products-full .bc-product__media {
  min-height: 200px;
  padding: 8px;
  border: none;
  border-radius: 0;
  background: transparent;
}

.biz-section--02 .bc-products-full .bc-product__media img {
  max-height: 220px;
  object-fit: contain;
}

.biz-section--02 .bc-products-full .bc-product__media--roll {
  min-height: 200px;
}

.biz-section--02 .bc-products-full .bc-product__media--roll .bc-img-roll {
  inset: 8px;
}

.biz-section--02 .bc-products-full .bc-product__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #0b3159;
}

.biz-section--02 .bc-products-full .bc-product__desc {
  font-size: 16px;
  line-height: 1.8;
}

.biz-section--02 .bc-service {
  padding: 18px 16px;
  border-radius: 8px;
}

.bc-product-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.bc-product {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-bottom: 24px;
  border-bottom: 1px solid #dce5ee;
}

.bc-product:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.bc-product__media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 12px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

.bc-product__media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 140px;
  object-fit: contain;
}

.bc-product__media--roll {
  position: relative;
  min-height: 160px;
}

.bc-product__media--roll .bc-img-roll {
  position: absolute;
  inset: 12px;
}

.bc-product__media--roll .bc-img-roll img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bc-product__media--roll .bc-img-roll img:nth-child(1) {
  animation: bc-img-roll-a 6s ease-in-out infinite;
}

.bc-product__media--roll .bc-img-roll img:nth-child(2) {
  animation: bc-img-roll-b 6s ease-in-out infinite;
}

@keyframes bc-img-roll-a {
  0%,
  48% {
    opacity: 1;
  }
  52%,
  100% {
    opacity: 0;
  }
}

@keyframes bc-img-roll-b {
  0%,
  48% {
    opacity: 0;
  }
  52%,
  100% {
    opacity: 1;
  }
}

.bc-product__title {
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 700;
  color: #0b3159;
}

.bc-product__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #52677b;
}

.bc-service-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dce5ee;
}

.bc-service {
  padding: 16px;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.bc-service:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(177, 63, 77, 0.1);
  border-color: #b13f4d;
}

.bc-service h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #0b3159;
}

.bc-service p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #52677b;
}

/* 03 · 플랫폼 */
.biz-split--platform {
  grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
  gap: 40px 48px;
  align-items: center;
}

.biz-section--03 .biz-sec-head {
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 8px;
}

#container .business_info.dg-biz-page .biz-section--03 .biz-sec-head .biz-sec-num {
  flex-shrink: 0;
}

#container .business_info.dg-biz-page .biz-section--03 .biz-sec-head .biz-sec-title {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
}

.biz-section--03 .biz-feature-list {
  margin-top: 22px;
}

.biz-feature-list--bullets {
  padding-left: 18px;
  list-style: disc;
}

.biz-feature-list--bullets li {
  padding: 0;
  border: none;
  margin-bottom: 8px;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 500;
  color: #1f2f3f;
}

.biz-feature-list--bullets li:last-child {
  margin-bottom: 0;
}

.biz-section--03 .biz-line-btn--split {
  margin-top: 28px;
}

.biz-line-btn--split {
  display: inline-flex;
  align-items: stretch;
  min-height: 42px;
  padding: 0;
  margin-top: 24px;
  overflow: hidden;
}

.biz-line-btn__label {
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
}

.biz-line-btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 0 12px;
  border-left: 1px solid #dce5ee;
  font-size: 15px;
  line-height: 1;
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.biz-line-btn--split:hover .biz-line-btn__arrow {
  transform: translateX(4px);
}

.biz-panel--platform {
  display: block;
}

.bp-visual {
  background: transparent;
  overflow: hidden;
  border-radius: 12px;
}

.bp-visual img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.biz-panel--platform:hover .bp-visual img {
  transform: scale(1.03);
}

.biz-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.biz-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid #dce5ee;
  border-radius: 6px;
  background: #fff;
  font-size: 11px;
  font-weight: 600;
  color: #52677b;
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease;
}

.biz-tags span:hover {
  background: #f6fbf8;
  border-color: #2d805e;
  color: #2d805e;
  transform: translateY(-2px);
}

/* 04 · 웨어러블 */
.bw-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.bw-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #dce5ee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.32s ease;
}

.bw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(45, 128, 94, 0.12);
  border-color: #2d805e;
}

.bw-card__img {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  height: 320px;
  padding: 0;
  background: #f7fbff;
  overflow: hidden;
}

.bw-card__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.bw-card:hover .bw-card__img img {
  transform: scale(1.05);
}

.bw-card__body {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  padding: 14px 16px 16px;
  border-top: 1px solid #dce5ee;
}

.bw-card__body h3 {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
  color: #0b3159;
}

.bw-card__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #52677b;
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
  .biz-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .biz-aside {
    position: static;
  }

  .eq-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .biz-facts,
  .bc-service-row {
    grid-template-columns: 1fr;
  }

  .biz-panel--platform {
    grid-template-columns: 1fr;
  }

  .bw-card-row {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .bw-card__img {
    min-height: 280px;
    height: 280px;
  }

  .bw-card__img img {
    width: 100%;
    height: 100%;
    max-height: none;
  }
}

@media (max-width: 768px) {
  .biz-body {
    padding: 0 16px 56px;
  }

  .biz-section {
    padding: 48px 0;
  }

  .dg-biz-intro {
    padding: 44px 0 52px;
  }

  .biz-section::before {
    top: 4px;
    right: 16px;
    font-size: clamp(96px, 28vw, 120px);
    opacity: 0.045;
  }

  .biz-nav-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .biz-nav-item {
    border-bottom: 1px solid #dce5ee;
  }

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

  .eq-mini-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bc-product {
    grid-template-columns: 1fr;
  }

  .bc-product__media {
    min-height: 140px;
  }

  .biz-section--02 .bc-products-full .bc-product-list {
    grid-template-columns: 1fr;
  }

  .biz-section--02 .bc-products-full .bc-product {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .biz-inner {
    padding: 0 16px;
  }

  .biz-sec-head {
    flex-wrap: wrap;
  }

  .biz-section--03 .biz-sec-head {
    flex-wrap: nowrap;
  }

  .biz-nav-grid {
    grid-template-columns: 1fr;
  }

  .biz-nav-item {
    border-right: none;
  }
}

/* =====================================================
   BUSINESS PAGE TYPOGRAPHY OVERRIDE
   기존 글씨 크기 전부 재정렬
===================================================== */

/* 상단 소개 */
#container .business_info.dg-biz-page .biz-intro-title {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 14px !important;
  font-size: 42px !important;
  line-height: 1.2 !important;
  font-weight: 800 !important;
  letter-spacing: -1px !important;
}

#container .business_info.dg-biz-page .biz-intro-title__text {
  white-space: nowrap;
}

.biz-intro-desc {
  font-size: 17px !important;
  line-height: 1.8 !important;
}

/* 01 02 03 04 번호 */
#container .business_info.dg-biz-page .biz-sec-head .biz-sec-num {
  font-size: 36px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

/* 01 의료기기판매
   02 의료소mo품
   03 스마트건강관리플랫폼
   04 웨어러블로봇 */
#container .business_info.dg-biz-page .biz-sec-head .biz-sec-title {
  font-size: 32px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.5px !important;
  color: #0b3159 !important;
}

/* 섹션 설명 */
.biz-sec-desc {
  font-size: 16px !important;
  line-height: 1.85 !important;
  color: #52677b !important;
}

/* 주요공급장비
   주요공급품목
   플랫폼소개 */
#container .business_info.dg-biz-page .biz-panel-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

/* CT MRI ANGIO — 한글명 + 약어 */
.eq-mini__ko {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
}

.eq-mini__en {
  font-size: 16px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
}

/* 제품 제목 */
.bc-product__title {
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin-bottom: 12px !important;
}

/* 제품 설명 */
.bc-product__desc {
  font-size: 15px !important;
  line-height: 1.8 !important;
  color: #52677b !important;
}

/* 서비스 카드 제목 */
.bc-service h4 {
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  margin-bottom: 8px !important;
}

/* 서비스 카드 설명 */
.bc-service p {
  font-size: 15px !important;
  line-height: 1.75 !important;
}

/* 플랫폼 기능 리스트 */
.biz-feature-list li {
  font-size: 15px !important;
  line-height: 1.8 !important;
}

/* 태그 */
.biz-tags span {
  font-size: 13px !important;
  font-weight: 600 !important;
}

/* 버튼 */
.biz-line-btn {
  font-size: 14px !important;
  font-weight: 600 !important;
}

/* 웨어러블 카드 제목 */
.bw-card__body h3 {
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

/* 웨어러블 카드 설명 */
.bw-card__body p {
  font-size: 15px !important;
  line-height: 1.75 !important;
  color: #52677b !important;
}

/* 하단 정보 카드 */
.biz-fact strong {
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

.biz-fact p {
  font-size: 15px !important;
  line-height: 1.75 !important;
}

/* 모바일 */
@media (max-width: 768px) {
  #container .business_info.dg-biz-page .biz-intro-title {
    font-size: 32px !important;
  }

  #container .business_info.dg-biz-page .biz-intro-title__text {
    white-space: normal;
  }

  .biz-intro-accent {
    height: 40px;
  }

  .biz-intro-accent::after {
    height: 24px;
  }

  #container .business_info.dg-biz-page .biz-sec-head .biz-sec-title {
    font-size: 26px !important;
  }

  #container .business_info.dg-biz-page .biz-sec-head .biz-sec-num {
    font-size: 30px !important;
  }

  .bc-product__title {
    font-size: 20px !important;
  }

  .bw-card__body h3 {
    font-size: 18px !important;
  }
}

/* ── PC(데스크톱) — 넓은 화면·큰 글씨 ── */
@media (min-width: 1025px) {
  .dg-biz-page {
    --dg-biz-max: 1400px;
    --dg-biz-gutter: 48px;
  }

  .biz-body {
    padding: 0 32px 96px;
  }

  .dg-biz-intro,
  .biz-section {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .biz-intro-desc {
    max-width: 860px;
    font-size: 18px !important;
  }

  #container .business_info.dg-biz-page .biz-intro-title {
    font-size: 46px !important;
  }

  .biz-split {
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 56px 72px;
  }

  .biz-split--platform {
    grid-template-columns: minmax(360px, 460px) minmax(0, 1fr);
    gap: 48px 64px;
  }

  #container .business_info.dg-biz-page .biz-sec-head .biz-sec-num {
    font-size: 40px !important;
  }

  #container .business_info.dg-biz-page .biz-sec-head .biz-sec-title {
    font-size: 36px !important;
  }

  .biz-sec-desc {
    font-size: 17px !important;
  }

  #container .business_info.dg-biz-page .biz-panel-title {
    font-size: 22px !important;
  }

  .eq-mini-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
  }

  .eq-mini__img,
  .biz-section--01 .eq-mini__img {
    min-height: 150px;
    height: 150px;
  }

  .eq-mini__ko {
    font-size: 15px !important;
  }

  .eq-mini__en {
    font-size: 17px !important;
  }

  .eq-mini__label {
    padding: 14px 12px 16px;
  }

  .biz-facts,
  .bc-service-row {
    gap: 18px;
  }

  .biz-fact,
  .bc-service {
    padding: 22px 20px;
  }

  .biz-fact strong {
    font-size: 19px !important;
  }

  .biz-fact p,
  .bc-service p {
    font-size: 16px !important;
  }

  .bc-service h4 {
    font-size: 19px !important;
  }

  .bc-product__title,
  .biz-section--02 .bc-products-full .bc-product__title {
    font-size: 26px !important;
  }

  .bc-product__desc,
  .biz-section--02 .bc-products-full .bc-product__desc {
    font-size: 17px !important;
  }

  .biz-feature-list li,
  .biz-feature-list--bullets li {
    font-size: 17px !important;
  }

  .bw-card-row {
    gap: 24px;
  }

  .bw-card__body {
    padding: 20px 22px 22px;
  }

  .bw-card__body h3 {
    font-size: 22px !important;
  }

  .bw-card__body p {
    font-size: 16px !important;
  }

  .biz-line-btn {
    min-height: 46px;
    padding: 0 22px;
    font-size: 15px !important;
  }

  .biz-aside-note strong {
    font-size: 17px;
  }

  .biz-aside-note p {
    font-size: 16px;
  }
}

/* =====================================================
   INTERACTION — 스크롤 등장 · 호버
===================================================== */

/* 상단 악센트 바 등장 */
@keyframes dg-biz-accent-in {
  from {
    opacity: 0;
    transform: scaleY(0);
    transform-origin: top center;
  }
  to {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top center;
  }
}

.dg-biz-page .biz-intro-accent::before,
.dg-biz-page .biz-intro-accent::after {
  animation: dg-biz-accent-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* 섹션 배경 번호 — 스크롤 시 페이드인 */
.dg-biz-page .biz-section::before {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.dg-biz-page .biz-section.is-visible::before {
  opacity: 0.05;
  transform: translateY(0);
}

/* 스크롤 등장 (business.css dg-reveal 보완) */
.dg-biz-page .dg-reveal {
  opacity: 0;
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--dg-delay, 0ms);
  will-change: opacity, transform;
}

.dg-biz-page .dg-reveal--left {
  transform: translate3d(-40px, 0, 0);
}

.dg-biz-page .dg-reveal--right {
  transform: translate3d(40px, 0, 0);
}

.dg-biz-page .dg-reveal--up {
  transform: translate3d(0, 36px, 0);
}

.dg-biz-page .dg-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* 패널 타이틀 밑줄 */
.dg-biz-page .biz-panel-title {
  position: relative;
}

.dg-biz-page .biz-panel-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 2px;
  background: #0b5fa5;
  transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.dg-biz-page .biz-panel-title.is-visible::after,
.dg-biz-page .biz-panel-title.dg-reveal.is-visible::after {
  width: 48px;
}

.biz-section--02 .biz-panel-title::after {
  background: #b13f4d;
}

.biz-section--04 .biz-panel-title::after {
  background: #2d805e;
}

/* 기능 리스트 — 순차 등장 */
.dg-biz-page .biz-feature-list--bullets li {
  opacity: 0;
  transform: translateX(-12px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.dg-biz-page .biz-aside.dg-reveal.is-visible .biz-feature-list--bullets li {
  opacity: 1;
  transform: translateX(0);
}

.dg-biz-page .biz-aside.dg-reveal.is-visible .biz-feature-list--bullets li:nth-child(1) {
  transition-delay: 0.15s;
}

.dg-biz-page .biz-aside.dg-reveal.is-visible .biz-feature-list--bullets li:nth-child(2) {
  transition-delay: 0.28s;
}

.dg-biz-page .biz-aside.dg-reveal.is-visible .biz-feature-list--bullets li:nth-child(3) {
  transition-delay: 0.41s;
}

@media (prefers-reduced-motion: reduce) {
  .dg-biz-page .dg-reveal,
  .dg-biz-page .biz-section::before,
  .dg-biz-page .biz-feature-list--bullets li {
    opacity: 1;
    transform: none;
    transition: none;
    animation: none;
  }

  .dg-biz-page .eq-mini,
  .dg-biz-page .biz-fact,
  .dg-biz-page .bc-service,
  .dg-biz-page .bc-product,
  .dg-biz-page .bw-card,
  .dg-biz-page .biz-line-btn,
  .dg-biz-page .biz-tags span,
  .dg-biz-page .eq-mini__img img,
  .dg-biz-page .bw-card__img img,
  .dg-biz-page .bp-visual img {
    transition: none;
  }

  .dg-biz-page .eq-mini:hover,
  .dg-biz-page .biz-fact:hover,
  .dg-biz-page .bc-service:hover,
  .dg-biz-page .bc-product:hover,
  .dg-biz-page .bw-card:hover,
  .dg-biz-page .biz-line-btn:hover,
  .dg-biz-page .biz-tags span:hover {
    transform: none;
    box-shadow: none;
  }
}
