/* 서브 공통 래퍼 */
#sub-business .gw-service-container {
  padding: 80px 0;
  /*background: #edf4fb;  살짝 푸른 톤 배경 */
}

@media (max-width: 1024px) {
  #sub-business .gw-service-container {
    padding: 40px 0;
  }
}

#sub-business {background:url('/theme/tem/img/businessfield_bg.png') no-repeat; }

/* ===== 사업분야 다이어그램 ===== */

.biz-area {
  background: transparent;
  padding: 0 20px;
}

.biz-area-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  font-family: "Noto Sans KR", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

.biz-title {
  font-size: 32px;
  font-weight: 700;
  color: #123356;
  margin-bottom: 10px;
}

.biz-subtitle {
  font-size: 15px;
  color: #6f7c90;
  margin-bottom: 50px;
}

/* 다이어그램 전체 래퍼 */
.biz-diagram {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0 180px; /* 아래 여백 넉넉히 */
}

/* 중앙 원형 그래프 */
.biz-circle {
  position: relative;
  width: 360px;
  height: 360px;
  margin: 0 auto;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    #0c4d93 0deg 120deg,   /* 위쪽 - AI */
    #35b4c2 120deg 240deg, /* 좌하단 - Bio */
    #77aeda 240deg 360deg  /* 우하단 - 기능성 */
  );
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* 가운데 흰 원 + 로고 */
.biz-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 52%;
  height: 52%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.6);
}

.biz-logo img {
  max-width: 90%;
  height: auto;
}

.biz-logo-text {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 20px;
  color: #0f4d90;
}

/* 원 안의 각 분야 텍스트 */
.biz-sector {
  position: absolute;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  line-height: 1.4;
  transform: translate(-50%, -50%);
}

/* 세그먼트의 '중앙'에 맞게 좌표를 직접 잡아줌 */
.sector-ai {
  top: 34%;
  left: 85%;
}

.sector-bio {
  top: 32%;
  left: 17%;
}

.sector-func {
  top: 89%;
  left: 50%;
}

/* 세부 분야 박스 공통 */
.biz-detail-box {
  position: absolute;
  text-align: left;
  background: #ffffff;
  border-radius: 10px;
  padding: 22px 24px 20px;
  box-shadow: 0 10px 25px rgba(13, 34, 67, 0.08);
  border-top: 3px solid #77aeda;
}

.biz-detail-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f4d90;
  margin-bottom: 12px;
}

.biz-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.biz-detail-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: #4a566c;
  line-height: 1.7;
}

.biz-detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #0f4d90;
}

/* 각 박스 위치 (데스크탑 기준) */
.biz-detail-ai {
  top: 110px;
  right: 0;
  width: 260px;
}

.biz-detail-bio {
  top: 110px;
  left: 0;
  width: 260px;
}

/* 아래쪽 박스는 원과 조금 떨어뜨림 */
.biz-detail-func {
  top: 430px;                /* 원 하단에서 약간 여유 */
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
}

/* 연결 선 */
.biz-connector {
  position: absolute;
  background: #c7d3e6;
}

/* 원의 중심(y=200px)을 기준으로 양 옆으로 */
.connector-ai {
  top: 200px;                        /* 원의 세로 중심 */
  left: calc(50% + 180px);          /* 원 오른쪽 끝 */
  width: 130px;
  height: 1px;
}

.connector-ai::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0f4d90;
}

.connector-bio {
  top: 200px;
  right: calc(50% + 180px);        /* 원 왼쪽 끝 */
  width: 130px;
  height: 1px;
}

.connector-bio::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0f4d90;
}

/* 아래쪽 – 원의 하단(y = 20 + 360 = 380px)에서 아래 박스로 */
.connector-func {
  left: 50%;
  top: 380px;          /* 원 하단 */
  transform: translateX(-50%);
  width: 1px;
  height: 70px;
}

.connector-func::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0f4d90;
}

/* 반응형 처리 */
@media (max-width: 960px) {
  .biz-diagram {
    padding-bottom: 40px;
  }

  .biz-circle {
    width: 280px;
    height: 280px;
  }

  .biz-sector {
    font-size: 13px;
  }

  /* 모바일에서는 선 숨기고, 박스는 아래로 스택 */
  .biz-connector {
    display: none;
  }

  .biz-detail-box {
    position: static;
    margin: 24px auto 0;
    max-width: 420px;
  }

  .biz-detail-func {
    transform: none;
  }
}

@media (max-width: 600px) {
  .biz-title {
    font-size: 26px;
  }

  .biz-subtitle {
    font-size: 14px;
  }
}