/* customer_info 전용 스타일 (고객용 안내 페이지) */

:root {
  --ci-color-text: #121212;
  --ci-color-muted: #888888;
  --ci-color-subtle: #666666;
  --ci-color-primary: #0166ff;
  --ci-surface: #ffffff;
  --ci-surface-alt: #f6f6f6;
  --ci-badge-bg: #e5efff;
  --ci-divider: #e3e5ea;

  --ci-spacing: 16px;
  --ci-radius: 12px;
  --ci-maxw: 600px; /* 컨테이너 최대 가로폭 제한 */
  --ci-btn-h: 44px;
  --ci-focus: 2px solid rgba(1, 102, 255, 0.6);
}

body {
  padding-top: 0 !important;    
}

.ci {
  color: var(--ci-color-text);
  background: var(--ci-surface);
  padding-top: 0px; /* fixed nav height to prevent overlap */
}

.ci_container {
  max-width: var(--ci-maxw);
  margin: 0 auto;
}

.ci_divider {
    height: 6px;
    background: #F4F6F8;
    margin: 0;
}

/* 헤더 섹션: gradient(E7F1FF -> FFFFFF), 이미지 120px, 타이포 고정 */
.ci_hero {
  background: linear-gradient(180deg, #e7f1ff 0%, #ffffff 93%);
  padding: 32px 20px;
  text-align: center;
}

.ci_hero-img {
  max-width: 160px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.ci_title {
  margin: 24px 0 10px 0;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.4; /* unitless for scalability */
  color: var(--ci-color-text);
}

.ci_welcome {
  margin: 0 0 20px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #171717;
}

/* 하이라이트: 업체명 컬러 강조 */
.ci_highlight {
  color: #0166ff;
  font-weight: 500;
}

.ci_desc {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--ci-color-muted);
}

/* 알림 박스 - Figma 디자인 기반 */
.ci_notification_box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid #0166FF;
  border-radius: 8px;
  margin: 0px 0px 20px 0px;
}

.ci_notification_text {
  margin: 0;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
  color: #0166FF;
  text-align: center;
}

/* 이용 방법 안내 상단 섹션 - Figma 1600:435 */
.ci_section--guide-intro {
  background: #F6F6F6;
  text-align: center;
  padding: 24px 20px;
  min-height: 220px;
}

/* 전문가 선택 노하우 섹션 - Figma 1600:514 */
.ci_section--expert-tips {
  background: #F6F6F6;
  text-align: center;
  padding: 24px 20px;
  min-height: 220px;
}

/* 집잘알 안심 서비스 섹션 - Figma 1606:1303 */
.ci_section--safe-service {
  background: #F6F6F6;
  text-align: center;
  padding: 24px 20px;
  min-height: 220px;
}

.ci_section--faq {
  background: #F6F6F6;
  text-align: center;
  padding: 24px 20px;
  min-height: 220px;
}

/* 집잘알 안심 서비스 컨텐츠 섹션 - Figma 1606:1308 */
.ci_section.ci_section--safe-service-content {
  padding: 30px 20px;
  background: #ffffff;
}

/* 안심 서비스 아이템 */
.ci_safe_service_item {
  margin-bottom: 0;
}

.ci_safe_service_header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.ci_safe_service_icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  object-fit: contain;
  border: 1px solid #E4E5ED;
  border-radius: 12px;
  padding: 5px;
}

.ci_safe_service_header_content {
  flex: 1;
}

.ci_safe_service_title {
  font-size: 18px;
  font-weight: 700;
  color: #121212;
  margin: 0 0 4px 0;
  line-height: 1.4;
  text-align: left;
}

.ci_safe_service_subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.ci_safe_service_desc {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.4;
  text-align: left;
}

.ci_safe_service_toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  flex-shrink: 0;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.ci_safe_service_toggle:hover {
  background-color: rgba(1, 102, 255, 0.1);
}

