/* ============================================================
   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: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard", "Segoe UI", Roboto, "Helvetica Neue", Arial, 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;
}

.brand-logo {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

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

.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);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 24px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: var(--transition);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-btn {
  display: none;
  padding: 8px;
  color: var(--text-main);
}

/* ============================================================
   [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-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;
}

/* 탭 패널 */
.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;
}

/* ============================================================
   [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: 22px 28px;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
}

.modal-title {
  font-size: 1.25rem;
  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;
}

/* 이미지 업로드 영역 */
.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;
}

/* ============================================================
   반응형 미디어 쿼리 (모바일 / 태블릿 대응)
   ============================================================ */
@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;
  }
}

@media (max-width: 768px) {
  .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;
    box-shadow: var(--shadow-md);
    gap: 16px;
    align-items: flex-start;
  }
  
  .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;
  }
  
  .pricing-tab-btn {
    width: 100%;
    justify-content: center;
  }
  
  .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;
  }
}
