/* ============================================================
   후후페이 — 랜딩 페이지 전용 스타일
   Ref: docs/02_DESIGN.md §2-3
   ============================================================ */

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  height: calc(80px + env(safe-area-inset-top, 0px));
  padding-top: env(safe-area-inset-top, 0px);
  display: flex;
  align-items: center;
  padding-left: var(--space-6);
  padding-right: var(--space-6);
  background: rgba(250, 250, 248, 0.94);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 221, 214, 0.8);
  box-shadow: 0 1px 12px rgba(28, 43, 74, 0.06);
  transition: background 0.25s, backdrop-filter 0.25s, border-color 0.25s;
}
.nav.is-scrolled {
  background: rgba(250, 250, 248, 0.98);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(200, 195, 188, 1);
  box-shadow: 0 1px 16px rgba(28, 43, 74, 0.10);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Zone 1: Brand */
.nav-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.nav-brand-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.nav-brand-text-col {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: var(--font-weight-extrabold);
  color: #1C273F;
  letter-spacing: -0.5px;
  white-space: nowrap;
  line-height: 1;
}

.nav-wordmark-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-wordmark {
  height: 36px;
  width: auto;
  display: block;
}

.nav-brand-creds {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-cred-tag {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.5938rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  line-height: 1.4;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.nav-cred-tag--n { background: #E6FAF0; color: #01813A; }
.nav-cred-tag--g { background: #E8F0FD; color: #1A56B0; }
.nav-cred-tag--y { background: #FFF3CD; color: #7C5800; }

/* Zone 3: Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  justify-content: flex-end;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: var(--space-2);
  color: #1C273F;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.nav-phone:hover { border-color: #1C273F; }

@media (min-width: 768px) {
  .nav-phone { display: flex; }
}

/* 상담하기 버튼 — 브랜드 초록 단색 오버라이드 */
.nav-actions .btn-primary {
  background: #3883FF;
}
.nav-actions .btn-primary:hover:not(:disabled) {
  background: #0075FF;
  box-shadow: 0 2px 8px rgba(56, 131, 255, 0.3);
}

/* ── Nav 실시간 이용자 배지 ── */
.nav-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(56, 131, 255, 0.10);
  border: 1px solid rgba(56, 131, 255, 0.30);
  cursor: default;
  user-select: none;
  white-space: nowrap;
}
.nav-live-text {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #1C273F;
}
.nav-live-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3883FF;
  flex-shrink: 0;
}
.nav-live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #3883FF;
  animation: live-pulse 2s ease-out infinite;
}
@keyframes live-pulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}
/* 브랜드 영역 배지 — 모바일 전용 */
.nav-live-badge--brand {
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 9999px;
  background: rgba(56, 131, 255, 0.10);
  border: 1px solid rgba(56, 131, 255, 0.30);
  display: none;
  align-items: center;
  gap: 5px;
}
.nav-live-badge--brand .nav-live-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1C273F;
}

/* 메뉴 내 라이브 배지 — 데스크탑 전용 */
.nav-live-badge--menu {
  display: none;
}
@media (min-width: 768px) {
  .li-live-badge {
    display: flex;
    align-items: center;
  }
  .nav-live-badge--menu {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(56, 131, 255, 0.10);
    border: 1px solid rgba(56, 131, 255, 0.30);
    cursor: default;
    user-select: none;
    white-space: nowrap;
  }
}

@media (min-width: 641px) {
  .nav-live-badge--brand {
    display: none;
  }
}

/* Zone 2: Nav menu */
.nav-menu {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .nav-menu { display: flex; }
}

.nav-menu-link {
  display: block;
  padding: 6px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #4B5563;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
.nav-menu-link:hover {
  background: rgba(28, 43, 74, 0.06);
  color: #1C273F;
}
.nav-menu-link.is-active {
  color: #3883FF;
  font-weight: 600;
}

/* 모바일 패널 메뉴 */
.nav-panel-menu {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.nav-panel-link {
  display: block;
  padding: 10px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: #1C273F;
  border-radius: 6px;
  transition: background 0.15s;
}
.nav-panel-link:hover {
  background: rgba(28, 43, 74, 0.05);
}

/* Hamburger button */
.nav-hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-height: 44px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  transition: background var(--transition);
  flex-shrink: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.nav-hamburger:hover { background: rgba(28, 43, 74, 0.06); }
.nav-hamburger .icon-close { display: none; }
.nav-hamburger.is-open .icon-menu  { display: none; }
.nav-hamburger.is-open .icon-close { display: block; }

/* Mobile dropdown panel — 슬라이드인 애니메이션 */
.nav-mobile-panel {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: calc(80px + env(safe-area-inset-top, 0px));
  left: 0;
  right: 0;
  z-index: 49;
  background: #ffffff;
  border-bottom: 1px solid rgba(226, 221, 214, 0.8);
  box-shadow: 0 6px 24px rgba(28, 43, 74, 0.12);
  padding: 16px 20px 20px;
  gap: 12px;
  opacity: 0;
  transform: translateY(-8px);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s linear 0.2s;
}
.nav-mobile-panel.is-open {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.2s ease-out, transform 0.2s ease-out, visibility 0s;
}

.nav-panel-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #1C273F;
  font-size: 1.125rem;
  font-weight: var(--font-weight-semibold);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.nav-panel-cta {
  width: 100%;
  min-height: 48px;
  font-size: 0.9375rem;
  justify-content: center;
}

.nav-panel-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 2px;
}

.nav-panel-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-secondary);
  margin: 0;
}

/* Mobile overrides (≤640px) */
@media (max-width: 640px) {
  .nav {
    height: calc(68px + env(safe-area-inset-top, 0px));
    padding-top: env(safe-area-inset-top, 0px);
  }
  .nav-inner { gap: 8px; align-items: center; }
  .nav-logo-wrap { flex-direction: column; align-items: flex-start; gap: 4px; }
  .nav-brand-top { gap: 10px; }
  .nav-logo { font-size: 25px; line-height: 1; }
  .nav-wordmark { height: 38px; width: 120px; }
  .nav-wordmark-link { align-items: flex-start; }
  .nav-brand-creds { display: none; }
  .nav-live-badge--brand {
    display: inline-flex;
    width: auto;
    justify-content: flex-start;
    padding: 1px 5px;
    height: auto;
    font-size: 8px;
    gap: 3px;
  }
  .nav-live-badge--brand .nav-live-text {
    font-size: 8px;
  }
  .nav-live-badge--brand .nav-live-dot {
    width: 4px;
    height: 4px;
  }

  /* 모바일: nav-menu 전체 숨김 */
  .nav-menu { display: flex; }
  .nav-menu > li { display: none; }
  .nav-menu-link--reviews {
    color: #0075FF;
    font-weight: 700;
    font-size: 0.8125rem;
    border: 1.5px solid #3883FF;
    border-radius: 20px;
    padding: 5px 13px;
    white-space: nowrap;
    background: rgba(56, 131, 255, 0.07);
  }

  /* Hide desktop actions, show hamburger */
  .nav-phone { display: none !important; }
  .nav-actions .btn { display: none; }
  .nav-hamburger { display: flex; }

  /* Panel top: below nav(60) */
  .nav-mobile-panel { top: calc(60px + env(safe-area-inset-top, 0px)); }

  /* Slide CTA buttons: column on mobile */
  .slide-cta { flex-direction: column; align-items: center; }
}

