@charset "utf-8";

/* =========================
   CDP Backup Page Only
========================= */
:root{
  --cdp-ink:#111827;
  --cdp-muted:#6b7280;
  --cdp-line:#e5e7eb;

  /* 사이트 컨셉(호스팅과 통일) */
  --cdp-brand:#2f6f6a;
  --cdp-brand-dark:#244f4b;
  --cdp-soft:#e6f1ef;

  --cdp-card:#ffffff;
  --cdp-shadow: 0 10px 26px rgba(17, 24, 39, 0.06);
  --cdp-radius: 16px;
}

/* =========================
   Sub banner class hook
   (배너는 기존 subBnr 스타일을 타고,
    필요한 경우에만 보정)
========================= */
#subBnr.cdp-bnr{}

/* =========================
   CDP TOP (아이콘 2x2 + 가격표)
   - 좌/우 1:1 고정
========================= */

/* 섹션 외곽 여백 (기존 레이아웃 톤 유지) */
#sh_content .cdp-top{
  padding: 70px 0 40px;
}

/* ✅ 핵심: 반반 레이아웃 */
#sh_content .cdp-top-inner{
  max-width: 1200px;         /* hosting 톤에 맞게 */
  margin: 0 auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: 1fr 1fr;   /* ✅ 반반 */
  gap: 60px;                         /* 좌우 간격 */
  align-items: center;
}

/* =========================
   LEFT: 2x2 ICON GRID
========================= */
#sh_content .cdp-icon-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2x2 */
  gap: 55px 40px;   /* row / col */
  justify-items: center;
  align-items: start;
}

#sh_content .cdp-icon-item{
  text-align: center;
}

#sh_content .cdp-icon-box{
  width: 92px;
  height: 92px;
  border-radius: 22px;
  background: #ffffff;       /* 샘플 느낌(남색 계열) */
  display: grid;
  place-items: center;
}

#sh_content .cdp-icon-box img{
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
}

#sh_content .cdp-icon-txt{
  margin: 16px 0 0;
  font-size: 16px;
  font-weight: 600;
  color: #4b5563;
  line-height: 1.4;
  letter-spacing: -0.2px;
}

/* =========================
   RIGHT: PRICE CARD
========================= */
#sh_content .cdp-price{
  display: flex;
  justify-content: center;  /* ✅ 오른쪽 영역에서 카드 중앙 */
}

#sh_content .cdp-price-card{
  width: 100%;
  max-width: 520px;         /* 카드 최대폭 */
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 22px 22px;
}

#sh_content .cdp-price-head{
  padding-bottom: 16px;
  border-bottom: 1px solid #eef1f6;
}

#sh_content .cdp-price-name{
  font-size: 18px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 10px;
}

#sh_content .cdp-price-amount{
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #111827;
}

#sh_content .cdp-price-amount .num{
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.8px;
}

#sh_content .cdp-price-amount .won{
  font-size: 16px;
  font-weight: 700;
  color: #6b7280;
}

/* 스펙 표 */
#sh_content .cdp-price-spec{
  margin: 16px 0 0;
}

#sh_content .cdp-price-spec > div{
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #eef1f6;
}

#sh_content .cdp-price-spec > div:last-child{
  border-bottom: 0;
}

#sh_content .cdp-price-spec dt{
  width: 70px;
  font-size: 14px;
  font-weight: 700;
  color: #6b7280;
}

#sh_content .cdp-price-spec dd{
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  text-align: right;
  flex: 1;
}

/* 버튼 */
#sh_content .cdp-price-btn{
  width: 100%;
  margin-top: 16px;
  height: 52px;
  border-radius: 12px;
  border: 0;
  background: #111;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
}

#sh_content .cdp-price-btn:hover{
  filter: brightness(0.95);
}

/* =========================
   Responsive
========================= */

/* Tablet */
@media (max-width: 1024px){
  #sh_content .cdp-top-inner{
    gap: 40px;
  }
  #sh_content .cdp-price-card{
    max-width: 480px;
  }
}

/* Mobile */
@media (max-width: 768px){
  #sh_content .cdp-top{
    padding: 55px 0 20px;
  }

  #sh_content .cdp-top-inner{
    grid-template-columns: 1fr; /* ✅ 세로 */
    gap: 40px;
  }

  #sh_content .cdp-icon-grid{
    gap: 40px 24px;
  }

  #sh_content .cdp-price{
    justify-content: center;
  }

  #sh_content .cdp-price-card{
    max-width: 100%;
  }
}

