footer .footer_copy {
  background-color: #121212; /* 딥 다크 */
  padding: 80px 0 100px;
  color: #c9d1d9;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

footer .footer_copy .inner {
  margin: 0 auto;
}

/* 상단: 메뉴 그룹 + SNS/앱버튼 */
footer .footer_copy .ft_content_top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
  gap: 40px;
}

footer .footer_copy .ft_nav_wrapper {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
}

footer .footer_copy .ft_nav_group h6 {
  margin: 0 0 18px;
  font-size: 16px;
  font-weight: 700;
  color: #f6f7f9;
  letter-spacing: -0.2px;
}

footer .footer_copy .ft_nav_group a {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  color: #aab4bf;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
  opacity: 0.9;
}

footer .footer_copy .ft_nav_group a:hover {
  color: #ffffff;
  opacity: 1;
}

/* SNS 및 앱 다운로드 */
footer .footer_copy .ft_side_box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
}

/* 앱 버튼 */
footer .footer_copy .ft_app_btn {
  background: rgba(49, 130, 246, 0.12); /* 포인트 블루 살짝 */
  color: #eaf2ff;
  border: 1px solid rgba(49, 130, 246, 0.22);
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  transition: transform 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}

footer .footer_copy .ft_app_btn:hover {
  transform: translateY(-1px);
  background: rgba(49, 130, 246, 0.18);
  border-color: rgba(49, 130, 246, 0.32);
}

/* 하단: 회사 로고 및 정보 */
footer .footer_copy .ft_content_bottom {
  padding-top: 36px;
  padding-bottom: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

footer .footer_copy .ft_logo {
  margin-bottom: 20px;
}
footer .footer_copy .ft_logo img {
  height: 40px;
}

footer .footer_copy .ft_info_list {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 14px;
  color: #9aa6b2;
  line-height: 1.7;
}

footer .footer_copy .ft_info_box address {
  font-style: normal;
  font-size: 12px;
  color: #9aa6b2;
  margin-bottom: 18px;
  line-height: 1.8;
}

footer .footer_copy .ft_copy_text {
  font-size: 14px;
  color: #7d8894;
  margin: 0;
}

footer .footer_copy .ft_info_text {
  font-size: 14px;
  color: #7d8894;
  margin: 0;
  margin-bottom: 12px;
}

footer .footer_copy .ft_copy_text b {
  color: #e9eef3;
}

/* 안내 문구 바 */
footer .footer_copy .ft_notice_bar {
  margin-top: 32px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  font-size: 12px;
  color: #aab4bf;
  line-height: 1.8;
}

/* 모바일 반응형 (footer_copy만) */
@media all and (max-width: 1024px) {
  footer .footer_copy {
    padding: 44px 20px;
  }
  footer .footer_copy .ft_content_top {
    flex-direction: column;
    gap: 28px;
  }
  footer .footer_copy .ft_nav_wrapper {
    gap: 28px;
  }
  footer .footer_copy .ft_side_box {
    align-items: flex-start;
    width: 100%;
  }
  footer .footer_copy .ft_sns_links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  footer .footer_copy .ft_nav_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
}

/* =========================================================
   [절대유지] footer_gnb CSS (원본 그대로)
   - 너가 기존에 쓰던 규칙을 변경하지 않고 그대로 둠
========================================================= */

/* 25.08.24: 상단헤더에 노출시킬 예정(PC에서는 숨김) */
footer .footer_gnb {
  display: none;
}

/* footer_gnb 기본 패딩(PC 기준 - display:none 이므로 실사용은 모바일에서) */
footer .footer_gnb {
  padding: 20px 0;
}

/* 상단 링크(미사용) */
footer .footer_gnb_ul1 {
  float: left;
  width: 50%;
  line-height: 35px;
}
footer .footer_gnb_ul1 a {
  margin-right: 30px;
}
footer .footer_gnb_ul1 .footer_gnb_li1 {
  float: left;
  width: 10%;
}
footer .footer_gnb_ul1 .footer_gnb_li2 {
  float: left;
  width: 90%;
  box-sizing: border-box;
}

/* 상단 우측 링크 */
footer .footer_gnb_ul2 {
  float: right;
  width: 50%;
  text-align: right;
  line-height: 35px;
}
footer .footer_gnb_ul2 a {
  margin-left: 30px;
}

/* SNS */
footer .footer_sns_ico img {
  width: 35px;
  height: auto;
  border-radius: 10px;
}
footer .footer_gnb_ul2 a.footer_sns_ico {
  margin-left: 2px;
}

/* =========================================================
   [절대유지] footer_nav CSS (원본 그대로)
========================================================= */
.footer_nav {
  backdrop-filter: blur(4px);
  background: #fff;
  border-top: 1px solid #f1f2f4;
  bottom: 0;
  height: 64px;
  left: 0;
  padding: 0 8px;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease-out;
  transform: translate3d(0, 64px, 0);
}

.footer_nav .footer_nav_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 100%;
}

