@charset "utf-8";


#wrap {
  width: 100%;
  color: var(--text-color-main);
  letter-spacing: -0.02em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--bg-white);
  z-index: 100;
  border-bottom: 1px solid #E5E5E5;
  transition: background-color 0.3s ease, border-bottom-color 0.3s ease;
}
.header.transparent {
  background-color: transparent;
  border-bottom-color: transparent;
}
.header-inner {
  height: var(--header-height);
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .logo {
  width: 200px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header .logo a {
  width: 100%;
  height: 100%;
  padding: 8px 0;
  text-align: center;
  color: #fff;
}

.header-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header-nav .header-nav-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-nav-item .header-nav-link {
  padding: 8px 16px;
}


.header.transparent .header-nav-item .header-nav-link {
  color: #fff;
}

.header-nav-link.highlight {
  color: var(--primary-color);
  font-weight: 600;
}


.header.transparent .header-nav-item .header-nav-link.highlight {

  color: var(--primary-color);
}



.header-btn {
  display: flex;
  align-items: center;
}
.header-btn .header-btn-link { 
  padding: 8px 16px;
  border-radius: var(--rounded-full);
  font-size: 15px;
  
}
.header.transparent .header-btn .header-btn-link {
  color: #fff;
}

.header-btn .header-btn-link.login {
  background-color: var(--primary-color);
  color: #fff;
}

/* 모바일 헤더 토글 버튼 */
.header-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 101;
  position: relative;
}

.header-mobile-toggle-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-color-main);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header.transparent .header-mobile-toggle-line {
  background-color: #fff;
}

.header-mobile-toggle.active .header-mobile-toggle-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header-mobile-toggle.active .header-mobile-toggle-line:nth-child(2) {
  opacity: 0;
}

.header-mobile-toggle.active .header-mobile-toggle-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* 모바일 네비게이션 */
.header-mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100vh - var(--header-height));
  background-color: #fff;
  z-index: 100;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.header-mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.header-mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.header-mobile-nav-item {
  border-bottom: 1px solid #E5E5E5;
}

.header-mobile-nav-link {
  display: block;
  padding: 20px 24px;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.46vw, 28px);
  color: var(--text-color-main);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.header-mobile-nav-link:hover {
  background-color: #f5f5f5;
}

.header-mobile-nav-link.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.header-mobile-btn {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  margin-top: auto;
}

.header-mobile-btn-link {
  display: block;
  padding: 12px 24px;
  text-align: center;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  border-radius: var(--rounded-full);
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-mobile-btn-link.login {
  background-color: var(--primary-color);
  color: #fff;
}

.header-mobile-btn-link.join {
  background-color: transparent;
  color: var(--text-color-main);
  border: 1px solid var(--text-color-main);
}

.page {
  padding-top: var(--header-height);
}
.page.landing-page {
  padding-top: 0;
}

.sc__hero {

  padding: 60px 0;
  min-height: 100dvh;

  background-image: url('../images/main_hero2.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-height);

}



.sc__hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.sc__hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  gap: 24px;
  margin-top: 24px;
}

.sc__hero-title {
  font-size: clamp(28px, 2.71vw, 52px);
  font-weight: 600;
  line-height: clamp(36px, 3.54vw, 68px);
  color: #fff;
  margin-bottom: 16px;

  display: flex;
  flex-direction: column;
  width: 100%;
}

.sc__hero-title .badge_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2.4vw, 46px);
  margin-bottom: 24px;
}


.sc__hero-desc {
  font-size: clamp(20px, 1.88vw, 36px);
  color: #fff;
  line-height: 1.2;
}
.sc__hero-title .highlight {
  color: var(--primary-color);
}
.sc__hero-btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 56px;
}

.sc__hero-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-color);
  border-radius: var(--rounded-full);
  padding: 12px 24px;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.46vw, 28px);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 100;
}




@keyframes gradient {
  0% {
  background-position: 0;
  }
  100% {
    background-position: 100%;
  }
}

.sc__need {
  padding: 120px 0 120px;
}

.sc__need-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}
.need_title_wrap {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.need_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;

}
.need_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: var(--text-color-main);
  margin-bottom: 60px;
}

.need_content_wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 20px;
}

.need_content_wrap_item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}

.need_content_wrap_item_num {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #98B9FF;
  border-radius: var(--rounded-full);
  color: var(--primary-color);
  font-size: 24px;
  line-height: 1;
}

.need_content_wrap_item_title {

  font-size: clamp(16px, 1.04vw, 20px);
  line-height: 1.5;
  text-align: center;
  color: #6E6E6E;
  word-break: keep-all;
}



.need_content_wrap_item_title .textbold {
  color: #1e1f22;
}
.need_content_wrap_item_img {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.15);
}


.sc__overview {
  padding: 120px 0;
  background-color: #F2F6FF;
  overflow: hidden;
}
.sc__overview-inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding-bottom: 8px;
}

.sc__overview_title_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
  margin-bottom: 80px;
}
.sc__overview_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
}
.sc__overview_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: var(--text-color-main);
}


.overview_carousel_btn {
  width: calc(100% - 20px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.overview_carousel_container {
  width: 100%;
  max-width: 1220px;
  padding: 10px;
  margin: 0 auto;
  overflow: hidden;
}

.overview_carousel_wrap {
  display: flex;
  gap: 24px;
  position: relative;
  transition: transform 0.3s ease-in-out;
}

.overview_carousel_card {
  flex: 0 0 auto;
  width: calc((1200px - 72px) / 3.5); 
  min-width: 280px;
  background: #fff;
  border-radius: 12px;
  padding: 23px 26px;
  padding-bottom: 0;
  box-sizing: border-box;
  scroll-snap-align: start;
  box-shadow: 0 0 6px 0 rgba(0,0,0,0.15);
  overflow: hidden;
}
.overview_carousel_btn {

  margin-bottom: 40px;
}
.category_btn_wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.carousel_btn {
  border-radius: 16px;
  padding: 16px 20px;
  color: #cdcdcd;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.46vw, 28px);
}
.carousel_btn:hover {
  color: #242424;
}

.carousel_btn.active {
  background-color: #242424;
  color: #fff;
}
.carousel_card__category {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 500;
  color: #6998FF;
  margin-bottom: 8px;
}

.carousel_card__title {
  color: #000;
  font-size: 26px;
  line-height: 1.5;
  font-weight: 600;
}


.carousel_card__img {
  outline: 12px solid #F2F6FF;
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  overflow: hidden;

  width: calc(100% - 24px);
  margin: 0 auto;
  margin-top: 32px;
}

.carousel_card__img img {
  width: 100%;
  height: 100%;
}





.sc__introduction {
  padding: 120px 0;
}

.sc__introduction-inner {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  gap: 28px;
}

.introduction_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
  text-align: center;
}
.introduction_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: var(--text-color-main);
  text-align: center;
  margin-bottom: 60px;
}

.introduction_tab_wrap {
  display: flex;
  align-items: flex-start;
  gap: 80px;

  padding: 32px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.introduction_tab-menu {
  flex-shrink: 0;
  width: 175px;
}

.introduction_tab-menu_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.introduction_tab-menu_item {
  margin: 0;
}

.introduction_tab-menu_btn {
  width: 100%;
  text-align: center;
  padding: 12px 24px;
  background-color: transparent;
  border: none;
  border-radius: 30px;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.46vw, 28px);
  font-weight: 500;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
}

.introduction_tab-menu_item.active .introduction_tab-menu_btn {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 600;
}

.introduction_content_wrap {
  flex: 1;
  position: relative;
}

.introduction_content_item {
  display: none;
  flex-direction: column;
  gap: 24px;
  text-align: left;
}

.introduction_content_item.active {
  display: flex;
}

.introduction_content_title {
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.introduction_content_desc {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.introduction_content_desc p {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.67vw, 32px);
  color: #666;
  margin: 0;
  font-weight: 100;
}

.introduction_content_placeholder {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  background-color: #F5F5F5;
  border-radius: 12px;
  margin-top: 20px;
  overflow: hidden;
}
.introduction_content_placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.sc__linkboost {
  padding: 100px 0 100px;
  background: linear-gradient(90deg, #242424 0%, #555555 100%);
}
.sc__linkboost-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}
.linkboost_img_box {
  width: 50%;
  max-width: 460px;
  height: auto;
  /* margin-top: auto; */
}
.linkboost_content_box {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  /* margin-bottom: 100px; */
}
.linkboost_content_box .linkboost_content_box_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
.linkboost_content_box .linkboost_content_box_desc {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 26px;
  font-weight: 100;
  color: #fff;
}

.linkboost_content_box .linkboost_content_box_desc .highlight {
  color: var(--primary-color);
}

.sc__why_backlinkbot {
  padding: 120px 0;
  background-color: #F1F3F7;
}
.sc__why_backlinkbot-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.why_backlinkbot_title_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why_backlinkbot_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.why_backlinkbot_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
}
.why_backlinkbot_title_wrap_desc_sub {
  margin-top: 36px;
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
}