.ci_safe_service_toggle_icon {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.ci_safe_service_toggle[aria-expanded="true"] .ci_safe_service_toggle_icon {
  transform: rotate(180deg);
}

/* 안심 서비스 컨텐츠 */
.ci_safe_service_content {
  margin-left: 0px;
}

.ci_safe_service_tags {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 30px;
}

.ci_safe_service_tag {
  display: inline-block;
  padding: 6px 10px;
  border: 1px solid #BDD8FF;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 400;
  color: #0166FF;
  background: #ffffff;
  line-height: 1.4;
}

/* 체크리스트 */
.ci_safe_service_checklist {
  width: fit-content;
  margin: 0 auto 24px auto;
}

.ci_safe_service_check_item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.ci_safe_service_check_item:last-child {
  margin-bottom: 0;
}

.ci_safe_service_check_icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.ci_safe_service_check_text {
  font-size: 15px;
  font-weight: 400;
  color: #121212;
  line-height: 1.4;
  margin: 0;
  text-align: left;
}

/* 추가요금 안내 박스 */
.ci_safe_service_notice {
  background: #F6F6F6;
  border: 1px solid #E3E5EA;
  border-radius: 8px;
  padding: 16px;
  margin-top: 16px;
}

.ci_safe_service_notice_title {
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.ci_safe_service_notice_list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: fit-content;
}

.ci_safe_service_notice_list li {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  margin-bottom: 4px;
  position: relative;
  padding-left: 0;
  text-align: left;
}

.ci_safe_service_notice_list li:last-child {
  margin-bottom: 0;
}

/* 구분선 */
.ci_safe_service_divider {
  width: 100%;
  height: 1px;
  background: #E3E5EA;
  margin: 30px 0;
}

/* FAQ 섹션 컨텐츠 */
.ci_section.ci_section--faq-content {
  padding: 30px 20px;
  background: #ffffff;
}

.ci_faq_container {
  max-width: var(--ci-maxw);
  margin: 0 auto;
}

.ci_faq_item {
  margin-bottom: 16px;
}

.ci_faq_question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.ci_faq_question:hover {
  background-color: #f8f9fa;
}

.ci_faq_question_text {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
  text-align: left;
  flex: 1;
}

.ci_faq_toggle_icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.ci_faq_question.active .ci_faq_toggle_icon {
  transform: rotate(180deg);
}

.ci_faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 10px;
}

.ci_faq_answer.active {
  max-height: 500px;
  padding: 8px 10px 0 10px;
}

.ci_faq_answer_text {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.45;
  text-align: left;
  margin: 0;
}

.ci_faq_divider {
  width: 100%;
  height: 1px;
  background: #E3E5EA;
  margin: 8px 0;
}

.ci_faq_footer {
  background: #F6F6F6;
  border: 1px solid #E3E5EA;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 32px;
  text-align: center;
}

.ci_faq_footer_text {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  margin: 0;
}

/* 전문가 선택 노하우 상세 섹션 - Figma 1600:413 */
.ci_section--expert-selection-detail {
  padding: 30px 20px;
  background: #ffffff !important;
}