/* ── Hero Slider (누누페이 스타일) ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.50) 50%,
    rgba(0, 0, 0, 0.65) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 0 var(--space-6);
  max-width: 860px;
  margin: 0 auto;
}

.slide-eyebrow {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.82);
  font-weight: var(--font-weight-normal);
  margin: 0 0 var(--space-4);
  letter-spacing: 0.01em;
}

.slide-headline {
  font-size: clamp(1.75rem, 5vw, 3rem);
  font-weight: var(--font-weight-extrabold);
  color: #ffffff;
  line-height: 1.4;
  margin: 0 0 var(--space-4);
  word-break: keep-all;
}

.slide-accent {
  color: #3883FF;
}

.slide-accent-gold {
  color: #FFD166;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.slide-sub .slide-accent-gold {
  font-weight: var(--font-weight-semibold, 600);
}

@media (max-width: 640px) {
  .slide-accent-gold {
    text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  }
}

.slide-sub {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 var(--space-8);
  word-break: keep-all;
}

/* ── 슬라이드 버튼 ── */
.slide-cta {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.btn-slide {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 16px 32px;
  border-radius: var(--radius-full);
  font-size: 1.0625rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-slide-outline {
  background: rgba(255, 255, 255, 0.20);
  border-color: rgba(255, 255, 255, 0.90);
  color: #ffffff;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.btn-slide-outline:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: #ffffff;
}

.btn-slide-solid {
  background: #3883FF;
  border-color: #3883FF;
  color: #ffffff;
}

.btn-slide-solid:hover {
  background: #0075FF;
  border-color: #0075FF;
}

/* ── 도트 인디케이터 ── */
.slider-dots {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: var(--space-2);
  z-index: 10;
}

.dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
}

.dot--active {
  width: 28px;
  background: #ffffff;
}

/* ── 슬라이드 텍스트 진입 애니메이션 ── */
.slide.is-active .slide-eyebrow,
.slide.is-active .slide-headline,
.slide.is-active .slide-sub,
.slide.is-active .slide-cta {
  animation: slideTextUp 0.6s ease forwards;
}

.slide.is-active .slide-eyebrow  { animation-delay: 0.1s; opacity: 0; }
.slide.is-active .slide-headline { animation-delay: 0.2s; opacity: 0; }
.slide.is-active .slide-sub      { animation-delay: 0.3s; opacity: 0; }
.slide.is-active .slide-cta      { animation-delay: 0.4s; opacity: 0; }

@keyframes slideTextUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 모바일 ── */
@media (max-width: 640px) {
  .slide-headline { font-size: clamp(1.8125rem, 7.5vw, 2.5rem); }
  .btn-slide { padding: 12px 20px; font-size: var(--font-size-sm); }
  .slider-dots { bottom: 72px; }
  .hero-slider { height: calc(100svh - 124px); min-height: 380px; }

  /* 슬라이드 3: 모바일에서 여성 목 기준 아래쪽만 노출
     landscape 이미지라 cover가 세로 여백 0 → auto 200%로 강제 오버플로우 생성 */
  .slide[data-slide="2"] .slide-bg {
    background-size: auto 200%;
    background-position: center 42%;
  }
}

/* ── 375px 이하 (iPhone mini) 추가 최적화 ── */
@media (max-width: 375px) {
  .hero-slider { height: calc(100svh - 120px); min-height: 300px; }

  /* nav 요소 3개(로고+배지+이용후기+햄버거)가 겹치는 문제 — 배지 숨김으로 공간 확보 */
  .nav-live-badge--brand { display: none !important; }
  .nav-wordmark { height: 26px; }
}

/* ── 슬라이드 1: 2-column 레이아웃 (텍스트 좌 + 일러스트 우) ── */
.slide--two-col .slide-content {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 64px;
  max-width: 1280px;
  padding: 0 48px;
}

.slide-text-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.slide-text-col .slide-eyebrow,
.slide-text-col .slide-headline,
.slide-text-col .slide-sub { text-align: left; }

.slide-text-col .slide-cta { justify-content: flex-start; }

/* 첫 슬라이드 텍스트 크기 확대 */
.slide--two-col .slide-eyebrow { font-size: 0.9375rem; }
.slide--two-col .slide-headline { font-size: clamp(2.125rem, 4.5vw, 3.625rem); }
.slide--two-col .slide-sub { font-size: 1.0625rem; line-height: 1.7; }

.slide-illust-col {
  flex: 0 0 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-illust-img {
  width: 100%;
  max-width: 560px;
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.5));
  animation: floatIllust 3.5s ease-in-out infinite;
}

@keyframes floatIllust {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@media (max-width: 900px) {
  .slide--two-col .slide-content {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
    padding: 0 24px;
  }
  .slide-text-col { align-items: center; }
  .slide-text-col .slide-eyebrow,
  .slide-text-col .slide-headline,
  .slide-text-col .slide-sub { text-align: center; }
  .slide-text-col .slide-cta { justify-content: center; }
  .slide--two-col .slide-eyebrow { font-size: 0.8125rem; }
  .slide--two-col .slide-headline { font-size: clamp(1.75rem, 6vw, 2.5rem); }
  .slide--two-col .slide-sub { font-size: 0.9375rem; }
  .slide-illust-col { flex: 0 0 auto; }
  .slide-illust-img { max-width: 260px; }
}

.slide-overlay--img {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 15, 50, 0.72) 0%,
    rgba(10, 15, 50, 0.55) 50%,
    rgba(10, 15, 50, 0.30) 100%
  );
}

.slide-sub--trust { margin-bottom: var(--space-5); }

/* 모바일 전용 네트워크 배지 — 데스크탑에서 숨김 */
.slide-mobile-badges { display: none; }

.slide-trust-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: var(--space-8);
}

.slide-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.45);
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  letter-spacing: 0.01em;
}

.slide-trust-item--speed {
  background: rgba(56, 131, 255, 0.22);
  border-color: rgba(56, 131, 255, 0.55);
  color: #A8EF99;
}

