/* ══════════════════════════════════════════════════════════
   가치담다 MARKETING BOOST v1.0
   ① 소셜 프루프 토스트
   ② 비교 테이블 (가치담다 vs 대행사 vs DIY)
   ③ 폼 신뢰 바 + 3단계 진행 바
   ④ 저항 제거 마이크로카피
   ⑤ 폼 실시간 힌트
   ⑥ 컨텍스추얼 CTA (스크롤 깊이별 플로팅)
   ══════════════════════════════════════════════════════════ */

/* ════════════════════════════════════
   ① 소셜 프루프 토스트 알림
   ════════════════════════════════════ */
.sp-toast {
  position: fixed;
  bottom: 100px;
  left: 24px;
  z-index: 8000;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px 14px 14px;
  box-shadow:
    0 4px 24px rgba(42,37,34,.14),
    0 1px 4px rgba(42,37,34,.08);
  border-left: 4px solid var(--orange, #E8541C);
  max-width: 300px;
  min-width: 240px;
  transform: translateX(-130%);
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
}
.sp-toast.show {
  transform: translateX(0);
  pointer-events: auto;
}
[data-theme="dark"] .sp-toast {
  background: #1e1a16;
  box-shadow: 0 4px 24px rgba(0,0,0,.4), 0 1px 4px rgba(0,0,0,.2);
}

.sp-toast-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--orange, #E8541C), #D04010);
  color: #fff;
  font-weight: 800;
}

