/* ===================================================
   아구특별시 프랜차이즈 - 공통 스타일시트
   Brand: 아구특별시 (아구찜/해물찜 전문)
   Palette: 딥 네이비 + 시안 + 코랄/오렌지 + 오프화이트
=================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --navy:      #0B1F3A;
  --navy-dark: #060F1E;
  --navy-mid:  #112647;
  --cyan:      #00C5CC;
  --cyan-light:#4DDDE0;
  --coral:     #FF6B4A;
  --orange:    #FF8C38;
  --offwhite:  #F4F0E8;
  --white:     #FFFFFF;
  --black:     #0D0D0D;
  --gray:      #8A8FA8;
  --gray-light:#C8CCDA;
  --green-widget: #1A8A3C;
  --yellow-widget:#FFD600;
  --red-btn:   #E01B1B;
  --font-main: 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
  --font-display: 'Noto Serif KR', Georgia, serif;
  --radius:    8px;
  --radius-lg: 16px;
  --shadow:    0 4px 24px rgba(0,0,0,.35);
  --shadow-sm: 0 2px 8px rgba(0,0,0,.2);
  --transition: .25s cubic-bezier(.4,0,.2,1);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background-color: var(--navy-dark);
  color: var(--offwhite);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}
/* 노이즈 배경 질감 */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: .6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-main); }
input, textarea, select { font-family: var(--font-main); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.3; }
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  text-align: center;
  margin-bottom: .5rem;
}
.section-title span { color: var(--cyan); }
.section-subtitle {
  font-size: 1rem;
  color: var(--gray);
  text-align: center;
  margin-bottom: 3rem;
}
.text-cyan   { color: var(--cyan); }
.text-coral  { color: var(--coral); }
.text-orange { color: var(--orange); }

/* ---------- Layout Helpers ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.section {
  padding: 80px 0;
  position: relative;
}
.section-dark  { background: var(--navy-dark); }
.section-mid   { background: var(--navy-mid); }
.section-navy  { background: var(--navy); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--coral);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255,107,74,.4);
}
.btn-outline {
  background: transparent;
  color: var(--cyan);
  border: 2px solid var(--cyan);
}
.btn-outline:hover {
  background: var(--cyan);
  color: var(--navy-dark);
  transform: translateY(-2px);
}
.btn-cyan {
  background: var(--cyan);
  color: var(--navy-dark);
}
.btn-cyan:hover {
  background: var(--cyan-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,197,204,.35);
}
.btn-sm { padding: 10px 22px; font-size: .9rem; }
.btn-lg { padding: 18px 44px; font-size: 1.1rem; }

/* ---------- GNB ---------- */
.gnb {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(6, 15, 30, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,197,204,.15);
  transition: var(--transition);
}
.gnb.scrolled {
  background: rgba(6, 15, 30, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,.5);
}
.gnb-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 72px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.gnb-left, .gnb-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.gnb-right { justify-content: flex-end; }
.gnb-logo {
  text-align: center;
  cursor: pointer;
}
.gnb-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.02em;
}
.gnb-logo .logo-main span { color: var(--cyan); }
.gnb-logo .logo-sub {
  font-size: .65rem;
  color: var(--gray);
  letter-spacing: .15em;
  text-transform: uppercase;
}
.gnb-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--gray-light);
  position: relative;
  transition: var(--transition);
  letter-spacing: .02em;
}
.gnb-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan);
  transition: var(--transition);
}
.gnb-link:hover, .gnb-link.active { color: var(--white); }
.gnb-link:hover::after, .gnb-link.active::after { width: 100%; }
.gnb-cta {
  background: var(--coral);
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: .85rem !important;
}
.gnb-cta::after { display: none; }
.gnb-cta:hover { background: var(--orange); transform: translateY(-1px); }
/* 햄버거 */
.gnb-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.gnb-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--offwhite);
  border-radius: 2px;
  transition: var(--transition);
}
/* 모바일 메뉴 */
.gnb-mobile {
  display: none;
  flex-direction: column;
  background: rgba(6,15,30,.98);
  border-top: 1px solid rgba(0,197,204,.1);
  padding: 16px 24px 24px;
  gap: 12px;
}
.gnb-mobile.open { display: flex; }
.gnb-mobile a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-light);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
.gnb-mobile a:hover, .gnb-mobile a.active { color: var(--cyan); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0D2B50 50%, #0A1E3A 100%);
  z-index: 0;
}
/* 파도 애니메이션 레이어 */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  overflow: hidden;
  z-index: 1;
}
.hero-wave svg { display: block; }
.hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: .18;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,197,204,.08) 0%, transparent 70%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,197,204,.15);
  border: 1px solid rgba(0,197,204,.4);
  color: var(--cyan);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.hero-title .accent { color: var(--coral); }