/* ── prefers-reduced-motion ── */
@media (prefers-reduced-motion: reduce) {
  .slide { transition: none; }
  .slide.is-active .slide-eyebrow,
  .slide.is-active .slide-headline,
  .slide.is-active .slide-sub,
  .slide.is-active .slide-cta,
  .slide[data-slide="0"] .slide-eyebrow,
  .slide[data-slide="0"] .slide-headline,
  .slide[data-slide="0"] .slide-sub,
  .slide[data-slide="0"] .slide-cta {
    animation: none;
    opacity: 1;
  }
}

/* ── Section 3: Services ── */
.section-services {
  padding: 100px var(--space-6);
  background: var(--bg-elevated);  /* #F5F3EF — 짝수 섹션 */
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-12);
}

.section-eyebrow {
  display: inline-block;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-light);
  margin-bottom: var(--space-3);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  max-width: 540px;
  margin: 0 auto;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .service-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition), background var(--transition);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--border-primary);
  background: var(--bg-elevated);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2rem;
  line-height: 1;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28, 43, 74, 0.07);
  border-radius: var(--radius-sm);
}

.service-card h3 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

.service-rate {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--color-accent);
  font-family: 'Inter', sans-serif;
}

.service-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  flex: 1;
}

/* ── 수수료 테이블 ── */
.fee-table-wrapper {
  max-width: 800px;
  margin: var(--space-12) auto 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.fee-table-header {
  padding: var(--space-5) var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.fee-table-header h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.fee-table th,
.fee-table td {
  padding: var(--space-4) var(--space-6);
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
}

.fee-table th {
  color: var(--text-muted);
  font-weight: var(--font-weight-semibold);
  background: rgba(28, 43, 74, 0.05);
  white-space: nowrap;
}

.fee-table tr:last-child td { border-bottom: none; }
.fee-table tr:hover td { background: rgba(79, 70, 229, 0.04); }

.fee-rate-normal { color: var(--color-accent); font-weight: var(--font-weight-bold); }
.fee-rate-special { color: var(--color-warning); font-weight: var(--font-weight-bold); }

.fee-note {
  padding: var(--space-4) var(--space-6);
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  border-top: 1px solid var(--border-subtle);
}

@media (max-width: 600px) {
  .fee-table th,
  .fee-table td { padding: 10px 12px; }
  .fee-table { min-width: 0; }
  .fee-table-header { padding: var(--space-4) var(--space-4); }
  .fee-note { padding: var(--space-3) var(--space-4); }
}

/* ── Section 4: How It Works ── */
.section-how {
  padding: 100px var(--space-6);
  background: var(--bg-surface);
}

.steps-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

@media (min-width: 768px) {
  .steps-row {
    flex-direction: row;
    align-items: flex-start;
  }
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-4);
  position: relative;
}

@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(50% + 32px);
    width: calc(100% - 64px);
    height: 1px;
    background: linear-gradient(to right, var(--color-primary), var(--color-primary-light));
    opacity: 0.4;
  }
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1C273F, #1C273F);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-extrabold);
  color: #fff;
  flex-shrink: 0;
}

.step-title {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
}

.step-desc {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
}

.step-time {
  font-size: var(--font-size-xs);
  color: var(--color-primary-light);
  font-weight: var(--font-weight-semibold);
}

/* ── Section 5: Social Proof (Feed) ── */
.section-social {
  padding: 100px var(--space-6);
}

/* ── Section 6: CTA Bottom ── */
.section-cta-bottom {
  padding: 80px var(--space-6);
  text-align: center;
  background: linear-gradient(135deg, rgba(28, 43, 74, 0.06) 0%, rgba(28, 43, 74, 0.03) 100%);
  border-top: 1px solid var(--border);
}

.section-cta-bottom h2 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  margin-bottom: var(--space-4);
}

.section-cta-bottom p {
  font-size: var(--font-size-lg);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

.cta-bottom-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  align-items: center;
  justify-content: center;
}
@media (min-width: 480px) {
  .cta-bottom-actions { flex-direction: row; }
}

/* ── Footer ── */
.footer {
  background: #1C273F;  /* 다크 네이비 푸터 — 프리미엄 마감 */
  border-top: none;
  padding: var(--space-10) var(--space-6) var(--space-16);
}

@media (min-width: 768px) {
  .footer { padding-bottom: var(--space-10); }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-extrabold);
  background: linear-gradient(135deg, #F0EDE8, #93C5D0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-4);
}

.footer-info {
  font-size: var(--font-size-sm);
  color: rgba(240, 237, 232, 0.65);
  line-height: 1.8;
  margin-bottom: var(--space-6);
}

.footer-info strong { color: rgba(240, 237, 232, 0.85); }

.footer-info a { color: rgba(240, 237, 232, 0.65) !important; }

.footer-bottom {
  padding-top: var(--space-6);
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  font-size: var(--font-size-xs);
  color: rgba(240, 237, 232, 0.45);
  line-height: 1.7;
}

.footer-warning {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-sm);
  background: rgba(196, 85, 26, 0.12);
  border: 1px solid rgba(196, 85, 26, 0.25);
  color: #F0EDE8;
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  margin-top: var(--space-4);
}