.why_backlinkbot_title_wrap_desc_sub .highlight {
  color: var(--primary-color);
}


.why_backlinkbot_content_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 42px;
  margin-top: 42px;
  width: 100%;
  max-width: 700px;
}
.why_backlinkbot_content_wrap_item {
  border-radius: 12px;
  background-color: #242424;
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.why_backlinkbot_content_wrap_item_img {
  width: 36px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
}

.why_backlinkbot_content_wrap_item_img svg {
  width: 100%;
  height: auto;
}


.why_backlinkbot_content_case {
  display: flex;
  gap: 20px;
}
.why_backlinkbot_content_case_text {
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: clamp(20px, 1.88vw, 36px);
  color: #fff;
}
.textbold {
  font-weight: 600;
}

.sc__achievements {
  padding: 120px 0 240px;
  background: url('../images/achievement_bg.png') no-repeat center center;
  background-size: cover;
}

.sc__achievements-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.achievements_title_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.achievements_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.achievements_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: #fff;
}

/* Glass Morphism 효과 - 피그마 속성 기반 */
/* Refraction: 54, Depth: 32, Dispersion: 63, Frost: 13 */
.glass-effect {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.glass-effect-dark {
  background: linear-gradient(135deg, rgba(85, 57, 57, 0.4) 0%, rgba(50, 43, 44, 0.4) 100%);
  backdrop-filter: blur(10px) saturate(180%);
  -webkit-backdrop-filter: blur(10px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

/* Liquid Glass 효과 스타일 */
.liquidGlass-wrapper {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 6px rgba(0, 0, 0, 0.2), 0 0 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 2.2);
}

.liquidGlass-effect {
  display: none;
  position: absolute;
  z-index: 0;
  inset: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  filter: url(#glass-distortion);
  overflow: hidden;
}

.liquidGlass-tint {
  z-index: 1;
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
}

.liquidGlass-shine {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  box-shadow: inset 1px 1px 1px 0 rgba(255, 255, 255, 0.1),
              inset -0.5px -0.3px 1px 1px rgba(255, 255, 255, 0.2);
}

.liquidGlass-text {
  position: relative;
  z-index: 3;
}

.achievements_stats_wrap {
  width: 100%;
  border-radius: var(--rounded-lg);
  padding: 60px 32px;
  color: #fff;
  margin-top: 56px;
  background: #fff;
}

/* Liquid Glass 레이어들도 border-radius 적용 */
.achievements_stats_wrap,
.achievements_stats_wrap > div {
  border-radius: 40px;
}



.achievements_stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.achievements_stat_item {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 8px 12px;
}
.achievements_stat_item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: clamp(24px, 2.13vw, 40px);
  background: rgba(0, 0, 0, 0.3);
}
.stat_label {
  display: block;
  font-size: clamp(16px, 1.04vw, 18px);
  line-height: 18px;
  color: #585A60;
  font-weight: 100;
  margin-bottom: 12px;
}
.stat_value {
  display: block;
  font-size: clamp(20px, 1.67vw, 32px);
  font-weight: 700;
  color: #1C5DE8;
}

.sc__choose_reason {
  padding: 120px 0 240px;
  background-color: #fff;
}
.sc__choose_reason-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}
.choose_reason_title_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.choose_reason_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.choose_reason_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
}
.choose_reason_grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.choose_reason_card {
  background: linear-gradient(180deg, #f5f5f5 0%, #fcfcfc 100%);
  border-radius: 12px;
  padding: 56px 32px;

  position: relative;
}

.choose_reason_card.card--01::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/reason_card__01.png');
  background-size: 40%;
  background-position: right -7px bottom -10px;
  background-repeat: no-repeat;
  opacity: 0.6; 
  pointer-events: none;
  z-index: 0;
}
.choose_reason_card.card--02::before  {  
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/reason_card__02.png');
  background-size: 36%;
  background-position: right -7px bottom -10px;
  background-repeat: no-repeat;
  opacity: 0.6; 
  pointer-events: none;
  z-index: 0;
}
.choose_reason_card.card--03::before  {  
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/reason_card__03.png');
  background-size: 32%;
  background-position: right -7px bottom -10px;
  background-repeat: no-repeat;
  opacity: 0.6; 
  pointer-events: none;
  z-index: 0;
}
.choose_reason_card.card--04::before  {  
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/reason_card__04.png');
  background-size: 30%;
  background-position: right -7px bottom -10px;
  background-repeat: no-repeat;
  opacity: 0.6; 
  pointer-events: none;
  z-index: 0;
}






.choose_reason_card_title {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(26px, 1.77vw, 34px);
  font-weight: 600;
  margin-bottom: 12px;
}
.choose_reason_card_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  position: relative;
  z-index: 1;
  font-weight: 100;
  color: #676767;
}

.sc__contact {
  padding: 160px 0 160px;
  background-color: #F2F6FF;
}
.sc__contact-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.contact_title_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 16px;
  color: #4C85FF;
}
.contact_title_wrap_title .textbold {
  color: #1C5DE8;
  font-weight: 700;
}
.contact_title_wrap_desc {
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: 1.5;
  font-weight: 500;
  color: #585A60;
}
.contact_title_wrap_desc br {
  display: none;
}

.contact_btn {
  padding: 12px 32px;
  color: #fff;
  background-color: #242424;
  font-weight: 600;
  border-radius: var(--rounded-full);
  font-size: clamp(16px, 1.04vw, 20px);
}