.hero-title .accent2 { color: var(--cyan); }
.hero-desc {
  font-size: clamp(.95rem, 1.8vw, 1.15rem);
  color: var(--gray-light);
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
/* 히어로 페이지 타이틀 배너 (서브페이지용) */
.page-hero {
  padding: 120px 0 60px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--navy-dark);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.page-hero-title span { color: var(--cyan); }
.page-hero-sub {
  color: var(--gray);
  font-size: 1rem;
}
/* 수치 배지 */
.stat-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(0,197,204,.3);
  background: rgba(0,197,204,.08);
  text-align: center;
  transition: var(--transition);
}
.stat-badge:hover {
  border-color: var(--cyan);
  background: rgba(0,197,204,.15);
  transform: scale(1.05);
}
.stat-badge .stat-num {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1.2;
}
.stat-badge .stat-label {
  font-size: .7rem;
  color: var(--gray-light);
  margin-top: 4px;
  text-align: center;
  padding: 0 8px;
}

/* ---------- 카드 ---------- */
.card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
}
.card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(0,197,204,.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(0,197,204,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.card-desc {
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ---------- 이미지 Placeholder ---------- */
.img-placeholder {
  background: linear-gradient(135deg, rgba(0,197,204,.1) 0%, rgba(11,31,58,.8) 100%);
  border: 1px solid rgba(0,197,204,.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(0,197,204,.4);
  font-size: .8rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}
.img-placeholder::before {
  content: '🦞';
  font-size: 2rem;
  margin-bottom: 8px;
  opacity: .6;
}
.img-placeholder.ph-hero { height: 480px; }
.img-placeholder.ph-md   { height: 260px; }
.img-placeholder.ph-sm   { height: 160px; }
.img-placeholder.ph-sq   { aspect-ratio: 1; }

/* ---------- 리뷰 슬라이더 ---------- */
.review-section { overflow: hidden; }
.review-track {
  display: flex;
  gap: 24px;
  transition: transform .4s ease;
}
.review-card {
  flex: 0 0 320px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,197,204,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.review-stars { color: var(--orange); font-size: 1rem; margin-bottom: 10px; }
.review-text {
  font-size: .9rem;
  color: var(--gray-light);
  margin-bottom: 14px;
  line-height: 1.7;
}
.review-author {
  font-size: .82rem;
  color: var(--cyan);
  font-weight: 700;
}
.review-loc { color: var(--gray); font-size: .78rem; margin-top: 2px; }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,197,204,.3);
  background: transparent;
  color: var(--cyan);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.slider-btn:hover {
  border-color: var(--cyan);
  background: rgba(0,197,204,.1);
}
.slider-dots {
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active { background: var(--cyan); width: 24px; border-radius: 4px; }

/* ---------- 고정 문의 위젯 ---------- */
.inquiry-widget {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 950;
  width: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.inquiry-widget.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.widget-header {
  background: var(--green-widget);
  color: var(--white);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.widget-header-title { font-size: .82rem; font-weight: 700; }
.widget-header-phone { font-size: .78rem; opacity: .9; margin-top: 2px; }
.widget-toggle-btn {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1rem;
  line-height: 1;
}
.widget-body {
  background: var(--yellow-widget);
  padding: 16px;
}
.widget-body input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,.1);
  font-size: .85rem;
  margin-bottom: 8px;
  background: var(--white);
  color: var(--black);
}
.widget-submit {
  width: 100%;
  background: var(--red-btn);
  color: var(--white);
  border: none;
  border-radius: 6px;
  padding: 11px;
  font-size: .9rem;
  font-weight: 700;
  transition: var(--transition);
}
.widget-submit:hover { background: #c01515; }
/* 위젯 토글 버튼 (항상 보임) */
.widget-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 960;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--green-widget);
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(26,138,60,.5);
  transition: var(--transition);
}
.widget-fab:hover { background: #15703a; transform: scale(1.05); }

/* ---------- 모바일 하단 CTA ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 940;
  background: var(--navy-dark);
  border-top: 1px solid rgba(0,197,204,.15);
  padding: 10px 16px;
  gap: 10px;
}
.mobile-cta-bar .btn { flex: 1; padding: 13px 8px; font-size: .88rem; }

/* ---------- 진입 팝업 (모달) ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--navy);
  border: 1px solid rgba(0,197,204,.25);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 40px 36px;
  position: relative;
  transform: scale(.95) translateY(10px);
  transition: transform .3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.modal-overlay.active .modal-box { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1.3rem;
  line-height: 1;
  transition: var(--transition);
}
.modal-close:hover { color: var(--white); }
.modal-badge {
  display: inline-block;
  background: rgba(255,107,74,.15);
  color: var(--coral);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 100px;
  border: 1px solid rgba(255,107,74,.3);
  margin-bottom: 16px;
}
.modal-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.modal-title span { color: var(--cyan); }
.modal-desc {
  color: var(--gray-light);
  font-size: .92rem;
  margin-bottom: 24px;
  line-height: 1.7;
}
.modal-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.modal-skip {
  font-size: .8rem;
  color: var(--gray);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
}
.modal-skip:hover { color: var(--gray-light); }
.modal-skip input { cursor: pointer; accent-color: var(--cyan); }

/* ---------- 토스트 ---------- */
.toast {
  position: fixed;
  top: 90px;
  right: 24px;
  z-index: 1100;
  background: var(--navy);
  border: 1px solid rgba(0,197,204,.3);
  border-left: 4px solid var(--cyan);
  color: var(--offwhite);
  padding: 14px 20px;
  border-radius: var(--radius);
  font-size: .9rem;
  font-weight: 600;
  box-shadow: var(--shadow);
  transform: translateX(120%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }
.toast.success { border-left-color: #1A8A3C; }
.toast.error   { border-left-color: var(--coral); }

/* ---------- 폼 ---------- */
.form-group {
  margin-bottom: 18px;
}
.form-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 6px;
}
.form-label .required { color: var(--coral); margin-left: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--white);
  font-size: .95rem;
  transition: var(--transition);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background: rgba(0,197,204,.06);
  box-shadow: 0 0 0 3px rgba(0,197,204,.12);
}
.form-select option { background: var(--navy); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--cyan);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-check label {
  font-size: .83rem;
  color: var(--gray-light);
  line-height: 1.6;
  cursor: pointer;
}

/* ---------- 탭 UI ---------- */
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  margin-bottom: 32px;
  overflow-x: auto;
}
.tab-btn {
  padding: 14px 24px;
  background: none;
  border: none;
  color: var(--gray);
  font-size: .92rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: var(--transition);
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* ---------- 테이블 ---------- */
.data-table {
  width: 100%;
  border-collapse: collapse;
}
.data-table th {
  text-align: left;
  padding: 12px 16px;
  font-size: .82rem;
  color: var(--cyan);
  font-weight: 700;
  border-bottom: 1px solid rgba(0,197,204,.2);
  white-space: nowrap;
}
.data-table td {
  padding: 14px 16px;
  font-size: .88rem;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,.05);
  vertical-align: middle;
}
.data-table tr:hover td { background: rgba(255,255,255,.03); cursor: pointer; }
.badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 700;
}
.badge-new    { background: rgba(0,197,204,.15); color: var(--cyan); }
.badge-event  { background: rgba(255,107,74,.15); color: var(--coral); }
.badge-notice { background: rgba(255,255,255,.08); color: var(--gray-light); }

/* ---------- 단계형 UI ---------- */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.step-list::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
}
.step-item {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  position: relative;
}
.step-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0,197,204,.12);
  border: 2px solid var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cyan);
  z-index: 1;
}
.step-content { padding-top: 10px; }
.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.step-desc { font-size: .88rem; color: var(--gray); line-height: 1.7; }

