@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");

/* ============================================================
   ENTROZY 동네창고 - 스타일시트 (style.css)
   컨셉: 밝고 정돈된 로컬 서비스, 신뢰감 있는 딥네이비 & 웜오렌지 포인트
   ============================================================ */

:root {
  --primary: #1E293B;       /* 신뢰감 있는 딥 슬레이트 */
  --primary-dark: #0F172A;
  --primary-light: #334155;
  --accent: #E05D26;        /* 따뜻하고 직관적인 오렌지/테라코타 */
  --accent-hover: #C2410C;
  --accent-soft: #FFF7ED;
  --accent-border: #FFEDD5;
  --success: #059669;
  --success-soft: #ECFDF5;
  --warning: #B45309;
  --warning-soft: #FFFBEB;
  --warning-border: #FDE68A;
  
  --bg-page: #F8FAFC;       /* 화사하고 깨끗한 라이트 그레이 배경 */
  --bg-card: #FFFFFF;
  --bg-muted: #F1F5F9;
  --bg-subtle: #F8FAFC;
  
  --text-main: #0F172A;
  --text-sub: #475569;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  --border-light: #E2E8F0;
  --border-card: #E2E8F0;
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
  --shadow-modal: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  
  --transition: all 0.2s ease-in-out;
  --container-max: 1120px;
}

/* Base & Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.6;
  word-break: keep-all;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* 공통 배지 & 타이틀 컴포넌트 */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.badge-primary {
  background-color: #EEF2F6;
  color: var(--primary);
}

.badge-accent {
  background-color: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.badge-success {
  background-color: var(--success-soft);
  color: var(--success);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px auto;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* 버튼 컴포넌트 */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 12px rgba(224, 93, 38, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(224, 93, 38, 0.32);
}

.btn-secondary {
  background-color: var(--bg-card);
  color: var(--text-main);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-muted);
  border-color: #CBD5E1;
}

.btn-dark {
  background-color: var(--primary);
  color: #FFFFFF;
}

.btn-dark:hover {
  background-color: var(--primary-dark);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

/* ============================================================
   [A] 헤더 (GNB)
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  flex-wrap: nowrap;
  gap: 16px;
}

.brand-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--primary);
  white-space: nowrap;
}

.brand-badge {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  background-color: var(--accent-soft);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: clamp(10px, 1.25vw, 22px);
  flex-wrap: nowrap;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

.nav-links li {
  flex-shrink: 0;
  white-space: nowrap;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-sub);
  white-space: nowrap;
  word-break: keep-all;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.header-actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
}

.mobile-menu-btn {
  display: none;
  padding: 8px;
  color: var(--text-main);
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}

/* ============================================================
   [B] 히어로 섹션
   ============================================================ */
.hero-section {
  padding: 60px 0 80px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-page) 100%);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-headline {
  font-size: 2.65rem;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.04em;
  color: var(--primary-dark);
}

.hero-subheadline {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.4;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-sub);
  line-height: 1.65;
  max-width: 560px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background-color: var(--bg-muted);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-sub);
  font-weight: 500;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
}

.hero-notice-mini {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
}

.hero-image-card {
  position: relative;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

.hero-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.floating-text-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
}

.floating-text-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   [C] 서비스 핵심 장점 섹션
   ============================================================ */
.features-section {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feature-desc {
  font-size: 0.925rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* ============================================================
   [D] 보관 가능한 짐 섹션
   ============================================================ */
.storage-items-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.item-card {
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.item-card:hover {
  border-color: var(--accent);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-md);
}

.item-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: #EEF2F6;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-name {
  font-size: 1.1rem;
  font-weight: 750;
  color: var(--text-main);
}

.item-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.5;
  margin-bottom: 14px;
  flex-grow: 1;
}

.item-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.item-chip {
  background-color: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  color: var(--text-sub);
  font-weight: 500;
}