/* Small mobile */
@media (max-width: 480px){
  #sh_content .cdp-icon-box{
    width: 84px;
    height: 84px;
    border-radius: 20px;
  }
  #sh_content .cdp-icon-box img{
    width: 42px;
    height: 42px;
  }
  #sh_content .cdp-icon-txt{
    font-size: 15px;
  }
  #sh_content .cdp-price-amount .num{
    font-size: 40px;
  }
}

/* =========================
   Section base
========================= */
#sh_content .cdp-section{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

#sh_content .cdp-head{
  text-align:center;
  margin-bottom: 28px;
}
#sh_content .cdp-title{
  margin: 0;
  font-size: 26px;
  font-weight: 900;
  color: var(--cdp-ink);
  letter-spacing: -0.5px;
}

/* =========================
   주요기능
========================= */
#sh_content .cdp-feature-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 16px;
}
#sh_content .cdp-feature-card{
  border: 1px solid var(--cdp-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--cdp-shadow);
  padding: 28px 18px;
}
#sh_content .cdp-feature-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 800;
  color: var(--cdp-ink);
  letter-spacing: -0.2px;
}
#sh_content .cdp-list{
  margin: 0;
  color: #4b5563;
  font-weight: 600;
  line-height: 1.65;
  font-size: 15px;
}

/* =========================
   예상효과
========================= */
#sh_content .cdp-effect{
  padding-top: 10px;
}
#sh_content .cdp-effect-box{
  border: 1px solid var(--cdp-line);
  border-radius: 12px;
  background: #f3f6fb; /* 샘플처럼 연한 블루 톤 */
  padding: 28px 18px;
  text-align:center;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
}
#sh_content .cdp-effect-box p{
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  line-height: 1.9;
}
#sh_content .cdp-effect-box p + p{
  margin-top: 6px;
}

/* =========================
   CDP Diagram (이미지처럼)
========================= */

#sh_content .cdp-diagram{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 0;

  display: flex;
  align-items: flex-end; /* 원 하단 기준 정렬 */
  justify-content: space-between;
  gap: 22px;
}

/* 각 노드(원+라벨) */
#sh_content .cdp-node{
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#sh_content .cdp-node-label{
  text-align: center;
  margin-bottom: 10px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
}
#sh_content .cdp-node-label .t1{
  display:block;
  font-size: 16px;
  font-weight: 600;
  opacity: .9;
}
#sh_content .cdp-node-label .t2{
  display:block;
  font-size: 16px;
  font-weight: 600;
  opacity: .9;
}

/* 원형 */
#sh_content .cdp-circle{
  width: 150px;
  height: 150px;
  border-radius: 999px;
  background: #f7f7f7;
  border: 2px solid #e5e7eb;
  box-shadow: 0 8px 18px rgba(0,0,0,0.04);
  display: grid;
  place-items: center;
}
#sh_content .cdp-circle.is-big{
  width: 180px;
  height: 180px;
}

/* 원 내부 리스트 */
#sh_content .cdp-circle-list{
  margin: 0;
  padding: 0;
  list-style: none;
  width: 60%;
  display: grid;
  gap: 10px;
}
#sh_content .cdp-circle-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
#sh_content .cdp-circle-list li:last-child{
  border-bottom: 0;
  padding-bottom: 0;
}

/* 텍스트 */
#sh_content .cdp-circle-list .txt{
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  letter-spacing: -0.2px;
}
#sh_content .cdp-circle-list li.is-new .txt{
  color: #7c3aed; /* 보라 강조 */
}

/* 왼쪽 작은 DB 아이콘(이미지처럼 “서버/스토리지” 느낌) */
#sh_content .cdp-db-ico{
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background:
    linear-gradient(to bottom,
      #6b7280 0%, #6b7280 25%,
      transparent 25%, transparent 40%,
      #6b7280 40%, #6b7280 65%,
      transparent 65%, transparent 80%,
      #6b7280 80%, #6b7280 100%);
  opacity: .95;
  position: relative;
}
#sh_content .cdp-db-ico::after{
  content:"";
  position:absolute;
  left: -6px;
  top: 4px;
  width: 4px;
  height: 10px;
  border-radius: 2px;
  background: rgba(0,0,0,0.18);
}

