/* ============================================
   component.css — 부동산 내편 통합 반응형 스타일시트
   Modern Redesign: Desktop-first
   Breakpoints: Tablet ~1199px / Mobile ~767px
============================================ */

/* ============================================
   Design System — CSS Variables
============================================ */
:root {
  --main: #14dd9a;
  --main-dark: #0fbb82;
  --main-light: #e9fbf6;
  --main-gradient: linear-gradient(135deg, #14dd9a 0%, #0fbb82 100%);

  --text-primary: #1a1a2e;
  --text-secondary: #4a4a68;
  --text-muted: #8888a0;

  --bg-primary: #ffffff;
  --bg-section: #f7f8fc;
  --bg-section-alt: #f0f4f3;
  --bg-glass: rgba(255, 255, 255, 0.72);
  --bg-glass-strong: rgba(255, 255, 255, 0.88);

  --border-light: rgba(0, 0, 0, 0.06);
  --border-glass: rgba(255, 255, 255, 0.3);

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.10);
  --shadow-glow: 0 0 40px rgba(20, 221, 154, 0.15);
  --shadow-glow-strong: 0 0 60px rgba(20, 221, 154, 0.25);

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1140px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
}

/* ============================================
   Global / Base
============================================ */
html {
  scroll-behavior: smooth;
}

body {
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

main {
  margin: 0 auto;
  overflow-x: hidden;
  padding-top: 65px;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   Scroll Animation System
============================================ */
[data-animate] {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-animate="fade-up"] {
  transform: translateY(40px);
}

[data-animate="fade-in"] {
  transform: none;
}

[data-animate="slide-left"] {
  transform: translateX(60px);
}

[data-animate="slide-right"] {
  transform: translateX(-60px);
}

[data-animate="scale-in"] {
  transform: scale(0.92);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================
   Utility Classes
============================================ */
.text-bold {
  font-weight: 700;
}

.text-highlight {
  color: var(--main);
}

.reverse {
  flex-direction: row-reverse;
}

/* Responsive visibility */
.pc-only {
  display: inline;
}

img.pc-only,
div.pc-only,
picture.pc-only {
  display: block;
}

.mo-only {
  display: none;
}

/* ============================================
   Container
============================================ */
.cont__inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-md);
  text-align: center;
}

.cont__title {
  font-size: 38px;
  line-height: 1.45;
  font-weight: 800;
  text-align: center;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  color: var(--text-primary);
  word-break: keep-all;
}

.cont__title-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  font-weight: 400;
}

/* ============================================
   Header / Navigation
============================================ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
}

header.scrolled {
  background: var(--bg-glass-strong);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  padding: 16px var(--space-md);
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.logo {
  margin-right: auto;
  flex-shrink: 0;
}

.logo-link {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: opacity var(--transition-fast);
}

.logo-link:hover {
  opacity: 0.8;
}

.logo-link img {
  display: block;
  height: 26px;
  width: auto;
}

/* Hamburger Menu Toggle (hidden on desktop) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: background var(--transition-fast);
  z-index: 110;
  flex-shrink: 0;
}

.menu-toggle:hover {
  background: var(--border-light);
}

.menu-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-smooth), opacity var(--transition-fast);
}

/* Hamburger → X animation when active */
.menu-toggle.is-active .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Navbar */
.navbar {
  margin-right: var(--space-md);
  flex-shrink: 0;
}

.navbar__store-links {
  display: none;
}

.navbar__list {
  display: flex;
  gap: 28px;
  list-style: none;
}

.navbar__item {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  padding: var(--space-xs) 0;
  white-space: nowrap;
}

.navbar__link {
  position: relative;
  text-decoration: none;
  color: inherit;
  padding-bottom: 4px;
  transition: color var(--transition-fast);
}

.navbar__link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--main);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--transition-smooth);
}

.navbar__link:hover {
  color: var(--main-dark);
}

.navbar__link:hover::after {
  transform: scaleX(1);
}