/* 대형 짐 불가 경고 배너 */
.warning-banner {
  background-color: var(--warning-soft);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.warning-icon {
  color: var(--warning);
  flex-shrink: 0;
}

.warning-title {
  font-size: 0.95rem;
  font-weight: 750;
  color: #92400E;
  margin-bottom: 3px;
}

.warning-desc {
  font-size: 0.875rem;
  color: #B45309;
  line-height: 1.45;
}

/* ============================================================
   [E] 가격 안내 섹션
   ============================================================ */
.pricing-section {
  padding: 80px 0;
  background-color: var(--bg-page);
}

/* 입고 방식 탭 토글 */
.pricing-tab-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 48px;
  margin-bottom: 36px;
  background-color: #EEF2F6;
  padding: 6px;
  border-radius: var(--radius-lg);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: none;
  background: transparent;
  border-radius: var(--radius-md);
  color: var(--text-sub);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.pricing-tab-btn:hover {
  color: var(--primary);
  background-color: rgba(255, 255, 255, 0.6);
}

.pricing-tab-btn.active {
  background-color: #FFFFFF;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.pricing-tab-btn .tab-icon {
  font-size: 1.15rem;
}

.pricing-tab-btn .tab-sub {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--success);
  background-color: var(--success-soft);
  padding: 2px 7px;
  border-radius: var(--radius-full);
}

.pricing-tab-btn .tab-badge {
  font-size: 0.75rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: var(--accent);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: -0.02em;
}

/* 플로팅 추천 말풍선 뱃지 (문 앞 새벽 픽업 탭 상단) */
.tab-popular-bubble {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #FF5500 0%, #E05D26 100%);
  color: #FFFFFF;
  font-size: 0.92rem;
  font-weight: 800;
  padding: 5px 15px;
  border-radius: 24px;
  box-shadow: 0 5px 16px rgba(224, 93, 38, 0.45);
  white-space: nowrap;
  z-index: 10;
  letter-spacing: -0.02em;
  animation: floatTabBubble 2.2s ease-in-out infinite;
  pointer-events: none;
}

.tab-popular-bubble::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #E05D26;
}

.tab-popular-bubble .bubble-icon {
  font-size: 1.05rem;
  display: inline-block;
  animation: pulseFire 1.2s ease-in-out infinite alternate;
}

@keyframes floatTabBubble {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes pulseFire {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.22);
  }
}

/* 탭 패널 */
.pricing-panel {
  display: none;
  animation: fadeIn 0.3s ease-in-out;
}

.pricing-panel.active {
  display: block;
}

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

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.price-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.price-card:hover {
  transform: translateY(-3px);
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}

.price-card.popular {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(224, 93, 38, 0.12);
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFDFB 100%);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--accent);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 14px;
  border-radius: var(--radius-full);
  letter-spacing: -0.01em;
  box-shadow: 0 2px 8px rgba(224, 93, 38, 0.3);
}

.price-header {
  margin-bottom: 14px;
}

