/* ============================================================
   로컬세무왕 - 메인 스타일시트
   ============================================================ */

:root {
  --primary: #1a3a6b;
  --primary-dark: #0f2548;
  --primary-light: #2d5ba3;
  --accent: #f5a623;
  --accent-dark: #e09015;
  --accent-light: #ffc04d;
  --success: #2ecc71;
  --text: #1a1a2e;
  --text-sub: #4a5568;
  --text-muted: #718096;
  --bg: #ffffff;
  --bg-soft: #f7f9fc;
  --bg-dark: #0d1b35;
  --border: #e2e8f0;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --shadow: 0 4px 24px rgba(26, 58, 107, 0.10);
  --shadow-lg: 0 12px 48px rgba(26, 58, 107, 0.18);
  --shadow-hover: 0 20px 60px rgba(26, 58, 107, 0.22);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Noto Sans KR', sans-serif;
  --font-serif: 'Noto Serif KR', serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* 스크롤바 스타일 */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: rgba(26,58,107,0.25); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(26,58,107,0.45); }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-header h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.28;
  color: var(--text);
  margin: 14px 0 16px;
  letter-spacing: -0.3px;
  word-break: keep-all;
}
.section-header p {
  color: var(--text-sub);
  font-size: 15.5px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.85;
  word-break: keep-all;
}
.section-header.light h2,
.section-header.light p { color: #fff; }
.section-header.light p { opacity: 0.8; }

.section-tag {
  display: inline-block;
  background: rgba(26, 58, 107, 0.08);
  color: var(--primary);
  font-size: 12.5px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.6px;
  border: 1px solid rgba(26,58,107,0.12);
}
.section-header.light .section-tag {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.highlight { color: var(--accent); }
.highlight-light { color: var(--accent-light); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(8px); opacity: 0.5; }
}

.animate-fade-up { opacity: 0; animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(245, 166, 35, 0.35);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 166, 35, 0.5);
}
.btn-primary.btn-lg { font-size: 16px; padding: 16px 36px; }
.btn-primary.btn-full { width: 100%; justify-content: center; font-size: 17px; padding: 18px; }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 50px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.btn-outline.btn-lg { font-size: 16px; padding: 16px 36px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(13, 27, 53, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
}
.logo-icon { font-size: 24px; }
.logo-text strong { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  margin-left: 8px;
}
.nav-links .nav-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #060f20 0%, #0d1b35 40%, #112244 70%, #0a1828 100%);
}
.hero-gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 75% 50%, rgba(245,166,35,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 15% 60%, rgba(45,91,163,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 50% 10%, rgba(26,58,107,0.4) 0%, transparent 60%);
}

/* 2단 레이아웃 */
.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 0 24px;
}

.hero-content {
  text-align: left;
}

/* ===== KOREA MAP ===== */
.hero-map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
}
.map-glow {
  position: absolute;
  width: 360px;
  height: 440px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(245,166,35,0.06) 0%,
    rgba(45,91,163,0.14) 45%,
    transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

/* Canvas → SVG 지도 */
#koreaMapCanvas {
  position: relative;
  z-index: 1;
  width: 400px;
  height: 500px;
  filter: drop-shadow(0 8px 32px rgba(45,91,163,0.4));
  cursor: pointer;
}
#koreaSvgMap { display: none; }

/* 지역 카드 버블 */
.map-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,27,53,0.88);
  border: 1px solid rgba(245,166,35,0.35);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 8px 14px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.map-bubble i {
  color: var(--accent);
  font-size: 13px;
}
.map-bubble strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.map-bubble span {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
}
.map-bubble-1 {
  top: 12%;
  left: -8%;
}
.map-bubble-2 {
  bottom: 22%;
  right: -5%;
}
.map-bubble-3 {
  bottom: 8%;
  left: 5%;
}

/* ===== 지역별 파트너 리스트 카드 ===== */
.map-region-list {
  position: absolute;
  bottom: 10px;
  left: -10px;
  background: rgba(8, 18, 40, 0.88);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: var(--radius);
  padding: 16px 18px;
  backdrop-filter: blur(14px);
  min-width: 210px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.map-region-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.map-region-title i { font-size: 11px; }

.map-region-items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}
.map-region-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.region-name {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  white-space: nowrap;
}
.region-count {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}
.region-count em {
  font-style: normal;
  font-size: 10px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  margin-left: 1px;
}
/* 서울·수도권 강조 */
.map-region-top .region-name {
  color: var(--accent-light);
  font-weight: 700;
}
.map-region-top .region-count {
  color: var(--accent);
  font-size: 18px;
}