.ci_expert_main_title {
  font-size: 18px;
  font-weight: 700;
  color: #121212;
  text-align: center;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

/* POINT 섹션 */
.ci_expert_point_section {
  margin-bottom: 0;
}

.ci_expert_point_header {
  margin-bottom: 20px;
}

.ci_expert_point_label {
  font-size: 14px;
  font-weight: 600;
  color: #0166FF;
  display: block;
  margin-bottom: 4px;
  line-height: 1.4;
}

.ci_expert_point_desc {
  font-size: 16px;
  font-weight: 400;
  color: #121212;
  line-height: 1.4;
  margin: 0;
}

.ci_expert_point_content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

.ci_expert_point_image {
  width: calc(var(--ci-maxw) * 0.75);
  max-width: calc(100% * 0.75);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}

/* 뱃지 섹션 */
.ci_expert_badges_section {
  background: #ffffff;
}

.ci_expert_badges_section--full {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ci_expert_badges_group {
  display: flex;
  flex-direction: column;
}

.ci_expert_badges_title {
  font-size: 16px;
  font-weight: 600;
  color: #121212;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.ci_expert_badges_list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 8px;
  align-items: flex-start;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* 뱃지 아이템 (뱃지 + 설명을 가로로 배열) */
.ci_expert_badge_item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.ci_expert_badge {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px 6px;
  border: 1px solid #E4E5ED;
  border-radius: 4px;
  background: #ffffff;
  white-space: nowrap;
  flex-shrink: 0;
}

.ci_expert_badge_icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

.ci_expert_badge_text {
  font-size: 14px;
  font-weight: 400;
  color: #121212;
  line-height: 1.5;
}

.ci_expert_badge_desc {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
  margin: 0;
  flex: 1;
  text-align: left;
}

/* TIP 박스 */
.ci_expert_tip_box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid #A8CBFF;
  border-radius: 8px;
  background: #ffffff;
  margin-top: 16px;
  text-align: center;
}

.ci_expert_tip_label {
  font-size: 15px;
  font-weight: 600;
  color: #0166FF;
  flex-shrink: 0;
}

.ci_expert_tip_text {
  font-size: 15px;
  font-weight: 400;
  color: #0166FF;
  line-height: 1.4;
}

/* 구분선 */
.ci_expert_divider {
  width: 100%;
  height: 1px;
  background: #E3E5EA;
  margin: 30px 0;
}

/* 하단 안내 박스 */
.ci_expert_final_notice {
  padding: 12px 16px;
  background: #F6F6F6;
  border: 1px solid #E3E5EA;
  border-radius: 8px;
  margin-top: 20px;
}

.ci_expert_final_notice_text {
  font-size: 14px;
  font-weight: 400;
  color: #666666;
  text-align: center;
  line-height: 1.4;
  margin: 0;
}



/* CTA 버튼 그룹 */
.ci_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin: 32px 0 32px 0;
}

/* 공통 섹션 */
.ci_section {
  background: #f6f6f6;
}

/* 가이드 헤더 섹션 */
.ci_section-guide-header {
  background: #f6f6f6;
}

/* 가이드 스텝 섹션 */
.ci_section-guide-steps {
  background: #ffffff;
}

/* 프로필 헤더 섹션 */
.ci_section-profile-header {
  background: #f6f6f6;
}

/* 프로필 콘텐츠 섹션 */
.ci_section-profile-content {
  background: #ffffff;
}

/* 안내사항 헤더 섹션 */
.ci_section-notice-header {
  background: #f6f6f6;
}

/* 안내사항 콘텐츠 섹션 */
.ci_section-notice-content {
  background: #ffffff;
}

/* 피드백 헤더 섹션 */
.ci_section-feedback-header {
  background: #ffffff;
}

.ci_section_inner {
  max-width: var(--ci-maxw);
  margin: 0 auto;
  text-align: center;
}

/* 가이드 헤더 섹션 inner */
.ci_section-guide-header .ci_section_inner {
  padding: 24px 20px 24px 20px;
}

/* 가이드 스텝 섹션 inner */
.ci_section-guide-steps .ci_section_inner {
  padding: 0px 20px;
}

/* 프로필 헤더 섹션 inner */
.ci_section-profile-header .ci_section_inner {
  padding: 24px 20px 24px 20px;
}

/* 프로필 콘텐츠 섹션 inner */
.ci_section-profile-content .ci_section_inner {
  padding: 0px 20px;
  text-align: left;
}

/* 안내사항 헤더 섹션 inner */
.ci_section-notice-header .ci_section_inner {
  padding: 24px 20px 24px 20px;
}

/* 안내사항 콘텐츠 섹션 inner */
.ci_section-notice-content .ci_section_inner {
  padding: 0px 20px;
  text-align: left;
}

/* 피드백 헤더 섹션 inner */
.ci_section-feedback-header .ci_section_inner {
  padding: 32px 20px;
}

.ci_section_title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  color: #121212;
}

.ci_section_subtitle {
  margin-top: 8px;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.35;
  color: #121212;
}

.ci_media {
  margin-top: 16px;
  display: flex;
  justify-content: center;
}

.ci_media_img {
  width: 180px;
  height: 95px;
  object-fit: contain;
}

/* 단계별 가이드 */
.ci_steps {
  margin: 10px 0;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

.ci_step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 24px 0;
  position: relative;
}

.ci_step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #E3E5EA;
}

.ci_step_badge {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: #E5EFFF;
  color: #0166FF;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.35;
  margin-top: 2px;
}