/* Footer */
.footer {
  background: var(--bg-footer);
  color: var(--footer-text-color);
}
.footer-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 8px 56px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.footer-logo {
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-logo a { color: #fff; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.footer-links { display: flex; align-items: center; gap: 16px; }
.footer-link { color: #ffffff; opacity: 0.9; }

.footer-body { display: flex; flex-direction: column; gap: 6px; }
.footer-text { font-size: 14px; line-height: 22px; }

.footer-bottom { display: flex; flex-direction: column; gap: 6px; margin-top: 8px; }
.footer-copy { color: #ffffff; opacity: 0.9; }
.footer-disclaimer { font-size: 13px; line-height: 20px; }

/* *** 서비스 페이지 *** */


.service-page {
  background-color: #F1F3F7;
}


/* 섹션 1: 히어로 */
.sc__service_hero { padding: 120px 0 140px; background: linear-gradient(180deg, #fff 0%, #F1F3F7 100%); }
.service_hero-inner { width: 95%; max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 60px; }
.service_hero-content { flex: 1; display: flex; flex-direction: column; gap: 16px; }
.service_hero-title { font-size: clamp(28px, 2.71vw, 52px); line-height: clamp(36px, 3.54vw, 68px); font-weight: 700; }
.service_hero-title .highlight { color: var(--primary-color); }
.service_hero-desc { font-size: clamp(16px, 1.04vw, 20px); line-height: clamp(24px, 1.67vw, 32px); color: #333;margin-top: 34px; }
.service_hero-media { width: 40%; max-width: 560px; }
.img-placeholder { width: 100%;display: flex; align-items: center; justify-content: center;}

/* 섹션 2: 특징 카드 3개 */
.sc__service_features { padding: 80px 0 140px; }
.service_features-inner { width: 95%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature_item { background: #2A2A2A; color: #fff; border-radius: 12px; padding: 24px; display: flex; align-items: center; gap: 12px; }
.feature_icon { width: clamp(20px, 1.88vw, 36px); height: clamp(20px, 1.88vw, 36px); border-radius: 8px; background: #3b3b3b; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #bfbfbf; }
.feature_texts { width: 100%; }
.feature_title { font-size: clamp(16px, 1.04vw, 20px); line-height: clamp(24px, 1.67vw, 32px); font-weight: 700; margin-bottom: 12px; }

.feature_desc_wrap { 
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
.feature_desc { font-size: clamp(14px, 0.83vw, 16px); line-height: clamp(24px, 1.46vw, 28px); color: rgba(255,255,255,0.8); }

.feature_icon {
  width: clamp(28px, 2.71vw, 52px);
  height: clamp(28px, 2.71vw, 52px);
  border-radius: var(--rounded-full);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 섹션 3: 상품 카드 2개 */
.sc__service_products { padding: 40px 0 140px; }

.service_products-title_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: clamp(28px, 2.71vw, 52px);
}
.service_products-title_wrap_desc { font-size: clamp(16px, 1.04vw, 20px); line-height: clamp(24px, 1.67vw, 32px);  color: #676767; }
.service_products-title_wrap_title { font-size: clamp(20px, 1.88vw, 36px); line-height: clamp(36px, 2.92vw, 56px); font-weight: 600; }

.service_products-inner { width: 95%; max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.product_card { 
  position: relative; 
  overflow: hidden; 
  background: #fff; 
  border: 1px solid #eee; 
  border-radius: 12px; 
  padding: 30px 30px 40px; 
  min-height: 160px; 
}
.product_badge { 
  display: flex; 
  width: fit-content; 
  align-items: center; 
  justify-content: center; 
  padding: 6px 20px; 
  border-radius: 6px; 
  background: #4177ED; 
  color: #fff; 
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 600; 
  margin-bottom: 20px; 
}
.badge--green { background: #03B866; color: #fff; }
.product_title { 
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600; 
  margin-bottom: 18px; 
  position: relative;
  z-index: 1;
}
.product--google .highlight { color: #4177ED; }
.product--naver .highlight { color: #03B866; }
.product_desc { font-size: clamp(16px, 0.94vw, 18px); line-height: clamp(24px, 1.46vw, 28px); color: #333; position: relative; z-index: 1;}
.product_mark { position: absolute; right: 12px; bottom: 8px; font-size: 72px; font-weight: 800; color: rgba(0,0,0,0.06); pointer-events: none; }

.product--google::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/service_google.png');
  background-size: 35%;
  background-position: right -35px bottom -40px;
  background-repeat: no-repeat;
  opacity: 0.2; 
  pointer-events: none;
  z-index: 0;
}
.product--naver::before  {  
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../images/service_naver.png');
  background-size: 35%;
  background-position: right -35px bottom -40px;
  background-repeat: no-repeat;
  opacity: 0.2; 
  pointer-events: none;
  z-index: 0;
}


/* 섹션 4: CTA 다크 배너 */
.sc__service_cta { padding: 72px 0; background: #4E4E4E; }
.service_cta-inner { width: 95%; max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; color: #fff; text-align: center; }
.service_cta-eyebrow { font-size: clamp(14px, 0.83vw, 16px); line-height: clamp(24px, 1.46vw, 28px); margin-bottom: 8px; }
.service_cta-title { font-size: clamp(20px, 1.88vw, 36px); line-height: clamp(36px, 2.92vw, 56px); font-weight: 700; margin-bottom: 32px; }
.service_cta-btn { padding: 12px 32px; color: #fff; background: #242424; border-radius: var(--rounded-full); font-size: clamp(16px, 1.04vw, 20px); font-weight: 600; }


/* 백링크 신청 페이지 */
.order-backlink-page {
  background-color: #F1F3F7;
}

.sc__order-backlink-hero {
  padding: 100px 0;
  background: radial-gradient(32.63% 100% at 50% 0%, rgba(78, 114, 255, 0.20) 0%, rgba(78, 114, 255, 0.00) 100%), #FFF;
}
.order-backlink-hero-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.order-backlink-hero-title {
  font-size: clamp(28px, 2.71vw, 52px);
  line-height: clamp(36px, 3.54vw, 68px);
  font-weight: 700;
  text-align: center;
  letter-spacing: -0.02em;
}
.order-backlink-hero-desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
}

.sc__order-plans {
  padding: 80px 0 44px;
}

.sc__order-plans.traffic-plans {
  padding: 0 0 80px;
}


.order-plans-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.order-plans-title{
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.46vw, 28px);
  border-radius: var(--rounded-full);
  padding: 4px 30px;
  border: 1px solid var(--text-color-main);
  color: var(--text-color-main);
  width: fit-content;
  font-weight: 500;
}
.order-plans-desc {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.46vw, 28px);
  margin-bottom: 16px;

}
.order-plans-list {
  display: flex;
  gap: 20px;
}

.plan-content-wrap {
  background: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.order-plan-card {
  width: calc(100% / 3 - 20px * 2 / 3);
  background-color: #F1F3F7;
  border-radius: 12px;
  border: 2px solid #DBDFEA;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.order-plan-card.premium {
  background: linear-gradient(#F1F3F7, #F1F3F7) padding-box,
              linear-gradient(45deg, #4E72FF, #15409C) border-box;
  border: 2px solid transparent;
  
}

.order-plan-card.premium .order-plan-card-title {
  background: linear-gradient(to right, #4E72FF, #15409C);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
}

.order-plans-list .title-wrap {
  padding: 24px;
}



.sc__order-plans .order-plan-card-title {
  font-size: clamp(16px, 1.25vw, 24px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 700;
  margin-bottom: 12px;
  color: #242424;
}

/* 백링크 작업 섹션 (seo_service.html): 프리미엄 제외한 나머지는 파란색 */
.seo-backlink-section .order-plan-card:not(.premium) .order-plan-card-title {
  color: var(--primary-color);
}

.sc__order-plans .order-plan-card-desc {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: clamp(24px, 1.46vw, 28px);
}
.sc__order-plans .best-badge {
  position: absolute;
  top: 32px;
  right: 24px;
  background-color: #BAD0FF;
  color: #4E72FF;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 22px;
  padding: 8px 12px 6px;
  letter-spacing: 0.05rem;
  border-radius: 30px;
  font-weight: 700;

  font-family: 'Montserrat', sans-serif;
}

.sc__order-plans .price-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  background-color: #fff;
  padding: 24px;
  padding-bottom: 0;
}

.sc__order-plans .price-wrap-label {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.5;
}
.sc__order-plans .price-wrap-value {
  font-size: clamp(20px, 1.46vw, 28px);
  line-height: 1.2;
  font-weight: 700;
  color: #000;
}

.sc__order-plans .desc-wrap {
  padding: 24px;
  background-color: #fff;
}
.order-plan-card-desc-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid #E5E5E5;
}
.order-plan-card-desc-list .order-plan-card-desc-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.order-plan-card-desc-list .order-plan-card-desc-item span {
  color: var(--primary-color);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.order-plan-card-desc-list .order-plan-card-desc-item span svg {
  width: 100%;
  height: 100%;
}

.order-plan-card-desc-list .order-plan-card-desc-item p {
  flex: 1 0 0;
}

.order-plans-list .btn-wrap {
  padding: 24px;
  background-color: #fff;
  margin-top: auto;
}

.order-plan-card-btn {
  width: 100%;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #242424;
  border-radius: 6px;
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 500;

}


.order-product-page {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding: calc(var(--header-height) + 48px) 0 48px;
  gap: 20px;
}
.order-product-title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  text-align: center;
  font-weight: 600;
}


.order-content-wrap {
  flex: 1;
  background-color: #F1F3F7;
  border-radius: 24px;
  padding: 24px;
}
.order-content {
  display: flex;
  align-items: flex-start;
  height: 100%;
  gap: 24px;
}

.order-tab-menu {
  height: 100%;
}
.order-tab-menu-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 16px;
}

.order-tab-menu-item a {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.67vw, 32px);
  color: #b5b5b5;
  position: relative;
  transition: color 0.3s ease;
}
.order-tab-menu-item a:hover {
  color: var(--text-color-main);
}
.order-tab-menu-item.active a {
  color: var(--text-color-main);
  font-weight: 600;
}
.order-tab-menu-item.active a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--text-color-main);
}
.order-content-wrapper {
  flex: 1;
  border-radius: 24px;
  display: flex;
  align-items: stretch;
  gap: 12px;
  height: 100%;
  min-height: 0;
}
.order-content-wrapper > div {
  background-color: #fff;
  border-radius: 20px;
  padding: 24px;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
  align-self: stretch;
}
.order-content-wrapper .order-content-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  min-height: 0;
}

.order-content-item::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}

.order-content-title {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  color: #4177ED;
  margin-bottom: 24px;
}

.order-content-title-badge {
  border: 1px solid #4177ED;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 22px;
  padding: 3px 12px 2px;
  letter-spacing: 0.12em;
  border-radius: 6px;
  font-weight: 600;

  font-family: 'Montserrat', sans-serif;
}

/* 상품 상세 정보 스타일 */
.order-product-subtitle {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 500;
  line-height: clamp(24px, 1.67vw, 32px);
  color: #333;
  margin-bottom: 20px;
}

.order-product-features {
  list-style: none;
  padding: 16px 12px;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #F6F9FF;
  border-radius: 6px;
}

.order-product-feature-icon {
  color: #4177ED;
}


.order-product-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  color: #333;
}


.order-product-specs {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e5e5;
}

.order-product-spec-item {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 16px;
}

.order-product-spec-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.order-product-spec-label {
  font-size: clamp(14px, 0.83vw, 16px);
  color: #666;
  width: 140px;
}

.order-product-spec-value {
  font-size: clamp(14px, 0.83vw, 16px);
  color: #333;
  line-height: 24px;
  flex: 1;
}

.order-product-spec-value > div {
  margin-bottom: 4px;
}

.order-product-spec-value > div:last-child {
  margin-bottom: 0;
}

.order-product-description {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-product-description-title {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 500;
  color: #666;
  line-height: 24px;
  margin: 0;
}

.order-product-description-content {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  color: #333;
  word-break: keep-all;
}

.order-product-description-content p {
  margin: 0 0 4px 0;
}

.order-product-description-content p:last-child {
  margin-bottom: 0;
}

.traffic-info-list {
  list-style: disc;
  padding-left: 18px;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #333;
}
.traffic-info-list li {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 1.6;
}
.traffic-notice {
  margin-top: 12px;
  padding: 12px;
  background-color: #fff6f0;
  border-radius: 8px;
}
.traffic-notice summary {
  font-weight: 500;
  color: #c75a25;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: clamp(13px, 0.83vw, 15px);
}
.traffic-notice summary::-webkit-details-marker {
  display: none;
}
.traffic-notice summary::after {
  content: '▼';
  font-size: 14px;
  transition: transform 0.2s ease;
}
.traffic-notice[open] summary::after {
  transform: rotate(-180deg);
}
.traffic-notice ul {
  margin: 8px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.traffic-notice li {
  font-size: clamp(12px, 0.74vw, 14px);
  line-height: 1.5;
  color: #1a1a1a;
}

.order-form-div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

/* 폼 스타일 */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-height: 0;
}

.order-form-field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-form-field .button-add-keyword {
  margin-left: auto;
  padding: 8px 16px;
  border-radius: 30px;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 15px;
  line-height: 24px;
}

.order-form-field #keywordList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.order-form-field #keywordList .keyword-item {
  padding: 6px 12px;
  border: 1px solid var(--primary-color);
  border-radius: 30px;
  background-color: #fff;
  color: var(--primary-color);
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


.button-remove-keyword {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  width: 16px;
  height: 16px;
}

.button-remove-keyword svg {
  width: 100%;
  height: 100%;
}

.order-form-label {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 600;
  color: #333;
  line-height: 24px;

  display: flex;
  align-items: center;
  gap: 8px;
}
.order-form-label .desc {
  font-size: 13px;
  color: #666;
  font-weight: 100;
}


.order-form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  line-height: 24px;
  color: #333;
  background-color: #fff;
  transition: border-color 0.3s;
}

.order-form-input:focus {
  outline: none;
  border-color: #4177ED;
}

.order-form-input::placeholder {
  color: #999;
}

.order-form-input.read-only {
  cursor: default;
  pointer-events: none;
  background-color: #f9f9f9;
  color: #a9a9a9;
}

.order-form-field .order-form-notice {
  padding: 12px;
  background-color: #f9f9f9;
  border-radius: 6px;
  font-size: 15px;
  line-height: 20px;
  color: #333;

  display: flex;
  align-items: center;
  gap: 4px;
}
.notice-label {
  display: flex;
  gap: 8px;
  align-items: center;
}
.notice-label .tooltip_icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}
.notice-label .tooltip_icon svg {
  width: 100%;
  height: 100%;
}

/* 버튼 그룹 스타일 */
.order-form-button-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  flex-wrap: wrap;
}

.order-form-button {
  flex: 1;
  min-width: 120px;
  padding: 6px 4px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.order-form-button:hover {
  border-color: #999;
}

.order-form-button.active {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background-color: var(--primary-light-color);
}


.order-form-button .desc {
  font-size: 13px;
}
/* 토글 스위치 그룹 */
.order-form-toggle-group {
  display: flex;
  gap: 24px;
  background-color: #f9f9f9;
  padding: 16px 12px;
  border-radius: 6px;
}

.order-form-toggle-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.order-form-toggle-label {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 500;
  color: #333;
  line-height: 24px;
}

.order-form-toggle-label[data-tooltip] {
  position: relative;
  cursor: help;
}

.order-form-toggle-label[data-tooltip]::after,
.order-form-toggle-label[data-tooltip]::before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.order-form-toggle-label[data-tooltip]::after {
  content: attr(data-tooltip);
  bottom: calc(100% + 8px);
  padding: 6px 10px;
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 13px;
  border-radius: 8px;
  white-space: nowrap;
  z-index: 10;
}

.order-form-toggle-label[data-tooltip]::before {
  content: '';
  bottom: calc(100% - 4px);
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.85);
}

.order-form-toggle-label[data-tooltip]:hover::after,
.order-form-toggle-label[data-tooltip]:hover::before {
  opacity: 1;
}

.order-form-switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 22px;
  cursor: pointer;
}

.order-form-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}


.order-form-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #DADADA;
  border-radius: 28px;
  transition: 0.3s;
}

.order-form-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.order-form-switch input:checked + .order-form-slider {
  background-color: var(--primary-color);
}

.order-form-switch input:checked + .order-form-slider:before {
  transform: translateX(13px);
}

/* 주문 요약 */
.order-form-summary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 12px;
  margin-top: auto;
}

.order-summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.order-summary-item.final {
  padding-top: 12px;
  border-top: 1px solid #ddd;
  margin-top: 4px;
}

.order-summary-label {
  font-size: clamp(14px, 0.83vw, 16px);
  color: #666;
  line-height: 24px;
}

.order-summary-value {
  font-size: clamp(14px, 0.83vw, 16px);
  color: #333;
  font-weight: 500;
  line-height: 24px;
}
.order-summary-value.discount {
  color: #676767;
}

.order-summary-value.final-amount {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 700;
  color: var(--primary-color);
}

/* 신청하기 버튼 */
.order-form-submit-btn {
  width: 100%;
  padding: 6px 16px;
  background-color: #4E4E4E;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 600;
  line-height: clamp(24px, 1.46vw, 28px);
  cursor: pointer;
  transition: background-color 0.3s;
}

.order-form-submit-btn:hover {
  background-color: #3a3a3a;
}

.order-form-submit-btn:active {
  background-color: #2a2a2a;
}

.order-form-input-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.order-form-input-group-buttons {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 4px;
}
.order-form-input-group-buttons button {
  width: auto;
  min-width: 42px;
  height: 100%;
  aspect-ratio: 1/1;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  color: #333;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.order-form-input.number {
  padding: 8px 12px;
}

.faq_answer {
  display: none;
}


.sc__faq {
  padding: 48px 0 100px; 
  background-color: #F1F3F7;
}
.faq_inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.faq_header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;

}
.faq_header .faq_title {
  text-align: center;
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  color: var(--text-color-main);
  font-weight: 600;
}

.faq_desc {
  width: 100%;
  padding: 32px 48px;
  background-color: #fff;
  border-radius: 12px;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.67vw, 32px);
  color: #121212;
}

.faq_list {
  width: 100%;
  padding: 18px 48px;
  border-radius: 12px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.faq_item {
  border-bottom: 1px solid #F1F3F7;
}
.faq_item:last-child{
  border-bottom: none;
}
.faq_question {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  cursor: pointer;
}
.faq_arrow {
  margin-left: auto;
}

.arrow_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.arrow_icon.active {
  transform: rotate(180deg);
}

.faq_icon {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 700;
  color: #676767;
}
.faq_icon--q {
  color: var(--primary-color);
}

.faq_question_text {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: 1.5;
  font-weight: 500;
}

.faq_answer {
  background-color: #F1F3F7;
  padding: 16px 20px;
  display: flex;
  align-items: stretch;
  gap: 24px;
}
.faq_answer_text {
  padding: 8px 0;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.67vw, 32px);
  word-break: keep-all;
}

.point-charge-page {
  padding: calc(var(--header-height) + 48px) 0 100px;
  background-color: #F1F3F7;
}
.point-charge_inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.point-charge_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: var(--text-color-main);
}

.point-charge_content_wrap {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-top: 20px;
}

.point__info {
  width: 30%;
  max-width: 460px;

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.point__info .point__info_balance {
  background: linear-gradient(0deg, #242424 0%, #5C5C5C 100%);
  color: #fff;
  padding: 20px;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100px;
}

.point__info .point__info_balance_title {
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.point__info_balance_title_text {
  font-size: clamp(16px, 1.04vw, 20px);
  font-weight: 600;
  color: #fff;
}

.point__info_guide {
  padding: 20px;
  background-color: #fff;
  border-radius: 12px;
  padding-bottom: 32px;
}


.point__info .point__info_balance_amount {
  align-self: flex-end;
  margin-top: auto;
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600;
  color: #fff;
}


.point__info_guide_title {
  margin-bottom: 8px;
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--text-color-main);
}
.point__info_guide_content_list {
  margin-bottom: 24px;
}

.point__info_guide_content_list_item {
  margin-bottom: 4px;
  word-break: keep-all;
  display: flex;
  align-items: flex-start;
  gap: 8px;

  font-size: clamp(15px, 0.83vw, 16px);
  line-height: clamp(20px, 1.46vw, 24px);


}
.point_info_link {
  text-decoration: underline;
  color: var(--primary-color);
}

.point__info_guide_content_text {
  word-break: keep-all;
  margin-bottom: 4px;
  padding-left: 12px;
  position: relative;
  font-size: clamp(15px, 0.83vw, 16px);
  line-height: clamp(20px, 1.46vw, 24px);

}

.point__info_guide_content_text::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--text-color-main);
}

.point__info_notice {
  background-color: #fff;
  padding: 20px;
  padding-bottom: 32px;
  border-radius: 12px;
  flex: 1;
}
.point__info_notice_title {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--text-color-main);
  margin-bottom: 8px;
}
.point__info_notice p {
  font-size: clamp(15px, 0.83vw, 16px);
  line-height: clamp(20px, 1.46vw, 24px);
  word-break: keep-all;
}

.point__form {
  flex: 1 1 0;
  background-color: #fff;
  padding: 24px;

  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
}

.point__form_charge-amount_title {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--text-color-main);
  margin-bottom: 16px;
}

.point__form_charge-amount_buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.charge-option {
  width: 100%;
  display: flex;
  flex-direction: column;

  border: 1px solid #dadada;
  padding: 16px 16px;
  border-radius: 6px;
  transition: all 0.3s;
}

.charge-option:hover {
  border: 1px solid #a9a9a9;
}

.charge-option.active {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-light-color);
}

