/* =====================================================
   ConnectIn — Main Public Page CSS
   2026 트렌디 디자인
===================================================== */

/* ── CSS 변수 ── */
:root {
  --primary: #4f46e5;
  --primary-light: #818cf8;
  --primary-dark: #3730a3;
  --accent: #f59e0b;
  --accent-light: #fcd34d;
  --success: #10b981;
  --danger: #ef4444;
  --urgent: #ef4444;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --font: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.18);
  --transition: 0.2s ease;
}

/* ── 리셋 & 기본 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--gray-50);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }

/* ── 공통 컨테이너 ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── 텍스트 그라디언트 ── */
.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--primary-light), #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-yellow { color: var(--accent); }
.text-blue { color: #0ea5e9; }

/* ===================================================
   HEADER
=================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-icon-wrap {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 18px;
}
.logo-wordmark {
  font-size: 18px;
  font-weight: 900;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}
.logo-eng-sm {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0.5px;
}

/* 검색바 */
.header-search {
  flex: 1;
  max-width: 480px;
}
.search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.search-icon {
  position: absolute;
  left: 14px;
  color: var(--gray-400);
  font-size: 14px;
  z-index: 1;
}
.search-wrap input {
  width: 100%;
  padding: 10px 40px 10px 40px;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  font-size: 14px;
  background: var(--gray-50);
  font-family: var(--font);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.search-wrap input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: white;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.08);
}
.search-clear-btn {
  position: absolute;
  right: 12px;
  color: var(--gray-400);
  font-size: 14px;
  padding: 4px;
}
.search-clear-btn:hover { color: var(--gray-700); }

/* 헤더 우측 네비 */
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}
.nav-link {
  padding: 7px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.nav-link:hover { background: var(--gray-100); color: var(--gray-900); }
.nav-link.nav-urgent {
  color: var(--urgent);
  font-weight: 600;
}
.nav-link.nav-urgent:hover { background: #fef2f2; }
.btn-outline-sm {
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  color: var(--gray-700);
  transition: border-color var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-outline-sm:hover { border-color: var(--primary); color: var(--primary); }
.btn-filled-sm {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50px;
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-filled-sm:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(79,70,229,0.35); }

/* 모바일 메뉴 버튼 */
.mobile-menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  color: var(--gray-700);
  font-size: 18px;
  align-items: center;
  justify-content: center;
}
.mobile-menu-btn:hover { background: var(--gray-100); }

/* 모바일 드로어 */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 998;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
.mobile-drawer.open { transform: translateX(0); }
.drawer-inner {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.drawer-search {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius);
  margin-bottom: 12px;
  color: var(--gray-400);
}
.drawer-search input {
  flex: 1;
  border: none;
  background: none;
  font-size: 15px;
  font-family: var(--font);
}
.drawer-search input:focus { outline: none; }
.drawer-link {
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--gray-700);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 8px;
}
.drawer-link:hover { background: var(--gray-50); }
.drawer-hr { border: none; border-top: 1px solid var(--gray-100); margin: 8px 0; }
.drawer-cta {
  margin-top: 8px;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ===================================================
   HERO SECTION — 2026 리디자인
=================================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  background: #070710;
  padding: 80px 20px 88px;
  min-height: 600px;
}

/* 배경 오브 — 왼쪽 보라, 오른쪽 초록 */
.hero-section::before {
  content: '';
  position: absolute;
  top: -120px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(99,102,241,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.10) 0%, transparent 65%);
  pointer-events: none;
}

/* 격자 배경 */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.hero-grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 30% 50%, rgba(99,102,241,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 45% 40% at 75% 60%, rgba(16,185,129,0.08) 0%, transparent 70%);
}

/* 내부 레이아웃 */
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.hero-text { }

/* 실시간 뱃지 */
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.22);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #4ade80;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.2px;
}
.hero-live-badge strong {
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  margin: 0 1px;
}
.badge-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 1.5s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 6px #4ade80; }
  50%       { opacity: 0.6; transform: scale(0.7); box-shadow: 0 0 12px #4ade80; }
}

/* 헤드라인 */
.hero-headline {
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -1.5px;
  color: #e2e8f0;
  margin-bottom: 20px;
}

/* 1줄: 작은 서브 탐 */
.hero-line-pretag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a78bfa;
  background: rgba(139,92,246,0.12);
  border: 1px solid rgba(139,92,246,0.25);
  padding: 5px 12px;
  border-radius: 50px;
  margin-bottom: 18px;
}
.hero-line-pretag i { font-size: 10px; }

/* 메인 라인 */
.hero-line-sm {
  display: block;
  font-size: clamp(28px, 3.5vw, 46px);
  color: #cbd5e1;
  font-weight: 800;
  line-height: 1.35;
}
.hero-line-sm.hero-line-accent {
  font-size: clamp(32px, 4.2vw, 54px);
  color: #fff;
  font-weight: 900;
  letter-spacing: -2px;
  margin-top: 4px;
}