.ci_step_content {
  flex: 1;
  text-align: left;
}

.ci_step_title {
  margin: 0 0 8px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.35;
  color: #121212;
}

.ci_step_desc {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #121212;
}

.ci_step_note {
  margin: 8px 0 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #999999;
}

.ci_step_icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.ci_step_icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

/* 단계별 가이드 추가 안내 메시지 - 4단계 내부 */
.ci_steps_note_text {
  margin: 8px 0 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.4;
  color: #0166FF;
  letter-spacing: -0.02em;
}

/* 프로필 가이드 */
.ci_profile_guide {
  margin: 16px 0 26px 0;
}

.ci_profile_item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 15px 0;
}

.ci_profile_item_img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
}

.ci_profile_item_img--large {
  width: 159px;
  height: 201px;
}

.ci_profile_item_content {
  flex: 1;
  padding-top: 0;
}

.ci_profile_item_title {
  margin: 2px 0 5px 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #121212;
}

.ci_profile_item_desc {
  margin: 0 0 5px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #121212;
}

.ci_profile_item_note {
  margin: 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.45;
  color: #0166FF;
}

.ci_profile_divider {
  height: 1px;
  background: #E3E5EA;
  margin: 0;
}

.ci_profile_notice {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 18px 25px;
  margin-top: 12px;
  text-align: center;
}

.ci_profile_notice_text {
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
}

/* 안내사항 정책 */
.ci_notice_policies {
    margin: 12px 0 12px 0;
}

.ci_notice_policy {
  padding: 24px 0;
}

.ci_notice_policy_header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.ci_notice_policy_icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.ci_notice_policy_title {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #121212;
}

.ci_notice_policy_desc {
  margin: 0 0 8px 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #121212;
  word-break: keep-all;
  word-wrap: break-word;
}

.ci_notice_policy_note {
  margin: 0;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  color: #0166FF;
}

.ci_notice_divider {
  height: 1px;
  background: #E3E5EA;
  margin: 0;
}

/* 피드백 헤더 */
.ci_feedback_header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ci_feedback_img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  margin-bottom: 8px;
}

.ci_feedback_desc {
  margin: 0 0 12px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.45;
  color: #0166FF;
}

.ci_feedback_box {
  background: #F6F6F6;
  border: 1px solid #E3E5EA;
  border-radius: 12px;
  padding: 18px 25px;
  max-width: 340px;
  width: 100%;
  margin-top: 12px;
}

.ci_feedback_box_text {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #666666;
}

/* 네비게이션 섹션 (탭) */
.ci_nav {
  position: sticky;
  top: 68px; /* fixed global nav height + margin */
  z-index: 30;
  background: #ffffff;
  border-bottom: 1px solid #E0E3E7;
  transition: top 0.3s ease;
}

.ci_tabs_container {
  max-width: var(--ci-maxw);
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.ci_tabs_container::-webkit-scrollbar {
  display: none;
}

.ci_tabs {
  display: flex;
  gap: 4px;
  min-width: max-content;
}

.ci_tab {
  background: none;
  border: none;
  padding: 16px 12px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #999999;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
}

.ci_tab.is-active {
  color: #121212;
}

.ci_tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: #000000;
}

/* 버튼 기본 스타일 */
.ci_btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease, transform .05s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}

/* 프라이머리 버튼: 집잘알 블루 */
.ci_btn--primary {
  background: var(--ci-color-primary);
  color: #fff;
}
.ci_btn--primary:hover {
  background: #005ae0;
}
.ci_btn--primary:active {
  transform: translateY(1px);
}
.ci_btn--primary:focus-visible {
  outline: 2px solid rgba(1, 102, 255, 0.6);
  outline-offset: 2px;
}

/* 세컨더리 버튼: 화이트 + 라이트 보더 */
.ci_btn--secondary {
  background: #fff;
  color: var(--ci-color-text);
  border-color: #e2e8f0;
}
.ci_btn--secondary:hover {
  background: #f8fafc;
}
.ci_btn--secondary:active {
  background: #f1f5f9;
  transform: translateY(1px);
}
.ci_btn--secondary:focus-visible {
  outline: 2px solid rgba(1, 102, 255, 0.6);
  outline-offset: 2px;
}