.charge-option__bonus {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  color: #FF3C46;
  margin-bottom: 14px;
  font-size: 13px;
}

.charge-option__price-wrap {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  font-size: clamp(16px, 0.94vw, 18px);
}
.charge-option__point{
  color: #676767;
}
.charge-option.active .charge-option__point{
  color: var(--text-color-main);
}
.charge-option__price {
  color: var(--primary-color);
}
.point__form_payment-method_title {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  margin-bottom: 16px;
  font-weight: 600;
}
.point__form_payment-method_buttons {
  display: flex;
  gap: 10px;
}

.payment-option {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 6px;
  border: 1px solid #dadada;
  border-radius: 6px;
  font-size: 15px;
  gap: 8px;

  transition: all 0.3s;
}
.payment-option .check-icon {
  display: none;
  width: 14px;
  height: 14px;
  color: var(--primary-color);
}
.payment-option .check-icon svg {
  width: 100%;
  height: 100%;
}

.payment-option:hover {
  border: 1px solid #a9a9a9;
}
.payment-option.active {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-light-color);
}
.payment-option.active .check-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.point__form_promotion-code_title {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text-color-main);
}
.point__form_promotion-code_input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.point__form_promotion-code_input input {
  padding: 8px 12px;
  border: 1px solid #dadada;
  border-radius: 6px;
  font-size: 15px;
}
.point__form_promotion-code_apply {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px 6px;
  background-color: #dadada;
  font-size: 15px;
  border: 1px solid #dadada;
  border-radius: 6px;
}