/* ── Chatbot FAB (Floating Action Button) ── */
.chat-fab {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  min-width: 56px;
  min-height: 44px;
  border-radius: 9999px;
  background: var(--color-primary, #3883FF);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  position: fixed;
  bottom: 44px;
  right: 24px;
  z-index: var(--z-fab);
  box-shadow: 0 4px 16px rgba(56, 131, 255, 0.35);
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  animation: fabSlideUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  touch-action: none;
}

@media (hover: hover) {
  .chat-fab:hover {
    background: #0075FF;
    box-shadow: 0 6px 20px rgba(56, 131, 255, 0.45);
    transform: translateY(-1px);
  }
}

.chat-fab:active {
  transform: translateY(0) scale(0.96);
}

.chat-fab-label {
  white-space: nowrap;
}

.chat-fab svg { width: 20px; height: 20px; flex-shrink: 0; }

.chat-fab-badge {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 10px;
  height: 10px;
  background: #EF4444;
  border-radius: 50%;
  border: 2px solid #fff;
  display: none;
}
.chat-fab-badge.visible { display: block; }

@keyframes fabSlideUp {
  from { transform: translateY(24px) scale(0.85); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

/* Mobile: bottom (above sticky bar) */
@media (max-width: 767px) {
  .chat-fab { bottom: calc(120px + env(safe-area-inset-bottom, 0px)); }
}

/* ── Mobile Sticky Bottom Bar ── */
.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: calc(64px + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-sizing: border-box;
  display: flex;
  z-index: 1000;
  background: #FAFAF8;
  border-top: 1px solid var(--border);
}
@media (min-width: 768px) { .bottom-bar { display: none; } }
.bottom-bar.hidden-by-chatbot { display: none !important; }

.bottom-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  cursor: pointer;
  transition: opacity var(--transition);
  border: none;
  touch-action: manipulation;
}
.bottom-bar-btn:active { opacity: 0.8; }

.bottom-bar-phone {
  background: #FAFAF8;
  color: var(--text-primary);
  border-right: 1px solid var(--border);
}

.bottom-bar-chat {
  background: var(--color-cta);  /* Burnt Copper */
  color: #fff;
}

/* ================================================================
   FEAT-10: 모바일 최적화 — 480px 이하
   ================================================================ */

@media (max-width: 480px) {
  /* ── 전체 섹션 좌우 padding 축소 ── */
  .section-services { padding-left: var(--space-4); padding-right: var(--space-4); }
  .section-how     { padding-left: var(--space-4); padding-right: var(--space-4); }
  .section-social  { padding-left: var(--space-4); padding-right: var(--space-4); }
  .section-cta-bottom { padding-left: var(--space-4); padding-right: var(--space-4); }

  /* ── 서비스 카드 그리드: 640px 이상에서 2열이 되므로
        480px 이하에서 1열을 명시적으로 지정 ── */
  .service-grid {
    grid-template-columns: 1fr;
  }

  /* ── 안 C: 서비스 카드 가로형 레이아웃 (480px 이하) ── */
  .service-card {
    flex-direction: row;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3) var(--space-4);
    min-height: 48px;
  }
  .service-card .service-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 1.375rem;
  }
  .service-card-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .service-card h3 {
    font-size: var(--font-size-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
  }
  .service-card .service-desc {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: unset;
    margin: 0;
  }
  .service-card .service-rate {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-extrabold);
    flex-shrink: 0;
    text-align: right;
    white-space: nowrap;
  }
  .service-card[data-start-service="returning"] .service-rate {
    display: none;
  }
  .service-card[data-start-service="returning"] .btn-sm {
    flex-shrink: 0;
    min-width: 64px;
    min-height: 36px;
    padding: var(--space-2) var(--space-3);
    font-size: var(--font-size-xs);
  }

  /* ── 서비스 카드: 터치 tap highlight ── */
  .service-card:active {
    transform: scale(0.98);
    background: var(--bg-elevated);
    border-color: var(--border-primary);
    transition: transform 0.1s ease, background 0.1s ease;
  }

  /* ── 수수료 테이블: 3컬럼 → 2컬럼 (비고 숨김) ── */
  .fee-table { min-width: 0; }
  .fee-table th:last-child,
  .fee-table td:last-child { display: none; }

}

/* ================================================================
   FEAT-11: iPhone mini (375px 이하) 세부 최적화
   ================================================================ */
@media (max-width: 375px) {
  /* 슬라이드 헤드라인 */
  .slide-headline { font-size: clamp(1.5rem, 6.5vw, 2.125rem); }
  .slide--two-col .slide-headline { font-size: clamp(1.375rem, 6vw, 2rem); }

  /* CTA 버튼 — 44px touch target 유지하면서 좌우 padding 축소 */
  .btn-slide {
    padding: 10px 14px;
    font-size: 0.8125rem;
    min-height: 44px;
  }

  /* 신뢰 배지 — padding 축소 */
  .slide-trust-item {
    padding: 8px 12px;
    font-size: 0.75rem;
    gap: 4px;
  }

  /* 서비스 카드 */
  .service-card { padding: var(--space-2) var(--space-3); gap: var(--space-2); }

  /* 수수료 테이블 */
  .fee-table th, .fee-table td { padding: 8px 6px; font-size: 0.75rem; }

  /* 섹션 좌우 여백 추가 축소 */
  .section-services,
  .section-how,
  .section-social,
  .section-cta-bottom { padding-left: var(--space-3) !important; padding-right: var(--space-3) !important; }
}

/* ══════════════════════════════════════
   CTA 버튼 오렌지 (신규)
══════════════════════════════════════ */
.btn-cta {
  background: var(--color-cta);
  color: #fff;
  border: none;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px var(--color-cta-glow);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-cta:hover {
  background: var(--color-cta-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--color-cta-glow);
}
.btn-cta:active { transform: translateY(0); }

/* ══════════════════════════════════════
   QUICK MENU 섹션
══════════════════════════════════════ */
.section-quick-menu {
  background: var(--bg-base);  /* #FAFAF8 */
  padding: var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--border-subtle);
}

.quick-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  max-width: 800px;
  margin: 0 auto;
}

.quick-menu-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6) var(--space-4);
  background: var(--bg-surface);  /* 흰 카드 */
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.quick-menu-item:hover {
  border-color: var(--border-primary);
  color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(28, 43, 74, 0.10);
}

.quick-menu-item--cta {
  background: rgba(196, 85, 26, 0.08);
  border-color: rgba(196, 85, 26, 0.25);
  color: var(--color-cta);
  font-weight: var(--font-weight-semibold);
}
.quick-menu-item--cta:hover {
  background: rgba(196, 85, 26, 0.15);
  border-color: var(--color-cta);
  color: var(--color-cta);
  box-shadow: 0 8px 24px rgba(196, 85, 26, 0.18);
}

.qm-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qm-icon svg { width: 24px; height: 24px; }

.qm-icon--cta {
  background: rgba(196, 85, 26, 0.15);
}

@media (max-width: 600px) {
  .quick-menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══════════════════════════════════════
   LIVE TICKER
══════════════════════════════════════ */
.live-ticker {
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-surface);
  border-top: 2px solid var(--color-primary);
  border-bottom: 1px solid var(--border);
  height: 48px;
}

.ticker-badge {
  flex-shrink: 0;
  padding: 0 var(--space-4);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: #fff;
  background: var(--color-cta);
  letter-spacing: 0.05em;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.ticker-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: ticker-pulse 1.5s ease-in-out infinite;
}
@keyframes ticker-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-content {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-scroll 24s linear infinite;
}
.ticker-content:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  padding: 0 var(--space-5);
  font-size: var(--font-size-sm);
  color: var(--text-primary);
}
.ticker-amount {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}
.ticker-sep {
  color: var(--text-muted);
  padding: 0 var(--space-2);
}
@media (max-width: 640px) {
  .ticker-content { animation-duration: 18s; }
}
@media (max-width: 480px) {
  .ticker-item { font-size: var(--font-size-xs); padding: 0 var(--space-4); }
  .ticker-badge { padding: 0 var(--space-3); font-size: 0.6875rem; }
}

/* ══════════════════════════════════════
   TRUST BADGES 섹션
══════════════════════════════════════ */
.section-trust-badges {
  padding: var(--space-10) var(--space-6);
  background: var(--bg-base);
}

