* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
  font-family: 'Pretendard', sans-serif; 
  letter-spacing: -0.03em; 
}

body { 
  width: 100%;
  min-height: 100vh;
  background-color: #f5f5f5; 
  display: flex; 
  justify-content: center; 
  align-items: flex-start; 
}

.container { 
  width: 100%; 
  max-width: 480px;
  min-height: 100vh;
  background-color: #fff; 
  position: relative; 
  display: flex; 
  flex-direction: column; 
  box-shadow: 0 0 30px rgba(0,0,0,0.1); 
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =============================================
   HEADER 공통
   ============================================= */
.header { 
  display: flex; 
  justify-content: space-between; 
  padding: 25px 20px 15px; 
  align-items: center; 
}

.sub-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px 0;
  height: 70px;
  background-color: #fff;
  flex-shrink: 0;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-right {
  display: flex;
  align-items: center;
}

.btn-back {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent !important;
  border: none !important;
  padding: 0;
  cursor: pointer;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.btn-back img {
  width: 24px;
  height: auto;
}

.btn-back svg {
  width: 10px;
  height: 18px;
}

.header-title {
  font-size: 18px;
  font-weight: 700;
  color: #1C1C1E;
  line-height: 1;
  white-space: nowrap;
}

.img-progress {
  width: 44px;
  height: 44px;
}

/* =============================================
   PROGRESS CIRCLE 공통
   ============================================= */
.progress-circle {
  position: relative;
  width: 44px;
  height: 44px;
}

/* SVG 원형 (identity_verification 방식) */
.progress-circle svg {
  width: 44px;
  height: 44px;
  transform: rotate(-90deg);
}

.progress-circle .track {
  fill: none;
  stroke: #E8EEFF;
  stroke-width: 3.5;
}

.progress-circle .fill {
  fill: none;
  stroke: #0A41ED;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 113;
  stroke-dashoffset: 56.5;
  transition: stroke-dashoffset 0.6s ease;
}

.progress-label,
.progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  font-weight: 700;
  color: #0A41ED;
}

/* SVG 패스 방식 (estimated_price 방식) */
.circular-chart {
  display: block;
  width: 100%;
  height: 100%;
  transform: none;
}

.circle-bg {
  fill: none;
  stroke: #E8EFFF;
  stroke-width: 3;
}

.circle {
  fill: none;
  stroke: #0A41ED;
  stroke-width: 3;
  stroke-linecap: round;
  transition: stroke-dasharray 0.3s ease;
}

/* =============================================
   BUTTON 공통
   ============================================= */

/* 메인 히어로 슬라이더 버튼 */
.btn-primary-hero {
  width: calc(100% - 48px);
  background-color: #0A41ED;
  color: white;
  padding: 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  border: none;
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  cursor: pointer;
}

/* 서브 페이지 하단 고정 버튼 래퍼 */
.btn-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px 32px;
  background-color: #fff;
}

/* 서브 페이지 파란 버튼 */
.btn-primary {
  width: 100%;
  height: 54px;
  background-color: #0A41ED;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.03em;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.btn-primary:active {
  transform: scale(0.98);
  background-color: #0835C4;
}

/* 하단 텍스트형 보조 버튼 (판매 취소 및 반품 등) */
.btn-secondary-text {
  width: 100%;
  height: 48px;
  background: none;
  border: none;
  font-size: 15px;
  font-weight: 500;
  color: #666D7A;
  cursor: pointer;
  letter-spacing: -0.03em;
  -webkit-tap-highlight-color: transparent;
}

/* estimated_price용 full 버튼 */
.btn-primary-full {
  width: 100%;
  height: 56px;
  background-color: #0A41ED;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: -0.03em;
}

/* =============================================
   MAIN PAGE
   ============================================= */