.point__form_charge-amount_total {
  display: flex;
  background-color: #f2f2f2;
  padding: 16px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  border-radius: 10px;
}

.point__form_charge-amount_total_charge-amount,
.point__form_charge-amount_total_total-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 50%;
  max-width: 267px;
}
.point__form_charge-amount_total > div span:last-child {
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600;
  color: #676767;
}

.point__form_charge-amount_total > div span:last-child.point__form_charge-amount_total_total-price_price {
  color: var(--primary-color);
}

.point__form_charge-button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.point__form_charge-button_charge {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  background-color: var(--text-color-main);
  color: #fff;
  font-size: clamp(16px, 0.94vw, 18px);
  font-weight: 600;
  border-radius: var(--rounded-full);
  width: 140px;
  height: 40px;
}

/* 마이페이지 스타일 */
.table-cell-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
}

.page.mypage {
  padding: calc(var(--header-height) + 48px) 0 48px;
  background-color: #F1F3F7;
}

.mypage-header-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.mypage-header-title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}

.mypage-header-content {
  width: 100%;
  display: flex;
  align-items: stretch;
  gap: 12px;
}
.mypage-header-content-left {
  flex: 1;
  background-color: #fff;
  padding: clamp(20px, 1.88vw, 36px);
  border-radius: 12px;
}

.mypage-header-content-title {
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: clamp(20px, 1.88vw, 36px);
  color: #000;
  font-weight: 600;
  margin-bottom: 12px;
}

.mypage-header-content-desc {
  font-size: 20px ;
  line-height: clamp(24px, 1.67vw, 32px);
  margin-bottom: 40px;
}

.mypage-header-content-right {
  width: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mypage-header-content-right .right_item {
  background-color: #fff;
  border-radius: 12px;
  height: 50%;
  min-width: 360px;
  padding: 16px 24px;

}

.mypage-header-content-right .right_item .right_item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.right_item-value {
  margin-left: auto;
}
.right_item-label-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.right_item-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
}

.right_item-btn {
  background-color: var(--primary-light-color);
  color: var(--primary-color);
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  padding: 4px 10px 3px;
  border-radius: 4px;
  border: 1px solid var(--primary-light-color);
  transition: all 0.3s;
}

.right_item-value {
  font-size: clamp(18px, 1.35vw, 26px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600;
  color: #000;
}

.mypage-content-wrap {
  margin-top: 66px;
  width: 100%;
}

.mypage-content-inner {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* 사이드바 네비게이션 */
.mypage-sidebar {
  width: 180px;
  flex-shrink: 0;
}


.mypage-sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.mypage-sidebar-item {
  margin: 0;
}

.mypage-sidebar-item a {
  display: block;
  padding: 12px 24px;
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.67vw, 32px);
  color: #8b8b8b;
  text-decoration: none;
  transition: all 0.3s;
  border-radius: 8px;
  text-align: center;
}
.mypage-sidebar-item a:hover {
  background-color: #e8e8e8;
  color: var(--text-color-main);
}


.mypage-sidebar-item.active a {
  background-color: var(--primary-color);
  color: #fff;
  font-weight: 400;
}

.mypage-sidebar-item:not(:last-child) {
  margin-bottom: 16px;
}

/* 메인 콘텐츠 영역 */
.mypage-main-content {
  flex: 1;
  background-color: #fff;
  border-radius: 12px;
  padding: 28px;
}

.mypage-work-history-title {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}

/* 작업내역 테이블 */
.mypage-work-history-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  table-layout: fixed;
  background-color: #fff;
}

.mypage-work-history-table thead {
  background: #F2F6FF;
}
.mypage-work-history-table thead tr {
  border-bottom: 1px solid #BAD0FF;
}

.mypage-work-history-table th {
  padding: 16px;
  text-align: left;
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  color: #6998FF;
}

.mypage-work-history-table th:first-child {
  width: 120px;
  border-radius: 12px 0 0 0;
}

.mypage-work-history-table th:nth-child(2) {
  width: auto;
}

.mypage-work-history-table th:nth-child(3) {
  width: auto;
}

.mypage-work-history-table th:nth-child(4) {
  width: 120px;
}

.mypage-work-history-table th:last-child {
  width: 140px;
  border-radius: 0 12px 0 0;
}

.mypage-work-history-table tbody tr {
  border-bottom: 1px solid #E5E5E5;
}

.mypage-work-history-table tbody tr:last-child {
  border-bottom: none;
}

.mypage-work-history-table td {
  padding: 16px;
  font-size: 15px;
  line-height: 24px;
  color: #000;
  vertical-align: top;
}

.mypage-work-history-table td:first-child {
  width: 120px;
}

.mypage-work-history-table td:nth-child(4) {
  width: 120px;
}

