/* ============================================================
   css/style.css — 키움머니기프트 전체 테마 (블랙 계열)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS 변수 (블랙 계열 테마) ── */
:root {
  --primary: #c8a84b;          /* 골드/앰버 메인 */
  --primary-dark: #a8882e;
  --primary-light: #2a2310;
  --secondary: #e8c55a;        /* 밝은 골드 */
  --secondary-dark: #c8a030;
  --accent: #ffd75e;           /* 하이라이트 골드 */
  --text-dark: #f0ede8;        /* 밝은 텍스트 */
  --text-gray: #b0a898;
  --text-light: #7a7068;
  --bg-dark: #0a0a0a;          /* 메인 배경 블랙 */
  --bg-card: #141414;          /* 카드 배경 */
  --bg-section: #111111;       /* 섹션 배경 */
  --bg-alt: #1a1a1a;           /* 교체 섹션 배경 */
  --bg-elevated: #1e1e1e;      /* 높은 카드 */
  --border: #2a2a2a;
  --border-gold: #c8a84b40;
  --shadow: 0 4px 20px rgba(0,0,0,0.5);
  --shadow-hover: 0 8px 30px rgba(200,168,75,0.2);
  --radius: 12px;
  --radius-lg: 20px;
  --header-h: 72px;
}

/* ── 리셋 & 기본 ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── 레이아웃 ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; background: var(--bg-section); }
.section-alt { padding: 80px 0; background: var(--bg-alt); }

/* ── 섹션 헤더 ── */
.section-header { text-align: center; margin-bottom: 52px; }
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #1a1600, #2a2310);
  color: var(--primary);
  border: 1px solid var(--border-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-title span { color: var(--primary); }
.section-desc {
  font-size: 16px;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a;
  font-size: 20px;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 17px; font-weight: 800; color: #f0ede8; }
.logo-sub { font-size: 10px; color: var(--primary); font-weight: 600; letter-spacing: .05em; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: 8px;
  transition: all .2s;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--primary); background: var(--primary-light); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0a !important;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
  transition: all .25s;
  flex-shrink: 0;
}
.header-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(200,168,75,0.4); }

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

/* 모바일 네비 */
.mobile-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 999;
  gap: 4px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: 8px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--primary); background: var(--primary-light); }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(135deg, #1a1400 0%, #0d0d0d 50%, #050505 100%);
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,168,75,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,168,75,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a1600, #2a2200);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 999px;
  letter-spacing: .05em;
}
.hero-badge i { color: var(--accent); }
.hero-title {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.25;
  color: #f0ede8;
  max-width: 820px;
}
.hero-title span { color: var(--primary); }
.hero-title .underline {
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-underline-offset: 4px;
}
.hero-desc {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--text-gray);
  max-width: 620px;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0a;
  font-weight: 800;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  transition: all .25s;
  white-space: nowrap;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,168,75,0.4);
  color: #0a0a0a;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  font-weight: 700;
  font-size: 16px;
  padding: 14px 28px;
  border-radius: 999px;
  border: 2px solid rgba(240,237,232,0.3);
  transition: all .25s;
  white-space: nowrap;
}
.btn-outline:hover {
  background: rgba(240,237,232,0.08);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 28px 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 700px;
  margin-top: 8px;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: var(--text-gray); font-weight: 500; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all .3s;
  position: relative;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--border-gold);
}
.card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: var(--radius-lg);
}
.card-thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
  background: #1a1a1a;
}
.card-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .card-thumb img { transform: scale(1.05); }
.card-category {
  position: absolute;
  top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 2;
}
.card-body { padding: 20px; }
.card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-title a { position: relative; z-index: 2; }
.card-title a:hover { color: var(--primary); }
.card-excerpt {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.card-anchor {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  position: relative;
  z-index: 2;
  transition: gap .2s;
}
.card-anchor:hover { gap: 8px; }
.card-meta {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-light);
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

/* ============================================================
   ARTICLE SECTION
   ============================================================ */
.article-section { background: var(--bg-section); padding: 80px 0; }
.article-container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.article-header { margin-bottom: 40px; }
.article-tag {
  display: inline-block;
  background: linear-gradient(135deg, #1a1600, #2a2200);
  border: 1px solid var(--border-gold);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
  letter-spacing: .06em;
}
.article-main-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.35;
  margin-bottom: 14px;
}
.article-lead {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  border-left: 3px solid var(--primary);
  padding-left: 16px;
}
.article-toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 40px;
}
.toc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.toc-list { display: flex; flex-direction: column; gap: 6px; }
.toc-list li a {
  font-size: 13px;
  color: var(--text-gray);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  transition: color .2s;
}
.toc-list li a:hover { color: var(--primary); }
.toc-list li a::before {
  content: attr(data-num);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  background: var(--primary-light);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}