.map-region-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary-dark);
  background: var(--accent);
  padding: 8px 14px;
  border-radius: 50px;
  transition: var(--transition);
}
.map-region-cta:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}
.map-region-cta i { font-size: 11px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.14);
  border: 1px solid rgba(245,166,35,0.40);
  color: var(--accent-light);
  font-size: 12px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
  line-height: 1.5;
  word-break: keep-all;
}
.badge-text-mo { display: none; }
.badge-text-pc { display: inline; }
.hero-badge i { color: var(--accent); }

.hero-title {
  font-size: clamp(34px, 4.8vw, 60px);
  font-weight: 900;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero-title .highlight {
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}

.hero-sub {
  font-size: clamp(15px, 1.7vw, 17px);
  color: rgba(255,255,255,0.78);
  margin-bottom: 28px;
  line-height: 1.9;
}
.pc-only { display: none; }
@media (min-width: 768px) { .pc-only { display: inline; } }
/* 모바일 전용 줄바꿈: 데스크탑에서 숨김 */
br.mo-br { display: none; }
@media (max-width: 480px) { br.mo-br { display: block; } }
/* 전화번호 구분자 */
.phone-sep { white-space: nowrap; }

.hero-stats {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  flex-wrap: nowrap;
  width: fit-content;
}
.stat-item {
  text-align: center;
  padding: 0 16px;
  white-space: nowrap;
}
/* 숫자 + 단위 한 줄 */
.stat-item .stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item strong {
  display: inline;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.stat-item strong + span {
  display: inline;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 700;
  color: var(--accent);
}
.stat-item p {
  font-size: 11.5px;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
}
.hero-note i { color: var(--success); }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 1px;
  z-index: 2;
}
.hero-scroll-hint i {
  animation: scrollBounce 2s ease infinite;
  font-size: 14px;
}

/* ===== TRUST BAND ===== */
.trust-band {
  background: var(--primary-dark);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.trust-items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 36px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.80);
  font-size: 13.5px;
  font-weight: 500;
  word-break: keep-all;
}
.trust-item i { color: var(--accent); font-size: 15px; }

/* ===== ABOUT (PAIN POINTS) ===== */
.about {
  padding: 100px 0;
  background: var(--bg-soft);
}

/* ===== WHY LOCAL 4가지 이유 ===== */
.why-local-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.why-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26,58,107,0.15);
}
.why-card:hover::before { transform: scaleX(1); }

/* 강조 카드 (04번) */
.why-card-accent {
  background: linear-gradient(145deg, #1a3a6b 0%, #2d5ba3 100%);
  border: 2px solid rgba(245,166,35,0.45);
  color: #fff;
  box-shadow: 0 8px 32px rgba(26,58,107,0.28);
}
.why-card-accent::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 1;
  transform: scaleX(1);
}
.why-card-accent h3 {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.why-card-accent p {
  color: rgba(255,255,255,0.92) !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.why-card-accent p strong {
  color: #ffd166 !important;
  font-weight: 800;
}
.why-card-accent:hover {
  border-color: rgba(245,166,35,0.7);
  box-shadow: 0 16px 48px rgba(26,58,107,0.38);
}

/* 번호 */
.why-num {
  font-size: 42px;
  font-weight: 900;
  color: rgba(26,58,107,0.07);
  font-family: var(--font-serif);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}
.why-card-accent .why-num { color: rgba(255,255,255,0.13); }

/* 아이콘 */
.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(26,58,107,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.why-icon-wrap i {
  font-size: 22px;
  color: var(--primary);
}
.why-card:hover .why-icon-wrap {
  background: var(--primary);
}
.why-card:hover .why-icon-wrap i { color: #fff; }

.why-card-accent .why-icon-wrap {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(245,166,35,0.4);
}
.why-card-accent .why-icon-wrap i { color: #ffd166; font-size: 24px; }
.why-card-accent:hover .why-icon-wrap {
  background: var(--accent);
  border-color: var(--accent);
}
.why-card-accent:hover .why-icon-wrap i { color: var(--primary-dark); }

/* 텍스트 */
.why-card h3 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--text-sub);
  line-height: 1.85;
  flex: 1;
  word-break: keep-all;
}
.why-card p strong { color: var(--primary); }

/* 04 카드 CTA 링크 */
.why-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: #ffd166;
  background: rgba(255,209,102,0.18);
  border: 1.5px solid rgba(255,209,102,0.55);
  padding: 9px 18px;
  border-radius: 50px;
  transition: var(--transition);
  align-self: flex-start;
}
.why-cta:hover {
  background: var(--accent);
  color: var(--primary-dark);
  border-color: var(--accent);
  gap: 10px;
}

/* 반응형 */
@media (max-width: 1024px) {
  .why-local-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .why-local-grid { grid-template-columns: 1fr; }
}

/* ===== PAIN GRID ===== */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.pain-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26,58,107,0.2);
}

/* 위: 고민 영역 */
.pain-problem {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 20px;
  flex: 1;
}
.pain-emoji {
  font-size: 32px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-problem > div {
  flex: 1;
}
.pain-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 8px;
  word-break: keep-all;
}
.pain-problem p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
  word-break: keep-all;
}

