/* ============================================
   파크골프 비교닷컴 – ajd.co.kr 스타일 기반
   흰 배경 + 블루 포인트 + 미니멀 프리미엄
   ============================================ */

/* ── 리셋 & 기본 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans KR', -apple-system, sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 공통 inner ── */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── 색상 변수 ── */
:root {
  --orange: #2F6DE0;
  --orange-light: #5589E8;
  --orange-bg: #EEF4FF;
  --dark: #111111;
  --gray900: #222;
  --gray700: #444;
  --gray500: #888;
  --gray300: #CCC;
  --gray100: #F5F5F5;
  --off-white: #FAFAFA;
  --white: #fff;
  --border: #E8E8E8;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

/* ============================================
   버튼 공통
   ============================================ */
.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 6px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-orange:hover { background: var(--orange-light); transform: translateY(-1px); }


.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid var(--dark);
  transition: all .2s;
  white-space: nowrap;
}
.btn-ghost:hover { background: var(--dark); color: #fff; }

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

/* ============================================
   상단 알림바
   ============================================ */
.top-bar {
  background: var(--dark);
  color: #fff;
  font-size: 13px;
  text-align: center;
  padding: 9px 16px;
  position: relative;
  z-index: 1000;
}
.top-bar .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.top-bar i { color: var(--orange); }
.top-bar strong { color: var(--orange); }
.top-bar a {
  color: var(--orange);
  font-weight: 700;
  border-bottom: 1px solid var(--orange);
}

/* ============================================
   헤더
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

.header-flex {
  display: flex;
  align-items: center;
  height: 70px;
  gap: 0;
}

/* 로고 */
.logo {
  display: flex;
  align-items: center;
  gap: 0;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.5px;
  flex-shrink: 0;
  margin-right: 48px;
}
.logo-pg { color: var(--dark); }
.logo-dot { color: var(--orange); }
.footer-logo { display: flex; align-items: center; }

/* GNB */
.gnb { flex: 1; }
.gnb > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.gnb > ul > li { position: relative; }
.gnb > ul > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray700);
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.gnb > ul > li > a:hover,
.gnb > ul > li > a.active {
  color: var(--orange);
  background: var(--orange-bg);
}
.gnb > ul > li > a i {
  font-size: 10px;
  transition: transform .2s;
}
.gnb > ul > li:hover > a i { transform: rotate(180deg); }

/* 드롭다운 */
.sub-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all .2s;
  z-index: 200;
}
.has-sub:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sub-menu li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--gray700);
  transition: color .15s, background .15s;
}
.sub-menu li a:hover { color: var(--orange); background: var(--orange-bg); }

/* 헤더 우측 */
.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: auto;
}
.header-tel {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray700);
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-tel i { color: var(--orange); }
.header-tel:hover { color: var(--orange); }

/* 햄버거 */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================
   모바일 메뉴
   ============================================ */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  padding: 64px 24px 32px;
  box-shadow: -4px 0 20px rgba(0,0,0,0.15);
  transition: right .3s ease;
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  color: var(--gray700);
}
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav ul li a {
  display: block;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray700);
  border-bottom: 1px solid var(--border);
}
.mobile-nav ul li a:hover { color: var(--orange); }
.mobile-cta-btn {
  display: block !important;
  margin-top: 16px;
  background: var(--orange) !important;
  color: #fff !important;
  text-align: center;
  padding: 14px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  border: none !important;
}
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}
.mobile-nav-overlay.active { display: block; }

/* ============================================
   히어로
   ============================================ */
.hero {
  background: #fff;
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 64px;
  align-items: center;
}