.price-category {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.discount-pill {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: var(--radius-sm);
  background-color: #EEF2F6;
  color: var(--primary);
}

.discount-pill.highlight {
  background-color: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.price-target {
  font-size: 0.85rem;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 6px;
}

.price-amount-wrap {
  margin: 12px 0 20px 0;
  padding: 16px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.price-period {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.price-amount {
  font-size: 2.15rem;
  font-weight: 850;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.price-card.popular .price-amount {
  color: var(--accent);
}

.price-suffix {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-sub);
}

.price-monthly-rate {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.price-monthly-rate.special {
  color: var(--accent);
  font-weight: 700;
}

/* 카드 세부 항목 리스트 */
.price-breakdown-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
  flex-grow: 1;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.price-breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
}

.price-breakdown-item .item-lbl {
  color: var(--text-sub);
}

.price-breakdown-item .item-val {
  font-weight: 700;
  color: var(--primary);
}

.price-breakdown-item .item-val.free {
  color: var(--success);
  font-weight: 800;
}

.price-card .btn {
  width: 100%;
}

/* 상세 요금표 (테이블) */
.pricing-table-wrap {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 36px;
  box-shadow: var(--shadow-sm);
}

.pricing-table-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  flex-wrap: wrap;
  gap: 10px;
}

.pricing-table-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.pricing-table-note {
  font-size: 0.85rem;
  color: var(--text-sub);
  background-color: #EEF2F6;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-table-note.highlight {
  background-color: var(--accent-soft);
  color: var(--accent);
  font-weight: 700;
  border: 1px solid var(--accent-border);
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.95rem;
}

.pricing-table th {
  background-color: #F8FAFC;
  color: var(--text-main);
  font-weight: 750;
  padding: 14px 16px;
  border-bottom: 2px solid var(--border-light);
  white-space: nowrap;
}

.pricing-table th.th-total {
  background-color: #F1F5F9;
  color: var(--primary-dark);
}

.pricing-table td {
  padding: 16px 14px;
  border-bottom: 1px solid #F1F5F9;
  color: var(--text-sub);
  vertical-align: middle;
  white-space: nowrap;
}

.pricing-table .td-period {
  font-weight: 700;
  color: var(--primary);
}

.pricing-table .td-total {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--primary-dark);
  background-color: rgba(241, 245, 249, 0.4);
}

.pricing-table .td-total.highlight {
  color: var(--accent);
  font-size: 1.15rem;
}

.pricing-table .row-best {
  background-color: #FFFDF9;
}

.tag-free {
  display: inline-block;
  background-color: var(--success-soft);
  color: var(--success);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 3px 8px;
  border-radius: 4px;
}

.tag-free.highlight {
  background-color: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent-border);
}

.tag-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 2px;
}

.badge-best-inline {
  display: inline-block;
  background-color: var(--accent);
  color: #FFFFFF;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  vertical-align: middle;
}

/* 픽업 옵션 및 가격 참고 배너 */
.pricing-extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.extra-info-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.extra-info-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: #EEF2F6;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.extra-info-title {
  font-size: 0.98rem;
  font-weight: 750;
  color: var(--primary);
  margin-bottom: 4px;
}

.extra-info-desc {
  font-size: 0.875rem;
  color: var(--text-sub);
  line-height: 1.5;
}