/* 아래: 해결책 영역 */
.pain-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 24px 20px;
  background: rgba(26,58,107,0.05);
  border-top: 1px solid rgba(26,58,107,0.08);
}
.pain-answer i {
  color: var(--primary);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 3px;
}
.pain-answer p {
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.75;
  word-break: keep-all;
}
.pain-answer strong {
  color: var(--primary);
  font-weight: 800;
}

/* pain 반응형 – 768px 이하는 공통 미디어쿼리에서 처리 */

/* ===== FEATURES ===== */
.features {
  padding: 96px 0;
  background: var(--bg);
}
.features-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.features-text .section-tag { margin-bottom: 12px; }
.features-text h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 20px;
}
.features-desc {
  color: var(--text-sub);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 32px;
  word-break: keep-all;
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.feature-list i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}
.feature-list strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-list p { font-size: 14px; color: var(--text-sub); }

/* Feature Card Stack */
.features-visual { position: relative; }
.feature-card-stack { position: relative; padding: 40px 20px 40px 0; }
.fcard {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.fcard-main {
  display: flex;
  gap: 20px;
  padding: 28px;
}
.fcard-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fcard-icon i { color: #fff; font-size: 22px; }
.fcard-content h4 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.fcard-content p { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.fcard-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}
.badge-green {
  background: rgba(46,204,113,0.12);
  color: #27ae60;
}
.badge-green i { font-size: 8px; }
.fcard-time { font-size: 12px; color: var(--text-muted); }
.fcard-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  margin-top: 12px;
}
.fcard-sub i { font-size: 22px; }
.fcard-left i { color: var(--primary); }
.fcard-right i { color: var(--accent); }
.fcard-sub strong { font-size: 13px; font-weight: 700; display: block; }
.fcard-sub p { font-size: 12px; color: var(--text-muted); }
.fcard-left { margin-right: 24px; }
.fcard-right { margin-left: 24px; }

/* ===== INDUSTRIES ===== */
.industries {
  padding: 96px 0;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #f0f4fa 100%);
}
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.industry-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1.5px solid var(--border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.industry-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}
.industry-card:hover::before { transform: scaleX(1); }
.industry-emoji {
  font-size: 36px;
  margin-bottom: 14px;
  display: block;
}
.industry-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}
.industry-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-bottom: 16px;
}
.industry-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  transition: var(--transition);
}
.industry-link:hover { color: var(--accent); gap: 10px; }
.industry-card-more { border-style: dashed; }

/* ===== TAXFIELD (세무 분야) ===== */
.taxfield-header {
  text-align: center;
  margin-top: 72px;
  margin-bottom: 36px;
}
.taxfield-header h3 {
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--text);
  margin: 12px 0 14px;
  letter-spacing: -0.3px;
}
.taxfield-header p {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.8;
}
.taxfield-header .section-tag {
  background: rgba(245,166,35,0.10);
  color: var(--accent-dark);
  border: 1px solid rgba(245,166,35,0.25);
}

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

.taxfield-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 20px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.taxfield-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(245,166,35,0.4);
}

.taxfield-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(245,166,35,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}
.taxfield-icon i {
  font-size: 18px;
  color: var(--accent-dark);
}
.taxfield-card:hover .taxfield-icon {
  background: var(--accent);
}
.taxfield-card:hover .taxfield-icon i {
  color: var(--primary-dark);
}

.taxfield-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
}
.taxfield-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
  word-break: keep-all;
  flex: 1;
}

/* CTA 카드 */
.taxfield-card-cta {
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  border-color: transparent;
}
.taxfield-card-cta:hover {
  border-color: rgba(245,166,35,0.5);
}
.taxfield-card-cta .taxfield-icon {
  background: rgba(255,255,255,0.15);
}
.taxfield-card-cta .taxfield-icon i {
  color: var(--accent-light);
}
.taxfield-card-cta:hover .taxfield-icon {
  background: var(--accent);
}
.taxfield-card-cta:hover .taxfield-icon i {
  color: var(--primary-dark);
}
.taxfield-card-cta h4 {
  color: #fff;
  font-size: 15px;
}
.taxfield-card-cta p {
  color: rgba(255,255,255,0.75);
}

/* 반응형 */
@media (max-width: 1024px) {
  .taxfield-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .taxfield-grid { grid-template-columns: 1fr; }
  .taxfield-header { margin-top: 56px; }
}

/* ===== EXPERTS ===== */
.experts {
  padding: 96px 0;
  background: var(--bg);
}
.experts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-bottom: 56px;
}
.expert-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.expert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.expert-photo-wrap {
  position: relative;
  background: linear-gradient(145deg, var(--primary-dark), var(--primary-light));
  padding: 36px 28px 24px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
}
.expert-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.placeholder-photo i {
  font-size: 40px;
  color: rgba(255,255,255,0.6);
}
.placeholder-photo-f { background: rgba(245,166,35,0.2); }