.trust-badge-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
  max-width: 1000px;
  margin: 0 auto;
}

.t-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: var(--space-4) var(--space-5);
  transition: all var(--transition);
}
.t-badge:hover {
  border-color: var(--border-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(28, 43, 74, 0.10);
}
.t-badge:active { transform: scale(0.97); box-shadow: none; }

.t-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.t-badge-icon svg { width: 22px; height: 22px; }

.t-badge-icon--green  { background: rgba(56,131,255,0.12);   color: var(--color-primary); }
.t-badge-icon--orange { background: rgba(196, 85, 26, 0.12); color: #C4551A; }
.t-badge-icon--purple { background: rgba(139,92,246,0.12);  color: #8B5CF6; }
.t-badge-icon--naver  { background: transparent; }
.t-badge-icon--google { background: transparent; }

.t-badge--search { border-color: var(--border); }

.t-badge-text {
  display: flex;
  flex-direction: column;
}
.t-badge-title {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  line-height: 1.3;
}
.t-badge-sub {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  margin-top: 2px;
}

@media (max-width: 900px) {
  .trust-badge-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .trust-badge-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .t-badge:last-child { grid-column: 1 / -1; max-width: 240px; margin: 0 auto; }
}
@media (max-width: 480px) {
  .section-trust-badges { padding: var(--space-8) var(--space-4); }
  .t-badge { padding: var(--space-3) var(--space-3); }
  .t-badge-icon { width: 36px; height: 36px; }
  .t-badge-icon svg { width: 18px; height: 18px; }
}

/* ══════════════════════════════════════
   HOW IT WORKS — Endowed Progress
══════════════════════════════════════ */
.step--active .step-num {
  background: var(--color-cta);
  color: #fff;
  box-shadow: 0 4px 16px rgba(196, 85, 26, 0.35);
}
.step--active .step-title {
  color: var(--color-cta);
}

/* ══════════════════════════════════════
   REVIEWS 섹션
══════════════════════════════════════ */
.section-reviews {
  padding: 100px var(--space-6);
  background: var(--bg-elevated);  /* #F5F3EF */
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ── 이용후기: 항상 표시 ── */
@keyframes reviewFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 이용후기: 모바일 최적화 ── */
@media (max-width: 640px) {
  .section-reviews { padding: 60px 16px; }
  .review-card { padding: var(--space-4); }
  .review-text { font-size: var(--font-size-sm); }
  .reviews-grid { gap: var(--space-4); }
  #reviews-more-btn { width: 100%; max-width: 320px; padding: 14px 24px; }
}
@media (max-width: 480px) {
  .reviews-grid { gap: 12px; }
  .review-card { padding: 14px; }
}

.review-card {
  background: var(--bg-surface);  /* 흰 카드 */
  border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--color-cta);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: all var(--transition);
}
.review-card:hover {
  border-left-color: var(--color-trust);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.review-stars {
  color: #F59E0B;
  font-size: var(--font-size-base);
  margin-bottom: var(--space-3);
  letter-spacing: 2px;
}

.review-text {
  font-size: var(--font-size-sm);
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: var(--space-4);
}

.review-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.review-author {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
}
.review-info {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  background: rgba(28, 43, 74, 0.05);
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
}

/* ── 이용후기: 종합 평점 pill ── */
.reviews-rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 6px 16px;
  background: #fff;
  border: 1px solid #E2DDD6;
  border-radius: 9999px;
}
.reviews-rating-score {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary, #1a1a1a);
}
.reviews-rating-stars {
  color: #F59E0B;
  letter-spacing: 2px;
}
.reviews-rating-count {
  font-size: 0.75rem;
  color: var(--text-muted, #6B7280);
}

/* ══════════════════════════════════════
   SECOND CTA 섹션
══════════════════════════════════════ */
.section-second-cta {
  padding: 100px var(--space-6);
  background: var(--bg-elevated);  /* #F5F3EF */
}

.second-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.second-cta-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.second-cta-sub {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

.second-cta-buttons {
  display: flex;
  gap: var(--space-4);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--space-4);
}

.second-cta-micro {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ══════════════════════════════════════
   FAQ / 걱정 해소 섹션
══════════════════════════════════════ */
.section-faq {
  padding: 100px var(--space-6);
  background: var(--bg-surface);  /* 흰색 */
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .faq-grid { grid-template-columns: 1fr; }
}

.faq-item {
  background: var(--bg-base);  /* #FAFAF8 — 흰 섹션 안에 아이보리 카드 */
  border: 1px solid var(--border);
  border-left: 3px solid var(--color-trust);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: all var(--transition);
}

.faq-item:hover {
  border-left-color: var(--color-cta);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.faq-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  line-height: 1.4;
}

.faq-q strong {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  line-height: 1.5;
}

.faq-a {
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: calc(20px + var(--space-3));
}

/* ══════════════════════════════════════
   Section Counter (실시간 거래 카운터)
══════════════════════════════════════ */
.section-counter {
  background: var(--bg-surface);
  padding: var(--space-12) var(--space-6);
  text-align: center;
}

.counter-eyebrow {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0 0 var(--space-2);
  letter-spacing: 0.02em;
}

.counter-headline {
  font-size: clamp(1.375rem, 4vw, 2.25rem);
  font-weight: var(--font-weight-extrabold);
  color: var(--text-primary);
  margin: 0 0 var(--space-3);
  line-height: 1.25;
  word-break: keep-all;
}

.counter-accent {
  color: var(--color-primary);
}

.counter-sub {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
  margin: 0 0 var(--space-10);
  word-break: keep-all;
}

.counter-sub strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.counter-cards {
  display: flex;
  gap: var(--space-5);
  justify-content: center;
  flex-wrap: wrap;
}

.counter-card {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-8);
  border-radius: var(--radius-full);
  min-width: 280px;
}

.counter-card--today {
  border: 2px solid var(--color-primary);
  background: var(--bg-surface);
}

.counter-card--total {
  border: 2px solid var(--color-primary);
  background: var(--color-primary);
  color: #ffffff;
}

.counter-card--users {
  border: 2px solid #3883FF;
  background: #EEF4FF;
  color: #1C273F;
}

.counter-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #3883FF;
}

.counter-label {
  font-size: 1.125rem;
  font-weight: var(--font-weight-extrabold);
  letter-spacing: 0.04em;
  flex-shrink: 0;
  min-width: 60px;
  text-align: left;
}

.counter-card--today .counter-label { color: var(--color-primary); opacity: 0.65; }
.counter-card--total .counter-label { color: rgba(255,255,255,0.9); opacity: 0.80; }
.counter-card--users .counter-label { color: #1C273F; opacity: 0.75; min-width: 72px; }
.counter-card--users .counter-value { color: #1C273F; }
.counter-card--users .counter-unit  { color: #1C273F; }

.counter-value {
  font-size: clamp(1.125rem, 3vw, 1.625rem);
  font-weight: var(--font-weight-extrabold);
  flex: 1;
  text-align: right;
}

.counter-card--today .counter-value { color: var(--text-primary); }
.counter-card--total .counter-value { color: #ffffff; }

.counter-unit {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  flex-shrink: 0;
}

.counter-card--today .counter-unit { color: var(--text-secondary); }
.counter-card--total .counter-unit { color: rgba(255,255,255,0.85); }

@media (max-width: 600px) {
  .counter-cards { flex-direction: column; align-items: center; }
  .counter-card { min-width: 0; width: 100%; max-width: 320px; padding: var(--space-4) var(--space-6); }
}

/* ══════════════════════════════════════
   모바일 공통 최적화 (Android Chrome + iOS Safari)
══════════════════════════════════════ */

/* iOS 노치/홈바 safe-area 적용 */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .hero-slider {
    padding-bottom: env(safe-area-inset-bottom);
  }
  @media (max-width: 480px) {
    .slider-dots { bottom: calc(20px + env(safe-area-inset-bottom, 0px)); }
  }
  @media (min-width: 481px) and (max-width: 640px) {
    .slider-dots { bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  }
  @media (min-width: 641px) {
    .slider-dots { bottom: calc(32px + env(safe-area-inset-bottom, 0px)); }
  }
}

/* 슬라이더 터치 스와이프 지원 (CSS hint) */
.slider-track {
  touch-action: pan-y;
}

/* 버튼 터치 피드백 — iOS tap highlight 제거 */
.btn-slide,
.dot {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

/* 모바일 nav — 로고 크기 축소 */
@media (max-width: 480px) {
  .nav-logo { font-size: 1.375rem; }
  .nav-inner { padding: 0 var(--space-4); }
}

/* 슬라이드 텍스트 모바일 최적화 */
@media (max-width: 480px) {
  .slide-content {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    height: 100%;
    padding-top: calc(60px + env(safe-area-inset-top, 0px) + 60px);
    padding-bottom: max(60px, env(safe-area-inset-bottom, 0px));
    justify-content: flex-start;
  }
  .slide-eyebrow { font-size: 0.875rem; margin-bottom: var(--space-3); }
  .slide-headline { font-size: clamp(2.25rem, 9.5vw, 3rem); margin-bottom: var(--space-3); }
  .slide-sub { font-size: 1.125rem; margin-bottom: var(--space-6); }
  .slide-cta { gap: var(--space-2); flex-direction: column; margin-top: auto; }
  .btn-slide { padding: 12px 20px; font-size: 1rem; width: 100%; }
  .slider-dots { bottom: 20px; }
}

/* 터치 디바이스에서 hover 상태 고착 방지 */
@media (hover: none) {
  .btn-slide-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.7); }
  .btn-slide-solid:hover { background: #3883FF; border-color: #3883FF; }
}

/* 모바일 카운터 카드 */
@media (max-width: 480px) {
  .section-counter { padding: var(--space-10) var(--space-4); }
  .counter-headline { font-size: clamp(1.125rem, 5vw, 1.5rem); }
  .counter-card { padding: var(--space-4) var(--space-5); }
  .counter-card { padding: var(--space-4) 12px; }
  .counter-value { font-size: clamp(1rem, 4vw, 1.375rem); min-width: 0; }
  .counter-label { min-width: auto; flex-shrink: 1; }
}

@media (max-width: 360px) {
  .counter-value { font-size: 0.875rem; }

  .section-services,
  .section-how,
  .section-social,
  .section-reviews,
  .section-second-cta,
  .section-faq {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-header { margin-bottom: var(--space-8); }
  .section-title  { font-size: var(--font-size-2xl); }
  .section-desc   { font-size: var(--font-size-base); }
}

/* ══════════════════════════════════════
   SEARCH BANNER (네이버·구글)
══════════════════════════════════════ */
.section-search-banner {
  padding: var(--space-8) var(--space-6);
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.search-banners-wrapper {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.search-banner {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4) var(--space-5);
  background: #fff;
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-md);
  text-decoration: none;
  color: var(--text-primary);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  cursor: pointer;
}

.search-banner:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 131, 255, 0.18);
  border-color: var(--color-primary-dark, #0075FF);
}

.search-banner:active {
  transform: translateY(0);
  box-shadow: none;
}

.search-banner-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}

.search-banner-icon svg {
  width: 100%;
  height: 100%;
}

.search-banner-text {
  flex: 1;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  color: var(--text-secondary);
  word-break: keep-all;
}

.search-banner-text strong {
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
}

.search-banner-lupe {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  color: var(--color-primary);
}

/* 기본(전역): 모바일 텍스트 숨김 */
.text-mobile { display: none; }

@media (max-width: 640px) {
  .text-desktop { display: none; }
  .text-mobile { display: inline; }
}

/* ── 모바일 480px 이하 ── */
@media (max-width: 480px) {
  .section-search-banner {
    padding: 20px 16px;
  }

  .search-banner {
    padding: var(--space-3) var(--space-4);
    gap: var(--space-3);
  }

  .search-banner-icon {
    width: 26px;
    height: 26px;
  }

  .search-banner-text {
    font-size: var(--font-size-sm);
  }

  /* ── B-2: 슬라이드 1 CTA — 세로 스택 전체 너비 ── */
  .slide--two-col .slide-cta {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin-top: auto;
  }
  .slide--two-col .slide-cta .btn-slide {
    flex: unset;
    width: 100%;
    justify-content: center;
    padding: 12px 12px;
    font-size: 1rem;
  }

  /* ── B-3: 슬라이드 2-5 콘텐츠 — 뱃지 없으므로 padding-top 더 줌 ── */
  .slide:not(.slide--two-col) .slide-content {
    padding-top: 160px;
  }
  /* ── B-3-5: 슬라이드 5만 텍스트 위로 ── */
  .slide[data-slide="4"] .slide-content {
    padding-top: 120px;
  }

  /* ── B-3: 슬라이드 2-5 CTA — 세로 스택 전체 너비 ── */
  .slide:not(.slide--two-col) .slide-cta {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: auto;
  }
  .slide:not(.slide--two-col) .slide-cta .btn-slide {
    width: 100%;
    justify-content: center;
    padding: 12px 0;
    font-size: 1rem;
    white-space: nowrap;
  }
  .slide:not(.slide--two-col) .slide-cta .btn-slide svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }

  /* ── B-4: 신뢰 배지 — 텍스트 컬럼 최상단 고정 ── */
  .slide-trust-badges {
    order: -1;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: var(--space-4);
    justify-content: center;
  }
  .slide-trust-item {
    flex: 1;
    justify-content: center;
    padding: 9px 6px;
    font-size: 0.6875rem;
    gap: 4px;
    min-width: 0;
  }
  .slide-trust-item svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
  }

  /* ── B-5/B-6: 슬라이드 1 — 폰 이미지만 숨김, 코인·필 전체 슬라이드 오버레이 ── */

  /* phone 이미지 숨김 */
  .slide-illust-img { display: none; }

  /* slide-content: 좌우 패딩 제거 + nav 직후 시작 + height 100% + 상단 정렬 */
  .slide--two-col .slide-content {
    padding-left: 0;
    padding-right: 0;
    padding-top: 88px;
    padding-bottom: 60px;
    height: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  /* text-col: 전폭, 자체 패딩, z-index 높여 코인·필 위에 표시 */
  .slide--two-col .slide-text-col {
    order: unset;
    align-items: center;
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-left: var(--space-4);
    padding-right: var(--space-4);
    position: relative;
    z-index: 2;
  }

  /* 텍스트 크기 — 900px 블록 specificity 패배 방지 */
  .slide--two-col .slide-eyebrow { font-size: 0.75rem; }
  .slide--two-col .slide-headline { font-size: clamp(2.125rem, 9vw, 2.875rem); }
  .slide--two-col .slide-sub { font-size: 1rem; line-height: 1.6; }

  /* illust-col → flow에서 제거, slide-content 전체 오버레이 */
  .slide--two-col .slide-illust-col {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    display: block;
    flex: none;
  }

  /* phone-illust-wrap → 오버레이 전체 채움 */
  .phone-illust-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  /* 코인 — 텍스트 위아래 빈 공간 */
  .coin-float--1 { top: 8%;  right: 5%; }
  .coin-float--2 { top: 20%; left: 3%; }
  .coin-float--3 { top: 78%; right: 7%; }

  /* floating pill → 모바일에서 숨김 (slide-mobile-badges로 대체) */
  .slide--two-col .phone-trust-badge,
  .slide--two-col .phone-naver-pill,
  .slide--two-col .phone-google-pill { display: none; }

  /* ── 모바일 네트워크 배지 2행 ── */
  .slide-mobile-badges {
    display: flex;
    order: -2;
    flex-wrap: nowrap;
    gap: 6px;
    width: 100%;
    justify-content: center;
    margin-bottom: 6px;
  }
  .slide-mobile-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex: 1;
    padding: 7px 6px;
    border-radius: 999px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: #fff;
    white-space: nowrap;
    min-width: 0;
    border: 1px solid transparent;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
  }
  .slide-mobile-badge--naver { background: rgba(255,255,255,0.15); border-color: rgba(3, 199, 90, 0.65); }
  .slide-mobile-badge--google { background: rgba(255,255,255,0.15); border-color: rgba(66, 133, 244, 0.65); }
  .slide-mobile-badge--years { background: rgba(255,255,255,0.15); border-color: rgba(217, 119, 6, 0.70); }
}

/* ── 짧은 화면 대응 (iPhone SE 등 height ≤ 680px) ── */
@media (max-width: 480px) and (max-height: 680px) {
  .slide-mobile-badges { display: none; }
  .slide-trust-badges { margin-bottom: var(--space-2); }
  .slide--two-col .slide-headline { font-size: clamp(1.75rem, 7.5vw, 2.25rem); }
  .slide--two-col .slide-sub { font-size: 0.875rem; }
  .slide--two-col .slide-cta .btn-slide { padding: 13px 12px; font-size: 0.9375rem; }
  .slide:not(.slide--two-col) .slide-content { padding-top: 130px; }
  .slide:not(.slide--two-col) .slide-cta .btn-slide { padding: 13px 0; font-size: 0.9375rem; }
  .slide-headline { font-size: clamp(1.875rem, 8vw, 2.5rem); }
  .slide-sub { font-size: 1rem; }
  .btn-slide { padding: 13px 24px; font-size: 0.9375rem; }
}

/* ══════════════════════════════════════
   HERO SLIDE 1 — 폰 일러스트 생동감 래퍼
══════════════════════════════════════ */
.phone-illust-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* 외부 플로팅 코인 */
.coin-float {
  position: absolute;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.35));
  z-index: 2;
  pointer-events: none;
}
.coin-float--1 { top: 0%;  right: -5%; animation: coinFloat1 2.8s ease-in-out infinite; }
.coin-float--2 { top: 8%;  left: -8%; animation: coinFloat2 3.5s ease-in-out 0.6s infinite; }
.coin-float--3 { top: 30%; right: -12%; animation: coinFloat3 2.2s ease-in-out 1.2s infinite; }

@keyframes coinFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-10px) rotate(5deg); }
}
@keyframes coinFloat2 {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%       { transform: translateY(-12px) rotate(-5deg); }
}
@keyframes coinFloat3 {
  0%, 100% { transform: translateY(0) rotate(8deg); }
  50%       { transform: translateY(-8px) rotate(8deg); }
}