/* 픽업 전용 비주얼 배너 카드 */
.pickup-banner-card {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pickup-banner-card:hover {
  border-color: #CBD5E1;
  box-shadow: var(--shadow-md);
}

.pickup-banner-img {
  width: 140px;
  flex-shrink: 0;
}

.pickup-banner-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-banner-content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ============================================================
   [F] 이용 방법 섹션
   ============================================================ */
.process-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-card {
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
}

.process-card:hover {
  transform: translateY(-3px);
  background-color: #FFFFFF;
  box-shadow: var(--shadow-md);
  border-color: #CBD5E1;
}

.process-step-badge {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.process-card:first-child .process-step-badge {
  background-color: var(--accent);
}

.process-title {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.process-desc {
  font-size: 0.9rem;
  color: var(--text-sub);
  line-height: 1.55;
}

/* ============================================================
   [G] 신뢰 섹션 ("왜 엔트로지인가?")
   ============================================================ */
.trust-section {
  padding: 80px 0;
  background-color: #FFFFFF;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.trust-card {
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background-color: #EEF2F6;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.trust-title {
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--primary);
  margin-bottom: 10px;
}

.trust-desc {
  font-size: 0.925rem;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ============================================================
   [G-2] 서비스 지원 지역 (로컬 SEO 및 문 앞 새벽 수거 권역)
   ============================================================ */
.area-section {
  padding: 80px 0;
  background-color: #FFFFFF;
  border-top: 1px solid var(--border-light);
}

.area-card-wrap {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}

.area-group-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.area-group-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.area-group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-light);
}

.area-icon {
  font-size: 1.1rem;
}

.area-group-title {
  font-size: 1.05rem;
  font-weight: 750;
  color: var(--primary);
  margin: 0;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.area-tag {
  display: inline-block;
  background: #F1F5F9;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  letter-spacing: -0.2px;
}

.area-sub-notice {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.area-sub-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-sub);
}

.sub-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(224, 93, 38, 0.12);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.sub-badge.badge-green {
  background: rgba(16, 185, 129, 0.12);
  color: #059669;
}

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

@media (max-width: 576px) {
  .area-card-wrap {
    padding: 24px 16px;
  }
  .area-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .area-sub-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ============================================================
   [H] FAQ 섹션 (아코디언)
   ============================================================ */
.faq-section {
  padding: 80px 0;
  background-color: var(--bg-page);
}

.faq-container {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: #CBD5E1;
  box-shadow: var(--shadow-sm);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.faq-question-btn:hover {
  background-color: var(--bg-subtle);
}

.faq-icon-arrow {
  transition: transform 0.25s ease;
  color: var(--text-muted);
  flex-shrink: 0;
}

.faq-item.active .faq-icon-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: #FAFCFE;
}

.faq-item.active .faq-answer-wrap {
  max-height: 300px;
}

.faq-answer-content {
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.65;
  border-top: 1px solid #F1F5F9;
  padding-top: 16px;
}

/* ============================================================
   [I] 전환 CTA 섹션
   ============================================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-page) 0%, #EEF2F6 100%);
}

.cta-box {
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  color: #FFFFFF;
  text-align: center;
  box-shadow: var(--shadow-lg);
  max-width: 920px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.cta-box::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(224, 93, 38, 0.18) 0%, rgba(224, 93, 38, 0) 70%);
  pointer-events: none;
}

.cta-title {
  font-size: 2.15rem;
  font-weight: 850;
  line-height: 1.3;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.cta-desc {
  font-size: 1.05rem;
  color: #CBD5E1;
  max-width: 600px;
  margin: 0 auto 32px auto;
  line-height: 1.6;
}

.cta-buttons-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.btn-kakao {
  background-color: #FEE500;
  color: #191919;
  font-weight: 600;
}

.btn-kakao:hover {
  background-color: #FDD835;
}

.btn-sms {
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-sms:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   [J] 푸터
   ============================================================ */
.site-footer {
  background-color: var(--primary-dark);
  color: #94A3B8;
  padding: 60px 0 36px 0;
  border-top: 1px solid #1E293B;
  font-size: 0.875rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid #334155;
}

.footer-brand {
  font-size: 1.25rem;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.footer-test-notice {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.08);
  color: #E2E8F0;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.footer-desc {
  line-height: 1.6;
  max-width: 440px;
}

.footer-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-info-item {
  display: flex;
  gap: 10px;
}

.footer-info-label {
  color: #64748B;
  min-width: 80px;
}

.footer-info-val {
  color: #CBD5E1;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8rem;
}

.footer-copy {
  color: #64748B;
}

/* ============================================================
   [MODAL] 사진으로 견적받기 모달
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background-color: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background-color: #FFFFFF;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-modal);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-backdrop.active .modal-window {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
}

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

.wizard-step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 9px;
  background-color: #FFF2EB;
  color: var(--accent);
  border: 1px solid rgba(224, 93, 38, 0.25);
  font-size: 0.76rem;
  font-weight: 800;
  border-radius: 9999px;
  letter-spacing: 0.03em;
}

.wizard-progress-track {
  width: 100%;
  height: 4px;
  background-color: #F1F5F9;
  position: relative;
  overflow: hidden;
}

.wizard-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #E05D26, #FF7A45);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.modal-close-btn {
  color: var(--text-muted);
  padding: 6px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background-color: var(--bg-muted);
  color: var(--text-main);
}

.modal-body {
  padding: 28px;
  overflow-y: auto;
  flex-grow: 1;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.885rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 7px;
}

.form-label .required {
  color: var(--accent);
  margin-left: 2px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--text-main);
  background-color: #FFFFFF;
  transition: var(--transition);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(224, 93, 38, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

/* 버튼형 선택 그룹 & 실시간 견적 카드 */
.label-with-tip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 7px;
}

.label-with-tip .form-label {
  margin-bottom: 0;
}

.form-tip {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
}

.choice-group {
  display: flex;
  gap: 8px;
}

.choice-group-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.choice-card-btn {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  text-align: left;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.choice-card-btn:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
  transform: translateY(-1px);
}

.choice-card-btn.selected {
  background: #FFF7ED;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(224, 93, 38, 0.18);
}

.choice-card-btn .choice-icon {
  font-size: 1.3rem;
  margin-bottom: 2px;
}

.choice-card-btn .choice-title {
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--primary);
}