.article-h2 {
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 800;
  color: var(--text-dark);
  border-left: 5px solid var(--primary);
  padding-left: 14px;
  margin: 36px 0 16px;
  line-height: 1.35;
}
.article-h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 24px 0 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-h3::before {
  content: '●';
  color: var(--primary);
  font-size: 10px;
}
.article-p {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.85;
  margin-bottom: 14px;
}
.info-box {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin: 20px 0;
}
.info-box.blue {
  border-left-color: #4a9eff;
  background: rgba(74,158,255,0.05);
  border-color: rgba(74,158,255,0.2);
}
.info-box.warning {
  border-left-color: #ff6b35;
  background: rgba(255,107,53,0.05);
  border-color: rgba(255,107,53,0.2);
}
.info-box-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-box.blue .info-box-title { color: #4a9eff; }
.info-box.warning .info-box-title { color: #ff6b35; }
.info-box p { font-size: 14px; color: var(--text-gray); line-height: 1.7; margin: 0; }
.article-list { margin: 14px 0 14px 4px; display: flex; flex-direction: column; gap: 8px; }
.article-list li {
  font-size: 15px;
  color: var(--text-gray);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}
.article-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-table th {
  background: linear-gradient(135deg, #1a1600, #2a2200);
  color: var(--primary);
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--border-gold);
}
.article-table td {
  padding: 12px 16px;
  color: var(--text-gray);
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.article-table tr:last-child td { border-bottom: none; }
.article-table tr:hover td { background: var(--bg-elevated); }
.step-list { display: flex; flex-direction: column; gap: 16px; margin: 20px 0; }
.step-item { display: flex; gap: 16px; align-items: flex-start; }
.step-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 800;
  flex-shrink: 0;
}
.step-content { flex: 1; }
.step-content strong { display: block; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.step-content p { font-size: 14px; color: var(--text-gray); margin: 0; line-height: 1.6; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a1400 0%, #0d0d0d 50%, #050505 100%);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 64px 0;
}
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; padding: 0 24px; }
.cta-title {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.cta-title span { color: var(--primary); }
.cta-desc { font-size: 16px; color: var(--text-gray); margin-bottom: 32px; line-height: 1.7; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0a;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all .25s;
}
.btn-cta-call:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,168,75,0.4); color: #0a0a0a; }
.btn-cta-sms {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,168,75,0.1);
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 999px;
  border: 2px solid var(--border-gold);
  transition: all .25s;
}
.btn-cta-sms:hover { background: rgba(200,168,75,0.2); transform: translateY(-2px); }

/* ============================================================
   Q&A / FAQ
   ============================================================ */
.qna-section { background: var(--bg-dark); padding: 80px 0; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.active { border-color: var(--border-gold); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  text-align: left;
  background: transparent;
  color: var(--text-dark);
  transition: background .2s;
}
.faq-question:hover { background: var(--bg-elevated); }
.faq-q-badge {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.faq-q-text { flex: 1; font-size: 15px; font-weight: 600; line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-gray);
  flex-shrink: 0;
  transition: all .3s;
  font-weight: 300;
  line-height: 1;
}
.faq-item.active .faq-icon {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #0a0a0a;
  border-color: transparent;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer-inner {
  padding: 0 20px 18px 64px;
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.8;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--border);
}
.footer-notice {
  background: linear-gradient(135deg, #1a1600, #2a2200);
  border-bottom: 1px solid var(--border-gold);
  padding: 14px 0;
  text-align: center;
  font-size: 12px;
  color: var(--text-gray);
  line-height: 1.6;
}
.footer-notice strong { color: var(--primary); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-logo .logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: #0a0a0a; font-size: 17px;
}
.footer-brand-desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-gray);
  transition: color .2s;
}
.footer-contact a:hover { color: var(--primary); }
.footer-contact a i { color: var(--primary); width: 16px; }
.footer-col {}
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  font-size: 13px;
  color: var(--text-light);
  transition: color .2s;
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul a::before {
  content: '›';
  color: var(--primary);
  font-size: 16px;
  line-height: 1;
}
.footer-col ul a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-copyright { font-size: 12px; color: var(--text-light); }
.footer-slogan { font-size: 12px; color: var(--primary); font-weight: 600; }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-btns {
  position: fixed;
  bottom: 30px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.float-btn:hover { transform: translateX(-4px); }
.float-btn-call {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.float-btn-sms {
  background: linear-gradient(135deg, #1a1400, #2a2000);
  border: 1px solid var(--border-gold);
}
.float-btn-icon {
  width: 40px; height: 40px;
  background: rgba(0,0,0,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
}
.float-btn-call .float-btn-icon { color: #0a0a0a; }
.float-btn-sms .float-btn-icon { color: var(--primary); }
.float-label { display: flex; flex-direction: column; line-height: 1.3; }
.float-label-top { font-size: 10px; font-weight: 600; opacity: .8; }
.float-label-num { font-size: 13px; font-weight: 800; white-space: nowrap; }
.float-btn-call .float-label { color: #0a0a0a; }
.float-btn-sms .float-label { color: var(--primary); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  .section, .section-alt { padding: 56px 0; }

  .site-nav { display: none; }
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .hero-section { padding: 56px 0 64px; }
  .hero-stats { gap: 20px; padding: 20px 24px; }

  .blog-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }

  /* 플로팅 버튼 모바일: 아이콘만 */
  .float-btn { padding: 0; border-radius: 50%; width: 56px; height: 56px; justify-content: center; }
  .float-label { display: none; }
  .float-btn-icon { width: 100%; height: 100%; border-radius: 50%; background: transparent; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .article-container { padding: 0 16px; }
  .faq-answer-inner { padding-left: 20px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn-primary,
  .hero-btns .btn-outline { justify-content: center; }
  .cta-btns { flex-direction: column; align-items: stretch; }
  .cta-btns .btn-cta-call,
  .cta-btns .btn-cta-sms { justify-content: center; }
}