/* ---------- 체크리스트 카드 ---------- */
.checklist-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: var(--transition);
}
.checklist-card:hover {
  border-color: rgba(0,197,204,.25);
  background: rgba(0,197,204,.05);
}
.check-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,197,204,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--cyan);
}
.check-text .check-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.check-text .check-desc { font-size: .83rem; color: var(--gray); }

/* ---------- 시뮬레이터 ---------- */
.simulator-box {
  background: rgba(0,197,204,.06);
  border: 1px solid rgba(0,197,204,.2);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.simulator-result {
  background: rgba(0,0,0,.3);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 24px;
}
.result-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1.2;
}
.result-label { font-size: .85rem; color: var(--gray); margin-bottom: 4px; }
.result-note  { font-size: .75rem; color: var(--gray); margin-top: 12px; font-style: italic; }
.range-input  { width: 100%; accent-color: var(--cyan); }

/* ---------- 푸터 ---------- */
.footer {
  background: var(--black);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand .logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .logo-main span { color: var(--cyan); }
.footer-brand p {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.8;
}
.footer-col-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: .08em;
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a {
  font-size: .82rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: .75rem; color: var(--gray); }
.footer-legal {
  font-size: .75rem;
  color: var(--gray);
  line-height: 1.7;
  margin-top: 16px;
}
.footer-legal strong { color: rgba(255,255,255,.4); }

/* ---------- 섹션 장식 ---------- */
.deco-line {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--cyan);
  border-radius: 3px;
  margin: 0 auto 12px;
  display: block;
}
.deco-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(0,197,204,.3), transparent);
  margin: 60px 0;
}