.choice-card-btn .choice-badge {
  font-size: 0.73rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  margin-top: 3px;
}

.choice-badge.badge-free {
  background: #ECFDF5;
  color: #047857;
}

.choice-badge.badge-highlight {
  background: #EFF6FF;
  color: #1D4ED8;
}

.choice-group-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.choice-group-grid4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.choice-group-grid5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

@media (max-width: 520px) {
  .choice-group-grid5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.choice-btn {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 10px 6px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
}

.choice-btn:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.choice-btn.selected {
  background: #FFF7ED;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(224, 93, 38, 0.18);
}

.choice-btn .btn-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
}

.choice-btn.selected .btn-text {
  color: #C2410C;
}

.choice-btn .btn-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
}

.choice-btn .btn-sub.pill {
  background: #F1F5F9;
  color: #475569;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
}

.choice-btn.selected .btn-sub.pill {
  background: #FFEDD5;
  color: #C2410C;
}

.choice-btn .btn-sub.pill.best {
  background: #FEE2E2;
  color: #DC2626;
}

/* 멀티 선택 칩 버튼 */
.choice-group-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-chip-btn {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 20px;
  padding: 7px 13px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s;
  user-select: none;
}

.choice-chip-btn:hover {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.choice-chip-btn.selected {
  background: #FFF7ED;
  border-color: var(--accent);
  color: #C2410C;
  box-shadow: 0 0 0 1.5px rgba(224, 93, 38, 0.2);
  font-weight: 700;
}

.choice-chip-btn .chip-icon {
  font-size: 0.95rem;
}

.choice-chip-btn.choice-chip-disabled {
  background: #F1F5F9;
  border-color: #E2E8F0;
  color: #94A3B8;
  cursor: not-allowed;
  opacity: 0.65;
}

.choice-chip-btn.choice-chip-disabled:hover {
  background: #F1F5F9;
  border-color: #E2E8F0;
}

.badge-coming-soon {
  font-size: 0.68rem;
  background: #E2E8F0;
  color: #64748B;
  padding: 1px 5px;
  border-radius: 4px;
  font-weight: 600;
  margin-left: 2px;
}

/* 6단계 보관 금지 품목 경고 박스 */
.prohibited-alert-card {
  background: #FFF5F5;
  border: 1.5px solid #FEB2B2;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 20px;
}

.prohibited-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: #C53030;
}

.prohibited-header h5 {
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0;
  color: #C53030;
}

.prohibited-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

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

.prohibited-item {
  background: #FFFFFF;
  border: 1px solid #FED7D7;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #4A5568;
}

.prohibited-item strong {
  color: #9B2C2C;
  display: inline-block;
  margin-bottom: 2px;
}

.prohibited-agree-wrap {
  background: #FFFFFF;
  border: 1.5px solid #FC8181;
  border-radius: 8px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prohibited-agree-wrap:hover {
  background: #FFF5F5;
  border-color: #E53E3E;
}

.prohibited-agree-wrap input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #E53E3E;
  cursor: pointer;
  flex-shrink: 0;
}

.prohibited-agree-wrap span {
  font-size: 0.84rem;
  font-weight: 700;
  color: #C53030;
  user-select: none;
}