/* Real photo style when actual photo is inserted */
.expert-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.expert-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  position: absolute;
  top: 16px;
  right: 16px;
}
.expert-info {
  padding: 24px 28px 28px;
}
.expert-info h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}
.expert-career {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.expert-tags span {
  background: rgba(26,58,107,0.07);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
}
.expert-quote {
  border-left: 3px solid var(--accent);
  padding: 14px 16px;
  background: rgba(245,166,35,0.06);
  border-radius: 0 8px 8px 0;
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 20px;
}
.expert-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.expert-stats div { text-align: center; }
.expert-stats strong {
  display: block;
  font-size: 19px;
  font-weight: 800;
  color: var(--primary);
}
.expert-stats p {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Interview preview */
.experts-cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 44px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: var(--shadow-lg);
}
.interview-preview {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
}
.interview-play {
  width: 64px;
  height: 64px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  transition: var(--transition);
  animation: pulse 2s ease infinite;
}
.interview-play:hover { transform: scale(1.1); }
.interview-play i { color: var(--primary-dark); font-size: 22px; margin-left: 3px; }
.interview-label {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.interview-text h3 {
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.4;
}
.interview-text p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

/* ===== PROCESS ===== */
.process {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, #1a3a6b 100%);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 30%, rgba(245,166,35,0.09) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 10% 70%, rgba(45,91,163,0.15) 0%, transparent 60%);
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  z-index: 1;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 16px;
}
.step-num {
  font-size: 48px;
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  font-family: var(--font-serif);
  line-height: 1;
  margin-bottom: 8px;
}
.step-icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(245,166,35,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.process-step:hover .step-icon {
  background: var(--accent);
  border-color: var(--accent);
}
.process-step:hover .step-icon i { color: var(--primary-dark); }
.step-icon i { font-size: 28px; color: rgba(255,255,255,0.8); }
.process-step h3 {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13.5px;
  color: rgba(255,255,255,0.70);
  line-height: 1.8;
  word-break: keep-all;
}
.process-step p strong { color: var(--accent-light); }
.process-arrow {
  display: flex;
  align-items: center;
  padding-top: 56px;
  color: rgba(245,166,35,0.4);
  font-size: 22px;
  flex-shrink: 0;
}
.process-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 48px;
  padding: 18px 32px;
  background: rgba(255,255,255,0.07);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.process-note i { color: var(--accent); font-size: 16px; }
.process-note span { font-size: 14px; color: rgba(255,255,255,0.75); }
.process-note strong { color: var(--accent-light); }

/* ===== REVIEWS ===== */
.reviews {
  padding: 96px 0;
  background: var(--bg-soft);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(26,58,107,0.15);
}
.review-card.featured {
  grid-column: span 2;
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(135deg, #fffdf7, #fff8e8);
  box-shadow: 0 8px 40px rgba(245,166,35,0.12);
}
.review-top {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.reviewer-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--bg-soft), var(--border));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.reviewer-info strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.reviewer-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}
.stars { color: #f5a623; font-size: 13px; margin-top: 4px; }
.review-badge {
  margin-left: auto;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  height: fit-content;
}
.review-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 16px;
  word-break: keep-all;
}
.review-text::before {
  content: '"';
  font-size: 48px;
  color: rgba(26,58,107,0.08);
  font-family: serif;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 4px;
}
.review-result {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  background: rgba(46,204,113,0.07);
  padding: 8px 14px;
  border-radius: 8px;
  border-left: 3px solid var(--success);
}
.review-result i { color: var(--success); }
.review-result strong { color: var(--success); }
.review-cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-cta-inner {
  text-align: center;
}
.review-cta-icon {
  font-size: 36px;
  color: var(--accent);
  margin-bottom: 16px;
}
.review-cta-inner h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.4;
}
.review-cta-inner p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

/* ===== MEDIA SECTION ===== */
.media-section {
  padding: 80px 0;
  background: var(--bg);
}
.media-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.media-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.media-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.media-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.media-logo i { color: var(--text-muted); }
.media-card h4 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
  color: var(--text);
}
.media-card p {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.75;
  margin-bottom: 14px;
}
.media-date {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== FAQ ===== */
.faq {
  padding: 96px 0;
  background: var(--bg-soft);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  background: #fff;
}
.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 4px 24px rgba(26,58,107,0.1);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: #fff;
  gap: 16px;
  position: relative;
  transition: var(--transition);
  word-break: keep-all;
  line-height: 1.6;
}
.faq-q:hover { color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary); }
.faq-q i {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
  color: var(--primary);
}
.faq-a {
  display: none;
  padding: 0 24px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.faq-a p {
  font-size: 14.5px;
  color: var(--text-sub);
  line-height: 1.85;
  padding-top: 16px;
}
.faq-a strong { color: var(--primary); }

/* ===== CONTACT ===== */
.contact {
  padding: 96px 0;
  background: var(--bg);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.contact-left .section-tag { margin-bottom: 16px; }
.contact-left h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 28px;
  letter-spacing: -0.3px;
}
.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}
.contact-benefits i {
  width: 28px;
  height: 28px;
  background: rgba(46,204,113,0.12);
  color: var(--success);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.contact-kakao {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #FEE500;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(254,229,0,0.25);
  transition: var(--transition);
  cursor: pointer;
}
.contact-kakao:hover {
  background: #f5db00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(254,229,0,0.4);
}
.contact-kakao i {
  font-size: 28px;
  color: #3c1e1e;
}
.contact-kakao strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #3c1e1e;
  margin-bottom: 2px;
}
.contact-kakao p { font-size: 13px; color: #5c4c4c; }
/* 노무사 배너 */
.labor-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: linear-gradient(135deg, #f0f4ff 0%, #e8f0fe 100%);
  border: 1.5px solid #c5d5f8;
  border-radius: var(--radius);
  margin-bottom: 20px;
  transition: var(--transition);
  text-decoration: none;
}
.labor-banner:hover {
  background: linear-gradient(135deg, #e3eaff 0%, #d6e4fd 100%);
  border-color: #8fa8ef;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(66,103,212,0.15);
}
.labor-banner-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #4267d4;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.labor-banner-icon i {
  font-size: 18px;
  color: #fff;
}
.labor-banner-text {
  flex: 1;
  min-width: 0;
}
.labor-banner-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #2a3f8f;
  margin-bottom: 3px;
}
.labor-banner-text span {
  display: block;
  font-size: 12.5px;
  color: #5570b8;
  line-height: 1.5;
  word-break: keep-all;
}
.labor-banner-arrow {
  font-size: 13px;
  color: #4267d4;
  flex-shrink: 0;
  transition: var(--transition);
}
.labor-banner:hover .labor-banner-arrow {
  transform: translateX(4px);
}