/* 키워드 강조 — 그라데이션 + 어더라인 */
.hero-hl-text {
  background: linear-gradient(120deg, #a78bfa 0%, #818cf8 60%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
  position: relative;
  padding-bottom: 3px;
}
.hero-hl-text::after {
  content: '';
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%; height: 2.5px;
  background: linear-gradient(90deg, #818cf8, #6ee7b7);
  border-radius: 2px;
  opacity: 0.7;
}
.hero-hl-green {
  background: linear-gradient(120deg, #34d399, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-hl-green::after {
  background: linear-gradient(90deg, #10b981, #34d399);
}

/* 3줄: 커넥트인 크게 */
.hero-brand-line {
  display: block;
  margin-top: 16px;
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 900;
  letter-spacing: -3px;
  background: linear-gradient(120deg, #ffffff 0%, #c7d2fe 55%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.0;
}

/* 서브 카피 */
.hero-sub {
  font-size: 15px;
  color: #64748b;
  line-height: 2;
  margin-bottom: 28px;
}
.hero-sub strong {
  color: #e2e8f0;
  font-weight: 800;
}
/* 서브 하이라이트 라인 */
.hero-sub-hl {
  display: inline-block;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: transparent;
  background: linear-gradient(90deg, #a78bfa, #6ee7b7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.3px;
}

/* 영업 유형 칩 */
.hero-type-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.hchip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid;
}
.hchip i { font-size: 12px; }
.hchip-blue   { background: rgba(14,165,233,0.1);  border-color: rgba(14,165,233,0.3);  color: #38bdf8; }
.hchip-purple { background: rgba(139,92,246,0.1);  border-color: rgba(139,92,246,0.3);  color: #a78bfa; }
.hchip-green  { background: rgba(16,185,129,0.1);  border-color: rgba(16,185,129,0.3);  color: #34d399; }
.hchip-orange { background: rgba(245,158,11,0.1);  border-color: rgba(245,158,11,0.3);  color: #fbbf24; }

/* CTA 버튼 */
.hero-cta-wrap {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 4px 24px rgba(99,102,241,0.5);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}
.hero-cta-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 60%);
  border-radius: inherit;
}
.hero-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12), 0 8px 40px rgba(99,102,241,0.65);
}
.hero-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 26px;
  border: 1.5px solid rgba(74,222,128,0.35);
  color: #6ee7b7;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  background: rgba(74,222,128,0.05);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.hero-cta-outline:hover {
  background: rgba(74,222,128,0.12);
  border-color: rgba(74,222,128,0.6);
  transform: translateY(-2px);
}

/* 통계 */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 12px;
  padding-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.hstat { padding: 12px 32px 4px 0; }
.hstat:first-child { padding-left: 0; }
.hstat-num {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(120deg, #fff 0%, #c7d2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.hstat-unit { font-size: 13px; color: #94a3b8; margin-left: 2px; }
.hstat-label { display: block; font-size: 11px; color: #64748b; margin-top: 3px; letter-spacing: 0.2px; }
.hstat-divider { width: 1px; height: 32px; background: linear-gradient(180deg, transparent, rgba(255,255,255,0.12), transparent); margin-right: 32px; }

/* ── 오른쪽 패널 ── */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero-panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.3px;
}
.panel-live-dot {
  width: 8px; height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1s infinite;
  flex-shrink: 0;
}
.panel-title { color: #e2e8f0; }

/* 보수 유형 카드 3종 */
.hero-reward-types {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.rtype-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid;
}
.rtype-activity { background: rgba(249,115,22,0.07);   border-color: rgba(249,115,22,0.2); }
.rtype-call     { background: rgba(14,165,233,0.07);   border-color: rgba(14,165,233,0.2); }
.rtype-lead     { background: rgba(139,92,246,0.07);   border-color: rgba(139,92,246,0.2); }
.rtype-deal     { background: rgba(16,185,129,0.07);   border-color: rgba(16,185,129,0.2); }
.rtype-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.rtype-activity .rtype-icon { background: rgba(249,115,22,0.15);  color: #fb923c; }
.rtype-call     .rtype-icon { background: rgba(14,165,233,0.15);  color: #38bdf8; }
.rtype-lead     .rtype-icon { background: rgba(139,92,246,0.15);  color: #a78bfa; }
.rtype-deal     .rtype-icon { background: rgba(16,185,129,0.15);  color: #34d399; }
.rtype-info { }
.rtype-label { font-size: 12px; color: #94a3b8; margin-bottom: 2px; }
.rtype-price { font-size: 13px; color: #e2e8f0; }
.rtype-price strong { color: white; font-weight: 800; }

/* 실시간 피드 */
.hero-feed-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}
.hfeed-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 12px;
  animation: fadeFeedIn 0.4s ease;
}
@keyframes fadeFeedIn {
  from { opacity: 0; transform: translateX(-6px); }
  to   { opacity: 1; transform: translateX(0); }
}
.hfeed-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-green  { background: #4ade80; }
.dot-blue   { background: #38bdf8; }
.dot-purple { background: #a78bfa; }
.dot-orange { background: #fbbf24; }
.hfeed-text { flex: 1; color: #94a3b8; line-height: 1.4; }
.hfeed-text b { color: #e2e8f0; font-weight: 600; }
.hfeed-time { font-size: 11px; color: #475569; white-space: nowrap; flex-shrink: 0; }

/* 패널 하단 CTA */
.hero-panel-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px;
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
  margin-top: 4px;
  box-shadow: 0 4px 16px rgba(99,102,241,0.35);
}
.hero-panel-cta:hover { opacity: 0.92; transform: translateY(-1px); }



/* 등급 배지 (다른 곳에서도 사용) */
.grade-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
}
.grade-badge.gold     { background: rgba(245,158,11,0.2);  color: #fcd34d; border: 1px solid rgba(245,158,11,0.3); }
.grade-badge.platinum { background: rgba(147,197,253,0.2); color: #93c5fd; border: 1px solid rgba(147,197,253,0.3); }
.grade-badge.silver   { background: rgba(156,163,175,0.2); color: #d1d5db; border: 1px solid rgba(156,163,175,0.3); }

/* ===================================================
   광고 배너 TOP
=================================================== */
/* ===================================================
   상단 광고 배너 슬라이더 (풀와이드, 2슬라이드, 5초)
=================================================== */
.top-banner-slider-section {
  position: relative;
  overflow: hidden;
  background: #f8f7ff;
  border-bottom: 1px solid var(--gray-200);
}

/* 광고 레이블 */
.tbs-label {
  position: absolute;
  top: 6px; right: 12px;
  font-size: 10px;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 1px 6px;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}

/* 슬라이드 트랙 */
.tbs-track {
  display: flex;
  width: 300%;           /* 슬라이드 3개 */
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 슬라이드 하나 */
.tbs-slide {
  width: calc(100% / 3); /* 트랙 300% 기준 1/3 = 화면 100% */
  flex-shrink: 0;
}

/* 슬라이드 내부 공통 레이아웃 */
.tbs-slide-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px;
  gap: 24px;
  min-height: 140px;
}

/* 빈 슬롯(광고 문의) 스타일 */
.tbs-empty {
  /* 연보라 점선 느낌 */
}
.tbs-empty-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}
.tbs-empty-icon {
  font-size: 44px;
  color: var(--primary-light);
  flex-shrink: 0;
}
.tbs-empty-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tbs-empty-sub {
  font-size: 14px;
  color: var(--gray-400);
}

/* CTA 버튼 */
.tbs-cta {
  flex-shrink: 0;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
.tbs-cta-outline {
  border: 1.5px solid var(--primary-light);
  color: var(--primary);
  background: white;
}
.tbs-cta-outline:hover {
  background: var(--primary);
  color: white;
}
.tbs-cta-filled {
  background: var(--primary);
  color: white;
}
.tbs-cta-filled:hover { background: var(--primary-dark); }

/* 인디케이터 점 */
/* tbs-dot 제거 (인디케이터 없음) */

/* 실제 광고 배너용 (나중에 광고 들어올 때) */
.tbs-real {
  background: linear-gradient(90deg, #6366f1 0%, #8b5cf6 100%);
  color: white;
}
.tbs-real .tbs-empty-title { color: white; }
.tbs-real .tbs-empty-sub   { color: rgba(255,255,255,0.75); }
.tbs-real .tbs-empty-icon  { color: rgba(255,255,255,0.7); }

/* 모바일 */
@media (max-width: 640px) {
  .tbs-slide-inner { padding: 20px 16px; gap: 10px; min-height: 110px; }
  .tbs-empty-title { font-size: 12px; }
  .tbs-empty-sub   { display: none; }
  .tbs-cta         { padding: 7px 14px; font-size: 12px; }
  .tbs-empty-icon  { font-size: 22px; }
}

/* ===================================================
   지역 탭 스트립
=================================================== */
.region-strip-section {
  background: #f8f9ff;
  border-bottom: 2px solid var(--gray-200);
  position: sticky;
  top: 64px;
  z-index: 110;
  padding: 0;
}
.region-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 56px;
}

/* 지역 라벨 */
.region-strip-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 800; color: var(--primary);
  letter-spacing: .4px; text-transform: uppercase;
  padding-right: 16px;
  border-right: 1px solid var(--gray-200);
  white-space: nowrap;
  flex-shrink: 0;
}
.region-strip-label i { font-size: 13px; }

/* 지역 탭 스크롤 래퍼 */
.region-tabs-wrap {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  flex: 1;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.region-tabs-wrap::-webkit-scrollbar { display: none; }

/* 지역 탭 버튼 */
.region-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 14px;
  height: 56px;
  background: none;
  border-bottom: 2px solid transparent;
  transition: background .15s, border-color .15s, color .15s;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.region-tab:hover {
  background: rgba(99,102,241,.04);
}
.region-tab.active {
  border-bottom-color: var(--primary);
  background: rgba(99,102,241,.05);
}
.rt-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
}
.region-tab.active .rt-name { color: var(--primary); font-weight: 700; }
.region-tab:hover .rt-name  { color: var(--primary); }
.rt-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--gray-400);
}
.region-tab.active .rt-count { color: var(--primary); }

/* 선택된 지역 뱃지 */
.region-selected-badge {
  display: flex; align-items: center; gap: 6px;
  margin-left: 12px; padding: 5px 12px;
  background: rgba(99,102,241,.1);
  border: 1px solid rgba(99,102,241,.25);
  border-radius: 50px;
  font-size: 12px; font-weight: 700; color: var(--primary);
  white-space: nowrap; flex-shrink: 0;
}
.region-selected-badge button {
  background: none; border: none;
  color: var(--primary); opacity: .7;
  cursor: pointer; font-size: 12px;
  padding: 0 2px;
  transition: opacity .15s;
}
.region-selected-badge button:hover { opacity: 1; }

/* 빈 결과 메시지 */
.no-jobs-msg {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
}
.no-jobs-msg i { font-size: 40px; display: block; margin-bottom: 14px; color: var(--gray-300); }
.no-jobs-msg p { font-size: 15px; font-weight: 700; color: var(--gray-500); margin-bottom: 6px; }
.no-jobs-msg small { font-size: 13px; color: var(--gray-400); }

/* 반응형 */
@media (max-width: 768px) {
  .region-strip-label { display: none; }
  .region-strip-inner { padding: 0 12px; }
  .region-tab { padding: 8px 12px; }
  .rt-icon { font-size: 16px; }
}
@media (max-width: 480px) {
  .region-tab { padding: 7px 10px; }
  .rt-name { font-size: 10px; }
}

/* 카테고리 탭은 지역 탭 바로 아래 */
.category-tabs-section {
  top: 120px; /* 지역탭(56px) + 헤더(64px) */
}

/* ===================================================
   카테고리 탭
=================================================== */
.category-tabs-section {
  background: white;
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 120px;
  z-index: 100;
  padding: 0;
}
.cat-tabs-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.cat-tabs-wrap::-webkit-scrollbar { display: none; }
.cat-tab {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 2.5px solid transparent;
  white-space: nowrap;
  transition: color var(--transition), border-color var(--transition);
  background: none;
  border-radius: 0;
}
.cat-tab:hover { color: var(--primary); }
.cat-tab.active { color: var(--primary); border-bottom-color: var(--primary); font-weight: 700; }

/* 업무 유형 탭 — 색상 강조 */
.cat-tab-type { font-weight: 600; }
.cat-tab-type[data-cat="activity"].active  { color: #f97316; border-bottom-color: #f97316; }
.cat-tab-type[data-cat="inquiry"].active   { color: #0ea5e9; border-bottom-color: #0ea5e9; }
.cat-tab-type[data-cat="lead"].active      { color: #8b5cf6; border-bottom-color: #8b5cf6; }
.cat-tab-type[data-cat="contract"].active  { color: #10b981; border-bottom-color: #10b981; }
.cat-tab-type[data-cat="activity"]:hover   { color: #f97316; }
.cat-tab-type[data-cat="inquiry"]:hover    { color: #0ea5e9; }
.cat-tab-type[data-cat="lead"]:hover       { color: #8b5cf6; }
.cat-tab-type[data-cat="contract"]:hover   { color: #10b981; }

/* 탭 구분선 */
.cat-tab-divider {
  display: flex; align-items: center; padding: 0 8px;
  color: var(--gray-200); font-size: 18px; font-weight: 300;
  pointer-events: none; user-select: none;
}

/* ===================================================
   공통 섹션 스타일
=================================================== */
.section {
  padding: 60px 0;
}
.section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.urgent-icon    { background: #fef2f2; color: var(--urgent); }
.simple-icon    { background: #fffbeb; color: var(--accent); }
.jobs-icon      { background: #eff6ff; color: var(--primary); }
.fl-icon        { background: #f0fdf4; color: var(--success); }
.premium-icon   { background: #fef9c3; color: #d97706; }
.deadline-icon  { background: #fef2f2; color: #ef4444; }
.activity-icon  { background: #f0fdf4; color: #10b981; }

.section-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.3px;
}
.section-badge-count {
  background: var(--primary);
  color: white;
  border-radius: 50px;
  padding: 2px 10px;
  font-size: 12px;
  font-weight: 700;
}
.section-desc {
  font-size: 14px;
  color: var(--gray-500);
  align-self: center;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-title-lg {
  font-size: 28px;
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

/* ===================================================
   긴급 공고 그리드
=================================================== */
.urgent-section {
  background: #fff9f9;
  padding: 56px 0;
}
.urgent-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}
.urgent-card {
  background: white;
  border: 1.5px solid #fecdd3;
  border-radius: var(--radius-lg);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.urgent-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.urgent-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ef4444, #f97316);
}
.urgent-card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}
.urgent-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #fef2f2;
  color: #ef4444;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.urgent-deadline {
  font-size: 11px;
  color: #ef4444;
  font-weight: 600;
  background: #fff1f2;
  padding: 3px 8px;
  border-radius: 4px;
}
.urgent-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
}
.urgent-company {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
}
.urgent-info-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.urgent-info-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--gray-600);
}
.urgent-info-item i { color: var(--primary); font-size: 12px; }
.urgent-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.urgent-pay {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}
.urgent-apply-btn {
  padding: 8px 18px;
  background: linear-gradient(135deg, #ef4444, #f97316);
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
}
.urgent-apply-btn:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===================================================
   간단업무 그리드
=================================================== */
.simple-section {
  background: #fffdf5;
}
.simple-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 14px;
}
.simple-card {
  background: white;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.simple-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.simple-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.simple-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fffbeb;
  color: #d97706;
  padding: 3px 8px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
}
.simple-pay {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary);
}
.simple-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-800);
  line-height: 1.4;
}
.simple-meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--gray-400);
}
.simple-meta i { margin-right: 2px; }
.simple-apply-btn {
  padding: 9px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
}
.simple-apply-btn:hover { background: #fffbeb; border-color: #fde68a; color: #d97706; }

/* ===================================================
   전체 구인 공고 그리드
=================================================== */
.jobs-section { background: white; }
.jobs-filter-row {
  display: flex;
  gap: 8px;
}
.filter-select {
  padding: 8px 12px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-family: var(--font);
  color: var(--gray-700);
  background: white;
  cursor: pointer;
}
.filter-select:focus { outline: none; border-color: var(--primary-light); }
.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 16px;
}
.job-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
  position: relative;
}
.job-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.job-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.job-company-logo {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.job-company-info { flex: 1; min-width: 0; }
.job-company-name {
  font-size: 12px;
  color: var(--gray-500);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.job-badges {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-top: 2px;
}
.job-badge {
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}
.job-badge.urgent { background: #fef2f2; color: #ef4444; }
.job-badge.popular { background: #fff7ed; color: #ea580c; }
.job-badge.new { background: #f0fdf4; color: #16a34a; }
.job-badge.recommended { background: #eff6ff; color: #2563eb; }
.job-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.job-tags {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.job-tag {
  padding: 3px 9px;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}
.job-info-row {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.job-info-row i { margin-right: 3px; color: var(--primary); }
.job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.job-pay {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-dark);
}
.job-apply-btn {
  padding: 8px 16px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.job-apply-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }
.job-applicants {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 11px;
  color: var(--gray-400);
}

/* 더보기 버튼 */
.load-more-wrap {
  text-align: center;
  margin-top: 32px;
}
.btn-load-more {
  padding: 14px 40px;
  border: 1.5px solid var(--gray-300);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.btn-load-more:hover { border-color: var(--primary); color: var(--primary); background: var(--gray-50); }

/* ===================================================
   인피드 광고
=================================================== */
/* ===================================================
   중간 광고 배너 슬라이더 (2슬라이드, 5초)
=================================================== */
.mid-ad-section {
  position: relative;
  overflow: hidden;
  background: #f8f7ff;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

/* 광고 레이블 */
.mid-ad-label {
  position: absolute;
  top: 8px; right: 16px;
  font-size: 10px;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 1px 6px;
  border-radius: 4px;
  z-index: 10;
  pointer-events: none;
}

/* 슬라이더 래퍼: overflow hidden */
.mid-ad-wrap {
  overflow: hidden;
}

/* 트랙: 슬라이드 2개 나란히 */
.mid-ad-track {
  display: flex;
  width: 200%;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 슬라이드 1개 = 화면 전체 */
.mid-ad-slide {
  width: 50%;
  flex-shrink: 0;
}

/* 내부 레이아웃 */
.mid-ad-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 36px 40px;
  min-height: 140px;
}

/* 빈 슬롯 */
.mid-ad-empty { /* 별도 배경 없음, section 배경 사용 */ }

.mid-ad-icon-wrap {
  width: 68px; height: 68px;
  border-radius: var(--radius);
  background: #ede9fe;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  color: var(--primary-light);
  flex-shrink: 0;
}

.mid-ad-text {
  flex: 1;
  min-width: 0;
}
.mid-ad-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mid-ad-sub {
  font-size: 14px;
  color: var(--gray-400);
}

/* CTA 버튼 */
.mid-ad-cta {
  flex-shrink: 0;
  padding: 10px 24px;
  border: 1.5px solid var(--primary-light);
  color: var(--primary);
  background: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition), color var(--transition);
}
.mid-ad-cta:hover { background: var(--primary); color: white; }

/* 실제 광고용 (나중에 사용) */
.mid-ad-real { background: linear-gradient(90deg, #6366f1, #8b5cf6); }
.mid-ad-real .mid-ad-title { color: white; }
.mid-ad-real .mid-ad-sub   { color: rgba(255,255,255,0.75); }
.mid-ad-real .mid-ad-cta   { border-color: white; color: white; background: rgba(255,255,255,0.15); }
.mid-ad-real .mid-ad-cta:hover { background: white; color: var(--primary); }

/* 인디케이터 */
/* mid-ad-dot 제거 (인디케이터 없음) */

/* 모바일 */
@media (max-width: 640px) {
  .mid-ad-inner  { padding: 20px 16px; gap: 12px; min-height: 110px; }
  .mid-ad-title  { font-size: 14px; }
  .mid-ad-sub    { display: none; }
  .mid-ad-cta    { padding: 8px 16px; font-size: 12px; }
  .mid-ad-icon-wrap { width: 44px; height: 44px; font-size: 20px; }
}

/* ===================================================
   추천 영업인
=================================================== */
.freelancers-section { background: var(--gray-50); }
.fl-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.fl-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.fl-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.fl-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.fl-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.fl-info { flex: 1; }
.fl-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 4px;
}
.fl-name { font-size: 15px; font-weight: 700; color: var(--gray-900); }
.fl-trust {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
}
.fl-status { font-size: 12px; color: var(--gray-400); }
.fl-status.online { color: #22c55e; }

.fl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
}
.fl-tag {
  padding: 3px 9px;
  background: #eff6ff;
  color: var(--primary);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
}
.fl-stats-row {
  display: flex;
  gap: 14px;
  font-size: 12px;
  color: var(--gray-500);
  margin-bottom: 14px;
}
.fl-stats-row i { margin-right: 3px; color: var(--primary); }
.fl-career {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.fl-contact-btn {
  width: 100%;
  padding: 10px;
  border: 1.5px solid var(--primary);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  transition: background var(--transition), color var(--transition);
}
.fl-contact-btn:hover { background: var(--primary); color: white; }
.fl-lock-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fl-lock-overlay i { font-size: 22px; color: var(--gray-400); }
.fl-lock-overlay span { font-size: 12px; color: var(--gray-500); font-weight: 500; }
.fl-lock-overlay a {
  padding: 8px 18px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  transition: background var(--transition);
}
.fl-lock-overlay a:hover { background: var(--primary-dark); }

.section-cta-wrap { text-align: center; }
.section-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border: 1.5px solid var(--primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  transition: background var(--transition), color var(--transition);
}
.section-cta-btn:hover { background: var(--primary); color: white; }

/* ===================================================
   광고 요금제
=================================================== */
.pricing-section {
  background: linear-gradient(160deg, #0f0c29, #1a1a4e);
  padding: 80px 0;
}
.pricing-head {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-title {
  font-size: 32px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.pricing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.pricing-grid {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.pricing-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.pricing-card.recommended {
  background: rgba(99,102,241,0.15);
  border-color: rgba(99,102,241,0.5);
}
.pricing-card.premium {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.3);
}
.pricing-rec-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1.5px;
  margin-bottom: 4px;
}
.pricing-price {
  font-size: 30px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1;
}
.pricing-period {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  margin-bottom: 16px;
}
.pricing-features li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}
.pricing-features li i { width: 14px; flex-shrink: 0; }
.pricing-features li i.fa-check { color: #4ade80; }
.pricing-features li i.fa-xmark { color: rgba(255,255,255,0.2); }
.pricing-features li.disabled { opacity: 0.4; }
.pricing-cta {
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  transition: opacity var(--transition), transform var(--transition);
}
.pricing-cta:hover { opacity: 0.9; transform: translateY(-1px); }
.pricing-cta.outline {
  border: 1.5px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.8);
}
.pricing-cta.outline:hover { background: rgba(255,255,255,0.08); }
.pricing-cta.filled {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
}
.pricing-cta.premium-cta {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
}

/* ===================================================
   실시간 피드
=================================================== */
/* realtime-section 제거됨 */

/* ===================================================
   커넥트인 소개 가로 배너
=================================================== */
.intro-banner-section {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 45%, #1e1b4b 100%);
  position: relative;
  overflow: hidden;
  padding: 0;
}

/* 배경 오브 */
.ib-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.ib-orb-1 {
  width: 320px; height: 320px;
  background: rgba(99,102,241,.35);
  top: -80px; left: -60px;
}
.ib-orb-2 {
  width: 260px; height: 260px;
  background: rgba(139,92,246,.28);
  bottom: -70px; right: 10%;
}
.ib-orb-3 {
  width: 180px; height: 180px;
  background: rgba(16,185,129,.18);
  top: 20px; right: 35%;
}

/* 내부 레이아웃 */
.intro-banner-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  padding: 56px 40px;
  display: flex;
  align-items: center;
  gap: 48px;
}

/* 왼쪽 텍스트 */
.ib-text { flex: 1; min-width: 0; }
.ib-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 14px;
}
.ib-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #818cf8;
  animation: ibPulse 2s ease-in-out infinite;
}
@keyframes ibPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.75); }
}
.ib-title {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  color: #f1f5f9;
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.ib-desc {
  font-size: 14.5px;
  color: #94a3b8;
  line-height: 1.85;
}
.ib-desc strong { color: #c7d2fe; font-weight: 700; }
.ib-br { display: block; }

/* 4가지 유형 칩 */
.ib-type-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 18px;
}
.ib-chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px; font-weight: 700;
  border: 1px solid;
}
.ib-chip i { font-size: 11px; }
.ib-chip-activity {
  background: rgba(249,115,22,.15);
  border-color: rgba(249,115,22,.35);
  color: #fb923c;
}
.ib-chip-inquiry {
  background: rgba(59,130,246,.15);
  border-color: rgba(59,130,246,.35);
  color: #60a5fa;
}
.ib-chip-lead {
  background: rgba(139,92,246,.15);
  border-color: rgba(139,92,246,.35);
  color: #a78bfa;
}
.ib-chip-contract {
  background: rgba(16,185,129,.15);
  border-color: rgba(16,185,129,.35);
  color: #34d399;
}

/* 오른쪽 */
.ib-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 20px;
  flex-shrink: 0;
}

/* 수치 */
.ib-stats {
  display: flex; align-items: center; gap: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 18px 28px;
  gap: 20px;
}
.ib-stat { text-align: center; }
.ib-stat strong {
  display: block;
  font-size: 22px; font-weight: 900; color: #f1f5f9;
  line-height: 1.1; margin-bottom: 4px;
}
.ib-stat strong span { font-size: 14px; font-weight: 700; color: #a5b4fc; }
.ib-stat > span { font-size: 11px; color: #64748b; font-weight: 600; letter-spacing: .5px; }
.ib-stat-div {
  width: 1px; height: 40px;
  background: rgba(255,255,255,.12);
}

/* 버튼 */
.ib-btns { display: flex; gap: 10px; }
.ib-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 12px;
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white; font-size: 14px; font-weight: 700;
  box-shadow: 0 6px 20px rgba(99,102,241,.45);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.ib-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(99,102,241,.6); }
.ib-btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px;
  border: 1.5px solid rgba(255,255,255,.22);
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 600;
  transition: border-color .2s, color .2s, background .2s;
  white-space: nowrap;
}
.ib-btn-outline:hover { border-color: rgba(255,255,255,.5); color: white; background: rgba(255,255,255,.06); }

/* 반응형 */
@media (max-width: 900px) {
  .intro-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    padding: 48px 24px;
  }
  .ib-right { align-items: flex-start; width: 100%; }
  .ib-stats { width: 100%; justify-content: space-between; }
  .ib-br { display: inline; }
}
@media (max-width: 560px) {
  .ib-stats { flex-wrap: wrap; gap: 16px; padding: 16px 20px; }
  .ib-stat-div { display: none; }
  .ib-btns { flex-direction: column; width: 100%; }
  .ib-btn-primary, .ib-btn-outline { justify-content: center; }
}

/* ===================================================
   사용 후기
=================================================== */
.reviews-section {
  background: var(--gray-50);
  padding: 80px 0;
}

/* 후기 탭 */
.review-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  background: var(--gray-200);
  border-radius: 50px;
  padding: 4px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.review-tab {
  padding: 10px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.review-tab.active {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.review-tab i { font-size: 13px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}
.reviews-grid.hidden { display: none; }
.review-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  gap: 16px;
}
.review-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.review-content { flex: 1; }
.review-stars { color: var(--accent); font-size: 14px; margin-bottom: 8px; }
.review-content p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 10px;
}
.review-author { font-size: 12px; color: var(--gray-400); font-weight: 500; }

/* ===================================================
   하단 CTA
=================================================== */
.bottom-cta-section {
  background: linear-gradient(160deg, #0f0c29, #302b63, #24243e);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bcta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  pointer-events: none;
}
.bcta-orb-1 { width: 400px; height: 400px; background: radial-gradient(#6366f1, transparent); top: -100px; left: -100px; }
.bcta-orb-2 { width: 300px; height: 300px; background: radial-gradient(#f59e0b, transparent); bottom: -80px; right: 0; }
.bottom-cta-inner { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.bcta-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.bcta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 36px;
}
.bcta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.bcta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #6366f1, #818cf8);
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(99,102,241,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bcta-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(99,102,241,0.55); }
.bcta-btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.85);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  transition: background var(--transition);
}
.bcta-btn-outline:hover { background: rgba(255,255,255,0.08); }
.bcta-trust {
  display: flex;
  gap: 24px;
  justify-content: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
}
.bcta-trust i { margin-right: 5px; color: rgba(255,255,255,0.3); }

/* ===================================================
   멤버십 배너
=================================================== */
.membership-banner-section {
  background: linear-gradient(160deg, #0f0c29, #1a1044, #0d1b3e);
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.22;
  pointer-events: none;
}
.mb-orb-1 { width: 450px; height: 450px; background: radial-gradient(#f59e0b, transparent); top: -120px; right: -80px; }
.mb-orb-2 { width: 320px; height: 320px; background: radial-gradient(#7c3aed, transparent); bottom: -80px; left: -60px; }
.membership-banner-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.mb-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,158,11,.15); border: 1px solid rgba(245,158,11,.4);
  border-radius: 50px; padding: 6px 18px;
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: #fcd34d; text-transform: uppercase; margin-bottom: 24px;
}
.mb-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 900; color: white;
  letter-spacing: -0.5px; line-height: 1.25;
  margin-bottom: 16px;
}
.mb-title span { color: #fcd34d; }
.mb-sub {
  font-size: 16px; color: rgba(255,255,255,.6);
  line-height: 1.8; margin-bottom: 40px;
}
.mb-features {
  display: flex; gap: 10px; justify-content: center;
  flex-wrap: nowrap; margin-bottom: 40px;
  overflow-x: auto;
}
.mb-feature {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12);
  border-radius: 50px; padding: 8px 14px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,.85);
  white-space: nowrap; flex-shrink: 0;
}
.mb-feature i { color: #fcd34d; font-size: 13px; }
.mb-cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: white; border-radius: 50px;
  padding: 16px 40px; font-size: 16px; font-weight: 800;
  box-shadow: 0 8px 28px rgba(245,158,11,.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.mb-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(245,158,11,.5); }
.mb-cta-btn i { font-size: 16px; }

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-brand {
  flex: 0 0 260px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 900;
  color: white;
  margin-bottom: 10px;
}
.footer-logo i { color: var(--primary-light); }
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-bottom: 20px;
  word-break: keep-all;
  white-space: nowrap;
}
/* 카카오톡 상담 버튼 */
.footer-kakao-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-kakao-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FEE500;
  color: #3C1E1E !important;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 800;
  width: fit-content;
  transition: opacity .2s, transform .2s;
  text-decoration: none;
}
.footer-kakao-btn:hover { opacity: .88; transform: translateY(-2px); }
.footer-kakao-btn i { font-size: 14px; }
.footer-kakao-label {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  padding-left: 4px;
}

.footer-links {
  flex: 1;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-col a:hover { color: white; }
.footer-admin-link {
  display: flex;
  align-items: center;
  gap: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px;
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  max-width: 1200px;
  margin: 0 auto;
}

/* ===================================================
   로그인 유도 토스트
=================================================== */
.login-nudge-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 9999;
  width: min(480px, calc(100vw - 32px));
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.login-nudge-toast.show {
  transform: translateX(-50%) translateY(0);
}
.lnt-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.lnt-inner > i {
  font-size: 22px;
  color: var(--primary);
  flex-shrink: 0;
}
.lnt-title { font-size: 14px; font-weight: 700; color: var(--gray-900); }
.lnt-sub { font-size: 12px; color: var(--gray-400); margin-top: 2px; }
.lnt-cta {
  flex-shrink: 0;
  margin-left: auto;
  padding: 9px 18px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  transition: background var(--transition);
}
.lnt-cta:hover { background: var(--primary-dark); }
.lnt-close {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transition: background var(--transition);
}
.lnt-close:hover { background: var(--gray-100); }

/* ===================================================
   반응형 — 전면 모바일 최적화
=================================================== */

/* ── 태블릿 (1024px 이하) ─────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero-section { padding: 64px 20px 72px; min-height: auto; }
}

/* ── 모바일 (768px 이하) ──────────────────────── */
@media (max-width: 768px) {

  /* 헤더 */
  .header-inner { height: 56px; padding: 0 16px; gap: 12px; }
  .header-search { display: none; }
  .nav-link { display: none; }
  .btn-outline-sm { display: none; }
  .btn-filled-sm  { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-drawer { display: block; }
  .logo-wordmark { font-size: 16px; }
  .logo-eng-sm   { display: none; }
  .logo-icon-wrap { width: 30px; height: 30px; font-size: 14px; }

  /* 로그인 후 헤더 유저 영역 압축 */
  #header-user { gap: 6px !important; }
  #header-user .btn-filled-sm {
    display: inline-flex !important;
    padding: 6px 12px;
    font-size: 12px;
  }
  #header-user .btn-outline-sm {
    display: none !important;
  }
  .header-avatar { width: 28px !important; height: 28px !important; font-size: 12px !important; }
  .header-username { font-size: 12px !important; }
  .header-role-badge { display: none !important; }

  /* 히어로 */
  .hero-section { padding: 44px 16px 56px; min-height: auto; }
  .hero-live-badge { font-size: 12px; padding: 5px 12px; margin-bottom: 20px; }
  .hero-line-sm { font-size: 22px; line-height: 1.5; }
  .hero-brand-line { font-size: 34px; }
  .hero-sub { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
  .hero-type-chips { gap: 5px; flex-wrap: wrap; }
  .hchip { font-size: 11px; padding: 5px 10px; }
  .hero-cta-wrap { flex-direction: column; gap: 10px; margin-bottom: 28px; }
  .hero-cta-primary, .hero-cta-secondary {
    justify-content: center;
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
  .hero-stats { row-gap: 6px; column-gap: 16px; flex-wrap: wrap; }
  .hstat { padding: 8px 16px 4px 0; }
  .hstat-num { font-size: 22px; }
  .hstat-divider { display: none; }

  /* 섹션 공통 */
  .section { padding: 36px 0; }
  .section-header { margin-bottom: 20px; }
  .section-title { font-size: 20px; }
  .section-sub { font-size: 13px; }

  /* 그리드 */
  .urgent-grid { grid-template-columns: 1fr; }
  .simple-grid  { grid-template-columns: 1fr; }
  .jobs-grid    { grid-template-columns: 1fr; }
  .fl-cards-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .realtime-feed { grid-template-columns: 1fr; }

  /* 광고 인피드 */
  .ad-infeed-section { padding: 0 16px; }
  .ad-infeed-card { flex-direction: column; align-items: flex-start; gap: 14px; }
  .ad-infeed-cta { align-self: stretch; text-align: center; width: 100%; }
  .ad-slots-wrap { grid-template-columns: 1fr; }
  .ad-slot-empty { display: none; }

  /* 필터 */
  .jobs-filter-row { flex-direction: column; gap: 8px; }
  .jobs-filter-row select,
  .jobs-filter-row input { width: 100%; }

  /* 영업인 카드 */
  .fl-card { flex-direction: row; gap: 12px; }

  /* 리뷰 */
  .review-card { padding: 20px 16px; gap: 12px; }
  .review-avatar { width: 40px; height: 40px; font-size: 15px; }
  .review-content p { font-size: 13px; }
  .review-tabs { width: 100%; }
  .review-tab { flex: 1; justify-content: center; padding: 9px 12px; font-size: 13px; }

  /* 하단 CTA */
  .bottom-cta-section { padding: 60px 16px; }
  .bcta-title { font-size: 24px; }
  .bcta-sub { font-size: 14px; margin-bottom: 24px; }
  .bcta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .bcta-btn-primary, .bcta-btn-outline {
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }
  .bcta-trust { gap: 14px; font-size: 12px; }

  /* 푸터 */
  .footer-inner { flex-direction: column; gap: 28px; padding: 0 16px 32px; }
  .footer-brand { flex: unset; }
  .footer-links { gap: 20px; flex-wrap: wrap; }
  .footer-col { min-width: calc(50% - 10px); }
  .footer-bottom { font-size: 11px; padding: 16px; }

  /* 로그인 유도 토스트 */
  .login-nudge-toast { bottom: 16px; }
  .lnt-inner { padding: 12px 14px; gap: 10px; }
  .lnt-title { font-size: 13px; }
  .lnt-sub { font-size: 11px; }
  .lnt-cta { padding: 8px 14px; font-size: 12px; }

  /* 스플래시 */
  .sp-brand-kr { font-size: 38px !important; }
  .sp-icon-box { width: 68px !important; height: 68px !important; }
  .sp-icon-box i { font-size: 30px !important; }
}

/* ── 소형 모바일 (480px 이하) ────────────────── */
@media (max-width: 480px) {
  /* 헤더 더 압축 */
  .header-inner { height: 52px; padding: 0 14px; }

  /* 히어로 */
  .hero-section { padding: 36px 14px 48px; }
  .hero-line-sm { font-size: 20px; }
  .hero-brand-line { font-size: 30px; }
  .hero-sub { font-size: 12px; }
  .hchip { font-size: 11px; padding: 4px 9px; }

  /* 섹션 */
  .section { padding: 28px 0; }
  .section-title { font-size: 18px; }
  .container { padding: 0 14px; }

  /* 카드 */
  .list-card { padding: 13px 14px; }
  .lc-title  { font-size: 14px; }
  .lc-desc   { font-size: 12px; -webkit-line-clamp: 2; }
  .lc-pay    { font-size: 13px; }
  .lc-apply-btn { padding: 7px 13px; font-size: 12px; }
  .lc-meta-row { gap: 4px; }

  /* 광고 */
  .ad-infeed-card { padding: 16px; }
  .ad-infeed-title { font-size: 14px; }
  .ad-badge { font-size: 10px; }

  /* 리뷰 */
  .review-card { padding: 16px 14px; }
  .reviews-section { padding: 40px 0; }

  /* 푸터 */
  .footer-col { min-width: 100%; }
  .footer-links { flex-direction: column; gap: 16px; }

  /* 가격 */
  .pricing-grid { grid-template-columns: 1fr; }

  /* 드로어 */
  .drawer-link { padding: 12px 14px; font-size: 15px; }
  .drawer-cta  { font-size: 15px; }

  /* 스플래시 */
  .sp-icon-wrap { margin-bottom: 24px !important; }
  .sp-brand-kr  { font-size: 32px !important; }
  .sp-brand-en  { font-size: 10px !important; letter-spacing: 3px !important; }
  .sp-tagline   { font-size: 12px !important; gap: 7px !important; margin-top: 14px !important; }
  .sp-loader    { bottom: 44px !important; }
}

/* ===================================================
   ★ 리스트형 카드 (공통) — list-card
   구조: [지역아이콘] [본문: 메타행 → 제목 → 설명 → 태그] [우측: 보수+버튼]
=================================================== */

/* ===================================================
   리스트형 카드 — 2컬럼 그리드
=================================================== */
.urgent-grid,
.simple-grid,
.jobs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@media (max-width: 860px) {
  .urgent-grid,
  .simple-grid,
  .jobs-grid { grid-template-columns: 1fr; }
}

/* ── 카드 기본 — 세로 흐름 ── */
.list-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.list-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--primary-light);
  transform: translateY(-2px);
}

/* 긴급 — 상단 빨간 라인 */
.urgent-section .list-card {
  border-color: #fecdd3;
  border-top: 3px solid #ef4444;
}
.urgent-section .list-card:hover { border-color: #fca5a5; }

/* 간단업무 — 상단 노란 라인 */
.simple-section .list-card,
.list-card-simple {
  border-color: #fde68a;
  border-top: 3px solid #f59e0b;
}
.list-card-simple:hover { border-color: #fcd34d; }

/* ── 메타 행: 지역 · 업체명 · 활동유형 · 업종 ── */
.lc-meta-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.lc-region {
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}
.lc-company {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-700);
  white-space: nowrap;
}
.lc-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  border: 1px solid transparent;
  white-space: nowrap;
}
.lc-type-badge i { font-size: 10px; }
.lc-industry {
  font-size: 11px;
  color: var(--gray-400);
  background: var(--gray-100);
  padding: 2px 7px;
  border-radius: 50px;
  white-space: nowrap;
}
.lc-deadline {
  font-size: 11px;
  color: #ef4444;
  font-weight: 600;
  margin-left: auto;
  white-space: nowrap;
}
.lc-period {
  font-size: 11px;
  color: var(--gray-400);
  margin-left: auto;
  white-space: nowrap;
}

/* 배지 */
.lc-badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 700;
}
.lc-badge.popular     { background: #fff7ed; color: #ea580c; }
.lc-badge.new         { background: #f0fdf4; color: #16a34a; }
.lc-badge.recommended { background: #eff6ff; color: #2563eb; }
.lc-badge.urgent      { background: #fef2f2; color: #ef4444; }

/* ── 제목 ── */
.lc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.45;
  margin-bottom: 6px;
}
.list-card:hover .lc-title { color: var(--primary); }

/* ── 설명 ── */
.lc-desc {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

/* ── 태그 ── */
.lc-tags-row {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.lc-tag {
  font-size: 11px;
  color: var(--gray-500);
  background: var(--gray-100);
  padding: 2px 8px;
  border-radius: 50px;
}

/* ── 하단 푸터: 보수 / 지원자 / 버튼 ── */
.lc-right {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
}
.lc-pay {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
  flex: 1;
  line-height: 1.3;
}
.lc-pay-sm { font-size: 13px; }
.lc-applicants {
  font-size: 12px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
}
.lc-applicants i { font-size: 11px; }
.lc-apply-btn {
  padding: 7px 16px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.lc-apply-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}
.urgent-section .lc-apply-btn {
  background: linear-gradient(135deg, #ef4444, #f97316);
}
.urgent-section .lc-apply-btn:hover { opacity: 0.9; }
.lc-apply-sm { padding: 6px 13px; font-size: 11px; }

/* ── 모바일 ── */
@media (max-width: 480px) {
  .list-card  { padding: 14px 16px; }
  .lc-title   { font-size: 14px; }
  .lc-pay     { font-size: 13px; }
}

/* ===================================================
   4개 섹션 새 카드 (.jc-card)
=================================================== */

/* 섹션 구분 배경 */
.premium-section  { background: #fffdf0; padding: 56px 0; }
.deadline-section { background: #fff9f9; padding: 56px 0; }
.activity-section { background: #f0fdf8; padding: 56px 0; }
.jobs-section     { background: white;   padding: 56px 0; }

/* 유료 배지 */
.section-badge-paid {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fcd34d;
  border-radius: 50px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 700;
}

/* 카드 그리드 */
.jobs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .jobs-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .jobs-list { grid-template-columns: 1fr; } }

/* 카드 본체 */
.jc-card {
  background: white;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}
.jc-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 6px 24px rgba(99,102,241,0.12);
  transform: translateY(-3px);
}

/* 상단 메타 줄 */
.jc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 4px;
}
.jc-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.jc-region {
  font-size: 12px;
  color: var(--gray-500);
}
.jc-region i { margin-right: 2px; font-size: 10px; }

.jc-type-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

/* D-day 뱃지 */
.jc-dday {
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 50px;
  background: var(--gray-100);
  color: var(--gray-500);
  white-space: nowrap;
}
.jc-dday.urgent { background: #fef2f2; color: #ef4444; }
.jc-dday.warn   { background: #fff7ed; color: #f97316; }

/* 지원자 수 */
.jc-applicants {
  font-size: 11px;
  color: var(--gray-400);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}
.jc-applicants.warm { color: #f97316; font-weight: 600; }
.jc-applicants.hot  { color: #ef4444; font-weight: 700; }

/* 뱃지 */
.jc-badges { display: flex; flex-wrap: wrap; gap: 4px; margin-bottom: 4px; }
.jc-badge {
  font-size: 10px; font-weight: 700;
  padding: 2px 7px; border-radius: 50px;
  display: inline-flex; align-items: center; gap: 2px;
}
.jc-badge-popular     { background: #fef2f2; color: #ef4444; border: 1px solid #fecaca; }
.jc-badge-recommended { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }
.jc-badge-new         { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }
.jc-badge-hot         { background: #fef2f2; color: #ef4444; border: 1px solid #fecaca; }
.jc-badge-rush        { background: #fef2f2; color: #ef4444; border: 1px solid #fecaca; }

/* 태그 */
.jc-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 6px; }
.jc-tag {
  font-size: 11px; color: var(--gray-500);
  background: var(--gray-50); border: 1px solid var(--gray-200);
  padding: 2px 8px; border-radius: 50px;
}

/* 회사명 */
.jc-company {
  font-size: 12px;
  color: var(--gray-400);
  font-weight: 500;
}

/* 제목 */
.jc-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-900);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.jc-card:hover .jc-title { color: var(--primary); }

/* 설명 */
.jc-desc {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* 하단: 보수 + 버튼 */
.jc-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid var(--gray-100);
  margin-top: 8px;
}
.jc-pay {
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-dark);
  flex: 1;
  line-height: 1.3;
}
.jc-apply-btn {
  flex-shrink: 0;
  padding: 7px 16px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--transition), transform var(--transition);
}
.jc-apply-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* 프리미엄 뱃지 */
.jc-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
  color: white;
  border-radius: 50px;
  padding: 2px 9px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.3px;
}
.premium-section .jc-card {
  border-color: #fde68a;
}
.premium-section .jc-card:hover {
  border-color: #f59e0b;
  box-shadow: 0 6px 24px rgba(245,158,11,0.15);
}
.premium-section .jc-apply-btn {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}
.deadline-section .jc-apply-btn {
  background: linear-gradient(135deg, #ef4444, #f97316);
}

/* 빈 상태 */
.jc-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--gray-400);
}
.jc-empty i { font-size: 36px; margin-bottom: 12px; display: block; }
.jc-empty p { font-size: 15px; font-weight: 600; color: var(--gray-500); margin-bottom: 4px; }
.jc-empty small { font-size: 13px; }
.jc-empty.large { padding: 72px 20px; }
.jc-empty-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 24px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
}

/* "전체 보기" 버튼 */
.section-more-wrap {
  text-align: center;
  margin-top: 24px;
}
.section-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 28px;
  border: 2px solid var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  background: white;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.section-more-btn:hover { background: var(--primary); color: white; }