/* 실시간 예상 견적 금액 카드 */
.estimate-preview-card {
  background: linear-gradient(135deg, #1E2B37 0%, #0F172A 100%);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  color: #FFFFFF;
  margin: 14px 0 18px 0;
  box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.estimate-preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.estimate-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #94A3B8;
}

.estimate-note {
  font-size: 0.72rem;
  color: #38BDF8;
  background: rgba(56, 189, 248, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
}

.estimate-amount-line {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.estimate-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: #FF8A4C;
  letter-spacing: -0.02em;
}

.estimate-unit {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FF8A4C;
}

.estimate-breakdown-text {
  font-size: 0.8rem;
  color: #CBD5E1;
  line-height: 1.4;
}

.estimate-caption {
  font-size: 0.73rem;
  color: #64748B;
  margin-top: 3px;
  border-top: 1px dashed rgba(255, 255, 255, 0.15);
  padding-top: 6px;
}

/* 이미지 업로드 영역 */
.upload-dropzone {
  border: 2px dashed #CBD5E1;
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  background-color: var(--bg-subtle);
  cursor: pointer;
  transition: var(--transition);
}

.upload-dropzone:hover, .upload-dropzone.dragover {
  border-color: var(--accent);
  background-color: var(--accent-soft);
}

.upload-icon {
  color: var(--accent);
  margin-bottom: 8px;
}

.upload-prompt-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.upload-sub-text {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.preview-item {
  position: relative;
  width: 100%;
  height: 75px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-remove-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: var(--radius-full);
  background-color: rgba(0, 0, 0, 0.65);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.preview-remove-btn:hover {
  background-color: #DC2626;
}

/* 체크박스 */
.form-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-sub);
  cursor: pointer;
  user-select: none;
}

.form-checkbox-label input {
  margin-top: 3px;
  accent-color: var(--accent);
  width: 16px;
  height: 16px;
}

/* 모달 완료 상태 */
.modal-success-screen {
  text-align: center;
  padding: 40px 20px;
  display: none;
}

.success-check-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background-color: var(--success-soft);
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.success-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.success-desc {
  font-size: 0.95rem;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* 토스트 알림 */
.toast-notice {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--primary-dark);
  color: #FFFFFF;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-notice.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ============================================================
   [WIZARD] 다단계 견적 폼 및 인터랙션 스타일
   ============================================================ */
.wizard-step {
  display: none;
}

.wizard-step.active {
  display: block;
  animation: wizardStepIn 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-step.active.back {
  animation: wizardStepInBack 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes wizardStepIn {
  from {
    opacity: 0;
    transform: translateX(12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes wizardStepInBack {
  from {
    opacity: 0;
    transform: translateX(-12px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.wizard-step-header {
  margin-bottom: 18px;
}

.wizard-step-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  background-color: #FFF7ED;
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 6px;
}

.wizard-step-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 5px;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.wizard-step-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.wizard-step-desc strong {
  color: var(--accent);
  font-weight: 700;
}

.wizard-optional-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background-color: #EFF6FF;
  color: #2563EB;
  border: 1px solid #BFDBFE;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 8px;
}

/* 위저드 하단 네비게이션 버튼 */
.wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
  gap: 10px;
}

.btn-wizard-prev {
  background-color: #F8FAFC;
  color: var(--text-main);
  border: 1px solid var(--border-light);
  padding: 11px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.btn-wizard-prev:hover {
  background-color: #E2E8F0;
  color: var(--primary);
}

.btn-wizard-next {
  background-color: var(--primary);
  color: #FFFFFF;
  border: none;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.btn-wizard-next:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
}

.btn-wizard-next.btn-skip {
  background-color: #F8FAFC;
  color: #475569;
  border: 1px solid #CBD5E1;
  box-shadow: none;
}

.btn-wizard-next.btn-skip:hover {
  background-color: #F1F5F9;
  color: var(--primary);
  border-color: #94A3B8;
}

.btn-wizard-next.btn-skip.has-content {
  background-color: var(--primary);
  color: #FFFFFF;
  border: none;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.12);
}

.btn-wizard-submit {
  width: auto;
  padding: 13px 26px;
  font-size: 0.98rem;
  font-weight: 800;
  margin-left: auto;
}

/* 최종 단계 요약 바 */
.estimate-summary-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.summary-chip {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  color: #334155;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.summary-chip.accent {
  background-color: #FFF7ED;
  border-color: #FED7AA;
  color: #C2410C;
}

/* 선택 시 살짝 튀는 펄스 효과 */
@keyframes choiceSelectPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.choice-btn.selected, .choice-card-btn.selected {
  animation: choiceSelectPulse 0.18s ease-out;
}

/* ============================================================
   [REGION] 1단계 서비스 지역 선택 스타일
   ============================================================ */
.region-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 14px 0 8px 0;
}

.region-avail-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #16A34A;
  background-color: #DCFCE7;
  padding: 2px 8px;
  border-radius: 9999px;
  letter-spacing: -0.01em;
}

.region-soon-note {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748B;
}

.region-active-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.region-disabled-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

@media (max-width: 640px) {
  .region-disabled-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.region-chip-disabled {
  background-color: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  padding: 8px 4px;
  text-align: center;
  cursor: not-allowed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  opacity: 0.72;
  transition: all 0.2s ease;
  user-select: none;
}

.region-chip-disabled:hover {
  background-color: #F1F5F9;
  border-color: #CBD5E1;
  opacity: 0.95;
  transform: translateY(-1px);
}

.region-chip-disabled .reg-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748B;
}

.region-chip-disabled .reg-status {
  font-size: 0.65rem;
  font-weight: 600;
  color: #94A3B8;
  background-color: #F1F5F9;
  padding: 1px 4px;
  border-radius: 4px;
}

.region-alert-box {
  background-color: #FFF7ED;
  border: 1px solid #FFEDD5;
  border-radius: 8px;
  padding: 10px 14px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 8px;
}

.region-alert-icon {
  font-size: 0.95rem;
  line-height: 1.2;
}

.region-alert-text {
  font-size: 0.77rem;
  color: #9A3412;
  line-height: 1.4;
}

/* ============================================================
   반응형 미디어 쿼리 (모바일 / 태블릿 대응)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-image-card img {
    height: 360px;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: 1fr;
  }

  /* 1024px 이하에서는 상단 메뉴 줄바꿈 방지를 위해 햄버거 메뉴로 전환 */
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  /* 모바일/태블릿 네비게이션 드롭다운 */
  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--border-light);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
    align-items: flex-start;
    z-index: 1000;
  }

  .nav-links.mobile-open li {
    width: 100%;
  }

  .nav-links.mobile-open .nav-link {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 6px 0;
  }
}

@media (max-width: 768px) {
  
  .hero-headline {
    font-size: 2.15rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .items-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-tab-nav {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
    margin-top: 32px;
  }
  
  .pricing-tab-btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-tab-btn[data-tab="pickup"] {
    margin-top: 26px;
  }

  .tab-popular-bubble {
    top: -32px;
    font-size: 0.82rem;
    padding: 4px 12px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-table-wrap {
    padding: 20px 16px;
  }
  
  .pricing-table-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .pricing-extras-grid {
    grid-template-columns: 1fr;
  }
  
  .process-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-box {
    padding: 40px 24px;
  }
  
  .cta-title {
    font-size: 1.7rem;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .modal-window {
    max-height: 95vh;
  }
  
  .modal-body {
    padding: 20px;
  }

  .modal-header {
    padding: 14px 18px;
  }

  .modal-title {
    font-size: 1.05rem;
  }

  .wizard-step-badge {
    padding: 2px 7px;
    font-size: 0.72rem;
  }

  .wizard-step-title {
    font-size: 1.1rem;
  }

  .wizard-nav {
    margin-top: 18px;
    padding-top: 14px;
  }

  .btn-wizard-prev, .btn-wizard-next {
    padding: 10px 16px;
    font-size: 0.88rem;
  }
}