/* 7년 안전 운영 뱃지 */
.phone-trust-badge {
  position: absolute;
  top: 12%;
  right: -16%;
  background: linear-gradient(135deg, #D97706, #F59E0B);
  border-radius: 999px;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 800;
  color: #ffffff;
  animation: pillFloat 3.4s ease-in-out 0.4s infinite;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 4px 14px rgba(217,119,6,0.45);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* 네이버 정식등록 pill 플로팅 */
.phone-naver-pill {
  position: absolute;
  bottom: 22%;
  left: -12%;
  background: #03C75A;
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
  animation: pillFloat 3.8s ease-in-out infinite;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(3,199,90,0.35);
  white-space: nowrap;
}

/* 구글 정식등록 pill 플로팅 */
.phone-google-pill {
  position: absolute;
  bottom: 10%;
  right: -14%;
  background: #4285F4;
  border-radius: 999px;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #ffffff;
  animation: pillFloat 4.3s ease-in-out 1s infinite;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 4px 12px rgba(66,133,244,0.35);
  white-space: nowrap;
}

@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

@media (max-width: 767px) {
  .phone-trust-badge { right: -5%; top: 8%; }
  .phone-naver-pill { left: -5%; }
  .phone-google-pill { right: -5%; }
}

/* ══════════════════════════════════════
   TAP HIGHLIGHT — iOS/Android 터치 피드백
══════════════════════════════════════ */
* { -webkit-tap-highlight-color: transparent; }
button, a, [role="button"] { -webkit-tap-highlight-color: rgba(0,0,0,0.05); }

/* ── 폰 뱃지 480px 이하 폰트 — 메인 480px 블록에서 11px로 통합 처리 ── */

.notices-empty {
  text-align: center;
  color: #9CA3AF;
  padding: 40px 0;
  font-size: 0.875rem;
}

/* ══════════════════════════════════════
   SECTION: 사기 주의 (section-fraud-warning)
══════════════════════════════════════ */
.section-fraud-warning {
  padding: 80px var(--space-6);
  background: var(--bg-base);
  border-top: 3px solid #FCA5A5;
}

.fraud-inner {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  max-width: 900px;
  margin: 0 auto;
}

.fraud-content { flex: 1; min-width: 0; }

.fraud-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: #FEF2F2;
  border: 1px solid #FCA5A5;
  color: var(--color-danger);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-5);
}