.mypage-work-history-table td:last-child {
  width: 140px;
}

/* 작업 의뢰내역 스타일 */
.mypage-work-history-table .work-request-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start !important;
}

.mypage-work-history-table .work-product-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.mypage-work-history-table .work-product-link:hover {
  color: var(--primary-color);
}

.mypage-work-history-table .work-product-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mypage-work-history-table .work-request-date {
  font-size: 14px;
  color: #666;
  line-height: 20px;
}

/* 작업된 사이트 스타일 */
.mypage-work-history-table .work-site-link {
  display: flex;
  align-items: center;
  color: var(--primary-color);
}

.mypage-work-history-table .work-site-url {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s;
}

.mypage-work-history-table .work-site-url:hover {
  text-decoration: underline;
}

.mypage-work-history-table .work-site-url svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.mypage-work-history-table .work-site-url span {
  word-break: break-all;
}

/* 주문금액 스타일 */
.mypage-work-history-table .order-amount {
  font-weight: 500;
}

.btn-view,
.btn-rework {
  padding: 6px 16px;
  font-size: 14px;
  line-height: 24px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-view:hover,
.btn-rework:hover {
  border-color: #999;
  background-color: #f9f9f9;
}

/* 페이지네이션 */
.mypage-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.pagination-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-full);
  cursor: pointer;
  transition: all 0.3s;
}

.pagination-btn:hover {
  border-color: #999;
  background-color: #f9f9f9;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pagination-number {
  min-width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background-color: #fff;
  color: #000;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  cursor: pointer;
  transition: all 0.3s;
}

.pagination-number:hover {
  background-color: #f9f9f9;
}

.pagination-number.active {
  background-color: #2A2A2A;
  color: #fff;
  border-color: #2A2A2A;
}

/* 탭 콘텐츠 */
.mypage-tab-content {
  display: none;
}

.mypage-tab-content[data-id="work-history"] {
  display: block;
}

/* 충전내역 탭 */
.mypage-charge-history-title {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600;
  color: #000;
  margin-bottom: 24px;
}

/* 충전내역 테이블 */
.mypage-charge-history-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  table-layout: fixed;
}

.mypage-charge-history-table thead {
  background-color: #F2F6FF;
}
.mypage-charge-history-table thead tr {
  border-bottom: 1px solid #BAD0FF;
}

.mypage-charge-history-table th {
  padding: 16px;
  text-align: left;
  font-size: 15px;
  line-height: 24px;
  color: #6998FF;
}

.mypage-charge-history-table th:first-child {
  width: 100px;
  border-radius: 12px 0 0 0;
}

.mypage-charge-history-table th:nth-child(2) {
  width: 120px;
}

.mypage-charge-history-table th:nth-child(3) {
  width: 100px;
}

.mypage-charge-history-table th:nth-child(4) {
  width: 100px;
}

.mypage-charge-history-table th:nth-child(5) {
  width: 120px;
}

.mypage-charge-history-table th:nth-child(6) {
  width: 120px;
}

.mypage-charge-history-table th:nth-child(7) {
  width: 100px;
}

.mypage-charge-history-table th:last-child {
  width: 100px;
  border-radius: 0 12px 0 0;
}

.mypage-charge-history-table tbody tr {
  border-bottom: 1px solid #F1F3F7;
}

.mypage-charge-history-table tbody tr:last-child {
  border-bottom: none;
}

.mypage-charge-history-table td {
  padding: 16px;
  font-size: 15px;
  line-height: 24px;
  color: #000;
}

.mypage-charge-history-table td:first-child {
  width: 100px;
}

.mypage-charge-history-table td:nth-child(2) {
  width: 120px;
}

.mypage-charge-history-table td:nth-child(3) {
  width: 100px;
}

.mypage-charge-history-table td:nth-child(4) {
  width: 100px;
}

.mypage-charge-history-table td:nth-child(5) {
  width: 120px;
}

.mypage-charge-history-table td:nth-child(6) {
  width: 120px;
}

.mypage-charge-history-table td:nth-child(7) {
  width: 100px;
}

.mypage-charge-history-table td:last-child {
  width: 100px;
}

/* 상태 배지 */
.status-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.status-badge.status-completed {
  background-color: #e8f5e9;
  color: #2e7d32;
}

.status-badge.status-processing {
  background-color: #fff3e0;
  color: #f57c00;
}

/* 회원정보 수정 탭 */
.mypage-profile-edit {
  width: 100%;
}

.mypage-profile-edit-form {
  width: 100%;
}

.profile-section {
  margin-bottom: 48px;
}

.profile-section:last-of-type {
  margin-bottom: 32px;
}

.profile-section-title {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(24px, 1.88vw, 36px);
  font-weight: 700;
  color: #000;
  margin-bottom: 24px;
}

.mypage-profile-edit-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
  margin-bottom: 32px;
  border-left: none;
  border-right: none;
}

.mypage-profile-edit-table tbody tr {
  border-bottom: 1px solid #E5E5E5;
}

.mypage-profile-edit-table tbody tr:last-child {
  border-bottom: none;
}

.mypage-profile-edit-table .row-gray {
  background-color: #f9f9f9;
}

.mypage-profile-edit-table .row-white {
  background-color: #fff;
}

.mypage-profile-edit-table .form-label {
  width: 180px;
  padding: 16px 24px;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  font-weight: 500;
  color: #000;
  vertical-align: middle;
  border-right: 1px solid #E5E5E5;
  background-color: #fff;
}

.mypage-profile-edit-table .form-label .required {
  color: var(--primary-color);
}

.mypage-profile-edit-table .form-input {
  padding: 16px 24px;
  vertical-align: middle;
}

.mypage-profile-edit-table .form-control {
  width: 100%;
  max-width: 400px;
  padding: 10px 12px;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  color: #000;
  background-color: #fff;
  transition: border-color 0.3s;
}

.mypage-profile-edit-table .form-control:focus {
  outline: none;
  border-color: var(--primary-color);
}

.mypage-profile-edit-table .form-control:read-only {
  background-color: #F5F5F5;
  cursor: not-allowed;
  color: #666;
}

.mypage-profile-edit-table .form-hint {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #999;
}

.phone-input-group {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 400px;
}

.phone-input-group .phone-input {
  flex: 1;
  max-width: none;
}

.phone-input-group .phone-separator {
  color: #666;
  font-size: clamp(14px, 0.83vw, 16px);
}

.form-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.btn-cancel,
.btn-submit {
  padding: 10px 32px;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  font-weight: 500;
  border-radius: var(--rounded-full);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cancel {
  background-color: #fff;
  border: 1px solid #E5E5E5;
  color: #000;
}

.btn-cancel:hover {
  background-color: #f9f9f9;
  border-color: #ddd;
}

.btn-submit {
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  color: #fff;
}

.btn-submit:hover {
  background-color: #3d5fe6;
  border-color: #3d5fe6;
}

.form-footer {
  text-align: center;
}

.form-footer p {
  font-size: 14px;
  line-height: 22px;
  color: #666;
  margin: 0;
}

.form-footer .withdraw-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

.form-footer .withdraw-link:hover {
  text-decoration: underline;
}

/* 비밀번호 입력 필드 스타일 */
.password-input-wrapper {
  position: relative;
  max-width: 400px;
}

.password-input-wrapper .form-control {
  padding-right: 44px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.2s;
}

.password-toggle:hover {
  color: #333;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

/* 비밀번호 요구사항 */
.password-requirements {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.password-requirement-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #666;
}

.password-requirement-item .check-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: color 0.2s;
}

.password-requirement-item.valid {
  color: var(--primary-color);
}

/* 에러 메시지 */
.error-message {
  display: none;
  margin-top: 8px;
  font-size: 14px;
  line-height: 20px;
  color: #FF3C46;
}

/* 보고서 팝업 스타일 */
.report-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.report-modal.active {
  display: block;
}

.report-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
}

.report-modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  margin: 5vh auto;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.report-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  border-bottom: 1px solid #E5E5E5;
}

.report-modal-title {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: clamp(20px, 1.88vw, 36px);
  font-weight: 600;
  color: var(--text-color-main);
  margin: 0;
}

.report-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: #666;
  transition: color 0.3s ease;
}

.report-modal-close:hover {
  color: var(--text-color-main);
}

.report-modal-body {
  padding: 32px;
  overflow-y: auto;
  flex: 1;
}

.report-order-summary {
  margin-bottom: 32px;
}

.report-order-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.report-order-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-order-label {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  color: #666;
  font-weight: 500;
}