.logo { font-size: 20px; font-weight: 500; color: #000; }
.logo-img { height: 24px; width: auto; display: block; }
.btn-intro { padding: 6px 12px; border: 1px solid #eee; border-radius: 8px; font-size: 12px; background: #fff; color: #666; cursor: pointer; }

/* =============================================
   테이블형 정보 섹션 공통
   배경: #F5F7FE / 구분선: #DFE8FE
   ============================================= */
.table-section {
  padding: 24px 20px;
  background-color: #F5F7FE;
  margin-top: 0;
}

/* 같은 테이블 그룹 사이 구분선 (간격 없이 선만) */
.table-section + .table-section {
  border-top: 1px solid #DFE8FE;
  margin-top: 0;
}

/* 진행상황 박스(device-card) → 첫 번째 테이블 위 흰 여백 20px */
.device-card + .table-section {
  margin-top: 20px;
  border-top: none;
}

/* 마지막 테이블 → 안내사항 위 흰 여백 20px */
.table-section + .notice-box {
  margin-top: 20px;
}

.table-title {
  font-size: 16px;
  font-weight: 700;
  color: #0F172B;
  margin-bottom: 16px;
}

.table-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-list li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
}

.table-label {
  width: 72px;
  flex-shrink: 0;
  color: #666D7A;
}

.table-value {
  color: #0F172B;
  line-height: 1.5;
}

.table-value.blue {
  color: #0A41ED;
  font-weight: 500;
}

.hero-section { padding: 10px 20px 20px; }
.hero-card-fixed {
  width: 100%; aspect-ratio: 1 / 1; background-color: #F5F7FE; 
  border-radius: 10px; position: relative; overflow: hidden;
}
.hero-swiper { width: 100%; height: 100%; }
.hero-content { padding-top: 48px; text-align: center; position: relative; z-index: 10; }
.hero-title { font-size: 20px; font-weight: 500; line-height: 1.35; color: #0F172B; }
.hero-desc { font-size: 13px; color: #0F172B; padding: 0 10px; line-height: 1.5; word-break: keep-all; margin-top: 8px; }
.hero-visual { position: absolute; top: 55%; left: 50%; transform: translate(-50%, -50%); width: 75%; display: flex; justify-content: center; z-index: 1; }
.hero-visual img { width: 100%; height: auto; object-fit: contain; }
.page-indicator { position: absolute; top: 16px; right: 24px; z-index: 50; font-size: 11px; color: #888; background: rgba(255,255,255,0.6); padding: 3px 10px; border-radius: 12px; }

.section { padding: 35px 20px 0; }
.section-title { font-size: 17px; font-weight: 500; margin-bottom: 20px; color: #111; }

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; text-align: center; }
.process-icon { height: 60px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px; }
.process-icon img { height: 100%; width: auto; object-fit: contain; }
.process-item span { font-size: 13px; color: #444; }

.service-grid { display: flex; gap: 12px; }
.service-grid--2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.service-card { flex: 1; padding: 22px; border-radius: 18px; height: 105px; position: relative; overflow: hidden; background-color: #F5F7FE; color: #0F172B; }
.service-card p { font-size: 15px; font-weight: 700; line-height: 1.4; }
.card-icon-right { position: absolute; bottom: 12px; right: 12px; width: 44px; height: 44px; }
.card-icon-right img { width: 100%; height: auto; object-fit: contain; }

.story-list { display: flex; flex-direction: column; gap: 10px; }
.story-item { background-color: #fff; border: 0.5px solid #e0e0e0; border-radius: 16px; padding: 24px 20px; }
.story-item h4 { color: #0A41ED; font-size: 16px; font-weight: 500; margin-bottom: 8px; }
.story-item p { color: #0F172B; font-size: 14px; font-weight: 400; line-height: 1.5; }

.faq-list { display: flex; flex-direction: column; margin: 0 -20px; width: calc(100% + 40px); }
.faq-list li { display: flex; flex-direction: column; padding: 24px 20px; background-color: #fff; border-bottom: 1px solid #F0F0F0; }
.faq-item-header { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.faq-question { display: flex; align-items: center; gap: 8px; font-size: 15px; font-weight: 500; color: #111; }
.faq-answer { display: none; padding-top: 15px; margin-top: 15px; margin-left: -20px; margin-right: -20px; padding-left: 20px; padding-right: 20px; border-top: 1px solid #F0F0F0; font-size: 13px; color: #45556C; }
.faq-list li.active .faq-answer { display: block; }
.faq-arrow-btn { background: none; border: none; width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; }
.faq-arrow-btn img { width: 14px; height: auto; }

.footer { width: 100%; display: flex; flex-direction: column; align-items: center; margin-top: auto; }
.btn-more { background: none; border: none; cursor: pointer; display: flex; justify-content: center; align-items: center; padding: 60px 0 32px; }
.btn-more img { width: 32px; height: auto; }

/* 푸터 회사 정보 */
.footer-info {
  width: 100%;
  padding: 32px 20px 40px;
  background-color: #F5F7FA;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-company {
  font-size: 15px;
  font-weight: 700;
  color: #1C3A6B;
  margin-bottom: 4px;
}

.footer-detail {
  font-size: 13px;
  color: #45556C;
  line-height: 1.6;
  word-break: keep-all;
}

.footer-copy {
  font-size: 12px;
  color: #45556C;
  margin-top: 4px;
}