/* NEW DATA 아이콘도 보라 */
#sh_content .cdp-db-ico.is-new{
  background:
    linear-gradient(to bottom,
      #7c3aed 0%, #7c3aed 25%,
      transparent 25%, transparent 40%,
      #7c3aed 40%, #7c3aed 65%,
      transparent 65%, transparent 80%,
      #7c3aed 80%, #7c3aed 100%);
}
#sh_content .cdp-db-ico.is-new::after{
  background: rgba(124,58,237,0.25);
}

/* 하단 캡션 (원 아래 글) */
#sh_content .cdp-node-caption{
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
}

/* 보라색 화살표(이미지처럼) */
#sh_content .cdp-arrow{
  flex: 0 0 64px;
  height: 22px;
  position: relative;
  margin-bottom: 18px; /* 원 하단과 맞춤 */
}
#sh_content .cdp-arrow::before{
  content:"";
  position:absolute;
  left: 0;
  right: 14px;
  top: 50%;
  height: 4px;
  background: #7c3aed;
  border-radius: 999px;
  transform: translateY(-50%);
}
#sh_content .cdp-arrow::after{
  content:"";
  position:absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-left: 14px solid #7c3aed;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  transform: translateY(-50%);
}

/* =========================
   Responsive
========================= */

/* Tablet: 살짝 줄이기 */
@media (max-width: 1024px){
  #sh_content .cdp-diagram{
    gap: 14px;
  }
  #sh_content .cdp-arrow{
    flex-basis: 44px;
  }
  #sh_content .cdp-circle{ width: 130px; height: 130px; }
  #sh_content .cdp-circle.is-big{ width: 155px; height: 155px; }
}

/* Mobile: 세로로 쌓기(이미지 흐름 유지) */
@media (max-width: 768px){
  #sh_content .cdp-diagram{
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  #sh_content .cdp-node{
    align-items: center;
  }
  #sh_content .cdp-arrow{
    width: 100%;
    flex: 0 0 26px;
    height: 26px;
    margin: 0;
  }
  #sh_content .cdp-arrow::before{
    left: 18px;
    right: 18px;
    top: 50%;
  }
  #sh_content .cdp-arrow::after{
    right: 10px;
  }
  #sh_content .cdp-circle{ width: 150px; height: 150px; }
  #sh_content .cdp-circle.is-big{ width: 180px; height: 180px; }
}


/* =========================
   Recommended Add-on
   (hosting addon-grid 그대로 + 2개용 옵션만 추가)
========================= */
.addon-grid.addon-grid--two{
  grid-template-columns: repeat(2, minmax(0,1fr));
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px){
  #sh_content .cdp-top-inner{
    grid-template-columns: 1fr;
  }
  #sh_content .cdp-price{
    order: 2;
  }
  #sh_content .cdp-icon-grid{
    order: 1;
  }

  #sh_content .cdp-feature-grid{
    grid-template-columns: 1fr;
  }

  #sh_content .cdp-flow{
    flex-direction: column;
  }
  #sh_content .cdp-flow-arrow{
    width: 100%;
    height: 26px;
    flex: 0 0 26px;
  }
  #sh_content .cdp-flow-arrow::before{
    top: 50%;
    left: 12px;
    right: 12px;
  }
  #sh_content .cdp-flow-arrow::after{
    top: 50%;
    right: 6px;
  }

  .addon-grid.addon-grid--two{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  #sh_content .cdp-top{ padding: 44px 0 10px; }
  #sh_content .cdp-icon-grid{ gap: 26px 18px; }
  #sh_content .cdp-section{ padding: 46px 14px; }
  #sh_content .cdp-title{ font-size: 24px; }
  #sh_content .cdp-effect-box{ padding: 22px 14px; }
}

@media (max-width: 480px){
  #sh_content .cdp-icon-box{
    width: 68px;
    height: 68px;
    border-radius: 16px;
  }
  #sh_content .cdp-icon-box img{
    width: 34px;
    height: 34px;
  }
}

/* =========================================================
   CDP Effect (3번 섹션) - 전용 스타일
   ✅ 다른 섹션(가격/구성동작/추천부가서비스) 절대 영향 없음
========================================================= */

/* 섹션 안에서만 적용되도록 #sh_content + .cdp-effect로 제한 */
#sh_content .cdp-effect .cdp-effect-card{
  border: 1px solid var(--cdp-line);
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--cdp-shadow);
  padding: 26px 22px;
}

/* 블록 구분 */
#sh_content .cdp-effect .cdp-effect-block + .cdp-effect-block{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid #eef1f6;
}