.report-order-value {
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  color: var(--text-color-main);
  font-weight: 500;
}

.report-order-no {
  color: var(--primary-color);
  font-weight: 600;
}

.report-download-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  color: #666;
  transition: all 0.3s ease;
}

.report-download-btn:hover {
  background-color: #e8e8e8;
  color: var(--text-color-main);
}

.report-detail-table,
.report-keywords-table {
  margin-bottom: 32px;
}

.report-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  overflow: hidden;
}

.report-table thead {
  background-color: #f5f5f5;
}

.report-table th {
  padding: 16px;
  text-align: left;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  font-weight: 600;
  color: var(--text-color-main);
  border-bottom: 1px solid #E5E5E5;
}

.report-table td {
  padding: 16px;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  color: var(--text-color-main);
  border-bottom: 1px solid #E5E5E5;
}

.report-table tbody tr:last-child td {
  border-bottom: none;
}

.report-keywords-table .report-table tbody tr:last-child td {
  border-bottom: 1px solid #E5E5E5;
}

.report-sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.report-section {
  border: 1px solid #E5E5E5;
  border-radius: 8px;
  padding: 24px;
}

.report-section-title {
  font-size: clamp(16px, 0.94vw, 18px);
  line-height: clamp(24px, 1.46vw, 28px);
  font-weight: 600;
  color: var(--text-color-main);
  margin: 0 0 16px 0;
}

.report-section-content {
  min-height: 100px;
}

.report-section-content.report-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  color: #999;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
}

.report-section-content.report-empty p {
  margin: 0;
}


.sc__results {
  padding: 100px 0 100px;
  background-color: #fff;
}

.sc__results-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
.results_title_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.results_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.results_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: var(--text-color-main);
}


.isotope__rank_up {
  position: relative;
  width: 100%;
  margin-left: 24px;
}
.isotope__card {
  width: 25%;
  margin: 0;
}

.card__inner {
  margin-right: 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #E1E4EE;
}

.card__domain-block {
  display: flex;
  gap: 12px;
  font-size: clamp(14px, 0.83vw, 16px);
  padding: 12px;
  padding-top: 0;
  border-bottom: 1px solid #E1E4EE;
  color: #9599A3;
  font-weight: 100;
  margin-bottom: 12px;
}
.card__domain {
  flex: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
  font-size: clamp(14px, 0.83vw, 16px);
}
.card__header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 14px;
}

.card__headline {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--primary-color);
}
.card__headline-label {
  font-size: clamp(14px, 0.83vw, 16px);
  font-weight: 500;
}
.card__headline-value-wrap {
  display: flex;
  align-items: flex-end;
  gap: 12px;

  color: #FF3C46;
}
.card__headline-value {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
}

.card__headline-value-icon {
  margin-bottom: 6px;
}

.card__body {
  padding: 8px;
  background-color: #F1F3F7;
  border-radius: 14px;
  margin-top: 12px;
}