.footer_nav .footer_nav_grid_item {
  align-items: center;
  color: #48546e;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  gap: 7px;
  justify-content: center;
}

.footer_nav .footer_nav_grid_item.active {
  color: #b00000;
}

.footer_nav .footer_nav_grid_item i {
  display: inline-block;
  height: 22px;
  width: 22px;
}
.footer_nav .footer_nav_grid_item .wrap {
  position: relative;
}

.footer_nav .footer_nav_grid_item .wrap .main_rb_bg {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: -8px;
  right: -8px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 11px;
  font-weight: 400;
  color: var(--rd-text-white);
}

.footer_nav .footer_nav_grid_item span {
  display: block;
}

/* =========================================================
   부각된 고객지원 카드 (Customer Support Card)
========================================================= */
/* 고객지원 카드 전체 스타일 */
.ft_support_card {
  background: linear-gradient(145deg, #1e1e1e, #161616);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
  width: 300px; /* PC 기준 너비 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* 운영시간 및 점멸 표시 */
.card_header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.status_dot {
  width: 8px;
  height: 8px;
  background-color: #00ff84;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ff84;
  animation: pulse_green 1.5s infinite;
}

@keyframes pulse_green {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.operating_time {
  font-size: 13px;
  color: #00ff84;
  font-weight: 600;
}

/* 텍스트 영역 */
.card_body p {
  font-size: 15px;
  line-height: 1.6;
  color: #d1d1d1;
  margin: 0 0 20px 0;
}

.card_body strong {
  color: #ffffff;
  font-size: 16px;
  display: block;
  margin-top: 4px;
}

/* 텔레그램 버튼 스타일 */
.sns_btn {
  background: #0088cc; /* 텔레그램 공식 색상 */
  color: #ffffff !important;
  text-decoration: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
}

.sns_btn:hover {
  background: #00a2f3;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 136, 204, 0.4);
}

/* 아이콘 이미지 설정 */
.sns_icon {
  width: 20px;
  height: 20px;
  /* 이미지가 검은색일 경우 흰색으로 반전시킴 */
  filter: brightness(0) invert(1);
}

/* 미니멀 안전 가이드 카드 */
.ft_mini_safety {
  margin-top: 24px;
  margin-bottom: 48px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px;
}

.mini_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  flex-direction: column;
}

.mini_main {
  display: flex;
  align-items: center;
  gap: 12px;
}

.warning_tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.mini_text {
  margin: 0;
  font-size: 12px;
  color: #9aa6b2;
  letter-spacing: -0.3px;
}

.mini_text a {
  color: #ff6b6b;
  text-decoration: none;
  font-weight: 700;
  margin-left: 4px;
}

/* 우측 인증 뱃지 그룹 */
.mini_certs {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cert_unit {
  font-size: 8px;
  font-weight: 600;
  color: #7d8894;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.cert_unit .icon {
  font-size: 13px;
}

.cert_unit.red {
  color: #ff6b6b;
}

/* 모바일: 가로가 좁아지면 위아래로 배치 */
@media (max-width: 850px) {
  .mini_content {
    align-items: flex-start;
    gap: 12px;
  }

  .mini_main {
    align-items: flex-start;
    gap: 12px;
    flex-direction: column;
  }

  .mini_certs {
    width: 100%;
    justify-content: flex-start;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
}

/* 모바일 대응 */
@media (max-width: 1024px) {
  .ft_support_card {
    width: 100%;
    margin-top: 20px;
  }

  footer .footer_copy .ft_content_bottom {
    padding-bottom: 48px;
  }
}