/* Store buttons (header) */
.external-links__wrap {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.external-link {
  display: inline-block;
  height: 32px;
  border-radius: var(--radius-xs);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  background-color: #e7fcf5;
}

.external-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.external-link img {
  height: 100%;
  width: auto;
  display: block;
}

/* Menu overlay backdrop (tablet/mobile) */
.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.menu-overlay.is-visible {
  opacity: 1;
}

/* ============================================
   Visual / Hero Section
============================================ */
.visual_wrap {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(160deg, #ffffff 0%, var(--main-light) 50%, #ffffff 100%);
}

.visual_wrap .cont__inner {
  display: flex;
  align-items: center;
  text-align: left;
  gap: var(--space-xl);
  padding-top: 80px;
  padding-bottom: 80px;
}

.visual_cont {
  text-align: left;
  flex: 1;
}

.visual_tle {
  font-size: 48px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
  color: var(--text-primary);
  word-break: keep-all;
}

.visual_photo {
  position: relative;
  flex: 0 0 auto;
  width: 38%;
  max-width: 480px;
}

.visual_photo img.pc-only {
  width: 100%;
  border-radius: var(--radius-lg);
}

.visual_photo-img {
  width: 100%;
  display: none;
}

.visual_photo-bg {
  position: absolute;
  top: 15vh;
  right: 10vw;
  width: 35vw;
  aspect-ratio: 719 / 560;
  background-image: url("../images/visual_photo2.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
  border-radius: var(--radius-lg);
}

.award-badge {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.award-badge img {
  border-radius: var(--radius-sm);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.award-badge {
  animation: float 4s ease-in-out infinite;
}

.subtitle {
  display: flex;
  align-items: center;
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

.subtitle-logo {
  max-width: 140px;
}

.subtitle-logo__wrap {
  margin-left: var(--space-xs);
}

.mainLink-wrap {
  display: flex;
  gap: var(--space-xs);
  flex-wrap: wrap;
}

.mainLink__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  color: var(--main);
  text-align: center;
  text-decoration: none;
  border: 2px solid var(--main);
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.mainLink__more:hover {
  background: var(--main-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.mainLink__more-counseling {
  color: #fff;
  background: var(--main-gradient);
  border-color: transparent;
}

.mainLink__more-counseling:hover {
  background: linear-gradient(135deg, #0fbb82 0%, #0da876 100%);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

/* Scroll Down Indicator */
.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: absolute;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 10;
  transition: opacity var(--transition-smooth);
}

.scroll-down__text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.scroll-down__arrow {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-down__arrow svg {
  width: 24px;
  height: 24px;
  stroke: var(--main);
  stroke-width: 2.5;
  fill: none;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.4;
  }
}

/* ============================================
   Pain Quotes Section
============================================ */
.visual02 {
  background: var(--bg-section);
  border-radius: 0;
  max-width: 100%;
  padding: var(--space-2xl) var(--space-md);
}

.visual02 .cont__inner {
  padding: 0;
}

.pain-quotes__wrap {
  display: flex;
  gap: var(--space-lg);
  align-items: center;
  margin-bottom: var(--space-lg);
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.pain-quotes__photo {
  max-width: 420px;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.pain-quotes__list {
  flex: 1;
}

.pain-quotes__item {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--main);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pain-quotes__item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.pain-quotes__item:last-child {
  margin-bottom: 0;
}

.pain-quotes_footer {
  position: relative;
  padding: 80px 0 0;
  text-align: center;
}

.pain-quotes_footer::before {
  display: block;
  content: "";
  position: absolute;
  width: 2px;
  height: 48px;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-gradient);
  border-radius: 1px;
}

.pain-quotes__question {
  position: relative;
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.5;
  text-align: center;
}

.pain-quotes__question::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 10px;
  background: var(--main-light);
  z-index: -1;
  border-radius: 2px;
}

/* ============================================
   Review Section
============================================ */
.review-chat__list {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  max-width: 960px;
  margin: 0 auto;
}

.review-chat__item {
  position: relative;
  width: 50%;
  max-width: 400px;
}

.review-chat__box {
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.review-chat__box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.review-chat__box img {
  width: 100%;
  display: block;
}

.chat02::after {
  display: block;
  content: "";
  position: absolute;
  width: 140px;
  height: 96px;
  top: -36px;
  right: -72px;
  background-image: url(../images/review_highlight.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.hashTag_item {
  display: inline-block;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-primary);
  box-shadow: var(--shadow-xs);
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.hashTag_item:hover {
  background: var(--main-light);
  color: var(--main-dark);
}

.hashTag_item+.hashTag_item {
  margin-left: var(--space-xs);
}

.hashTag {
  margin-top: var(--space-sm);
  text-align: left;
}

/* Real Reviews */
.review-real__list {
  max-width: 800px;
  margin: 0 auto;
}

.review-real__item {
  margin-bottom: var(--space-lg);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.review-real__user {
  text-align: center;
  flex-shrink: 0;
}

.review-real__user-profile {
  position: relative;
  width: 100px;
  height: 84px;
  border-radius: 50%;
  border: 3px solid var(--main);
  margin-bottom: var(--space-sm);
  background: var(--main-light);
  object-fit: cover;
  box-shadow: var(--shadow-glow);
}

.review-real__user-type {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
}

.review-real__cont {
  position: relative;
  background: var(--bg-glass-strong);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.review-real__cont:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.review-real__cont::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid var(--bg-glass-strong);
}

.reverse .review-real__cont::after {
  right: -10px;
  left: initial;
  border-right: none;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 12px solid var(--bg-glass-strong);
}

.review-real__commentTle {
  color: var(--main-dark);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
}

.review-real__comment {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.review-real__comment .text-bold {
  color: var(--text-primary);
  font-weight: 600;
}

/* ============================================
   Service Section
============================================ */
.service_wrap {
  background: var(--bg-section);
}

.solution_point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.solution_point:last-child,
.service-step:last-child {
  margin-bottom: 0;
}

.point_image {
  width: 200px;
  flex-shrink: 0;
}

.point_image img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth);
}

.point_image img:hover {
  transform: scale(1.03);
}

.point02_image {
  width: 260px;
}

.point-content__subTle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.point-content__tle {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  background: var(--main-gradient);
  padding: 12px var(--space-md);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  box-shadow: var(--shadow-glow);
}

.point-content__list {
  text-align: left;
}

.point-content__item {
  display: flex;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.point-content__item::before {
  display: inline-block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  margin-top: 3px;
  content: "";
  background: url(../images/ico_check.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* Service Process Steps */
.service_process {
  background: var(--bg-primary);
}

.service-step__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  max-width: 900px;
  margin: 0 auto;
}

.service-step {
  position: relative;
  background: var(--bg-primary);
  padding: 52px var(--space-md) var(--space-md);
  box-sizing: border-box;
  text-align: left;
  word-break: keep-all;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.service-step:hover {
  border-color: var(--main);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  transform: translateY(-4px);
}

/* Step connectors — simplified for modern look */
.service-step::after,
.service-step::before {
  display: none;
}

.step05 {
  grid-column: 1 / -1;
}

.step_head {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.step_icon {
  position: absolute;
  right: var(--space-md);
  top: -16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--main-gradient);
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

.step_icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
}

.step_num {
  position: absolute;
  width: 72px;
  height: 30px;
  line-height: 30px;
  top: 0;
  left: var(--space-md);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: var(--main-gradient);
}

.step_tle {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.step_sub {
  font-size: 14px;
  color: var(--text-muted);
}

.step_desc {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   Reason / Why Section
============================================ */
.user-type__wrap {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  align-items: center;
}

.user-type__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.user-type__item {
  width: fit-content;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: var(--space-sm);
  padding: 14px var(--space-md);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  box-shadow: var(--shadow-sm);
  border-left: 3px solid transparent;
  transition: all var(--transition-fast);
}

.user-type__item:hover {
  border-left-color: var(--main);
  background: var(--main-light);
  transform: translateX(4px);
}

.user-type__item:last-child {
  margin-bottom: 0;
}

.user-type_photo {
  width: 480px;
  flex-shrink: 0;
}

.user-type_photo img {
  border-radius: var(--radius-md);
}

/* Compare boxes */
.compare-box__wrap {
  margin-bottom: var(--space-lg);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--space-md);
}

.compare__box {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  flex: 1;
  max-width: 420px;
  transition: transform var(--transition-fast);
}

.compare__box:hover {
  transform: translateY(-4px);
}

.old-deal {
  color: var(--text-muted);
  background: var(--bg-section);
  border: 1px solid var(--border-light);
}

.old-deal .compare-box__list {
  font-size: 15px;
}

.old-deal .compare-box__item {
  padding: 14px var(--space-sm);
  border-bottom: 1px solid var(--border-light);
}

.old-deal .compare-box__tle {
  color: var(--text-muted);
  font-size: 20px;
  font-weight: 700;
  padding: var(--space-sm);
}

.new-deal {
  background: var(--bg-primary);
  border: 2px solid var(--main);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.new-deal .compare-box__list {
  font-size: 16px;
}

.new-deal .compare-box__item {
  padding: 16px var(--space-sm);
  font-weight: 600;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-primary);
}

.new-deal .compare-box__tle {
  color: var(--main-dark);
  font-size: 22px;
  font-weight: 800;
  padding: var(--space-sm);
}

.compare-box__item:last-child {
  border-bottom: none;
}

.compare__footer {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-secondary);
}

.compare__footer::before {
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 6px;
  content: "";
  background: url(../images/ico_check.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

/* ============================================
   FAQ Section
============================================ */
.faq_wrap {
  background: var(--bg-section);
}

.faq_wrap .cont__inner {
  max-width: 860px;
}

.faq_list {
  text-align: initial;
}

.faq_item {
  margin-bottom: var(--space-xs);
  border-radius: var(--radius-sm);
  background: var(--bg-primary);
  border: 1px solid var(--border-light);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq_item:hover {
  border-color: rgba(20, 221, 154, 0.3);
}

.faq_item.active {
  border-color: var(--main);
  box-shadow: var(--shadow-sm), 0 0 20px rgba(20, 221, 154, 0.08);
}

.faq_question {
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  padding: 18px var(--space-md);
  color: var(--text-secondary);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-fast);
}

.faq_question:hover {
  color: var(--text-primary);
}

.faq_item.active .faq_question {
  color: var(--text-primary);
}

.faq_answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-smooth), padding var(--transition-smooth);
  padding: 0 var(--space-md);
}

.faq_item.active .faq_answer {
  max-height: 400px;
  padding: 0 var(--space-md) var(--space-md);
}

.faq_answer__txt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

.faq_answer__txt__small {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  padding: 2px 0;
}

.faq_answer__txt__small:first-child {
  padding-top: var(--space-sm);
  border-top: 1px solid var(--border-light);
}

.icon {
  font-size: 1.2rem;
  transition: transform var(--transition-smooth);
  flex-shrink: 0;
  color: var(--text-muted);
}

.faq_item.active .icon {
  transform: rotate(180deg);
  color: var(--main);
}

/* ============================================
   Counseling CTA Section
============================================ */
.counseling__wrap {
  position: relative;
  text-align: center;
  padding: var(--space-2xl) var(--space-md);
  overflow: hidden;
}

.counseling__wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.25) 100%);
  z-index: 0;
}

.counseling__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  object-fit: cover;
}

.counseling-ment {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  word-break: keep-all;
}

.counseling-btn {
  position: relative;
  z-index: 1;
  font-size: 16px;
  font-weight: 700;
  display: inline-block;
  padding: 16px 36px;
  color: var(--main-dark);
  text-decoration: none;
  border-radius: var(--radius-full);
  background: #fff;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-fast);
}

.counseling-btn:hover {
  background: var(--main);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), var(--shadow-glow-strong);
}

/* ============================================
   Footer
============================================ */
footer {
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
}

.footer_inner {
  text-align: initial;
}

.footer_logo {
  margin-bottom: var(--space-lg);
}

.footer_logo img {
  height: 24px;
  width: auto;
  opacity: 0.7;
}

.footer-company_list {
  margin-bottom: var(--space-lg);
}

.footer-company_item {
  color: var(--text-secondary);
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.footer-company_item .label {
  font-weight: 700;
  margin-right: 10px;
  color: var(--text-primary);
}

.footer-links_list {
  display: flex;
  margin-bottom: var(--space-lg);
  gap: 0 var(--space-md);
}

.footer_links-item {
  display: flex;
  gap: 10px;
}

.footer_links-item a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer_links-item a:hover {
  color: var(--main-dark);
}

.footer-links_list>li:not(:nth-last-of-type(1))::after {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: var(--border-light);
}

.footer_address {
  font-style: normal;
  margin-bottom: var(--space-lg);
  color: var(--text-muted);
  font-size: 13px;
}

.footer_copy {
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================
   Floating Button (Kakao)
============================================ */
.floating_btn {
  position: fixed;
  right: 32px;
  bottom: 32px;
  font-weight: 700;
  z-index: 10;
  border-radius: var(--radius-full);
  background: #fae100;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all var(--transition-fast);
  width: 60px;
  height: 60px;
}

.floating_btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(250, 225, 0, 0.3);
}

.floating_btn.hide {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.8);
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(250, 225, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(250, 225, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(250, 225, 0, 0);
  }
}

.floating_btn {
  animation: pulse-ring 2.5s infinite;
}

.floating_btn:hover {
  animation: none;
}

.floating_btn-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.floating_btn-ico {
  width: 28px;
  height: 28px;
}

.floating_btn-txt {
  display: none;
}

/* ============================================
   Legal Pages (개인정보처리방침, 이용약관 등)
============================================ */
.number {
  padding-left: 24px;
}

.number>li {
  list-style-type: decimal;
}

.disc {
  padding-left: 24px;
}

.disc>li {
  list-style-type: disc;
}

.dash {
  padding-left: 0;
}

.dash>li {
  padding-left: 12px;
  position: relative;
}

.dash>li::before {
  content: "-";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.right-triangle {
  padding-left: 0;
}

.right-triangle>li {
  padding-left: 26px;
  position: relative;
}

.right-triangle>li::before {
  content: "▶";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.circle-number {
  list-style: none;
  counter-reset: circle-counter;
  padding-left: 0;
}

.circle-number>li {
  counter-increment: circle-counter;
  padding-left: 24px;
  position: relative;
}

.circle-number>li::before {
  content: "①";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.circle-number>li:nth-child(1)::before {
  content: "①";
}

.circle-number>li:nth-child(2)::before {
  content: "②";
}

.circle-number>li:nth-child(3)::before {
  content: "③";
}

.circle-number>li:nth-child(4)::before {
  content: "④";
}

.circle-number>li:nth-child(5)::before {
  content: "⑤";
}

.circle-number>li:nth-child(6)::before {
  content: "⑥";
}

.circle-number>li:nth-child(7)::before {
  content: "⑦";
}

.circle-number>li:nth-child(8)::before {
  content: "⑧";
}

.circle-number>li:nth-child(9)::before {
  content: "⑨";
}

.circle-number>li:nth-child(10)::before {
  content: "⑩";
}

.right-circle-number {
  list-style: none;
  counter-reset: circle-counter;
  padding-left: 0;
}

.right-circle-number>li {
  counter-increment: circle-counter;
  padding-left: 24px;
  position: relative;
}

.right-circle-number>li::before {
  content: "①";
  position: absolute;
  left: 0;
  font-weight: bold;
}

.right-circle-number>li:nth-child(1)::before {
  content: "1)";
}

.right-circle-number>li:nth-child(2)::before {
  content: "2)";
}

.right-circle-number>li:nth-child(3)::before {
  content: "3)";
}

.right-circle-number>li:nth-child(4)::before {
  content: "4)";
}

.right-circle-number>li:nth-child(5)::before {
  content: "5)";
}

.right-circle-number>li:nth-child(6)::before {
  content: "6)";
}

.right-circle-number>li:nth-child(7)::before {
  content: "7)";
}

.right-circle-number>li:nth-child(8)::before {
  content: "8)";
}

.right-circle-number>li:nth-child(9)::before {
  content: "9)";
}

.right-circle-number>li:nth-child(10)::before {
  content: "10)";
}

.hangul-custom {
  list-style: none;
  padding-left: 0;
}

.hangul-custom>li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 0.8em;
}

.hangul-custom>li::before {
  position: absolute;
  left: 0;
  font-weight: bold;
}

.hangul-custom>li:nth-child(1)::before {
  content: "가. ";
}

.hangul-custom>li:nth-child(2)::before {
  content: "나. ";
}

.hangul-custom>li:nth-child(3)::before {
  content: "다. ";
}

.hangul-custom>li:nth-child(4)::before {
  content: "라. ";
}

.hangul-custom>li:nth-child(5)::before {
  content: "마. ";
}

.hangul-custom>li:nth-child(6)::before {
  content: "바. ";
}

.hangul-custom>li:nth-child(7)::before {
  content: "사. ";
}

.hangul-custom>li:nth-child(8)::before {
  content: "아. ";
}

.hangul-custom>li:nth-child(9)::before {
  content: "자. ";
}

.hangul-custom>li:nth-child(10)::before {
  content: "차. ";
}

.hangul-custom>li:nth-child(11)::before {
  content: "카. ";
}

.hangul-custom>li:nth-child(12)::before {
  content: "타. ";
}

.hangul-custom>li:nth-child(13)::before {
  content: "파. ";
}

.hangul-custom>li:nth-child(14)::before {
  content: "하. ";
}

.legal_header {
  background: #ffffff;
}

.legal_header .navbar {
  margin-right: 0;
}

.legal_header .navbar__link::after {
  display: none;
}

.legal_section {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px var(--space-md);
}

.legal_section * {
  color: #333333;
}

.legal__1wrap {
  margin-top: 80px;
  border-top: 2px solid #000000;
}

.legal__2wrap {
  margin-top: 60px;
  border-top: 1px solid #999999;
}

.legal__1tit {
  padding-top: 53px;
  font-size: 20px;
}

.legal__2tit {
  padding-top: 53px;
  font-size: 16px;
}

.legal-tit_subject {
  color: var(--main);
  margin: 0;
  padding-top: 53px;
}

.legal-desc {
  margin: 0;
  padding-top: 18px;
  line-height: 26px;
  color: #666666;
}

.legal-list_1depth {
  margin: 0;
}

.legal-list_1depth>li {
  margin: 0;
  padding-top: 18px;
  color: #666666;
  line-height: 26px;
}

.legal-list_2depth {
  margin: 0;
}

.legal-list_2depth>li {
  margin: 0;
  padding-top: 18px;
  color: #666666;
  line-height: 26px;
}

.legal-list_3depth {
  margin: 0;
}

.legal-list_3depth>li {
  margin: 0;
  padding-top: 18px;
  font-size: 14px;
  color: #666666;
  line-height: 26px;
}

.legal-table {
  margin-top: 30px;
  box-sizing: border-box;
  border-collapse: collapse;
  border: 1px solid #37352f17;
  width: 100%;
}

.legal-table th {
  box-sizing: border-box;
  border: 1px solid #37352f17;
  padding: 5px 10px;
  background-color: #333333;
  color: #fafafa;
  font-size: 14px;
  line-height: 26px;
}

.legal-table td {
  box-sizing: border-box;
  border: 1px solid #37352f17;
  padding: 5px 10px;
  font-size: 14px;
  line-height: 26px;
}

.legal-table td:nth-of-type(1) {
  width: fit-content;
}

/* ============================================
   TABLET RESPONSIVE (768px ~ 1199px)
============================================ */
@media (max-width: 1199px) {

  /* Header — hamburger menu for tablet */
  .menu-toggle {
    display: flex;
  }

  .external-links__wrap {
    display: none;
  }

  .navbar {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--bg-primary);
    box-shadow: var(--shadow-lg);
    z-index: 105;
    margin-right: 0;
    padding: 80px var(--space-md) var(--space-lg);
    flex-direction: column;
    transition: right var(--transition-smooth);
    overflow-y: auto;
  }

  .navbar.is-open {
    right: 0;
  }

  .navbar__list {
    flex-direction: column;
    gap: 0;
  }

  .navbar__item {
    font-size: 17px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .navbar__link::after {
    display: none;
  }

  .navbar__store-links {
    display: flex;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
  }

  .navbar__store-links .external-link {
    height: 36px;
  }

  .menu-overlay {
    display: block;
    pointer-events: none;
  }

  .menu-overlay.is-visible {
    pointer-events: auto;
  }

  .header__inner {
    max-width: 100%;
    padding: 14px var(--space-sm);
  }

  .cont__inner {
    padding: 80px var(--space-sm);
  }

  .visual_wrap .cont__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .visual_tle {
    font-size: 38px;
  }

  .visual_photo {
    width: 35%;
  }

  .faq_wrap .cont__inner {
    max-width: 100%;
  }

  .legal_section {
    padding: 30px var(--space-sm);
  }

  .legal-table {
    width: 100%;
    table-layout: fixed;
    word-break: keep-all;
  }

  .user-type_photo {
    width: 380px;
  }

  .service-step__wrap {
    max-width: 100%;
  }
}

/* ============================================
   MOBILE RESPONSIVE (~767px)
============================================ */
@media (max-width: 767px) {

  /* Show/hide responsive elements */
  .pc-only {
    display: none !important;
  }

  .mo-only {
    display: inline;
  }

  img.mo-only,
  div.mo-only,
  picture.mo-only {
    display: block;
  }

  /* Header / Navigation */
  header {
    position: fixed;
    background: var(--bg-primary);
    backdrop-filter: none;
    border-bottom: 1px solid var(--border-light);
  }

  .header__inner {
    padding: 12px var(--space-sm);
  }

  .logo {
    width: 100px;
  }

  .logo-link img {
    height: 20px;
    width: auto;
  }

  /* Navbar: slide-out panel (inherited from tablet breakpoint) */
  .navbar {
    width: 260px;
    padding: 70px var(--space-sm) var(--space-lg);
  }

  .navbar__item {
    font-size: 16px;
    padding: 14px 0;
  }

  .navbar__store-links .external-link {
    height: 32px;
  }

  /* Container */
  .cont__inner {
    padding: var(--space-xl) var(--space-sm) var(--space-lg);
  }

  .cont__title {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }

  .cont__title-sub {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: var(--space-md);
  }

  /* Visual / Hero */
  .visual_wrap {
    min-height: auto;
  }

  .visual_wrap .cont__inner {
    flex-direction: column;
    text-align: center;
    padding: var(--space-lg) var(--space-sm);
    gap: var(--space-md);
  }

  .visual_cont {
    text-align: center;
  }

  .visual_tle {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: var(--space-sm);
  }

  .visual_photo {
    width: 60%;
    max-width: 240px;
    margin: 0 auto;
  }

  .visual_photo img.pc-only {
    display: none !important;
  }

  .visual_photo-img {
    display: block;
    width: 100%;
    max-width: 100%;
    border-radius: var(--radius-md);
  }

  .award-badge {
    width: 200px;
    margin: 0 auto var(--space-sm);
    animation-duration: 5s;
  }

  .subtitle {
    font-size: 15px;
    margin: 0 auto var(--space-sm);
    display: block;
    text-align: center;
  }

  .subtitle-logo__wrap {
    margin-top: 12px;
    margin-left: 0;
    width: 110px;
    display: inline-block;
  }

  .mainLink-wrap {
    justify-content: center;
  }

  .mainLink__more {
    min-width: 130px;
    padding: 12px var(--space-sm);
    font-size: 14px;
  }

  .scroll-down {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: var(--space-md) auto 0;
  }

  /* Pain Quotes */
  .visual02 {
    padding: var(--space-xl) var(--space-sm);
  }

  .pain-quotes__wrap {
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .pain-quotes__photo {
    max-width: 280px;
    margin: 0 auto var(--space-sm);
  }

  .pain-quotes__item {
    font-size: 14px;
    padding: 12px var(--space-sm);
    margin-bottom: var(--space-xs);
  }

  .pain-quotes_footer {
    padding: 56px 0 0;
  }

  .pain-quotes_footer::before {
    height: 32px;
    top: 10px;
  }

  .pain-quotes__question {
    font-size: 16px;
    line-height: 1.5;
    word-break: keep-all;
  }

  .pain-quotes__question::after {
    bottom: -3px;
    height: 8px;
  }

  /* Review */
  .review-chat__list {
    flex-direction: column;
    gap: var(--space-sm);
    align-items: center;
  }

  .review-chat__item {
    width: 240px;
    margin: 0 auto;
  }

  .chat02::after {
    display: none;
  }

  .chat01::after {
    display: block;
    content: "";
    position: absolute;
    width: 80px;
    height: 56px;
    top: -12px;
    right: -36px;
    background-image: url(../images/review_highlight.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
  }

  .hashTag_item {
    padding: 6px 12px;
    font-size: 13px;
  }

  .hashTag {
    margin: var(--space-xs) 0;
    text-align: center;
  }

  .review-real__item {
    margin-bottom: var(--space-md);
    flex-direction: column-reverse;
    gap: var(--space-sm);
  }

  .review-real__item:last-child {
    margin-bottom: 0;
  }

  .review-real__user-profile {
    width: 72px;
    height: 60px;
    margin: 0 auto var(--space-xs);
  }

  .review-real__user-type {
    font-size: 13px;
  }

  .review-real__cont {
    padding: var(--space-sm);
  }

  .review-real__cont::after {
    top: auto;
    bottom: -10px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    border-top: 10px solid var(--bg-glass-strong);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: none;
  }

  .reverse .review-real__cont::after {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    border-top: 10px solid var(--bg-glass-strong);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: none;
  }

  .review-real__commentTle {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .review-real__comment {
    font-size: 14px;
    line-height: 1.6;
  }

  .review-real__comment br {
    display: none;
  }

  /* Service */
  .service01 {
    padding-top: 60px;
  }

  .solution_point {
    flex-direction: column-reverse;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
  }

  .solution_point.reverse {
    flex-direction: column-reverse;
  }

  .point_image {
    width: 180px;
  }

  .point02_image {
    width: 180px;
  }

  .point-content__subTle {
    font-size: 14px;
    margin-bottom: var(--space-xs);
  }

  .point-content__tle {
    font-size: 17px;
    padding: 10px var(--space-sm);
    margin: 0 auto var(--space-sm);
  }

  .point-content__list {
    text-align: center;
  }

  .point-content__item {
    font-size: 14px;
    justify-content: center;
  }

  .point-content__item::before {
    width: 15px;
    height: 15px;
    margin-top: 2px;
  }

  /* Service Steps */
  .service-step__wrap {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .service-step {
    padding: 44px var(--space-sm) var(--space-sm);
    border-radius: var(--radius-md);
  }

  .step05 {
    grid-column: auto;
  }

  .step_icon {
    width: 34px;
    height: 34px;
    top: -12px;
    right: var(--space-sm);
  }

  .step_icon img {
    width: 18px;
    height: 18px;
  }

  .step_num {
    width: 60px;
    height: 26px;
    line-height: 26px;
    left: var(--space-sm);
    font-size: 12px;
    border-radius: 0 0 var(--radius-xs) var(--radius-xs);
  }

  .step_head {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }

  .step_tle {
    font-size: 15px;
    margin-bottom: 4px;
  }

  .step_sub {
    font-size: 13px;
  }

  .step_desc {
    font-size: 14px;
  }

  /* Reason / Why */
  .reason_wrap {
    background: var(--bg-primary);
  }

  .user-type__wrap {
    flex-direction: column-reverse;
    gap: var(--space-md);
  }

  .user-type__item {
    width: 100%;
    font-size: 14px;
    padding: 12px var(--space-sm);
    margin-bottom: var(--space-xs);
  }

  .user-type_photo {
    width: 280px;
    margin: 0 auto;
  }

  .compare-box__wrap {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .compare__box {
    max-width: 100%;
  }

  .old-deal .compare-box__item {
    font-size: 14px;
    padding: 10px;
  }

  .old-deal .compare-box__tle {
    font-size: 17px;
    padding: var(--space-xs);
  }

  .new-deal .compare-box__item {
    font-size: 15px;
    padding: 12px var(--space-xs);
  }

  .new-deal .compare-box__tle {
    font-size: 19px;
    padding: var(--space-xs);
  }

  .compare__footer {
    font-size: 15px;
    margin-bottom: var(--space-md);
    word-break: keep-all;
  }

  .compare__footer::before {
    width: 16px;
    height: 16px;
  }

  /* FAQ */
  .faq_wrap .cont__inner {
    padding-bottom: var(--space-lg);
  }

  .faq_item {
    margin-bottom: 6px;
  }

  .faq_question {
    font-size: 14px;
    padding: 14px var(--space-sm);
  }

  .faq_answer__txt,
  .faq_answer__txt__small {
    font-size: 14px;
    word-break: keep-all;
  }

  .faq_item.active .faq_answer {
    padding: 0 var(--space-sm) var(--space-sm);
  }

  .icon {
    font-size: 1rem;
  }

  /* Counseling CTA */
  .counseling__wrap {
    padding: var(--space-xl) var(--space-sm);
  }

  .counseling-ment {
    font-size: 22px;
    line-height: 1.5;
    margin-bottom: var(--space-md);
  }

  .counseling-btn {
    padding: 14px 28px;
    font-size: 15px;
  }

  /* Footer */
  footer {
    font-size: 12px;
  }

  .footer_inner {
    padding: var(--space-md) var(--space-sm);
  }

  .footer_logo {
    margin-bottom: var(--space-sm);
  }

  .footer-company_list {
    margin-bottom: var(--space-sm);
  }

  .footer-company_item {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .footer-links_list {
    margin-bottom: var(--space-sm);
    gap: 0 var(--space-xs);
    flex-wrap: wrap;
  }

  .footer-links_list>li:not(:nth-last-of-type(1))::after {
    display: none;
  }

  .footer_links-item:first-child {
    position: relative;
  }

  .footer_links-item:first-child::after {
    display: block;
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    left: 107%;
    top: 0;
    background: var(--border-light);
  }

  .footer_address {
    margin-bottom: var(--space-sm);
    font-size: 11px;
  }

  .footer_copy {
    font-size: 11px;
  }

  /* Floating Button */
  .floating_btn {
    right: 16px;
    bottom: 24px;
    width: 48px;
    height: 48px;
  }

  .floating_btn-ico {
    width: 24px;
    height: 24px;
  }

  /* Legal pages */
  .legal_section {
    padding: 20px var(--space-sm);
  }

  .legal__1wrap {
    margin-top: 40px;
  }

  .legal__2wrap {
    margin-top: 30px;
  }

  .legal__1tit {
    padding-top: 30px;
    font-size: 18px;
  }

  .legal__2tit {
    padding-top: 30px;
    font-size: 15px;
  }

  .legal-tit_subject {
    padding-top: 30px;
    font-size: 18px;
  }

  .legal-desc {
    padding-top: 14px;
    font-size: 14px;
    line-height: 22px;
    word-break: keep-all;
  }

  .legal-list_1depth>li,
  .legal-list_2depth>li {
    padding-top: 14px;
    font-size: 14px;
    line-height: 22px;
    word-break: keep-all;
  }

  .legal-list_3depth>li {
    padding-top: 12px;
    font-size: 13px;
    line-height: 20px;
    word-break: keep-all;
  }

  /* 모바일 카드형 테이블 변환 */
  .legal-table {
    width: 100%;
    margin-top: 16px;
    font-size: 13px;
    border: none;
    border-collapse: separate;
    border-spacing: 0 12px;
  }

  .legal-table thead,
  .legal-table tr > th {
    display: none;
  }

  .legal-table tbody,
  .legal-table tr,
  .legal-table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .legal-table tr {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
  }

  .legal-table td {
    border: none;
    padding: 6px 0;
    font-size: 13px;
    line-height: 22px;
    word-break: break-word;
    position: relative;
  }

  .legal-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    font-size: 12px;
    color: #333;
    margin-bottom: 4px;
    padding-bottom: 2px;
  }

  .legal-table td:not(:last-child) {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 10px;
    margin-bottom: 4px;
  }

  /* thead 없이 첫 번째 행이 th인 테이블 처리 */
  .legal-table tr:first-child {
    display: none;
  }

  .number,
  .disc {
    padding-left: 18px;
  }

  .circle-number>li,
  .right-circle-number>li,
  .hangul-custom>li {
    padding-left: 20px;
  }
}