/* ---------- 지도 Placeholder ---------- */
.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(0,197,204,.05), rgba(11,31,58,.9));
  border: 1px solid rgba(0,197,204,.15);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: .9rem;
  gap: 8px;
}
.map-placeholder .map-icon { font-size: 2.5rem; opacity: .4; }

/* ---------- 매장 카드 ---------- */
.store-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 16px 20px;
  cursor: pointer;
  transition: var(--transition);
}
.store-card:hover, .store-card.active {
  border-color: var(--cyan);
  background: rgba(0,197,204,.07);
}
.store-name {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.store-addr { font-size: .82rem; color: var(--gray); }
.store-badge {
  font-size: .72rem;
  color: var(--cyan);
  background: rgba(0,197,204,.1);
  border: 1px solid rgba(0,197,204,.2);
  padding: 2px 8px;
  border-radius: 100px;
  margin-top: 6px;
  display: inline-block;
}

/* ---------- 메뉴 그리드 ---------- */
.menu-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,197,204,.3);
  box-shadow: var(--shadow);
}
.menu-card-img {
  height: 200px;
  background: linear-gradient(135deg, rgba(0,197,204,.1), rgba(11,31,58,.8));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
.menu-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(transparent, rgba(6,15,30,.8));
}
.menu-card-body { padding: 16px 20px; }
.menu-card-cat {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--cyan);
  margin-bottom: 6px;
}
.menu-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.menu-card-desc { font-size: .82rem; color: var(--gray); }

/* ---------- 헤더 스크롤 표시바 ---------- */
.scroll-progress {
  position: fixed;
  top: 72px;
  left: 0;
  height: 2px;
  background: linear-gradient(to right, var(--cyan), var(--coral));
  z-index: 901;
  transition: width .1s;
}

/* ---------- 랜딩 전용 ---------- */
.landing-gnb {
  background: rgba(6,15,30,.96);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid rgba(0,197,204,.1);
}
.landing-gnb .logo-main {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--white);
}
.landing-gnb .logo-main span { color: var(--cyan); }
.countdown-box {
  background: rgba(255,107,74,.1);
  border: 2px solid var(--coral);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.countdown-title { font-size: .88rem; color: var(--coral); font-weight: 700; margin-bottom: 12px; }
.countdown-digits {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.countdown-num {
  background: rgba(0,0,0,.4);
  border-radius: 8px;
  padding: 4px 12px;
  min-width: 64px;
  text-align: center;
}
.countdown-label { font-size: .65rem; color: var(--gray); margin-top: 4px; }
.countdown-sep { color: var(--coral); margin-bottom: 20px; }

/* ---------- 체크리스트 뱃지형 ---------- */
.check-badge-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.check-badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.07);
}
.check-badge-item .cb-icon { color: var(--cyan); font-size: 1.1rem; flex-shrink: 0; }
.check-badge-item .cb-text { font-size: .9rem; color: var(--gray-light); }
.cb-num {
  margin-left: auto;
  font-weight: 900;
  color: var(--coral);
  font-size: .95rem;
  flex-shrink: 0;
}

/* ---------- 애니메이션 ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,197,204,.3); }
  50%       { box-shadow: 0 0 20px 6px rgba(0,197,204,.2); }
}
.animate-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-float { animation: float 3.5s ease-in-out infinite; }
.animate-pulse-glow { animation: pulseGlow 2.5s ease-in-out infinite; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .gnb-left, .gnb-right { display: none; }
  .gnb-hamburger { display: flex; }
  .gnb-inner { grid-template-columns: auto 1fr auto; }
  .gnb-logo { text-align: left; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 70px; }

  .inquiry-widget { right: 16px; bottom: 80px; }
  .widget-fab { right: 16px; bottom: 84px; }

  .section { padding: 56px 0; }
  .simulator-box { padding: 24px 20px; }

  .data-table { font-size: .82rem; }
  .data-table th, .data-table td { padding: 10px 12px; }

  .step-list::before { left: 24px; }
  .step-num { width: 48px; height: 48px; font-size: 1rem; }

  .landing-gnb { padding: 14px 20px; }
  .countdown-digits { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .tab-btn { padding: 12px 14px; font-size: .82rem; }
  .modal-box { padding: 28px 20px; }
  .hero-title { font-size: 2rem; }
}