/* 소제목 */
#sh_content .cdp-effect .cdp-effect-subtitle{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  color: var(--cdp-ink);
  letter-spacing: -0.2px;
  display:flex;
  align-items:center;
  gap: 10px;
}

/* 번호 배지(컨셉 컬러 유지, 과하지 않게) */
#sh_content .cdp-effect .cdp-effect-badge{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--cdp-brand);
  box-shadow: 0 8px 16px rgba(47,111,106,.18);
}

/* 리스트: 왼쪽 치우침 개선(가독성 카드 느낌) */
#sh_content .cdp-effect .cdp-effect-list{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

#sh_content .cdp-effect .cdp-effect-list li{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #eef1f6;
  border-radius: 12px;
  background: #fbfcfe;
  color: #374151;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

/* 체크 아이콘(과하지 않게) */
#sh_content .cdp-effect .cdp-effect-list li::before{
  content:"";
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--cdp-brand);
  margin-top: 6px;
  flex: 0 0 10px;
  box-shadow: 0 6px 12px rgba(47,111,106,.20);
}

/* =========================
   비교표 영역(카드 폭의 80%)
========================= */
#sh_content .cdp-effect .cdp-compare{
  width: 90%;
  margin: 0 auto;
}

/* 표 래퍼: 선이 잘 보이도록 */
#sh_content .cdp-effect .cdp-table-wrap{
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #d7dde6;     /* ✅ 더 진하게 */
  border-radius: 12px;
  background: #fff;
}

/* 표: 선 강조 */
#sh_content .cdp-effect .cdp-compare-table{
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* 공통 셀 */
#sh_content .cdp-effect .cdp-compare-table th,
#sh_content .cdp-effect .cdp-compare-table td{
  border: 1px solid #d7dde6;     /* ✅ 칸마다 선 확실하게 */
  padding: 12px 10px;
  font-size: 14px;
  font-weight: 600;
  color: #111827;
  text-align: center;
  vertical-align: middle;
}

/* 헤더 */
#sh_content .cdp-effect .cdp-compare-table thead th{
  background: #f3f5f8;
  font-weight: 900;
}

/* 첫 컬럼(항목) */
#sh_content .cdp-effect .cdp-compare-table tbody th{
  text-align: left;
  background: #fafafa;
  font-weight: 800;
  width: 42%;
}

/* 상태 값 톤(과하지 않게) */
#sh_content .cdp-effect .cdp-compare-table .is-yes{ color: var(--cdp-brand-dark); }
#sh_content .cdp-effect .cdp-compare-table .is-no{ color: #9ca3af; }
#sh_content .cdp-effect .cdp-compare-table .is-high{ color: #b45309; }
#sh_content .cdp-effect .cdp-compare-table .is-low{ color: #0f766e; }

/* 참고 문구 */
#sh_content .cdp-effect .cdp-compare-note{
  margin: 10px 0 0;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
}

/* =========================
   Responsive
========================= */
@media (max-width: 1024px){
  #sh_content .cdp-effect .cdp-compare{
    width: 92%; /* 태블릿은 조금 넓게 */
  }
}

@media (max-width: 768px){
  #sh_content .cdp-effect .cdp-effect-card{
    padding: 20px 14px;
  }
  #sh_content .cdp-effect .cdp-compare{
    width: 100%; /* 모바일은 100% + 스크롤 */
  }
  #sh_content .cdp-effect .cdp-compare-table th,
  #sh_content .cdp-effect .cdp-compare-table td{
    font-size: 13px;
    padding: 10px 8px;
  }
   #sh_content .cdp-effect .cdp-effect-list{
    grid-template-columns: 1fr;
  }
  #sh_content .cdp-effect .cdp-effect-list li{
    font-size: 14px;
    padding: 10px 12px;
  }
}


/* =========================
   CDP 가격 카드 하단 안내 문구
========================= */
#sh_content .cdp-price-note{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #e5e7eb;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  text-align: center;
}

#sh_content .cdp-price-note strong{
  color: #111827;
  font-weight: 700;
}

#sh_content .cdp-price-note .cdp-mail{
  display: inline-block;
  margin-top: 4px;
  font-weight: 700;
  color: var(--cdp-brand);
  letter-spacing: -0.2px;
}
/* 문의하기 버튼 a태그일 때도 기존 버튼 크기 유지 */
#sh_content .cdp-price-btn{
  display: flex;
  align-items: center;
  justify-content: center;
}