.fraud-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: var(--space-4);
  word-break: keep-all;
}

.fraud-sub {
  font-size: var(--font-size-base);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  word-break: keep-all;
}

.fraud-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.fraud-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-4) var(--space-5);
  background: var(--bg-surface);
  border: 1px solid #FCA5A5;
  border-left: 3px solid var(--color-danger);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--text-primary);
  line-height: 1.5;
}

.fraud-item-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--color-danger);
  margin-top: 1px;
}

.fraud-image {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fraud-image img {
  width: 160px;
  height: 160px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .fraud-image { display: none; }
}

@media (max-width: 640px) {
  .section-fraud-warning { padding: 60px var(--space-4); }
  .fraud-inner { flex-direction: column; gap: var(--space-6); }
  .fraud-title { font-size: var(--font-size-xl); }
  .fraud-sub { font-size: var(--font-size-sm); }
}

@media (max-width: 480px) {
  .section-fraud-warning { padding: 48px var(--space-4); }
  .fraud-item { padding: var(--space-3) var(--space-4); }
}

/* ══════════════════════════════════════
   SECTION: FAQ 아코디언 (section-faq-accordion)
══════════════════════════════════════ */
.section-faq-accordion {
  padding: 100px var(--space-6);
  background: var(--bg-base);
}

.faq-acc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--space-12);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── 아코디언 아이템 ── */
.faq-acc-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-acc-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--color-primary-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-left-color var(--transition), box-shadow var(--transition);
}