.sp-toast-body {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
}
.sp-toast-name {
  font-size: .82rem; font-weight: 800;
  color: var(--dark, #2A2522);
  margin: 0;
}
[data-theme="dark"] .sp-toast-name { color: rgba(255,255,255,.9); }

.sp-toast-msg {
  font-size: .74rem;
  color: var(--gray, #7a7069);
  margin: 0;
  line-height: 1.4;
}
[data-theme="dark"] .sp-toast-msg { color: rgba(255,255,255,.5); }

.sp-toast-time {
  font-size: .65rem;
  color: var(--orange, #E8541C);
  font-weight: 700;
  margin-top: 2px;
}

.sp-toast-close {
  background: none; border: none;
  color: rgba(42,37,34,.25);
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0; line-height: 1;
  align-self: flex-start;
  transition: color .2s;
}
.sp-toast-close:hover { color: var(--orange, #E8541C); }

/* 모바일: 좌측 대신 하단 중앙 */
@media (max-width: 640px) {
  .sp-toast {
    left: 50%;
    bottom: 90px;
    transform: translateX(-50%) translateY(120px);
    max-width: calc(100vw - 32px);
  }
  .sp-toast.show {
    transform: translateX(-50%) translateY(0);
  }
}

/* ════════════════════════════════════
   ② 비교 테이블
   ════════════════════════════════════ */
.compare-sec { padding: 100px 0; }

.compare-table {
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.07);
}

/* 헤더 행 */
.ct-head {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.ct-col {
  padding: 18px 20px;
  font-size: .8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  text-align: center; gap: 8px;
}
.ct-col--label {
  justify-content: flex-start;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.ct-col-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: .72rem; font-weight: 800;
  letter-spacing: .03em;
}
.ct-col--diy .ct-col-badge {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.ct-col--others .ct-col-badge {
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.08);
}
.ct-col--us .ct-col-badge--us {
  background: linear-gradient(135deg, var(--orange, #E8541C), #D9A24B);
  color: #fff;
  border: none;
  box-shadow: 0 4px 16px rgba(232,84,28,.35);
}
.ct-col--us .ct-col-badge--us i { font-size: .65rem; }

/* 데이터 행 */
.ct-row {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  border-bottom: 1px solid rgba(255,255,255,.04);
  transition: background .2s;
}
.ct-row:hover { background: rgba(255,255,255,.02); }
.ct-row:last-of-type { border-bottom: none; }

.ct-row .ct-col--label {
  font-size: .82rem; font-weight: 700;
  color: rgba(255,255,255,.65);
  justify-content: flex-start;
}
.ct-row .ct-col {
  flex-direction: column;
  gap: 4px;
  font-size: .74rem;
  color: rgba(255,255,255,.38);
}
.ct-row .ct-col span {
  font-size: .7rem;
  line-height: 1.3;
}

/* 아이콘 */
.ct-ok  { color: #4ade80; font-size: .8rem; }
.ct-x   { color: #f87171; font-size: .8rem; }
.ct-dash{ color: rgba(255,255,255,.25); font-size: .8rem; }

/* 가치담다 열 강조 */
.ct-row .ct-col--us {
  background: rgba(232,84,28,.06);
  border-left: 1px solid rgba(232,84,28,.15);
  border-right: 1px solid rgba(232,84,28,.15);
  color: rgba(255,255,255,.8);
}
.ct-head .ct-col--us {
  background: rgba(232,84,28,.08);
  border-left: 1px solid rgba(232,84,28,.15);
  border-right: 1px solid rgba(232,84,28,.15);
}

/* 하이라이트 행 */
.ct-row--highlight {
  background: rgba(255,255,255,.03);
}
.ct-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .04em;
}
.ct-val--mid { color: rgba(255,255,255,.4); }
.ct-val--best {
  color: var(--orange, #E8541C);
  font-size: 1.8rem;
  text-shadow: 0 0 16px rgba(232,84,28,.4);
}

/* 하단 CTA */
.ct-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px;
  background: rgba(232,84,28,.08);
  border-top: 1px solid rgba(232,84,28,.15);
  flex-wrap: wrap; gap: 16px;
}
.ct-footer-copy {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  margin: 0;
}
.ct-footer-copy strong { color: rgba(255,255,255,.88); }
.ct-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px;
  background: linear-gradient(135deg, var(--orange, #E8541C), #D04010);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: .85rem; font-weight: 800;
  transition: all .25s ease;
  box-shadow: 0 4px 20px rgba(232,84,28,.35);
}
.ct-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,84,28,.5);
}

/* 모바일 비교 테이블 */
@media (max-width: 720px) {
  .ct-head,
  .ct-row { grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr; }
  .ct-col { padding: 14px 10px; font-size: .7rem; }
  .ct-row .ct-col--label { font-size: .74rem; }
  .ct-col-badge { padding: 4px 10px; font-size: .65rem; }
  .ct-footer { flex-direction: column; align-items: flex-start; padding: 20px; }
}
@media (max-width: 520px) {
  /* 모바일에서 DIY 열 숨김 */
  .ct-col--diy { display: none; }
  .ct-head,
  .ct-row { grid-template-columns: 1.6fr 1fr 1.2fr; }
}

/* ════════════════════════════════════
   ③ 폼 신뢰 바 (Form Trust Bar)
   ════════════════════════════════════ */
.cform-trust-bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap;
  gap: 12px 20px;
  padding: 10px 0 14px;
  border-bottom: 1px solid var(--gray-border, rgba(42,37,34,.1));
  margin-bottom: 20px;
}
.cform-trust-bar span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .72rem; font-weight: 700;
  color: var(--gray, #7a7069);
}
.cform-trust-bar i { color: var(--orange, #E8541C); font-size: .7rem; }
[data-theme="dark"] .cform-trust-bar span { color: rgba(255,255,255,.4); }
[data-theme="dark"] .cform-trust-bar { border-color: rgba(255,255,255,.07); }

/* ════════════════════════════════════
   ③-B 3단계 폼 진행 바
   ════════════════════════════════════ */
.cform-steps {
  display: flex; align-items: center; justify-content: center;
  gap: 0;
  margin-bottom: 22px;
}
.cform-step {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
  cursor: default;
}
.cfs-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--gray-border, rgba(42,37,34,.15));
  background: var(--cream, #FAF7F0);
  color: var(--gray, #7a7069);
  font-size: .78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.cform-step span {
  font-size: .62rem; font-weight: 700;
  color: var(--gray, #7a7069);
  letter-spacing: .03em;
  white-space: nowrap;
}
.cform-step--active .cfs-circle {
  border-color: var(--orange, #E8541C);
  background: var(--orange, #E8541C);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(232,84,28,.15);
}
.cform-step--active span { color: var(--orange, #E8541C); font-weight: 800; }
.cform-step--done .cfs-circle {
  border-color: #4ade80;
  background: #4ade80;
  color: #fff;
}
.cform-step-line {
  flex: 1;
  min-width: 32px; max-width: 60px;
  height: 2px;
  background: var(--gray-border, rgba(42,37,34,.12));
  margin: 0 4px;
  margin-bottom: 22px; /* 원과 텍스트 간격 보정 */
  transition: background .3s ease;
}
.cform-step-line--done { background: #4ade80; }

[data-theme="dark"] .cfs-circle {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.12);
  color: rgba(255,255,255,.4);
}
[data-theme="dark"] .cform-step-line { background: rgba(255,255,255,.08); }

/* ════════════════════════════════════
   ④ 저항 제거 마이크로카피
   ════════════════════════════════════ */
.cform-micro {
  display: flex; align-items: center; justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 0 6px;
}
.cform-micro span {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .7rem; font-weight: 600;
  color: var(--gray, #7a7069);
}
.cform-micro i { font-size: .65rem; opacity: .6; }
[data-theme="dark"] .cform-micro span { color: rgba(255,255,255,.3); }

/* ════════════════════════════════════
   ⑤ 폼 실시간 신청자 힌트
   ════════════════════════════════════ */
.cform-live-hint {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: rgba(232,84,28,.06);
  border: 1px solid rgba(232,84,28,.15);
  border-radius: 8px;
  margin-top: 8px;
  animation: liveHintPulse 4s ease-in-out infinite;
}
.clh-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange, #E8541C);
  flex-shrink: 0;
  animation: liveHintDot 1.4s ease-in-out infinite;
}
#cformLiveHint {
  font-size: .72rem; font-weight: 600;
  color: rgba(42,37,34,.55);
}
[data-theme="dark"] #cformLiveHint { color: rgba(255,255,255,.45); }
#cformLiveHint strong { color: var(--orange, #E8541C); }

@keyframes liveHintDot {
  0%,100% { box-shadow: 0 0 0 0 rgba(232,84,28,.5); }
  50%      { box-shadow: 0 0 0 4px rgba(232,84,28,0); }
}
@keyframes liveHintPulse {
  0%,100% { border-color: rgba(232,84,28,.15); }
  50%      { border-color: rgba(232,84,28,.30); }
}

/* ════════════════════════════════════
   ⑥ 컨텍스추얼 CTA (스크롤 깊이별 문구 변환)
      — float-cta-wrap 위 슬라이딩 레이블
   ════════════════════════════════════ */
.ctx-cta-label {
  position: fixed;
  right: 28px;
  bottom: 168px;  /* float-cta 위 */
  z-index: 901;
  background: rgba(17,10,5,.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(232,84,28,.3);
  border-radius: 10px;
  padding: 9px 16px;
  font-size: .72rem; font-weight: 800;
  color: rgba(255,255,255,.75);
  white-space: nowrap;
  letter-spacing: .02em;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease, transform .4s ease;
  pointer-events: none;
  max-width: 220px;
  text-align: right;
  line-height: 1.45;
}
.ctx-cta-label::before {
  content: '';
  position: absolute;
  bottom: -7px; right: 22px;
  width: 12px; height: 12px;
  background: rgba(17,10,5,.9);
  border-right: 1px solid rgba(232,84,28,.3);
  border-bottom: 1px solid rgba(232,84,28,.3);
  transform: rotate(45deg);
}
.ctx-cta-label.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ctx-cta-label em {
  display: block;
  color: var(--orange, #E8541C);
  font-style: normal;
  font-size: .8rem;
}

@media (max-width: 768px) {
  .ctx-cta-label { display: none; }
}

/* ════════════════════════════════════
   ⑦ 파트너사 업종 태그 (partners-industry-tags)
      — js/marketing.js initPartnersSectionDynamic() 생성
   ════════════════════════════════════ */
.partners-industry-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: -8px 0 40px;
  padding: 0 16px;
}
.pit-tag {
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  background: rgba(232,84,28,.07);
  border: 1px solid rgba(232,84,28,.18);
  color: var(--gray, #7a7069);
  transition: background .2s, color .2s, border-color .2s;
  cursor: default;
}
.pit-tag:hover {
  background: rgba(232,84,28,.14);
  border-color: rgba(232,84,28,.35);
  color: var(--orange, #E8541C);
}
[data-theme="dark"] .pit-tag {
  background: rgba(232,84,28,.1);
  border-color: rgba(232,84,28,.22);
  color: rgba(255,255,255,.55);
}
[data-theme="dark"] .pit-tag:hover {
  background: rgba(232,84,28,.2);
  color: #E8541C;
}

/* ════════════════════════════════════════════════════
   ⑧ 앵커 프라이싱 배너 (Anchor Pricing Banner)
      — #pricing 섹션 상단에 고가 기준점 제시
   ════════════════════════════════════════════════════ */
.anchor-pricing-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, rgba(217,162,75,.12), rgba(232,84,28,.08), rgba(217,162,75,.12));
  border: 1px solid rgba(217,162,75,.3);
  border-radius: 10px;
  padding: 10px 20px;
  margin-bottom: 36px;
  font-size: .78rem;
  font-weight: 700;
  color: var(--dark, #2A2522);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.anchor-pricing-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.25) 50%, transparent 100%);
  animation: apbShine 3s ease-in-out infinite;
}
@keyframes apbShine {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}
.anchor-pricing-banner .apb-original {
  text-decoration: line-through;
  color: var(--gray, #7a7069);
  font-size: .72rem;
  opacity: .75;
}
.anchor-pricing-banner .apb-save {
  background: var(--orange, #E8541C);
  color: #fff;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .03em;
  white-space: nowrap;
}
[data-theme="dark"] .anchor-pricing-banner {
  color: rgba(255,255,255,.8);
}

/* ════════════════════════════════════════════════════
   ⑨ 신뢰 리뷰 캐러셀 (Trust Review Carousel)
      — #review-carousel 고정형 슬라이더
   ════════════════════════════════════════════════════ */
.review-carousel-sec {
  padding: 80px 0 60px;
  overflow: hidden;
  background: var(--cream, #FAF7F0);
}
[data-theme="dark"] .review-carousel-sec {
  background: #1a1510;
}
.review-carousel-track-wrap {
  overflow: hidden;
  position: relative;
}
.review-carousel-track-wrap::before,
.review-carousel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.review-carousel-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--cream, #FAF7F0), transparent);
}
.review-carousel-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--cream, #FAF7F0), transparent);
}
[data-theme="dark"] .review-carousel-track-wrap::before {
  background: linear-gradient(to right, #1a1510, transparent);
}
[data-theme="dark"] .review-carousel-track-wrap::after {
  background: linear-gradient(to left, #1a1510, transparent);
}
.review-carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: reviewScroll 38s linear infinite;
  will-change: transform;
}
.review-carousel-track:hover {
  animation-play-state: paused;
}
@keyframes reviewScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.rc-card {
  background: #fff;
  border-radius: 18px;
  padding: 22px 24px;
  width: 280px;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(42,37,34,.07);
  border: 1px solid rgba(42,37,34,.06);
  transition: box-shadow .2s;
}
.rc-card:hover {
  box-shadow: 0 6px 28px rgba(42,37,34,.13);
}
[data-theme="dark"] .rc-card {
  background: #231e18;
  border-color: rgba(255,255,255,.07);
}
.rc-stars {
  color: #D9A24B;
  font-size: .9rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.rc-text {
  font-size: .82rem;
  line-height: 1.65;
  color: var(--dark, #2A2522);
  margin-bottom: 14px;
  opacity: .85;
}
[data-theme="dark"] .rc-text {
  color: rgba(255,255,255,.75);
}
.rc-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rc-author-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(232,84,28,.15), rgba(217,162,75,.15));
}
.rc-author-info strong {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  color: var(--dark, #2A2522);
}
[data-theme="dark"] .rc-author-info strong {
  color: rgba(255,255,255,.88);
}
.rc-author-info span {
  font-size: .68rem;
  color: var(--gray, #7a7069);
}
.rc-platform {
  margin-left: auto;
  font-size: .65rem;
  font-weight: 700;
  color: var(--orange, #E8541C);
  opacity: .6;
  white-space: nowrap;
}

/* ════════════════════════════════════════════════════
   ⑩ 스크롤 진행 독려 텍스트 (Scroll Nudge)
      — hero 스크롤 다음 섹션 진입 전
   ════════════════════════════════════════════════════ */
.scroll-nudge-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  font-size: .73rem;
  font-weight: 700;
  color: var(--gray, #7a7069);
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .5s, transform .5s;
}
.scroll-nudge-bar.visible {
  opacity: 1;
  transform: translateY(0);
}
.scroll-nudge-bar i {
  animation: nudgeBounce 1.4s ease-in-out infinite;
  color: var(--orange, #E8541C);
}
@keyframes nudgeBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}

/* ════════════════════════════════════════════════════
   ⑪ 긴급성 재고 바 (Scarcity Badge — 플로팅)
      — 슬롯 5개 이하일 때 상단 긴급 배너로 변환
   ════════════════════════════════════════════════════ */
.scarcity-urgent-badge {
  position: fixed;
  top: 64px;
  left: 50%;
  transform: translateX(-50%) translateY(-80px);
  z-index: 7000;
  background: linear-gradient(90deg, #B83010, var(--orange, #E8541C));
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .04em;
  padding: 9px 24px;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 4px 20px rgba(184,48,16,.45);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: transform .5s cubic-bezier(.34,1.56,.64,1);
  white-space: nowrap;
}
.scarcity-urgent-badge.show {
  transform: translateX(-50%) translateY(0);
}
.scarcity-urgent-badge .sub-badge {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  animation: subBadgePulse .9s ease-in-out infinite;
}
@keyframes subBadgePulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .5; transform: scale(1.4); }
}

/* ════════════════════════════════════════════════════
   ⑫ 실시간 방문자 프로그레스 바 (Live Visitor Activity)
      — float CTA 위 "N명이 지금 보는 중" 바
   ════════════════════════════════════════════════════ */
.live-activity-bar {
  position: fixed;
  right: 28px;
  bottom: 220px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(17,10,5,.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 7px 13px;
  font-size: .66rem;
  font-weight: 700;
  color: rgba(255,255,255,.7);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .4s, transform .4s;
  pointer-events: none;
}
.live-activity-bar.visible {
  opacity: 1;
  transform: translateY(0);
}
.live-activity-bar .lab-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #4CAF50;
  flex-shrink: 0;
  animation: labDotBlink 1.6s ease-in-out infinite;
}
@keyframes labDotBlink {
  0%,100% { box-shadow: 0 0 0 0 rgba(76,175,80,.6); }
  50%      { box-shadow: 0 0 0 5px rgba(76,175,80,0); }
}
@media (max-width: 768px) {
  .live-activity-bar { display: none; }
}

/* ════════════════════════════════════════════════════
   ⑬ FAQ 아코디언 (신뢰 + SEO)
      — #faq 섹션
   ════════════════════════════════════════════════════ */
.faq-sec {
  padding: 80px 0 70px;
  background: var(--beige, #F5F0E6);
}
[data-theme="dark"] .faq-sec {
  background: #1c1713;
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(42,37,34,.08);
  overflow: hidden;
  transition: box-shadow .2s;
}
.faq-item:hover {
  box-shadow: 0 4px 20px rgba(42,37,34,.1);
}
[data-theme="dark"] .faq-item {
  background: #231e18;
  border-color: rgba(255,255,255,.08);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}
.faq-q-text {
  font-size: .92rem;
  font-weight: 800;
  color: var(--dark, #2A2522);
  line-height: 1.4;
}
[data-theme="dark"] .faq-q-text {
  color: rgba(255,255,255,.88);
}
.faq-q-ico {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(232,84,28,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--orange, #E8541C);
  font-size: .75rem;
  transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .2s;
}
.faq-item.open .faq-q-ico {
  transform: rotate(45deg);
  background: var(--orange, #E8541C);
  color: #fff;
  border-color: var(--orange, #E8541C);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .42s cubic-bezier(.4,0,.2,1), padding .3s;
  padding: 0 24px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-a-text {
  font-size: .83rem;
  line-height: 1.75;
  color: var(--gray, #7a7069);
  border-top: 1px solid rgba(42,37,34,.07);
  padding-top: 14px;
}
[data-theme="dark"] .faq-a-text {
  color: rgba(255,255,255,.5);
  border-color: rgba(255,255,255,.08);
}
.faq-a-text strong {
  color: var(--orange, #E8541C);
  font-weight: 800;
}

/* ════════════════════════════════════════════════════
   ⑭ 스크롤 깊이 달성 마이크로 보상 (Scroll Milestone)
      — 특정 섹션 진입 시 화면 하단 리본 토스트
   ════════════════════════════════════════════════════ */
.scroll-milestone-toast {
  position: fixed;
  bottom: -70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7500;
  background: linear-gradient(90deg, #2A2522, #3e3028);
  color: rgba(255,255,255,.88);
  font-size: .76rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  border: 1px solid rgba(217,162,75,.35);
  box-shadow: 0 6px 28px rgba(0,0,0,.35);
  white-space: nowrap;
  letter-spacing: .02em;
  transition: bottom .5s cubic-bezier(.34,1.56,.64,1);
  pointer-events: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.scroll-milestone-toast.show {
  bottom: 24px;
}
.scroll-milestone-toast .smt-icon {
  font-size: 1rem;
}
.scroll-milestone-toast em {
  color: #D9A24B;
  font-style: normal;
}

/* ════════════════════════════════════════════════════
   ⑮ 가격 앵커링 하이라이트 카드 테두리 효과
      — 가장 인기 플랜에 shimmer 효과
   ════════════════════════════════════════════════════ */
.plan-card--popular {
  position: relative;
  overflow: hidden;
}
.plan-card--popular::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #D9A24B, #E8541C, #D9A24B);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: planCardShimmer 3s linear infinite;
  background-size: 200% 100%;
}
@keyframes planCardShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.plan-badge-popular {
  position: absolute;
  top: -1px; right: 20px;
  background: linear-gradient(90deg, #D9A24B, #E8541C);
  color: #fff;
  font-size: .62rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 0 0 10px 10px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ════════════════════════════════════════════════════
   ⑯ 섹션 진행 점 네비게이션 (Section Progress Dots)
      — 우측 고정, 툴팁 + 활성 하이라이트
   ════════════════════════════════════════════════════ */
.spd-nav {
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 800;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: auto;
}
.spd-dot {
  position: relative;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: rgba(42,37,34,.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
  outline: none;
}
.spd-dot:hover,
.spd-dot.active {
  background: var(--orange, #E8541C);
  transform: scale(1.35);
}
.spd-dot.active {
  box-shadow: 0 0 0 3px rgba(232,84,28,.22);
}
[data-theme="dark"] .spd-dot {
  background: rgba(255,255,255,.22);
}
[data-theme="dark"] .spd-dot:hover,
[data-theme="dark"] .spd-dot.active {
  background: var(--orange, #E8541C);
}
.spd-tooltip {
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17,10,5,.88);
  color: rgba(255,255,255,.85);
  font-size: .65rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s;
  letter-spacing: .02em;
}
.spd-tooltip::after {
  content: '';
  position: absolute;
  left: 100%; top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(17,10,5,.88);
}
.spd-dot:hover .spd-tooltip {
  opacity: 1;
}
@media (max-width: 900px) {
  .spd-nav { display: none; }
}

/* ════════════════════════════════════════════════════
   반응형 공통 보정
   ════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .anchor-pricing-banner { font-size: .7rem; flex-wrap: wrap; gap: 6px; }
  .faq-sec { padding: 60px 0 50px; }
  .faq-q { padding: 16px 18px; }
  .faq-a.open { padding: 0 18px 16px; }
  .review-carousel-track-wrap::before,
  .review-carousel-track-wrap::after { width: 60px; }
  .rc-card { width: 240px; }
  .scarcity-urgent-badge { font-size: .66rem; padding: 8px 16px; }
  .scarcity-urgent-badge { top: 58px; border-radius: 0 0 10px 10px; }
}