/* 히어로 왼쪽 */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray700);
  margin-bottom: 20px;
}
.dot-blue {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-h1 {
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--dark);
  margin-bottom: 20px;
}
.txt-orange { color: var(--orange); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: var(--gray700);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* 통계 */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 36px;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.stat {
  flex: 1;
  text-align: center;
  padding: 20px 12px;
  background: #fff;
}
.stat strong {
  display: block;
  font-size: 56px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -2px;
}
.stat-unit { font-size: 36px; color: var(--orange); }
.stat-prefix { font-size: 28px; font-weight: 700; color: var(--gray500); letter-spacing: 0; }
.stat span {
  display: block;
  font-size: 24px;
  color: var(--gray500);
  margin-top: 6px;
}

/* ── 카운트업 숫자 롤링 ── */
.count-num {
  display: inline-block;
  position: relative;
  transition: transform 0.1s;
}
/* 숫자가 바뀔 때 위에서 떨어지는 느낌 */
.count-num.counting {
  animation: countPulse 0.08s ease-out;
}
@keyframes countPulse {
  0%   { transform: translateY(-4px) scale(1.08); opacity: 0.7; }
  100% { transform: translateY(0)    scale(1);    opacity: 1;   }
}

/* 처음 등장 시 페이드+슬라이드인 */
.stat {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat.visible {
  opacity: 1;
  transform: translateY(0);
}
/* 각 stat 딜레이 */
.stat:nth-child(1)  { transition-delay: 0s;    }
.stat:nth-child(3)  { transition-delay: 0.12s; }
.stat:nth-child(5)  { transition-delay: 0.24s; }
.stat:nth-child(7)  { transition-delay: 0.36s; }
.stat-sep {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* 히어로 버튼 */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ============================================
   히어로 우측 – 가격 카드 (ajd 스타일)
   ============================================ */
.price-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card-tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
}
.price-card-main { margin-bottom: 20px; }
.price-label {
  display: block;
  font-size: 14px;
  color: var(--gray500);
  margin-bottom: 6px;
}
.price-big {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1.5px;
  line-height: 1;
}
.price-man {
  font-size: 20px;
  font-weight: 700;
  color: var(--gray700);
}
.price-original {
  display: block;
  font-size: 13px;
  color: var(--gray500);
  margin-top: 6px;
}
.price-original del { color: var(--gray300); }

.price-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

/* 스펙 리스트 */
.price-spec-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.price-spec {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}
.spec-key { color: var(--gray700); }
.spec-val { font-weight: 700; color: var(--gray900); }
.spec-val.orange { color: var(--orange); }

/* 트림 선택 (ajd 핵심 스타일) */
.trim-section { margin-bottom: 20px; }
.trim-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray700);
  margin-bottom: 10px;
}
.trim-options { display: flex; gap: 8px; }
.trim-btn {
  flex: 1;
  padding: 10px 8px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray700);
  background: #fff;
  transition: all .2s;
  text-align: center;
}
.trim-btn:hover { border-color: var(--orange); color: var(--orange); }
.trim-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-bg);
}

.price-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray500);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.price-note i { color: var(--orange); }

/* ============================================
   신뢰 배지 바
   ============================================ */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray700);
}
.trust-chip i { color: var(--orange); }
.trust-sep { color: var(--gray300); font-size: 12px; }

/* ============================================
   섹션 공통
   ============================================ */
.section-wrap { padding: 100px 0; }
.bg-off { background: var(--off-white); }

.section-head { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-desc {
  font-size: 16px;
  color: var(--gray700);
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto;
}
.section-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 40px;
}

/* ============================================
   브랜드 비교 탭
   ============================================ */