.faq-acc-item.is-open {
  border-left-color: var(--color-primary);
  box-shadow: 0 2px 12px rgba(56, 131, 255, 0.10);
}

.faq-acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background var(--transition);
}

.faq-acc-btn:hover {
  background: rgba(56, 131, 255, 0.04);
}

.faq-acc-num {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  color: var(--color-primary-light);
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  min-width: 20px;
  transition: color var(--transition);
}

.faq-acc-item.is-open .faq-acc-num {
  color: var(--color-primary);
}

.faq-acc-q {
  flex: 1;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  color: var(--text-primary);
  line-height: 1.5;
  word-break: keep-all;
}

.faq-acc-chevron {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform 0.3s ease, color var(--transition);
}

.faq-acc-item.is-open .faq-acc-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

/* 패널: hidden 속성 사용 금지 — max-height로만 제어 */
.faq-acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-acc-item.is-open .faq-acc-panel {
  max-height: 500px;
}

.faq-acc-panel-inner {
  padding: 0 var(--space-6) var(--space-5);
  padding-left: 60px; /* num(20px) + gap(16px) + btn-padding-left(24px) = 오프셋 */
  font-size: var(--font-size-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── CTA 패널 ── */
.faq-cta-panel {
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border-top: 4px solid var(--color-primary);
  padding: var(--space-8);
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  text-align: center;
}

.faq-cta-label {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--text-primary);
  line-height: 1.3;
}

.faq-cta-response {
  font-size: var(--font-size-sm);
  color: var(--text-muted);
}

.faq-cta-response strong {
  color: var(--color-primary);
  font-weight: var(--font-weight-semibold);
}

.faq-cta-btns {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.faq-cta-btn {
  width: 100%;
  justify-content: center;
}

.faq-cta-meta {
  font-size: var(--font-size-xs);
  color: var(--text-muted);
  letter-spacing: 0.01em;
}

/* ── 반응형 ── */
@media (max-width: 900px) {
  .faq-acc-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }
  .faq-cta-panel {
    order: -1;
    position: static;
  }
}

@media (max-width: 640px) {
  .section-faq-accordion { padding: 60px var(--space-4); }
  .faq-acc-btn {
    padding: var(--space-4) var(--space-5);
    gap: var(--space-3);
  }
  .faq-acc-panel-inner {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
    padding-bottom: var(--space-4);
  }
  .faq-cta-panel { padding: var(--space-6); }
}

@media (max-width: 480px) {
  .section-faq-accordion { padding: 48px var(--space-4); }
}

/* ================================================================
   480px~540px 갭 보완 — 중간 소형 기기
   ================================================================ */
@media (max-width: 540px) {
  /* 섹션 공통 좌우 여백 축소 */
  .section-services,
  .section-how,
  .section-social,
  .section-cta-bottom {
    padding-left: var(--space-4);
    padding-right: var(--space-4);
  }

  /* 섹션 헤더 타이포그래피 조정 */
  .section-title { font-size: var(--font-size-2xl); }
  .section-desc  { font-size: var(--font-size-sm); }

  /* 히어로 슬라이드 콘텐츠 padding */
  .slide-content {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .slide-trust-item {
    padding: 8px 12px;
    font-size: 0.75rem;
    gap: 4px;
  }

  /* 서비스 카드 */
  .service-card { padding: var(--space-3) var(--space-4); }

  /* FAQ 섹션 */
  .section-faq-accordion { padding: 52px var(--space-4); }
}

/* ================================================================
   360px 이하 초소형 기기 — 375px 블록 이후 추가 축소
   ================================================================ */
@media (max-width: 360px) {
  /* nav */

  /* 히어로 헤드라인 */
  .slide-headline {
    font-size: clamp(1.375rem, 6vw, 1.875rem);
  }
  .slide-sub { font-size: 0.8125rem; }

  /* CTA 버튼 */
  .btn-slide {
    padding: 9px 12px;
    font-size: 0.75rem;
    min-height: 44px;
  }

  /* 섹션 좌우 여백 최소화 */
  .section-services,
  .section-how,
  .section-social,
  .section-cta-bottom {
    padding-left: var(--space-3) !important;
    padding-right: var(--space-3) !important;
  }

  /* 섹션 헤더 */
  .section-title { font-size: var(--font-size-xl); }
  .section-desc  { font-size: var(--font-size-xs); }

  /* 수수료 테이블 */
  .fee-table th,
  .fee-table td { padding: 6px 4px; font-size: 0.6875rem; }

  /* 서비스 카드 */
  .service-card { padding: var(--space-2) var(--space-3); gap: var(--space-2); }

  /* FAQ */
  .section-faq-accordion { padding: 40px var(--space-3); }
}