.contact-direct {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sub);
  word-break: break-all;
  flex-wrap: wrap;
}
.contact-info-item i { color: var(--primary); width: 16px; flex-shrink: 0; }

/* Contact Form */
.contact-form, .form-success {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}
.req { color: var(--accent-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-soft);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.form-group textarea { resize: vertical; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.form-check input { width: auto; }
.form-check label { font-size: 13px; color: var(--text-sub); margin-bottom: 0; }
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
}
.form-success {
  text-align: center;
  padding: 60px 40px;
}
.success-icon {
  font-size: 64px;
  color: var(--success);
  margin-bottom: 20px;
}
.form-success h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
}
.form-success p { font-size: 15px; color: var(--text-sub); }
.success-sub { font-size: 13px; margin-top: 8px; color: var(--text-muted); }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #0a1525 0%, var(--bg-dark) 100%);
  padding: 64px 0 0;
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-icon { font-size: 28px; margin-right: 8px; }
.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.footer-brand .logo-text strong { color: var(--accent); }
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
}
.footer-links h4, .footer-contact h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact p {
  font-size: 13.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact i { color: var(--accent); width: 16px; }
.footer-bizinfo {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-bizinfo p {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.footer-bizinfo span {
  white-space: nowrap;
}

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-disclaimer {
  font-size: 11px !important;
  max-width: 500px;
  text-align: right;
  line-height: 1.6;
}

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  color: #fff;
  white-space: nowrap;
}
.float-btn:hover { transform: translateX(-4px); box-shadow: var(--shadow-hover); }
.float-kakao { background: #FEE500; color: #3c1e1e; }
.float-consult { background: var(--accent); color: var(--primary-dark); }
.float-phone {
  background: var(--primary);
  padding: 14px;
  border-radius: 50%;
  justify-content: center;
  width: 48px;
  height: 48px;
  align-self: flex-end;
}
.float-phone span { display: none; }

/* ===================================================
   RESPONSIVE — 태블릿 (≤1024px)
   =================================================== */
@media (max-width: 1024px) {

  /* 공통 섹션 패딩 축소 */
  .about, .features, .industries, .experts,
  .reviews, .media-section, .faq, .contact,
  .process { padding: 72px 0; }

  /* 히어로 */
  .hero { padding: 90px 20px 60px; }
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 36px;
  }
  .hero-content { text-align: center; }
  .hero-badge { margin: 0 auto 20px; }
  .hero-stats { justify-content: center; width: auto; margin: 0 auto 28px; }
  .hero-cta { justify-content: center; }
  .hero-note { justify-content: center; }
  .hero-map { max-width: 340px; margin: 0 auto; }
  .map-bubble-3 { display: none; }

  /* why-local */
  .why-local-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  /* pain */
  .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* features */
  .features-inner { grid-template-columns: 1fr; gap: 36px; }
  .features-visual { display: none; }

  /* industries */
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .taxfield-grid { grid-template-columns: repeat(2, 1fr); }

  /* experts */
  .experts-grid { grid-template-columns: repeat(2, 1fr); }
  .experts-cta { flex-direction: column; text-align: center; padding: 32px 28px; }
  .interview-preview { flex-direction: column; align-items: center; text-align: center; }

  /* process */
  .process-steps { gap: 0; }
  .process-step { padding: 0 10px; }
  .step-icon { width: 60px; height: 60px; }
  .step-icon i { font-size: 22px; }

  /* reviews */
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card.featured { grid-column: span 2; }

  /* media */
  .media-cards { grid-template-columns: repeat(2, 1fr); }
  .media-cards .media-card:last-child { grid-column: span 2; }

  /* contact */
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }

  /* footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

/* ===================================================
   RESPONSIVE — 모바일 (≤768px)
   =================================================== */
@media (max-width: 768px) {

  /* 공통 */
  .container { padding: 0 18px; }
  .about, .features, .industries, .experts,
  .reviews, .media-section, .faq, .contact,
  .process { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }
  .section-header h2 { font-size: clamp(22px, 6vw, 30px); line-height: 1.32; }
  .section-header p { font-size: 13.5px; word-break: keep-all; line-height: 1.8; }

  /* 네비 */
  .nav-links {
    display: none;
    position: fixed;
    top: 62px; left: 0; right: 0;
    background: rgba(10, 21, 45, 0.98);
    backdrop-filter: blur(12px);
    padding: 12px 16px 20px;
    flex-direction: column;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
    color: rgba(255,255,255,0.9);
  }
  .nav-links .nav-cta {
    margin: 8px 0 0;
    padding: 13px 16px;
    text-align: center;
    justify-content: center;
    border-radius: 10px;
  }
  .hamburger { display: flex; }

  /* 히어로 */
  .hero { padding: 96px 18px 52px; }
  .hero-layout { gap: 0; }
  .hero-map { display: none; }
  .hero-content { padding: 0; text-align: center; }
  .hero-badge { font-size: 11.5px; padding: 7px 14px; }
  .badge-text-pc { display: none; }
  .badge-text-mo { display: inline; }
  .hero-title { font-size: clamp(26px, 7.5vw, 38px); line-height: 1.25; margin-bottom: 14px; }
  .hero-sub { font-size: 14px; margin-bottom: 22px; line-height: 1.85; word-break: keep-all; }
  .mo-br { display: none; }

  /* 히어로 stats: 2x2 배열 */
  .hero-stats {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 22px;
    backdrop-filter: none;
  }
  .stat-item {
    width: 50%;
    padding: 14px 10px;
    background: rgba(255,255,255,0.07);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .stat-item:nth-of-type(2n-1) { border-right: 1px solid rgba(255,255,255,0.08); }
  .stat-item:nth-of-type(3),
  .stat-item:nth-of-type(4) { border-bottom: none; }
  .stat-divider { display: none; }
  .stat-item strong { font-size: 22px; }
  .stat-item p { font-size: 11px; margin-top: 3px; }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-bottom: 16px;
  }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { width: 100%; justify-content: center; font-size: 15px; padding: 15px 20px; }
  .hero-note { font-size: 12px; justify-content: center; }

  /* trust band */
  .trust-band { padding: 16px 0; }
  .trust-items { gap: 6px 16px; flex-wrap: wrap; justify-content: center; }
  .trust-item { font-size: 12px; gap: 6px; }
  .trust-item i { font-size: 13px; }

  /* why-local */
  .why-local-grid { grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
  .why-card { padding: 24px 20px; }
  .why-card h3 { font-size: 16px; line-height: 1.4; }
  .why-card p { font-size: 13.5px; line-height: 1.75; word-break: keep-all; }
  .why-num { font-size: 34px; top: 12px; right: 16px; }
  .why-icon-wrap { width: 46px; height: 46px; margin-bottom: 14px; }

  /* pain */
  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-problem { padding: 18px 18px 14px; gap: 12px; }
  .pain-emoji { font-size: 26px; }
  .pain-card h3 { font-size: 14.5px; line-height: 1.55; word-break: keep-all; }
  .pain-problem p { font-size: 12.5px; }
  .pain-answer { padding: 13px 18px 16px; gap: 8px; }
  .pain-answer p { font-size: 13px; word-break: keep-all; }

  /* features */
  .features-inner { grid-template-columns: 1fr; gap: 24px; }
  .features-visual { display: none; }
  .features-text h2 { font-size: clamp(22px, 5.5vw, 28px); }
  .features-desc { font-size: 14px; }
  .feature-list li { gap: 12px; }
  .feature-list strong { font-size: 14.5px; }
  .feature-list p { font-size: 13px; }

  /* industries */
  .industry-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .industry-card { padding: 20px 16px; }
  .industry-emoji { font-size: 28px; margin-bottom: 10px; }
  .industry-card h3 { font-size: 14px; }
  .industry-card p { font-size: 12.5px; line-height: 1.65; word-break: keep-all; }
  .industry-link { font-size: 12px; }
  .taxfield-header { margin-top: 44px; margin-bottom: 24px; }
  .taxfield-header h3 { font-size: clamp(18px, 5vw, 24px); word-break: keep-all; }
  .taxfield-header p { font-size: 13px; word-break: keep-all; }
  .taxfield-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .taxfield-card { padding: 18px 14px; }
  .taxfield-card h4 { font-size: 14px; }
  .taxfield-card p { font-size: 12px; word-break: keep-all; line-height: 1.65; }
  .taxfield-icon { width: 40px; height: 40px; margin-bottom: 12px; }
  .taxfield-icon i { font-size: 18px; }

  /* experts */
  .experts-grid { grid-template-columns: 1fr; gap: 20px; }
  .experts-cta { padding: 24px 20px; gap: 18px; flex-direction: column; }
  .interview-preview { gap: 16px; align-items: flex-start; }
  .interview-text h3 { font-size: 15px; word-break: keep-all; }
  .interview-text p { font-size: 13px; word-break: keep-all; }
  .expert-quote { font-size: 13px; padding: 14px 16px; word-break: keep-all; }
  .expert-stats { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .expert-stats strong { font-size: 16px; }
  .expert-stats p { font-size: 11px; }
  .expert-tags span { font-size: 11px; padding: 4px 10px; }

  /* process */
  .process { padding: 56px 0; }
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .process-step {
    padding: 20px 16px;
    width: 100%;
    max-width: 360px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .process-arrow {
    transform: rotate(90deg);
    padding: 4px 0;
    font-size: 14px;
    color: rgba(255,255,255,0.3);
  }
  .step-num { font-size: 32px; margin-bottom: 8px; }
  .step-icon { width: 52px; height: 52px; margin-bottom: 12px; }
  .step-icon i { font-size: 20px; }
  .process-step h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
  .process-step p { font-size: 13px; word-break: keep-all; line-height: 1.75; }
  .process-note { padding: 16px 20px; font-size: 13px; word-break: keep-all; }

  /* reviews */
  .reviews-grid { grid-template-columns: 1fr; gap: 12px; }
  .review-card.featured { grid-column: span 1; }
  .review-card { padding: 20px 18px; }
  .review-text { font-size: 14px; word-break: keep-all; line-height: 1.8; }
  .review-result { font-size: 13px; }
  .review-cta-card { min-height: 200px; }
  .review-cta-inner h3 { font-size: 18px; word-break: keep-all; }
  .reviewer-avatar { width: 44px; height: 44px; font-size: 22px; }
  .reviewer-info strong { font-size: 14px; }
  .reviewer-info p { font-size: 12px; }

  /* media */
  .media-cards { grid-template-columns: 1fr; gap: 14px; }
  .media-cards .media-card:last-child { grid-column: auto; }
  .media-card h4 { font-size: 14px; word-break: keep-all; }
  .media-card p { font-size: 13px; word-break: keep-all; }

  /* faq */
  .faq-q { font-size: 14px; padding: 16px 44px 16px 18px; line-height: 1.6; word-break: keep-all; }
  .faq-q i { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); flex-shrink: 0; }
  .faq-a { padding: 0 18px 16px; font-size: 13.5px; word-break: keep-all; }

  /* contact */
  .contact-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-left h2 { font-size: clamp(22px, 6vw, 30px); word-break: keep-all; }
  .contact-form, .form-success { padding: 22px 18px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-benefits { margin-bottom: 20px; }
  .contact-benefits li { font-size: 13.5px; }
  .contact-kakao { padding: 14px 16px; gap: 12px; }
  .contact-kakao strong { font-size: 13.5px; }
  .contact-kakao p { font-size: 12px; }
  .labor-banner { padding: 14px 16px; gap: 12px; }
  .labor-banner-icon { width: 38px; height: 38px; font-size: 16px; }
  .labor-banner-text strong { font-size: 13px; }
  .labor-banner-text span { font-size: 11.5px; word-break: keep-all; }
  .contact-direct { margin-top: 16px; gap: 10px; }
  .contact-info-item { font-size: 13.5px; gap: 8px; flex-wrap: wrap; }
  .form-group label { font-size: 13px; }
  .form-group input, .form-group select, .form-group textarea { font-size: 14px; padding: 11px 14px; }

  /* footer */
  .footer { padding: 48px 0 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; padding-bottom: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { font-size: 13px; }
  .footer-links h4, .footer-contact h4 { font-size: 14px; margin-bottom: 12px; }
  .footer-links a { font-size: 13.5px; margin-bottom: 8px; }
  .footer-contact p { font-size: 13px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; padding: 16px 0; }
  .footer-disclaimer { text-align: center; max-width: 100%; font-size: 11px !important; }
  .footer-bizinfo { padding: 16px 0; }
  .footer-bizinfo p { gap: 4px 12px; font-size: 11px; }
  .footer-bizinfo span { white-space: normal; word-break: keep-all; }

  /* floating cta */
  .float-cta { bottom: 20px; right: 14px; gap: 8px; }
  .float-btn span { display: none; }
  .float-btn { padding: 13px; width: 50px; height: 50px; border-radius: 50%; justify-content: center; gap: 0; }
  .float-phone { width: 50px; height: 50px; }
}

/* ===================================================
   RESPONSIVE — 소형 모바일 (≤480px)
   =================================================== */
@media (max-width: 480px) {

  /* 공통 */
  .container { padding: 0 14px; }
  .about, .features, .industries, .experts,
  .reviews, .media-section, .faq, .contact,
  .process { padding: 44px 0; }
  .section-header { margin-bottom: 24px; }
  .section-header h2 { font-size: clamp(20px, 6.5vw, 26px); }
  .section-header p { font-size: 13px; }

  /* 히어로 */
  .hero { padding: 86px 14px 44px; }
  .hero-title { font-size: clamp(24px, 8vw, 32px); line-height: 1.25; }
  .hero-sub { font-size: 13px; line-height: 1.8; }
  .stat-item { padding: 12px 6px; }
  .stat-item strong { font-size: 20px; }
  .stat-item p { font-size: 10.5px; }
  .hero-cta .btn-primary,
  .hero-cta .btn-outline { font-size: 14px; padding: 13px 16px; }

  /* why */
  .why-card { padding: 22px 16px; }
  .why-card h3 { font-size: 15px; }
  .why-card p { font-size: 13px; }
  .why-icon-wrap { width: 44px; height: 44px; }

  /* pain */
  .pain-problem { padding: 16px 14px 12px; gap: 10px; }
  .pain-emoji { font-size: 24px; }
  .pain-card h3 { font-size: 14px; }
  .pain-answer { padding: 12px 14px 14px; }
  .pain-answer p { font-size: 12.5px; }

  /* industries */
  .industry-grid { grid-template-columns: 1fr; gap: 10px; }
  .taxfield-grid { grid-template-columns: 1fr; gap: 10px; }
  .taxfield-card { padding: 16px 14px; }

  /* experts */
  .expert-info { padding: 18px 16px; }
  .expert-info h3 { font-size: 17px; }
  .expert-quote { font-size: 12.5px; padding: 12px 14px; }
  .expert-stats strong { font-size: 15px; }
  .expert-career { font-size: 12.5px; }

  /* process */
  .process-step { max-width: 100%; padding: 16px 14px; }
  .step-num { font-size: 28px; }
  .step-icon { width: 48px; height: 48px; }

  /* reviews */
  .reviewer-avatar { width: 40px; height: 40px; font-size: 20px; }
  .review-text { font-size: 13px; }
  .review-card { padding: 18px 14px; }
  .review-result { font-size: 12.5px; }

  /* faq */
  .faq-q { font-size: 13.5px; padding: 14px 40px 14px 16px; }
  .faq-a p { font-size: 13px; }

  /* contact */
  .contact-form, .form-success { padding: 18px 14px; }
  .form-group label { font-size: 13px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 14px; padding: 11px 14px; }
  .btn-primary.btn-full { font-size: 15px; padding: 16px; }

  /* footer */
  .footer { padding: 48px 0 0; }
  .footer-brand .logo-text { font-size: 18px; }
  .footer-bizinfo p { font-size: 10.5px; }
  .footer-bottom p { font-size: 12px; }
}

/* ===================================================
   성능 최적화 — 모바일 애니메이션 최소화
   =================================================== */
@media (max-width: 768px) {
  /* 모바일에서 floatY·pulse 애니메이션 완전 OFF */
  .map-bubble, .map-bubble-1, .map-bubble-2,
  .fcard-main, .fcard-sub,
  .interview-play,
  .hero-scroll-hint i {
    animation: none !important;
  }
  /* hover 효과도 모바일에서 제거 (탭 시 불필요) */
  .why-card:hover,
  .pain-card:hover,
  .industry-card:hover,
  .expert-card:hover,
  .review-card:hover,
  .taxfield-card:hover {
    transform: none;
  }
  /* reveal 트랜지션 단축 */
  .reveal {
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
}

/* ===================================================
   성능 최적화 — 움직임 줄이기 선호 설정 (접근성)
   =================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===================================================
   성능 최적화 — 모바일 backdrop-filter 제거 (GPU 부하)
   =================================================== */
@media (max-width: 768px) {
  .map-bubble,
  .map-region-list,
  .navbar.scrolled {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