/* 소형 모바일(≤360px) */
@media (max-width: 360px) {
  .ci_hero {
    padding: 24px 16px;
  }
  .ci_title {
    margin: 20px 0 10px 0;
    font-size: 28px;
    line-height: 1.4;
  }
  .ci_welcome {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 16px;
  }
  .ci_desc {
    font-size: 12px;
    line-height: 1.4;
  }
  .ci_notification_text {
    font-size: 13px;
  }
  .ci_btn {
    font-size: 16px;
  }
  .ci_hero-img {
    max-width: 140px;
  }
  /* 이용 방법 안내 상단 섹션 반응형 */
  .ci_section--guide-intro {
    padding: 20px 16px;
    min-height: 200px;
  }
  /* 전문가 선택 노하우 섹션 반응형 */
  .ci_section--expert-tips {
    padding: 20px 16px;
    min-height: 200px;
  }
  /* 집잘알 안심 서비스 섹션 반응형 */
  .ci_section--safe-service {
    padding: 20px 16px;
    min-height: 200px;
  }
  
  .ci_section--faq {
    padding: 20px 16px;
    min-height: 200px;
  }
  
  /* 집잘알 안심 서비스 컨텐츠 섹션 반응형 */
  .ci_section.ci_section--safe-service-content {
    padding: 24px 16px;
    background: #ffffff;
  }
  
  .ci_safe_service_header {
    gap: 8px;
    margin-bottom: 16px;
  }
  
  .ci_safe_service_icon {
    width: 44px;
    height: 44px;
  }
  
  .ci_safe_service_title {
    font-size: 16px;
      margin: 0 0 2px 0;
  }
  
  .ci_safe_service_subtitle {
    font-size: 15px;
    margin: 0 0 10px 0;
  }
  
  .ci_safe_service_desc {
    font-size: 13px;
  }
  
  .ci_safe_service_content {
    margin-left: 0px;
  }
  
  .ci_safe_service_tags {
    gap: 2px;
    margin-bottom: 24px;
  }
  
  .ci_safe_service_tag {
    padding: 4px 8px;
    font-size: 15px;
  }
  
  .ci_safe_service_check_item {
    gap: 8px;
    margin-bottom: 6px;
  }
  
  .ci_safe_service_check_icon {
    width: 13px;
    height: 13px;
  }
  
  .ci_safe_service_check_text {
    font-size: 14px;
  }
  
  .ci_safe_service_checklist {
    margin-bottom: 20px;
  }
  
  .ci_safe_service_notice {
    padding: 12px;
    margin-top: 12px;
  }
  
  .ci_safe_service_notice_title {
    font-size: 13px;
    margin-bottom: 8px;
  }
  
  .ci_safe_service_notice_list li {
    font-size: 13px;
    margin-bottom: 2px;
  }
  
  .ci_safe_service_divider {
    margin: 24px 0;
  }
  
  /* FAQ 섹션 컨텐츠 반응형 */
  .ci_section.ci_section--faq-content {
    padding: 24px 16px;
  }
  
  .ci_faq_question_text {
    font-size: 14px;
  }
  
  .ci_faq_answer_text {
    font-size: 13px;
  }
  
  .ci_faq_footer {
    padding: 10px 12px;
    margin-top: 24px;
  }
  
  .ci_faq_footer_text {
    font-size: 13px;
  }
  
  .ci_faq_divider {
    margin: 6px 0;
  }
  
  /* 전문가 선택 노하우 상세 섹션 반응형 */
  .ci_section--expert-selection-detail {
    padding: 24px 16px;
    background: #ffffff !important;
  }
  
  .ci_expert_main_title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .ci_expert_point_label {
    font-size: 13px;
  }
  
  .ci_expert_point_desc {
    font-size: 14px;
  }
  
  .ci_expert_tip_text {
    font-size: 13px;
  }
  
  .ci_expert_badge_desc {
    font-size: 13px;
  }
  
  .ci_expert_badges_title {
    font-size: 15px;
    margin-bottom: 10px;
  }
  
  .ci_expert_final_notice_text {
    font-size: 13px;
  }
  
  .ci_expert_point_section {
    margin-bottom: 0;
  }
  
  .ci_expert_point_header {
    margin-bottom: 16px;
  }
  
  .ci_expert_point_content {
    gap: 16px;
    margin-bottom: 16px;
  }
  
  .ci_expert_point_image {
    width: calc(100% * 0.8);
    max-width: calc(100% * 0.8);
  }
  
  .ci_expert_badges_section--full {
    gap: 24px;
  }

  
  .ci_expert_badge_item {
    gap: 4px;
  }
  
  .ci_expert_tip_box {
    padding: 8px 10px;
    margin-top: 13px;
  }
  
  .ci_expert_divider {
    margin: 24px 0;
  }
  
  .ci_expert_final_notice {
    padding: 10px 12px;
    margin-top: 16px;
  }

  .ci_btn {
    height: 42px;
    padding: 0 14px;
    font-size: 14px;
  }
  
  .ci_tabs_container {
    padding: 0 16px;
  }
  .ci_tab {
    font-size: 14px;
    padding: 16px 8px;
  }

  /* 섹션 반응형 */
  .ci_section-guide-header .ci_section_inner {
    padding: 20px 16px 20px 16px;
  }
  .ci_section-guide-steps .ci_section_inner {
    padding: 0px 16px;
  }
  .ci_section-profile-header .ci_section_inner {
    padding: 20px 16px 20px 16px;
  }
  .ci_section-profile-content .ci_section_inner {
    padding: 0px 16px;
  }
  .ci_section-notice-header .ci_section_inner {
    padding: 20px 16px 20px 16px;
  }
  .ci_section-notice-content .ci_section_inner {
    padding: 0px 16px;
  }
  .ci_section-feedback-header .ci_section_inner {
    padding: 28px 16px;
  }
  .ci_section_title {
    font-size: 22px;
    line-height: 1.4;
  }
  .ci_section_subtitle {
    font-size: 13px;
    line-height: 1.35;
  }
  .ci_media_img {
    width: 160px;
    height: 80px;
  }
  
  /* 스텝 반응형 */
  .ci_steps {
    margin-top: 8px;
  }
  .ci_step {
    gap: 10px;
    padding: 20px 0;
  }
  .ci_step_badge {
    width: 18px;
    height: 18px;
    font-size: 13px;
  }
  .ci_step_title {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 5px;
  }
  .ci_step_desc {
    font-size: 13px;
    line-height: 1.4;
  }
  .ci_step_note {
    font-size: 11px;
  }
  .ci_step_icon {
    width: 50px;
    height: 50px;
  }
  .ci_step_icon img {
    width: 50px;
    height: 50px;
  }
  .ci_steps_note_text {
    font-size: 11px;
    margin: 6px 0 0 0;
  }
  
  /* 안내사항 정책 반응형 */
  .ci_notice_policies {
    margin: 8px 0;
  }
  .ci_notice_policy {
    padding: 20px 0;
  }
  .ci_notice_policy_title {
    font-size: 15px;
  }
  .ci_notice_policy_desc {
    font-size: 13px;
  }
  .ci_notice_policy_note {
    font-size: 12px;
  }
  
  /* 피드백 헤더 반응형 */
  .ci_feedback_img {
    width: 70px;
    height: 70px;
  }
  .ci_feedback_desc {
    font-size: 16px;
  }
  .ci_feedback_box {
    padding: 16px 20px;
  }
  .ci_feedback_box_text {
    font-size: 12px;
  }
  
  /* 프로필 가이드 반응형 */
  .ci_profile_guide {
    margin: 12px 0 20px 0;
  }
  .ci_profile_item {
    gap: 16px;
    padding: 12px 0;
  }
  .ci_profile_item_img {
    width: 70px;
    height: 70px;
  }
  .ci_profile_item_img--large {
    width: 120px;
    height: 150px;
  }
  .ci_profile_item_title {
    font-size: 15px;
  }
  .ci_profile_item_desc {
    font-size: 13px;
    line-height: 1.4;
  }
  .ci_profile_item_note {
    font-size: 11px;
    line-height: 1.45;
  }
  .ci_profile_notice {
    padding: 16px 20px;
    margin-top: 12px;
  }
  .ci_profile_notice_text {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* 태블릿/데스크탑 통합(≥500px) */
@media (min-width: 500px) {
  .ci_hero {
    padding: 40px;
  }
  .ci_hero-img {
    max-width: 180px;
  }
  /* 텍스트 확대 (≥500px) */
  .ci_title {
    margin: 28px 0 10px 0;
    font-size: 36px;
    line-height: 1.4;
  }
  .ci_welcome {
    font-size: 20px;
    line-height: 1.4;
  }
  .ci_desc {
    font-size: 15px;
    line-height: 1.4;
  }
  .ci_notification_text {
    font-size: 16px;
  }
  .ci_btn {
    font-size: 17px;
  }

  .ci_tabs_container {
    padding: 0 30px;
  }
  .ci_tab {
    font-size: 18px;
    padding: 16px 16px;
  }

  /* 이용 방법 안내 상단 섹션 데스크탑 */
  .ci_section--guide-intro {
    padding: 30px;
    min-height: 240px;
  }
  /* 전문가 선택 노하우 섹션 데스크탑 */
  .ci_section--expert-tips {
    padding: 30px;
    min-height: 240px;
  }
  /* 집잘알 안심 서비스 섹션 데스크탑 */
  .ci_section--safe-service {
    padding: 30px;
    min-height: 240px;
  }
  
  .ci_section--faq {
    padding: 30px;
    min-height: 240px;
  }
  
  /* 집잘알 안심 서비스 컨텐츠 섹션 데스크탑 */
  .ci_section.ci_section--safe-service-content {
    padding: 36px 30px;
    background: #ffffff;
  }
  
  .ci_safe_service_header {
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .ci_safe_service_icon {
    width: 70px;
    height: 70px;
  }
  
  .ci_safe_service_title {
    font-size: 20px;
    margin: 0 0 6px 0;
  }
  
  .ci_safe_service_subtitle {
    font-size: 18px;
    margin: 0 0 14px 0;
  }
  
  .ci_safe_service_desc {
    font-size: 16px;
  }
  
  .ci_safe_service_content {
    margin-left: 0px;
  }
  
  .ci_safe_service_tags {
    gap: 6px;
    margin-bottom: 36px;
  }
  
  .ci_safe_service_tag {
    padding: 8px 12px;
    font-size: 19px;
  }
  
  .ci_safe_service_check_item {
    gap: 12px;
    margin-bottom: 10px;
  }
  
  .ci_safe_service_check_icon {
    width: 16px;
    height: 16px;
  }
  
  .ci_safe_service_check_text {
    font-size: 16px;
  }
  
  .ci_safe_service_checklist {
    margin-bottom: 28px;
  }
  
  .ci_safe_service_notice {
    padding: 20px;
    margin-top: 20px;
  }
  
  .ci_safe_service_notice_title {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .ci_safe_service_notice_list li {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .ci_safe_service_divider {
    margin: 36px 0;
  }
  
  /* FAQ 섹션 컨텐츠 데스크탑 */
  .ci_section.ci_section--faq-content {
    padding: 36px 30px;
  }
  
  .ci_faq_question_text {
    font-size: 18px;
  }
  
  .ci_faq_answer_text {
    font-size: 16px;
  }
  
  .ci_faq_footer {
    padding: 16px 20px;
    margin-top: 40px;
  }
  
  .ci_faq_footer_text {
    font-size: 16px;
  }
  
  .ci_faq_divider {
    margin: 10px 0;
  }
  
  /* 전문가 선택 노하우 상세 섹션 데스크탑 */
  .ci_section--expert-selection-detail {
    padding: 36px 30px;
    background: #ffffff !important;
  }
  
  .ci_expert_main_title {
    font-size: 20px;
    margin-bottom: 24px;
  }
  
  .ci_expert_point_label {
    font-size: 16px;
  }
  
  .ci_expert_point_desc {
    font-size: 17px;
  }
  
  .ci_expert_tip_text {
    font-size: 16px;
  }
  
  .ci_expert_badge_desc {
    font-size: 16px;
  }
  
  .ci_expert_badge_text {
    font-size: 16px;
  }
  
  .ci_expert_badge_icon {
    width: 14px;
    height: 14px;
  }
  
  .ci_expert_badges_title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .ci_expert_final_notice_text {
    font-size: 16px;
  }
  
  .ci_expert_point_section {
    margin-bottom: 0;
  }
  
  .ci_expert_point_header {
    margin-bottom: 24px;
  }
  
  .ci_expert_point_content {
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .ci_expert_point_image {
    width: calc(var(--ci-maxw) * 0.7);
    max-width: calc(100% * 0.7);
  }
  
  .ci_expert_badges_section--full {
    gap: 36px;
  }

  .ci_expert_badge_item {
    gap: 8px;
  }
  
  .ci_expert_tip_box {
    padding: 12px 16px;
    margin-top: 20px;
  }
  
  .ci_expert_divider {
    margin: 36px 0;
  }
  
  .ci_expert_final_notice {
    padding: 16px 20px;
    margin-top: 24px;
  }



  
  /* 섹션 반응형 */
  .ci_section-guide-header .ci_section_inner {
    padding: 30px 30px 30px 30px;
  }
  .ci_section-guide-steps .ci_section_inner {
    padding: 0px 30px;
  }
  .ci_section-profile-header .ci_section_inner {
    padding: 30px 30px 30px 30px;
  }
  .ci_section-profile-content .ci_section_inner {
    padding: 0px 30px;
  }
  .ci_section-notice-header .ci_section_inner {
    padding: 30px 30px 30px 30px;
  }
  .ci_section-notice-content .ci_section_inner {
    padding: 0px 30px;
  }
  .ci_section-feedback-header .ci_section_inner {
    padding: 40px 30px;
  }
  .ci_section_title {
    font-size: 28px;
    line-height: 1.4;
  }
  .ci_section_subtitle {
    font-size: 16px;
    line-height: 1.35;
  }
  .ci_media_img {
    width: 220px;
    height: 110px;
  }
  
  /* 스텝 반응형 */
  .ci_steps {
    margin-top: 12px;
  }
  .ci_step {
    gap: 16px;
    padding: 28px 0;
  }
  .ci_step_badge {
    width: 22px;
    height: 22px;
    font-size: 15px;
    margin-top: 2px;
  }
  .ci_step_title {
    font-size: 18px;
    line-height: 1.35;
  }
  .ci_step_desc {
    font-size: 16px;
    line-height: 1.4;
  }
  .ci_step_note {
    font-size: 13px;
  }
  .ci_step_icon {
    width: 62px;
    height: 62px;
  }
  .ci_step_icon img {
    width: 62px;
    height: 62px;
  }
  .ci_steps_note_text {
    font-size: 14px;
    margin: 12px 0 0 0;
  }
  
  /* 안내사항 정책 반응형 */
  .ci_notice_policies {
    margin: 14px 0;
  }
  .ci_notice_policy {
    padding: 28px 0;
  }
  .ci_notice_policy_title {
    font-size: 18px;
  }
  .ci_notice_policy_desc {
    font-size: 16px;
  }
  .ci_notice_policy_note {
    font-size: 14px;
  }
  
  /* 피드백 헤더 반응형 */
  .ci_feedback_img {
    width: 90px;
    height: 90px;
  }
  .ci_feedback_desc {
    font-size: 20px;
  }
  .ci_feedback_box {
    padding: 22px 30px;
  }
  .ci_feedback_box_text {
    font-size: 16px;
  }
  
  /* 프로필 가이드 반응형 */
  .ci_profile_guide {
    margin: 24px 0 30px 0;
  }
  .ci_profile_item {
    gap: 24px;
    padding: 18px 0;
  }
  .ci_profile_item_img {
    width: 100px;
    height: 100px;
  }
  .ci_profile_item_img--large {
    width: 180px;
    height: 220px;
  }
  .ci_profile_item_title {
    font-size: 18px;
  }
  .ci_profile_item_desc {
    font-size: 16px;
    line-height: 1.4;
  }
  .ci_profile_item_note {
    font-size: 13px;
    line-height: 1.45;
  }
  .ci_profile_notice {
    padding: 20px 30px;
    margin-top: 18px;
  }
  .ci_profile_notice_text {
    font-size: 16px;
    line-height: 1.4;
  }
}