.card__timeline {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__timeline-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.card__timeline-date {
  flex: 1;
  text-align: right;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  margin-right: 8px;
  color: #9599A3;
}

.card__timeline-rank {
  padding: 4px 12px;
  border-radius: 6px;
  background-color: #D2D7E5;
  font-size: clamp(14px, 0.83vw, 16px);
  line-height: 24px;
  font-weight: 400;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  color: #9599A3;
}

.card__timeline-label {
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9599A3;
}

.card__timeline-item--current .card__timeline-label, 
.card__timeline-item--current .card__timeline-date {
  color: #383E4A;
}
.card__timeline-item--current .card__timeline-rank {
  background-color: #74767E;
  color: #fff;
  font-weight: 400;
}

.sc__strategy {
  padding: 100px 0 100px;
  background-color: #fff;
}
.sc__strategy-inner {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.strategy_title_wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.strategy_title_wrap_desc {
  font-size: clamp(16px, 1.04vw, 20px);
  line-height: clamp(24px, 1.67vw, 32px);
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.strategy_title_wrap_title {
  font-size: clamp(20px, 1.88vw, 36px);
  line-height: clamp(36px, 2.92vw, 56px);
  font-weight: 600;
  color: var(--text-color-main);
  margin-bottom: 80px;
}
.strategy_content_wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.strategy_content_wrap_item {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.strategy_content_wrap_item:nth-child(even) {
  flex-direction: row-reverse;
}

.strategy_content_wrap_item_img {
  max-width: 560px;
  width: 50%;
}
.strategy_content_wrap_item_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.strategy_content_wrap_item_content_num {
  font-size: clamp(18px, 1.25vw, 24px);
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-color);
}

.strategy_content_wrap_item_content_title {
  font-size: clamp(20px, 1.46vw, 28px);
  line-height: 1.2;
  color: #242424;
  font-weight: 600;
}

.strategy_content_wrap_item_content_desc {
  font-size: clamp(16px, 0.94vw, 20px);
  line-height: 1.5;
  color: #383E4A;
}
.strategy_content_wrap_item_img {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 0 10px 0 rgba(0,0,0,0.15);
}

.carousel_move_btn_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.carousel_move_btn_wrap .carousel_move_btn {
  border: 1px solid #74767E;
  padding: 8px;
  border-radius: 10px;
}
.carousel_move_btn_wrap .carousel_move_btn svg {
  width: 18px;
  height: 18px;
}





.text-highlight {
  color: var(--primary-color);
  font-weight: 700;
}




/* ============================================
   미디어 쿼리 
   ============================================ */

@media (max-width: 1200px) {
  .header-nav-item .header-nav-link {
    padding: 8px 8px;
  }
  
  .charge-option__price-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
  .isotope__card {
    width: 50%;
    margin: 0;
  }
  
  /* 카루셀 반응형 - 태블릿 */
  .overview_carousel_card {
    width: calc((1200px - 48px) / 3.5);
  }
  
  .overview_carousel_wrap {
    gap: 16px;
  }
  
  .carousel_card__category {
    font-size: clamp(16px, 1.04vw, 20px);
  }
  
  .carousel_card__title {
    font-size: clamp(20px, 1.88vw, 26px);
  }
}

@media (max-width: 1024px) {
  
  :root {
    --header-height: 60px;
  }

  /* 모바일 헤더 스타일 */
  .header-nav {
    display: none;
  }
  
  .header-btn {
    display: none;
  }
  
  .header-mobile-toggle {
    display: flex;
  }
  
  .header-mobile-nav {
    display: block;
  }
  .achievements_stats_wrap {
    margin-top: 0;
    padding: 30px 16px;
    width: 80%;
  }
  .sc__hero-btn_wrap {
    margin-top: 0;
  }
  .sc__introduction {
    padding: 80px 0;
  }
  .need_content_wrap {
    display: grid;
    gap: 20px;
    margin-top: 0px;
  }
  .need_content_wrap_item_title br {
    display: none;
  }
  
  /* 카루셀 반응형 - 태블릿 작은 화면 */
  .overview_carousel_card {
    width: calc((100% - 32px) / 2.5);
    padding: 20px 20px;
    padding-bottom: 0;
  }
  
  .overview_carousel_wrap {
    gap: 16px;
  }
  
  .carousel_card__img {
    margin-top: 24px;
  }
  
  .overview_carousel_btn {
    margin-bottom: 32px;
  }
  
  .category_btn_wrap {
    gap: 16px;
  }
  
  .carousel_btn {
    padding: 12px 16px;
    font-size: clamp(14px, 0.94vw, 16px);
  }

  .introduction_title_wrap_title {
    margin-bottom: 30px;
  }

  .introduction_tab_wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 24px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
  }
  .introduction_tab-menu {
    width: 120px;
  }
  .introduction_tab-menu_btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
    background-color: transparent;
    border: none;
    border-radius: 30px;
    font-size: clamp(16px, 0.94vw, 18px);
    line-height: clamp(24px, 1.46vw, 28px);
    font-weight: 500;
  }
  .introduction_tab-menu_item.active .introduction_tab-menu_btn {
    font-weight: 500;
  }
  .introduction_content_item  {
    gap: 16px;
  }

  .sc__linkboost {
    padding: 60px 0 60px;
  }
  .sc__linkboost-inner{
    flex-direction: column;
    gap: 40px;

  }
  .linkboost_content_box {
    text-align: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .sc__why_backlinkbot {
    padding: 60px 0;
  }
  .why_backlinkbot_title_wrap_desc_sub {
    margin-top: 20px;
  }
  .why_backlinkbot_content_wrap {
    gap: 14px;
    margin-top: 20px;
  }
  .sc__choose_reason {
    padding: 60px 0 120px;
  }
  .sc__choose_reason-inner {
    gap: 30px;
  }
  .choose_reason_card {
    padding: 28px 16px;
    padding-bottom: 120px;
  }
  .choose_reason_card_desc {
    word-break: keep-all;
  }
  .sc__achievements {
    padding: 60px 0 80px;
  }

  .sc__contact {
    padding: 50px 0 50px;
  }

  /* 주문하기 폼 */

  .order-content-wrap {
    flex: 1;
    background-color: #F1F3F7;
    border-radius: 24px;
    padding: 16px;
    width: 95%;
    margin: 0 auto;
  }
  .order-tab-menu-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 8px;
  }

  .order-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }

  .order-content-wrapper {
    align-items: flex-start;
    gap: 12px;
    height: 100%;
    min-height: 0;

    flex-direction: column;
    width: 100%;
  }
  .order-content-wrapper > div {
    flex: 0 1 auto;
  }

  .order-product-title {
    margin-top: 24px;
  }

  /* SEO 서비스  */
  .order-plans-inner {
    align-items: center;
  }

  .order-backlink-hero-inner {
    text-align: center;
  }
  .sc__order-backlink-hero {
    padding: 40px 0;
  }
  .sc__order-plans {
    padding: 44px 0 44px;
  }
  .order-plans-list {
    flex-direction: column;
    width: 100%;
  }
  .order-plan-card  {
    width: 100%;
  }
  .sc__order-plans .best-badge {
    position: absolute;
    top: 24px;
    right: 24px;
  }
  .order-plan-card-desc-list .order-plan-card-desc-item span {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sc__order-plans .price-wrap {
    display: flex;
    gap: 10px;
    align-items: flex-end;
  }
  .sc__order-plans .price-wrap-value {
    line-height: 1.2;
  }
  .order-plan-card-desc-item p {
    font-size: 15px;
  }

  .order-content-title {
    flex-direction: column;
    align-items: center;
  }

  .point-charge-page {
    padding: calc(var(--header-height) + 24px) 0 36px;
  }
  .point__form_charge-amount_total {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: auto;
    border-radius: 10px;
    gap: 8px;
}
.point__form_charge-amount_total_charge-amount, .point__form_charge-amount_total_total-price {
  width: 100%;
  max-width: none;
}
.point__info {
  width: 35%;
}

.charge-option {
  padding: 12px;
}


}



@media (max-width: 768px) {
  .page {
    padding: calc(var(--header-height) + 0px) 0 0px;
  }

  .introduction_tab_wrap {
    flex-direction: column;
    padding: 24px 16px;
    gap: 30px;
  }
  .introduction_tab-menu {
    width: 100%;
  }

  .introduction_tab-menu_list {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .introduction_tab-menu_btn {
    padding: 4px 24px;
  }
.introduction_content_item  {
  word-break: keep-all;
}
.introduction_content_wrap {
  width: 100%;
}
  .linkboost_content_box_desc {
    word-break: keep-all;
    width: 82%;
    text-align: left;
  }
  .need_content_wrap_item_title {
    text-align: left;
  }

  .need_content_wrap {
    grid-template-columns: repeat(1, 1fr);
  }
  
  .why_backlinkbot_content_wrap {
    flex-direction: column;
    width: 100%;
  }


  .why_backlinkbot_content_wrap_item {
    display: flex;
    align-items: center;
    width: 100%;
  }

  .why_backlinkbot_content_case {
    padding: 0;
  }

  .why_backlinkbot_content_case_text {
    text-align: left;
  }

  .why_backlinkbot_title_wrap_desc_sub {
    text-align: center;
  }


  .why_backlinkbot_title_wrap_desc_sub br {
    display: block;
  }

  .achievements_stats {
    flex-direction: column;
  }

  .achievements_stat_item:not(:last-child)::after {
    display: none;
  }
  .isotope__card {
    width: 100%;
    margin: 0;
}
  
  /* choose_reason 그리드 */
  .choose_reason_grid {
    grid-template-columns: 1fr;
  }
  .choose_reason_card_title {
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: clamp(24px, 1.67vw, 32px);
  }

  /* Footer */
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    flex-wrap: wrap;
  }

  /* 서비스 페이지 */
  .service_hero-inner {
    flex-direction: column;
    text-align: center;
  }
  .service_hero-media {
    width: 100%;
    max-width: 420px;
  }
  .service_features-inner {
    grid-template-columns: 1fr;
  }
  .service_products-inner {
    grid-template-columns: 1fr;
  }

  /* 보고서 팝업 */
  .report-modal-content {
    width: 95%;
    max-height: 95vh;
    margin: 2.5vh auto;
  }

  .report-modal-header {
    padding: 20px 24px;
  }

  .report-modal-title {
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: clamp(24px, 1.67vw, 32px);
  }

  .report-modal-body {
    padding: 24px;
  }

  .report-order-info {
    flex-direction: column;
    gap: 16px;
  }

  .report-table {
    font-size: 14px;
  }

  .report-table th,
  .report-table td {
    padding: 12px;
    font-size: 14px;
  }
  .why_backlinkbot_content_wrap_item {
    border-radius: 12px;
    background-color: #242424;
    width: 100%;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  
  .why_backlinkbot_content_wrap_item_img {
    width: 24px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .why_backlinkbot_content_case_text {
    font-size: clamp(16px, 1.04vw, 20px);
    line-height: clamp(24px, 1.67vw, 32px);
  }
  .contact_title_wrap_desc br {
    display: block;
  }
  
  /* 카루셀 반응형 - 모바일 */
  .sc__overview {
    padding: 80px 0;
  }
  
  .sc__overview_title_wrap {
    margin-bottom: 40px;
    gap: 16px;
  }
  
  .overview_carousel_btn {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
  }
  
  .category_btn_wrap {
    width: 100%;
    gap: 12px;
    flex-wrap: wrap;
  }

  .order-form-toggle-label[data-tooltip] {
    cursor: default;
  }
  
  .order-form-toggle-label[data-tooltip]:hover::after,
  .order-form-toggle-label[data-tooltip]:hover::before {
    display: none;
  }

  .carousel_btn {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .carousel_move_btn_wrap {
    align-self: flex-end;
  }
  
  .overview_carousel_card {
    width: calc((100% - 16px) / 1.5);
    padding: 16px 16px;
    padding-bottom: 0;
  }
  
  .overview_carousel_wrap {
    gap: 12px;
  }
  
  .carousel_card__category {
    font-size: 16px;
    margin-bottom: 6px;
  }
  
  .carousel_card__title {
    font-size: 20px;
    line-height: 1.4;
  }
  
  .carousel_card__img {
    margin-top: 20px;
    outline: 8px solid #F2F6FF;
  }

  .point-charge_title {
    margin-top: 24px;
  }
  .point-charge_content_wrap {
    margin-bottom: 48px;

    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-top: 20px;
  }
  .point__form_charge-amount_buttons {
    grid-template-columns: repeat(2, 1fr);
  }
  .point__info {
    width: 100%;
    max-width: none;
  }
  .sc__faq {
    padding: 24px 0 48px;
  }
  .faq_list {
    width: 100%;
    padding: 16px 8px;
    margin-top: 16px;
  }
  .faq_desc {
    padding: 16px 24px;
  }

  .carousel_move_btn_wrap {
    display: none;
  }
  .category_btn_wrap {
    justify-content: center;
  }

  .strategy_content_wrap_item {
    flex-direction: column;
  }
  .strategy_content_wrap_item:nth-child(even) {

    flex-direction: column;

  }

  .strategy_content_wrap_item_img {
    width: 100%;
    max-width: none;
  }
  .strategy_content_wrap_item_content {
    width: 100%;
    text-align: center;
    word-break: keep-all;
  }

  /* 768px 이하에서 호버 효과 제거 */
  .carousel_btn:hover {
    color: #cdcdcd;
  }

}

@media (max-width: 420px) {
  .sc__hero {
    min-height: 100dvh;
    padding: 60px 0;
  }
}

.tooltip-trigger {
  background: transparent;
  border: none;
  padding: 0;
  margin-left: 4px;
  cursor: pointer;
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.tooltip-trigger svg {
  display: block;
}
.tooltip-trigger::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 8px;
  border-radius: 4px;
  white-space: pre-wrap;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease;
  width: 240px;
  text-align: left;
  z-index: 10;
  font-weight: 400;
}
.tooltip-trigger:focus-visible::after,
.tooltip-trigger:hover::after {
  opacity: 1;
}