.tab-bar {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 32px;
}
.tab-item {
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray500);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all .2s;
}
.tab-item:hover { color: var(--dark); }
.tab-item.active { color: var(--orange); border-bottom-color: var(--orange); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* 비교 테이블 */
.compare-tbl-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.compare-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-tbl thead tr {
  background: var(--gray100);
}
.compare-tbl th {
  padding: 16px 20px;
  font-weight: 700;
  color: var(--gray700);
  text-align: center;
  border-bottom: 2px solid var(--border);
  font-size: 13px;
  white-space: nowrap;
}
.compare-tbl th.item-th { text-align: left; }
.compare-tbl th.best-th {
  background: var(--orange-bg);
  color: var(--orange);
}
.compare-tbl td {
  padding: 14px 20px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  color: var(--gray700);
}
.compare-tbl td.item-td {
  text-align: left;
  font-weight: 600;
  color: var(--dark);
  background: var(--off-white);
}
.compare-tbl td.best-td {
  background: var(--orange-bg);
  color: var(--orange);
  font-weight: 700;
}
.compare-tbl tr:last-child td { border-bottom: none; }
.compare-tbl tr.total-tr td {
  background: var(--gray100);
  font-size: 15px;
}
.compare-tbl tr.total-tr td.best-td {
  background: var(--orange);
  color: #fff;
  font-size: 16px;
}
.best-chip {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
  font-weight: 700;
}
.save-pill {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
}
.ico-ok { color: #22c55e; font-size: 16px; }
.ico-no { color: #ef4444; font-size: 16px; }
.tbl-note {
  font-size: 12px;
  color: var(--gray500);
  margin-top: 12px;
  text-align: center;
}

/* ============================================
   홈 심층 분석표 (Home Deep Analysis Table)
   ============================================ */

/* 래퍼 */
.home-da-wrap {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 40px rgba(47,109,224,.10);
  border: 1.5px solid #e2e8f0;
  margin-bottom: 36px;
}

/* 상단 컨트롤 바 */
.home-da-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 60%, #2F6DE0 100%);
  gap: 12px;
  flex-wrap: wrap;
}
.home-da-topbar-left { display: flex; align-items: center; gap: 12px; }
.home-da-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); color: #fff;
  font-size: 12px; font-weight: 800;
  padding: 5px 14px; border-radius: 20px;
  border: 1px solid rgba(255,255,255,.25);
}
.home-da-sub { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500; }
.home-da-full-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; color: #2F6DE0;
  font-size: 12px; font-weight: 800;
  padding: 7px 16px; border-radius: 20px;
  transition: all .2s; white-space: nowrap;
  text-decoration: none;
}
.home-da-full-btn:hover { background: #2F6DE0; color: #fff; }

/* 스크롤 컨테이너 */
.home-da-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.home-da-scroll::-webkit-scrollbar { height: 5px; }
.home-da-scroll::-webkit-scrollbar-track { background: #f1f5f9; }
.home-da-scroll::-webkit-scrollbar-thumb { background: #94a3b8; border-radius: 3px; }

/* 테이블 */
.home-da-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-family: 'Noto Sans KR', sans-serif;
}

/* 헤더 */
.home-da-table thead tr {
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
}
.home-da-table th { padding: 0; border-right: 1px solid #f1f5f9; vertical-align: top; }
.home-da-table th:last-child { border-right: none; }

/* 항목 헤더 */
.home-th-item {
  width: 120px; min-width: 120px;
  background: #f0f4ff;
  padding: 14px 12px;
  text-align: left !important;
  font-size: 12px; font-weight: 800; color: #1e3a8a;
  border-right: 2px solid #dde8ff !important;
  position: sticky; left: 0; z-index: 2;
  vertical-align: middle !important;
}

/* 브랜드 헤더 */
.home-th-brand { min-width: 128px; padding: 0; }
.home-brand-head {
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; padding: 14px 8px 12px;
  border-right: 1px solid #f1f5f9;
}
.home-brand-logo {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 900; color: #fff;
  text-align: center; line-height: 1.2; padding: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,.15);
}
.home-brand-name {
  font-size: 11px; font-weight: 800; color: #111;
  text-align: center; white-space: nowrap;
}
.home-brand-tag {
  font-size: 9px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px;
  white-space: nowrap; text-align: center;
}

/* 바디 셀 */
.home-da-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background .12s;
}
.home-da-table tbody tr:hover { background: #f8fafc; }
.home-da-table td {
  padding: 9px 8px;
  text-align: center;
  font-size: 13px; color: #334155;
  border-right: 1px solid #f1f5f9;
  vertical-align: middle;
}
.home-da-table td:last-child { border-right: none; }

/* 항목명 셀 (sticky) */
.home-td-item {
  text-align: left !important;
  padding: 10px 12px !important;
  background: #f8faff;
  border-right: 2px solid #dde8ff !important;
  position: sticky; left: 0; z-index: 1;
  font-size: 12px; font-weight: 700; color: #1e3a8a;
  white-space: nowrap;
}
.home-td-item i { margin-right: 5px; color: #2F6DE0; font-size: 11px; }

/* 별점 */
.hd-stars { font-size: 13px; color: #fbbf24; line-height: 1; }
.hd-star-e { color: #e2e8f0; }
.hd-note { font-size: 10px; color: #64748b; margin-top: 3px; }

/* 레벨 뱃지 */
.hd-level {
  display: inline-block; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
}
.hd-high  { background: #fee2e2; color: #dc2626; }
.hd-mid   { background: #fef3c7; color: #d97706; }
.hd-low   { background: #dcfce7; color: #16a34a; }

/* 구분선 행 */
.home-da-divider td {
  height: 4px !important; padding: 0 !important;
  background: #f0f4ff !important;
}

/* 특징 요약 행 */
.home-da-summary td { background: #f8faff; }

/* 창업 목적별 추천 다크 바 */
.home-da-recommend {
  background: #0f172a;
  padding: 20px 24px;
  border-top: 2px solid #1e3a8a;
}
.home-da-rec-title {
  text-align: center;
  font-size: 13px; font-weight: 900; color: #fff;
  margin-bottom: 14px; letter-spacing: -0.2px;
}
.home-da-rec-title span { color: #fbbf24; }
.home-da-rec-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.home-rec-item {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; padding: 12px 6px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  transition: all .2s;
  cursor: pointer;
  text-decoration: none;
}
.home-rec-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-2px);
}
.home-rec-icon { font-size: 20px; line-height: 1; }
.home-rec-purpose { font-size: 10px; color: rgba(255,255,255,.55); text-align: center; line-height: 1.4; }
.home-rec-brand { font-size: 11px; font-weight: 900; color: #fff; text-align: center; line-height: 1.3; }

/* 하단 주석 */
.home-da-note {
  font-size: 11px; color: #94a3b8;
  text-align: center;
  padding: 10px 20px 14px;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

/* 반응형 */
@media (max-width: 900px) {
  .home-da-rec-grid { grid-template-columns: repeat(3, 1fr); }
  .home-da-table { min-width: 780px; }
  .home-th-item, .home-td-item { width: 100px; min-width: 100px; }
}
@media (max-width: 600px) {
  .home-da-rec-grid { grid-template-columns: repeat(2, 1fr); }
  .home-da-topbar { padding: 12px 16px; }
  .home-da-table { min-width: 680px; }
  .home-th-item, .home-td-item { width: 88px; min-width: 88px; font-size: 11px; }
  .home-brand-logo { width: 40px; height: 40px; font-size: 10px; }
  .home-brand-name { font-size: 10px; }
}

/* ============================================
   비용 절감 다크 섹션
   ============================================ */
.section-dark {
  background: var(--dark);
  padding: 100px 0;
}
.savings-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.white-ey { color: rgba(255,107,0,0.9); }
.white-h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.savings-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}
.check-list i { color: var(--orange); flex-shrink: 0; }

/* 바 차트 */
.bar-chart { display: flex; flex-direction: column; gap: 28px; }
.bar-row { display: flex; flex-direction: column; gap: 8px; }
.bar-label { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.bar-bg {
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  height: 52px;
  overflow: hidden;
}
.bar-fill {
  height: 100%;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  transition: width 1.2s cubic-bezier(.4,0,.2,1);
}
.old-fill { background: #555; }
.new-fill { background: var(--orange); }
.save-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 16px 20px;
  background: rgba(47,109,224,0.15);
  border: 1px solid rgba(47,109,224,0.4);
  border-radius: 10px;
  color: var(--orange);
  font-size: 18px;
  font-weight: 900;
}
.save-highlight i { font-size: 22px; }

/* ============================================
   3단 카드
   ============================================ */
.card3-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card3 {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.card3:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card3-featured {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange), var(--shadow-lg);
}
.card3-featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.card3-icon {
  width: 56px;
  height: 56px;
  background: var(--orange-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--orange);
  margin-bottom: 20px;
}
.card3 h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.card3 p {
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.7;
  margin-bottom: 20px;
}
.card3-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray700);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.card3-link:hover { color: var(--dark); }
.orange-link { color: var(--orange) !important; }

/* ============================================
   공동구매 섹션
   ============================================ */
.group-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 56px;
  align-items: start;
}
.group-status-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
}
.gs-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.gs-badge-ongoing {
  background: #22c55e;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}
.gs-period { font-size: 13px; color: var(--gray500); }
.gs-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.gs-sub { font-size: 14px; color: var(--gray700); line-height: 1.6; margin-bottom: 24px; }
.gs-progress { margin-bottom: 24px; }
.gs-progress-info {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--gray700);
  margin-bottom: 8px;
}
.gs-progress-info strong { color: var(--dark); }
.gs-progress-bar {
  height: 8px;
  background: var(--gray100);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}
.gs-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 4px;
  transition: width .6s;
}
.gs-progress-text { font-size: 13px; color: var(--gray700); }
.gs-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--orange-bg);
  border-radius: 8px;
}
.gs-old { font-size: 13px; color: var(--gray500); text-decoration: line-through; }
.gs-new { font-size: 18px; font-weight: 800; color: var(--orange); }

/* 프로세스 */
.gp-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.gp-steps { display: flex; flex-direction: column; gap: 0; }
.gp-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.gp-step:last-child { border-bottom: none; }
.gp-num {
  width: 44px;
  height: 44px;
  background: var(--orange);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.gp-body h4 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.gp-body p { font-size: 13px; color: var(--gray700); line-height: 1.5; }
.gp-arrow { padding: 0 0 0 14px; color: var(--gray300); font-size: 12px; }

/* ============================================
   창업 절차 (5단계)
   ============================================ */
.process-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.proc-step {
  flex: 1;
  text-align: center;
  padding: 28px 12px;
  position: relative;
}
.proc-icon {
  width: 64px;
  height: 64px;
  background: var(--orange-bg);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--orange);
  margin: 0 auto 12px;
  position: relative;
}
.proc-num-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 22px;
  height: 22px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-step h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.proc-step p { font-size: 13px; color: var(--gray700); line-height: 1.5; }
.proc-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 0;
  color: var(--gray300);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================
   비용 패키지 카드
   ============================================ */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pkg-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .2s, transform .2s;
  position: relative;
}
.pkg-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pkg-popular {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px var(--orange);
  transform: scale(1.02);
}
.pkg-popular:hover { transform: scale(1.02) translateY(-4px); }
.pkg-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pkg-head {
  padding: 28px 28px 20px;
  text-align: center;
}
.basic-head { background: var(--gray100); }
.std-head { background: var(--orange-bg); padding-top: 48px !important; }
.prem-head { background: #1a1a2e; color: #fff; }
.pkg-type {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.basic-head .pkg-type { background: #fff; color: var(--gray700); }
.std-head .pkg-type { background: var(--orange); color: #fff; }
.prem-head .pkg-type { background: rgba(255,255,255,0.15); color: #fff; }
.pkg-head h3 { font-size: 20px; font-weight: 800; margin: 8px 0 4px; }
.std-head h3 { color: var(--orange); }
.prem-head h3, .prem-head p { color: rgba(255,255,255,0.85); }
.pkg-head p { font-size: 13px; }
.basic-head p { color: var(--gray700); }
.std-head p { color: var(--gray700); }

.pkg-body { padding: 24px 28px 28px; }
.pkg-price {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pkg-from { display: block; font-size: 12px; color: var(--gray500); margin-bottom: 4px; font-weight: 600; }
.pkg-price strong {
  font-size: 30px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -1px;
}
.pkg-popular .pkg-price strong { color: var(--orange); }
.pkg-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pkg-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray700);
}
.pkg-list i { color: var(--orange); flex-shrink: 0; font-size: 13px; }
.cost-note {
  text-align: center;
  font-size: 13px;
  color: var(--gray500);
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.cost-note i { color: var(--orange); }

/* ============================================
   뉴스 섹션
   ============================================ */
.news-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: start;
}
.news-main {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.news-cat-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.news-cat-tag.press { background: #1a1a2e; color: #fff; }
.news-cat-tag.notice { background: var(--orange); color: #fff; }
.news-cat-tag.info { background: #3b82f6; color: #fff; }
.news-cat-tag.brand { background: #8b5cf6; color: #fff; }
.news-main h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.news-body {
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.8;
  margin-bottom: 20px;
}
.news-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.news-date {
  font-size: 12px;
  color: var(--gray500);
  display: flex;
  align-items: center;
  gap: 4px;
}
.news-more { font-size: 14px; font-weight: 700; color: var(--orange); }

.news-side {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.news-side-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
  cursor: pointer;
}
.news-side-item:last-child { border-bottom: none; }
.news-side-item:hover { background: var(--off-white); }
.news-side-item .news-cat-tag { flex-shrink: 0; margin-bottom: 0; margin-top: 2px; }
.news-side-item h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.4;
  margin-bottom: 6px;
}

/* ============================================
   FAQ
   ============================================ */
.faq-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-item { border-bottom: 1px solid var(--border); background: #fff; }
.faq-item:last-child { border-bottom: none; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  transition: background .15s;
}
.faq-q:hover { background: var(--off-white); }
.faq-q.open { color: var(--orange); background: var(--orange-bg); }
.faq-ico { font-size: 14px; color: var(--gray500); flex-shrink: 0; transition: transform .3s; }
.faq-q.open .faq-ico { transform: rotate(45deg); color: var(--orange); }
.faq-a {
  display: none;
  padding: 0 28px 22px;
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.8;
  background: var(--orange-bg);
}
.faq-a.open { display: block; }

/* ============================================
   CTA 상담 신청 섹션
   ============================================ */
.cta-section {
  background: var(--dark);
  padding: 100px 0;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px;
  align-items: center;
}
.cta-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 32px;
}
.cta-contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cta-tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background .2s;
}
.cta-tel-btn:hover { background: var(--orange-light); }
.cta-time-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

/* 상담 폼 */
.cta-form {
  background: #fff;
  border-radius: 16px;
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.cta-form h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.cta-form input,
.cta-form select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: var(--dark);
  background: #fff;
  transition: border-color .2s;
  margin-bottom: 12px;
}
.cta-form input::placeholder { color: var(--gray500); }
.cta-form input:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-privacy-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray500);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.form-privacy-note i { color: var(--orange); }

/* ============================================
   푸터
   ============================================ */
.site-footer {
  background: #0D0D0D;
  color: rgba(255,255,255,0.6);
  padding: 64px 0 32px;
}
.footer-inner {}
.footer-top-row {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.footer-logo .logo-pg { color: #fff; font-size: 20px; font-weight: 900; }
.footer-logo .logo-dot { color: var(--orange); font-size: 20px; font-weight: 900; }
.footer-slogan { font-size: 13px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.footer-about { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.footer-sns { display: flex; gap: 10px; }
.footer-sns a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 15px;
  transition: background .2s, color .2s;
}
.footer-sns a:hover { background: var(--orange); color: #fff; }

.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.2px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--orange); }

.footer-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 28px; }
.footer-bottom-row {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.copy { margin-top: 8px; }

/* ============================================
   플로팅 버튼
   ============================================ */
.float-wrap {
  position: fixed;
  right: 24px;
  bottom: 88px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 800;
}
.float-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  transition: transform .2s, box-shadow .2s;
  justify-content: center;
  text-decoration: none;
}
.float-btn span { font-size: 9px; font-weight: 700; }
.float-btn:hover { transform: scale(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.f-consult { background: var(--orange); }
.f-tel { background: #22c55e; }
.f-kakao { background: #FEE500; color: #111; }


.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all .3s;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { background: var(--orange); }

/* ============================================
   모달
   ============================================ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  text-align: center;
  max-width: 340px;
  width: 90%;
  box-shadow: var(--shadow-lg);
}
.modal-ico {
  font-size: 56px;
  color: var(--orange);
  margin-bottom: 16px;
}
.modal-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}
.modal-box p {
  font-size: 14px;
  color: var(--gray700);
  line-height: 1.6;
  margin-bottom: 24px;
}

/* ============================================
   반응형
   ============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { max-width: 500px; }
  .savings-inner { grid-template-columns: 1fr; gap: 48px; }
  .cta-inner { grid-template-columns: 1fr; gap: 48px; }
  .news-layout { grid-template-columns: 1fr; }
  .footer-top-row { grid-template-columns: 1fr; gap: 40px; }
  .group-layout { grid-template-columns: 1fr; }
  .group-status-card { max-width: 480px; }
}

@media (max-width: 900px) {
  .card3-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-popular { transform: none; }
  .pkg-popular:hover { transform: translateY(-4px); }
  .process-row {
    flex-direction: column;
    align-items: center;
  }
  .proc-arrow { transform: rotate(90deg); padding: 0; }
  .proc-step { width: 100%; max-width: 320px; }
}

/* ============================================
   메인 배너 슬라이더
   ============================================ */
.banner-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
  user-select: none;
  line-height: 0;
}
.bs-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}
.bs-slide {
  min-width: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
}
.bs-slide img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s ease;
}
.bs-slide:hover img { transform: scale(1.02); }

/* 슬라이드 오버레이 그라데이션 */
.bs-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 50%);
  pointer-events: none;
}

/* 화살표 버튼 */
.bs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.bs-arrow:hover {
  background: rgba(47,109,224,0.75);
  border-color: transparent;
  transform: translateY(-50%) scale(1.08);
}
.bs-prev { left: 20px; }
.bs-next { right: 20px; }

/* 인디케이터 닷 */
.bs-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.bs-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
  padding: 0;
}
.bs-dot.active {
  background: #fff;
  width: 28px;
  border-radius: 4px;
}

/* 슬라이드 카운터 */
.bs-counter {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  line-height: 1.4;
}

/* 스켈레톤 로딩 */
.bs-skeleton { background: #1a1a2e; min-height: 600px; display: flex; align-items: center; justify-content: center; }
.bs-skeleton-inner {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(90deg, #1e2a4a 25%, #2a3a5e 50%, #1e2a4a 75%);
  background-size: 200% 100%;
  animation: skeletonShimmer 1.5s infinite;
}
@keyframes skeletonShimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* 터치 스와이프 지원 */
.banner-slider.is-dragging .bs-slide img { transition: none; }
.banner-slider.is-dragging .bs-track { transition: none; }

@media (max-width: 768px) {
  /* 슬라이더 모바일 */
  .bs-slide img { height: 240px; }
  .bs-skeleton { min-height: 240px; }
  .bs-arrow { width: 38px; height: 38px; font-size: 14px; }
  .bs-prev { left: 10px; }
  .bs-next { right: 10px; }
  .bs-dots { bottom: 12px; }
  .bs-counter { font-size: 11px; padding: 4px 10px; top: 10px; right: 10px; }

  .gnb, .header-right { display: none; }
  .hamburger { display: flex; }
  .section-wrap { padding: 64px 0; }
  .section-dark, .cta-section { padding: 64px 0; }
  .hero { padding: 56px 0 72px; }
  .hero-stats { flex-wrap: wrap; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn-orange, .hero-btns .btn-ghost { width: 100%; justify-content: center; }
  .tab-bar { overflow-x: auto; }
  .tab-item { white-space: nowrap; }
  .form-2col { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .trust-strip-inner { gap: 8px; }
}

@media (max-width: 480px) {
  .hero-h1 { font-size: 32px; }
  .price-big { font-size: 34px; }
  .footer-cols { grid-template-columns: 1fr; }
  .stat strong { font-size: 44px; }
  .stat-unit { font-size: 28px; }
  .stat-prefix { font-size: 20px; }
  .stat span { font-size: 18px; }
  .float-wrap { right: 12px; bottom: 72px; }
  .scroll-top { right: 12px; bottom: 16px; }
}

/* ============================================
   공동구매 신청 팝업 모달
   ============================================ */

/* 오버레이 */
.gb-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(10, 20, 50, 0.72);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: gbOverlayIn .2s ease;
}
.gb-modal-overlay.open {
  display: flex;
}
@keyframes gbOverlayIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 모달 박스 */
.gb-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  animation: gbModalIn .25s cubic-bezier(.34,1.56,.64,1);
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
.gb-modal::-webkit-scrollbar { width: 4px; }
.gb-modal::-webkit-scrollbar-thumb { background: #e2e8f0; border-radius: 4px; }
@keyframes gbModalIn {
  from { opacity: 0; transform: translateY(24px) scale(.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* 닫기 버튼 */
.gb-close-btn {
  position: sticky;
  float: right;
  top: 16px;
  right: 16px;
  margin: 16px 16px -16px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all .15s;
  z-index: 10;
  flex-shrink: 0;
}
.gb-close-btn:hover { background: #fee2e2; color: #dc2626; }

/* 헤더 */
.gb-modal-header {
  padding: 28px 32px 20px;
  background: linear-gradient(135deg, #1A3A6B 0%, #2F6DE0 60%, #5589E8 100%);
  color: #fff;
  border-radius: 20px 20px 0 0;
  text-align: center;
  margin-top: -50px;
  padding-top: 56px;
}
.gb-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 14px;
}
.gb-modal-title {
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 900;
  margin-bottom: 8px;
  letter-spacing: -.5px;
}
.gb-modal-desc {
  font-size: 14px;
  opacity: .88;
  line-height: 1.6;
}
.gb-modal-desc strong { color: #fde68a; }

/* 회차 탭 */
.gb-round-tabs {
  display: flex;
  gap: 8px;
  padding: 20px 24px 0;
  flex-wrap: wrap;
}
.gb-round-tab-skeleton {
  color: #94a3b8;
  font-size: 13px;
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gb-round-tab {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all .18s;
  white-space: nowrap;
}
.gb-round-tab:hover { border-color: #2F6DE0; color: #2F6DE0; background: #eff6ff; }
.gb-round-tab.active {
  background: #2F6DE0;
  border-color: #2F6DE0;
  color: #fff;
  box-shadow: 0 4px 12px rgba(47,109,224,.3);
}
.gb-round-tab.upcoming {
  background: #f8fafc;
  border-color: #e2e8f0;
  color: #94a3b8;
}
.gb-round-tab.upcoming.active {
  background: #64748b;
  border-color: #64748b;
  color: #fff;
}

/* 회차 정보 박스 */
.gb-round-info {
  margin: 14px 24px 0;
  border-radius: 14px;
  overflow: hidden;
}
.gb-round-info-inner {
  background: linear-gradient(135deg, #eff6ff, #f0fdf4);
  border: 1.5px solid #bfdbfe;
  border-radius: 14px;
  padding: 16px 20px;
}
.gb-round-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.gb-round-status-badge {
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 20px;
}
.gb-round-status-badge.ongoing { background: #dcfce7; color: #15803d; }
.gb-round-status-badge.upcoming { background: #fef9c3; color: #a16207; }
.gb-round-status-badge.closed { background: #f1f5f9; color: #64748b; }
.gb-round-period { font-size: 12px; color: #64748b; }
.gb-round-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.gb-original-price {
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}
.gb-sale-price {
  font-size: 18px;
  font-weight: 900;
  color: #2F6DE0;
}
.gb-progress-wrap { }
.gb-progress-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 6px;
}
.gb-progress-labels strong { color: #111; }
.gb-progress-bar {
  height: 8px;
  background: #e2e8f0;
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 6px;
}
.gb-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #2F6DE0, #5589E8);
  border-radius: 99px;
  transition: width .6s ease;
}
.gb-urgency {
  font-size: 12px;
  font-weight: 700;
  color: #dc2626;
}

/* 신청 폼 */
.gb-form {
  padding: 20px 24px 24px;
}
.gb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.gb-field { display: flex; flex-direction: column; gap: 5px; }
.gb-field-full { grid-column: 1/-1; margin-bottom: 12px; }
.gb-label {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}
.gb-req { color: #dc2626; }
.gb-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.gb-input-icon {
  position: absolute;
  left: 12px;
  color: #94a3b8;
  font-size: 13px;
  pointer-events: none;
}
.gb-input {
  width: 100%;
  padding: 10px 12px 10px 34px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: #111;
  background: #f8fafc;
  transition: border-color .15s, box-shadow .15s;
  outline: none;
}
.gb-input:focus {
  border-color: #2F6DE0;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(47,109,224,.12);
}
.gb-input.error { border-color: #dc2626; background: #fff5f5; }
.gb-select { appearance: none; cursor: pointer; }
.gb-textarea {
  min-height: 80px;
  resize: vertical;
  padding: 10px 12px 10px 34px;
  line-height: 1.6;
}

/* 개인정보 동의 */
.gb-agree-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  padding: 12px 14px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 14px;
  transition: border-color .15s;
}
.gb-agree-wrap:hover { border-color: #2F6DE0; }
.gb-agree-chk { display: none; }
.gb-agree-box {
  width: 20px;
  height: 20px;
  border: 2px solid #e2e8f0;
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: all .15s;
  margin-top: 1px;
}
.gb-agree-chk:checked + .gb-agree-box {
  background: #2F6DE0;
  border-color: #2F6DE0;
}
.gb-agree-ico {
  color: #fff;
  font-size: 10px;
  display: none;
}
.gb-agree-chk:checked + .gb-agree-box .gb-agree-ico { display: block; }
.gb-agree-text { font-size: 13px; color: #475569; line-height: 1.5; }
.gb-agree-text strong { color: #111; }
.gb-agree-text small { display: block; color: #94a3b8; font-size: 11px; margin-top: 2px; }

/* 에러 메시지 */
.gb-error-msg {
  background: #fff5f5;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 13px;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* 제출 버튼 */
.gb-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #1A3A6B, #2F6DE0);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  letter-spacing: -.3px;
  box-shadow: 0 6px 20px rgba(47,109,224,.35);
}
.gb-submit-btn:hover {
  background: linear-gradient(135deg, #143060, #1e5bcc);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(47,109,224,.45);
}
.gb-submit-btn:active { transform: translateY(0); }
.gb-submit-btn:disabled {
  background: #cbd5e1;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}
.gb-submit-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

/* 완료 화면 */
.gb-success {
  padding: 48px 32px;
  text-align: center;
}
.gb-success-ico {
  font-size: 56px;
  color: #22c55e;
  margin-bottom: 20px;
  animation: gbSuccessIco .4s cubic-bezier(.34,1.56,.64,1);
}
@keyframes gbSuccessIco {
  from { opacity: 0; transform: scale(.4); }
  to   { opacity: 1; transform: scale(1); }
}
.gb-success h3 {
  font-size: 22px;
  font-weight: 900;
  color: #111;
  margin-bottom: 12px;
}
.gb-success p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
}
.gb-success-info {
  background: #eff6ff;
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  padding: 14px 20px;
  font-size: 13px;
  color: #1d4ed8;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.6;
}
.gb-success-close-btn {
  background: #2F6DE0;
  color: #fff;
  border: none;
  padding: 13px 40px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s;
}
.gb-success-close-btn:hover { background: #1e5bcc; }

/* 반응형 */
@media (max-width: 600px) {
  .gb-modal { border-radius: 16px; }
  .gb-modal-header { padding: 52px 20px 18px; border-radius: 16px 16px 0 0; }
  .gb-round-tabs { padding: 16px 16px 0; }
  .gb-round-info { margin: 12px 16px 0; }
  .gb-form { padding: 16px 16px 20px; }
  .gb-form-grid { grid-template-columns: 1fr; }
  .gb-modal-title { font-size: 20px; }
  .gb-success { padding: 32px 20px; }
}
